diff --git a/client/src/api/api.ts b/client/src/api/api.ts index 2862622..acaecdc 100644 --- a/client/src/api/api.ts +++ b/client/src/api/api.ts @@ -9,6 +9,6 @@ export * from './types/resources'; export * from './endpoints/auth'; -export * from './endpoints/importexport'; +export * from './endpoints/data'; export * from './endpoints/resources'; export * from './endpoints/query'; \ No newline at end of file diff --git a/client/src/api/endpoints/importexport.ts b/client/src/api/endpoints/data.ts similarity index 87% rename from client/src/api/endpoints/importexport.ts rename to client/src/api/endpoints/data.ts index d7432ee..4e31874 100644 --- a/client/src/api/endpoints/importexport.ts +++ b/client/src/api/endpoints/data.ts @@ -9,7 +9,7 @@ import { AlbumWithRefsWithId, ArtistWithRefsWithId, isAlbumWithRefs, isArtistWithRefs, isTagWithRefs, isTrackBaseWithRefs, isTrackWithRefs, TagWithRefsWithId, TrackWithRefsWithId } from "../types/resources"; // generated. -export interface DBImportExportFormat { +export interface DBDataFormat { tracks: TrackWithRefsWithId[], albums: AlbumWithRefsWithId[], artists: ArtistWithRefsWithId[], @@ -18,11 +18,11 @@ export interface DBImportExportFormat { // Get a full export of a user's database (GET). export const DBExportEndpoint = "/export"; -export type DBExportResponse = DBImportExportFormat; +export type DBExportResponse = DBDataFormat; // Fully replace the user's database by an import (POST). export const DBImportEndpoint = "/import"; -export type DBImportRequest = DBImportExportFormat; +export type DBImportRequest = DBDataFormat; export type DBImportResponse = void; export const checkDBImportRequest: (v: any) => boolean = (v: any) => { return 'tracks' in v && @@ -42,3 +42,7 @@ export const checkDBImportRequest: (v: any) => boolean = (v: any) => { return prev && isTagWithRefs(cur); }, true); } + +// Wipe this user's database (POST). +export const DBWipeEndpoint = "/wipe"; +export type DBWipeResponse = void; diff --git a/client/src/api/types/resources.ts b/client/src/api/types/resources.ts index 99eb4f4..bb37ac6 100644 --- a/client/src/api/types/resources.ts +++ b/client/src/api/types/resources.ts @@ -189,7 +189,6 @@ export function isTagBaseWithRefs(q: any): q is TagBaseWithRefs { return isTagBase(q); } export function isTagWithRefs(q: any): q is TagWithRefs { - console.log("Check", q) return isTagBaseWithRefs(q) && "name" in q; } diff --git a/client/src/components/MainWindow.tsx b/client/src/components/MainWindow.tsx index 9270c6b..3feecbe 100644 --- a/client/src/components/MainWindow.tsx +++ b/client/src/components/MainWindow.tsx @@ -97,9 +97,9 @@ export default function MainWindow(props: any) { - + - + diff --git a/client/src/components/common/FileUploadButton.tsx b/client/src/components/common/FileUploadButton.tsx new file mode 100644 index 0000000..c1d80a8 --- /dev/null +++ b/client/src/components/common/FileUploadButton.tsx @@ -0,0 +1,31 @@ +import { Button } from '@material-ui/core'; +import React from 'react'; + +export default function FileUploadButton(props: any) { + const hiddenFileInput = React.useRef(null); + const { onGetFile, ...restProps } = props; + + const handleClick = (event: any) => { + if (hiddenFileInput) { + hiddenFileInput.current.click(); + } + } + + const handleChange = (event: any) => { + const fileUploaded = event.target.files[0]; + onGetFile(fileUploaded); + }; + + return ( + <> + + + + ); +}; \ No newline at end of file diff --git a/client/src/components/windows/manage/ManageWindow.tsx b/client/src/components/windows/manage/ManageWindow.tsx index edf83e4..750ea43 100644 --- a/client/src/components/windows/manage/ManageWindow.tsx +++ b/client/src/components/windows/manage/ManageWindow.tsx @@ -10,12 +10,12 @@ import OpenInNewIcon from '@material-ui/icons/OpenInNew'; import SaveIcon from '@material-ui/icons/Save'; import ManageLinksWindow from '../manage_links/ManageLinksWindow'; import ManageTagsWindow from '../manage_tags/ManageTagsWindow'; -import ManageImportExportWindow from '../manage_importexport/ManageImportExport'; +import ManageDataWindow from '../manage_data/ManageData'; export enum ManageWhat { Tags = 0, Links, - ImportExport, + Data, } export default function ManageWindow(props: { @@ -56,14 +56,14 @@ export default function ManageWindow(props: { onClick={() => history.push('/manage/links')} /> } - selected={props.selectedWindow === ManageWhat.ImportExport} - onClick={() => history.push('/manage/importexport')} + selected={props.selectedWindow === ManageWhat.Data} + onClick={() => history.push('/manage/data')} /> {props.selectedWindow === ManageWhat.Tags && } {props.selectedWindow === ManageWhat.Links && } - {props.selectedWindow === ManageWhat.ImportExport && } + {props.selectedWindow === ManageWhat.Data && } } \ No newline at end of file diff --git a/client/src/components/windows/manage_data/ManageData.tsx b/client/src/components/windows/manage_data/ManageData.tsx new file mode 100644 index 0000000..8c81e01 --- /dev/null +++ b/client/src/components/windows/manage_data/ManageData.tsx @@ -0,0 +1,124 @@ +import React, { ReactFragment, useReducer, useState } from 'react'; +import { WindowState } from "../Windows"; +import { Box, Paper, Typography, TextField, Button, Dialog, CircularProgress } from "@material-ui/core"; +import SaveIcon from '@material-ui/icons/Save'; +import GetAppIcon from '@material-ui/icons/GetApp'; +import PublishIcon from '@material-ui/icons/Publish'; +import DeleteForeverIcon from '@material-ui/icons/DeleteForever'; +import { Alert } from '@material-ui/lab'; +import * as serverApi from '../../../api/api'; +import { getDBExportLink, importDB, wipeDB } from '../../../lib/backend/data'; +import FileUploadButton from '../../common/FileUploadButton'; +import { DBImportRequest } from '../../../api/api'; + +export interface ManageDataWindowState extends WindowState { + dummy: boolean +} +export enum ManageDataWindowActions { + SetDummy = "SetDummy", +} +export function ManageDataWindowReducer(state: ManageDataWindowState, action: any) { + switch (action.type) { + case ManageDataWindowActions.SetDummy: { + return state; + } + default: + throw new Error("Unimplemented ManageDataWindow state update.") + } +} + +export default function ManageDataWindow(props: {}) { + const [state, dispatch] = useReducer(ManageDataWindowReducer, { + dummy: true, + }); + + return +} + +export function ManageDataWindowControlled(props: { + state: ManageDataWindowState, + dispatch: (action: any) => void, +}) { + let [alert, setAlert] = useState(<>); + + let handleImport = async (jsonData: DBImportRequest) => { + try { + setAlert() + await importDB(jsonData); + } catch (e) { + setAlert(Failed to import database.) + return; + } + setAlert(Successfully imported database.) + } + + let handleWipe = async () => { + try { + setAlert() + await wipeDB(); + } catch (e) { + setAlert(Failed to wipe database.) + return; + } + setAlert(Successfully wiped database.) + } + + return <> + + + + + + Manage Data + + + An exported database contains all your artists, albums, tracks and tags.
+ It is represented as a JSON structure. +
+ + Imported items will not be merged with existing ones. If you wish to replace your database, wipe it first. + {alert} + + + + + + + + { + const fileReader = new FileReader(); + fileReader.readAsText(file, "UTF-8"); + fileReader.onload = (e: any) => { + let json: DBImportRequest = JSON.parse(e.target.result); + handleImport(json); + } + }}> + + Import + + + + + + + +
+ +} \ No newline at end of file diff --git a/client/src/components/windows/manage_importexport/ManageImportExport.tsx b/client/src/components/windows/manage_importexport/ManageImportExport.tsx deleted file mode 100644 index e2d5cdf..0000000 --- a/client/src/components/windows/manage_importexport/ManageImportExport.tsx +++ /dev/null @@ -1,65 +0,0 @@ -import React, { useReducer, useState } from 'react'; -import { WindowState } from "../Windows"; -import { Box, Paper, Typography, TextField, Button } from "@material-ui/core"; -import SaveIcon from '@material-ui/icons/Save'; -import { Alert } from '@material-ui/lab'; -import * as serverApi from '../../../api/api'; - -export interface ManageImportExportWindowState extends WindowState { - dummy: boolean -} -export enum ManageImportExportWindowActions { - SetDummy = "SetDummy", -} -export function ManageImportExportWindowReducer(state: ManageImportExportWindowState, action: any) { - switch (action.type) { - case ManageImportExportWindowActions.SetDummy: { - return state; - } - default: - throw new Error("Unimplemented ManageImportExportWindow state update.") - } -} - -export default function ManageImportExportWindow(props: {}) { - const [state, dispatch] = useReducer(ManageImportExportWindowReducer, { - dummy: true, - }); - - return -} - -export function ManageImportExportWindowControlled(props: { - state: ManageImportExportWindowState, - dispatch: (action: any) => void, -}) { - return <> - - - - - - Import / Export - - - An exported database contains all your artists, albums, tracks and tags.
- It is represented as a JSON structure. -
- - Upon importing a previously exported database, your database will be completely replaced! - - - - - - - -} \ No newline at end of file diff --git a/client/src/lib/backend/data.tsx b/client/src/lib/backend/data.tsx new file mode 100644 index 0000000..c4bb3e8 --- /dev/null +++ b/client/src/lib/backend/data.tsx @@ -0,0 +1,32 @@ +import { DBExportEndpoint, DBImportEndpoint, DBImportRequest, DBWipeEndpoint } from "../../api/api"; +import backendRequest from "./request"; + +export function getDBExportLink() { + return (process.env.REACT_APP_BACKEND || "") + DBExportEndpoint; +} + +export async function wipeDB() { + const requestOpts = { + method: 'POST' + }; + + const response = await backendRequest((process.env.REACT_APP_BACKEND || "") + DBWipeEndpoint, requestOpts) + if (!response.ok) { + throw new Error("Response to DB wipe not OK: " + JSON.stringify(response)); + } + + return; +} + +export async function importDB(jsonData: DBImportRequest) { + const requestOpts = { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify(jsonData), + }; + + const response = await backendRequest((process.env.REACT_APP_BACKEND || "") + DBImportEndpoint, requestOpts) + if (!response.ok) { + throw new Error("Response to DB import not OK: " + JSON.stringify(response)); + } +} \ No newline at end of file diff --git a/client/src/lib/integration/useIntegrations.tsx b/client/src/lib/integration/useIntegrations.tsx index 936e833..35c37c2 100644 --- a/client/src/lib/integration/useIntegrations.tsx +++ b/client/src/lib/integration/useIntegrations.tsx @@ -128,20 +128,22 @@ function useProvideIntegrations(): Integrations { const [state, dispatch] = useReducer(IntegrationsReducer, []) let updateFromUpstream = async () => { - return await backend.getIntegrations() - .then((integrations: serverApi.ListIntegrationsResponse) => { - dispatch({ - type: IntegrationsActions.Set, - value: integrations.map((i: any) => { - return { - integration: new (IntegrationClasses[i.type])(i.id), - properties: { ...i }, - id: i.id, - } - }) - }); - }) - .catch((e) => handleNotLoggedIn(auth, e)); + try { + return await backend.getIntegrations() + .then((integrations: serverApi.ListIntegrationsResponse) => { + dispatch({ + type: IntegrationsActions.Set, + value: integrations.map((i: any) => { + return { + integration: new (IntegrationClasses[i.type])(i.id), + properties: { ...i }, + id: i.id, + } + }) + }); + }) + .catch((e) => handleNotLoggedIn(auth, e)); + } catch(e) {} } let addIntegration = async (v: serverApi.PostIntegrationRequest) => { diff --git a/data/20201204_initial_GPM_import.mudbase.json b/data/20201204_initial_GPM_import.mudbase.json new file mode 100644 index 0000000..8b46893 --- /dev/null +++ b/data/20201204_initial_GPM_import.mudbase.json @@ -0,0 +1,22335 @@ +{ + "tracks": [ + { + "mbApi_typename": "track", + "name": "T'aint What You Do", + "id": 1271, + "storeLinks": [ + "https://play.google.com/music/m/Ttwbmxx3vqnus547rwmpzyfhkn4" + ], + "albumId": 977, + "artistIds": [ + 745 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "The Shim Sham Song", + "id": 1272, + "storeLinks": [ + "https://play.google.com/music/m/Txq4evd3tks57jikdhupnjh3ehy" + ], + "albumId": 978, + "artistIds": [ + 746 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "For Dancers Only (Remastered)", + "id": 1273, + "storeLinks": [ + "https://play.google.com/music/m/Tjtwpumcgp5es7pc74rkwrscv7a" + ], + "albumId": 979, + "artistIds": [ + 747 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Basin Street Blues", + "id": 1274, + "storeLinks": [ + "https://play.google.com/music/m/Tlw4hv5txzlk6zmguaq62hcner4" + ], + "albumId": 980, + "artistIds": [ + 748 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "On the Sunny Side of the Street", + "id": 1275, + "storeLinks": [ + "https://play.google.com/music/m/Tdvukp25rrrr7k46rpu5cmvwct4" + ], + "albumId": 981, + "artistIds": [ + 749 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Wrap Your Troubles In Dreams", + "id": 1276, + "storeLinks": [ + "https://play.google.com/music/m/Ta4bopad7jbizrj7mmx4tyn63gi" + ], + "albumId": 980, + "artistIds": [ + 748 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Louisiana Fairytale", + "id": 1277, + "storeLinks": [ + "https://play.google.com/music/m/Tnsivgdabco7grfdldo2k3cpn7q" + ], + "albumId": 982, + "artistIds": [ + 750 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Smooth Sailing", + "id": 1278, + "storeLinks": [ + "https://play.google.com/music/m/Tsjxqrppkjnpe66zlkxt5foj3xu" + ], + "albumId": 983, + "artistIds": [ + 751 + ], + "tagIds": [ + 131 + ] + }, + { + "mbApi_typename": "track", + "name": "Wham Re-Bop-Boom-Bam!", + "id": 1279, + "storeLinks": [ + "https://play.google.com/music/m/Tt7ifw2wof67elc7a4mq4lfpici" + ], + "albumId": 984, + "artistIds": [ + 752 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "A Wink and a Smile", + "id": 1280, + "storeLinks": [ + "https://play.google.com/music/m/Trieltvi7luuzgu2gbb3vz742bi" + ], + "albumId": 985, + "artistIds": [ + 753 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Bei Mir Bist Du Schoen", + "id": 1281, + "storeLinks": [ + "https://play.google.com/music/m/Tejcicjtub2u6ezfkc7t7socd6e" + ], + "albumId": 986, + "artistIds": [ + 754 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Cheatin' On Me", + "id": 1282, + "storeLinks": [ + "https://play.google.com/music/m/T772mxp6c2dbdwgo6yes2v45e2u" + ], + "albumId": 987, + "artistIds": [ + 745 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Don't Get Around Much Anymore", + "id": 1283, + "storeLinks": [ + "https://play.google.com/music/m/Tygabyls2gznfhv5rbmr3jlckna" + ], + "albumId": 988, + "artistIds": [ + 755 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "The Less I Know The Better", + "id": 1284, + "storeLinks": [ + "https://play.google.com/music/m/Tevboyw5qi2xdxdotttpalitmxy" + ], + "albumId": 989, + "artistIds": [ + 756 + ], + "tagIds": [ + 133 + ] + }, + { + "mbApi_typename": "track", + "name": "Matty Groves", + "id": 1285, + "storeLinks": [ + "https://play.google.com/music/m/Ty4ltldapgeqkx4zlnz3brzsd7q" + ], + "albumId": 990, + "artistIds": [ + 757 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Grounding (Live)", + "id": 1286, + "storeLinks": [ + "https://play.google.com/music/m/Tzs76h2z4zw5vbl4zb3rlycg2te" + ], + "albumId": 991, + "artistIds": [ + 758 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Come Home", + "id": 1287, + "storeLinks": [ + "https://play.google.com/music/m/Tfn4dta66ot5zf3s7iojuonu55a" + ], + "albumId": 992, + "artistIds": [ + 759 + ], + "tagIds": [ + 135 + ] + }, + { + "mbApi_typename": "track", + "name": "Nothing's Real but Love", + "id": 1288, + "storeLinks": [ + "https://play.google.com/music/m/Tc2vafqcjjcthydbjepsn3xodza" + ], + "albumId": 993, + "artistIds": [ + 760 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Chan Chan", + "id": 1289, + "storeLinks": [ + "https://play.google.com/music/m/Ty2jukycp7xclsro7uq2yu56sdq" + ], + "albumId": 994, + "artistIds": [ + 761 + ], + "tagIds": [ + 136 + ] + }, + { + "mbApi_typename": "track", + "name": "Summertime", + "id": 1290, + "storeLinks": [ + "https://play.google.com/music/m/T4iiej4vnkeunupl2ji2mg7cuyy" + ], + "albumId": 995, + "artistIds": [ + 762 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Diferente", + "id": 1291, + "storeLinks": [ + "https://play.google.com/music/m/T6eyemh7qniyffye6la2bmf6p7q" + ], + "albumId": 996, + "artistIds": [ + 763 + ], + "tagIds": [ + 136 + ] + }, + { + "mbApi_typename": "track", + "name": "Fireball (feat. John Ryan)", + "id": 1292, + "storeLinks": [ + "https://play.google.com/music/m/Tp4emij2onwgfla35gws4zok7nm" + ], + "albumId": 997, + "artistIds": [ + 764 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "A Smo-o-o-oth-one", + "id": 1293, + "storeLinks": [ + "https://play.google.com/music/m/Tnvllvla55cgegueexyysuhzfae" + ], + "albumId": 998, + "artistIds": [ + 765 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "In The Mood", + "id": 1294, + "storeLinks": [ + "https://play.google.com/music/m/Tfmryhriwlvc6wxj42ks57com4m" + ], + "albumId": 999, + "artistIds": [ + 766 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Do You Love Me at All", + "id": 1295, + "storeLinks": [ + "https://play.google.com/music/m/Tepoajh2rywmrb3dwmza4joctyq" + ], + "albumId": 1000, + "artistIds": [ + 767 + ], + "tagIds": [ + 137 + ] + }, + { + "mbApi_typename": "track", + "name": "Pencil Full of Lead", + "id": 1296, + "storeLinks": [ + "https://play.google.com/music/m/Tfsayxet6ozhhzyrzfbercbf55a" + ], + "albumId": 1001, + "artistIds": [ + 768 + ], + "tagIds": [ + 137 + ] + }, + { + "mbApi_typename": "track", + "name": "Iron Sky", + "id": 1297, + "storeLinks": [ + "https://play.google.com/music/m/T5stva5qrvawbjb6ivdih7oatbq" + ], + "albumId": 1002, + "artistIds": [ + 768 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Last Night a D.J. Saved My Life", + "id": 1298, + "storeLinks": [ + "https://play.google.com/music/m/Tgtcikkaq6szf6alk43ta4gsyuq" + ], + "albumId": 1003, + "artistIds": [ + 769 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Swingtime in Honolulu", + "id": 1299, + "storeLinks": [ + "https://play.google.com/music/m/Tm5d3hsutyy4etjjsbwc3tlut6q" + ], + "albumId": 1004, + "artistIds": [ + 770 + ], + "tagIds": [ + 138 + ] + }, + { + "mbApi_typename": "track", + "name": "Minor Swing", + "id": 1300, + "storeLinks": [ + "https://play.google.com/music/m/Twrjsgy45rqnlhp7damc7qcq3by" + ], + "albumId": 1005, + "artistIds": [ + 771 + ], + "tagIds": [ + 139 + ] + }, + { + "mbApi_typename": "track", + "name": "Bistro Fada (from the Motion Picture \"Midnight in Paris\")", + "id": 1301, + "storeLinks": [ + "https://play.google.com/music/m/Tywn6q5ycjnckooawrkoelr2yyi" + ], + "albumId": 1006, + "artistIds": [ + 772 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Deliver Your Children (Remastered 1993)", + "id": 1302, + "storeLinks": [ + "https://play.google.com/music/m/Ttvbl74mmviqcptran3urmntedq" + ], + "albumId": 1007, + "artistIds": [ + 773 + ], + "tagIds": [ + 140 + ] + }, + { + "mbApi_typename": "track", + "name": "A Cool Cat in Town (Aerophon Mix) (feat. Brenda Boykin)", + "id": 1303, + "storeLinks": [ + "https://play.google.com/music/m/Tfqnk46icodwczye7r5wpywrzpq" + ], + "albumId": 1008, + "artistIds": [ + 774 + ], + "tagIds": [ + 141 + ] + }, + { + "mbApi_typename": "track", + "name": "Mess Around", + "id": 1304, + "storeLinks": [ + "https://play.google.com/music/m/Tvhh5cmqkqx4azmmbopegcfzmle" + ], + "albumId": 1009, + "artistIds": [ + 775 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Where the Streets Have No Name", + "id": 1305, + "storeLinks": [ + "https://play.google.com/music/m/Tyxjwp2w45vlt2f3mka5gucd6f4" + ], + "albumId": 1010, + "artistIds": [ + 776 + ], + "tagIds": [ + 141 + ] + }, + { + "mbApi_typename": "track", + "name": "Mariana", + "id": 1306, + "storeLinks": [ + "https://play.google.com/music/m/Tpwq5zlwntko3wk24mqwbmyvtlu" + ], + "albumId": 1011, + "artistIds": [ + 777 + ], + "tagIds": [ + 136 + ] + }, + { + "mbApi_typename": "track", + "name": "Via con me", + "id": 1307, + "storeLinks": [ + "https://play.google.com/music/m/Tua6u7atjnurtvkg335ce6wqesu" + ], + "albumId": 1012, + "artistIds": [ + 778 + ], + "tagIds": [ + 142 + ] + }, + { + "mbApi_typename": "track", + "name": "Catch 'em Young", + "id": 1308, + "storeLinks": [ + "https://play.google.com/music/m/Tvx2iozouxtky3t7qgqvquvdndy" + ], + "albumId": 1013, + "artistIds": [ + 779 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Mary Jane", + "id": 1309, + "storeLinks": [ + "https://play.google.com/music/m/Th4wk7gwr5tpxubtoyqmxvqtul4" + ], + "albumId": 1014, + "artistIds": [ + 780 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "The Sound of Silence", + "id": 1310, + "storeLinks": [ + "https://play.google.com/music/m/Trl6tawgwanyxvmpcedposoopoi" + ], + "albumId": 1015, + "artistIds": [ + 781 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Grounds for Divorce", + "id": 1311, + "storeLinks": [ + "https://play.google.com/music/m/T3l2h2yi6mzdydhfjhe242eu7ma" + ], + "albumId": 1016, + "artistIds": [ + 782 + ], + "tagIds": [ + 143 + ] + }, + { + "mbApi_typename": "track", + "name": "Shotgun", + "id": 1312, + "storeLinks": [ + "https://play.google.com/music/m/T2s5oi5l2lbyfftgahk3b4q6ioq" + ], + "albumId": 1017, + "artistIds": [ + 783 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Do Me", + "id": 1313, + "storeLinks": [ + "https://play.google.com/music/m/Twalzq22zpwbppf3njh76uddnze" + ], + "albumId": 1018, + "artistIds": [ + 784 + ], + "tagIds": [ + 144 + ] + }, + { + "mbApi_typename": "track", + "name": "Alabama (2009 Remaster)", + "id": 1314, + "storeLinks": [ + "https://play.google.com/music/m/Tpqpn6dlkvccc7fb77y5442ubey" + ], + "albumId": 1019, + "artistIds": [ + 785 + ], + "tagIds": [ + 140 + ] + }, + { + "mbApi_typename": "track", + "name": "Beyond the Sea", + "id": 1315, + "storeLinks": [ + "https://play.google.com/music/m/T6cnqsp56h3yy6zwzks2ftvfbty" + ], + "albumId": 1020, + "artistIds": [ + 786 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "In the Mood", + "id": 1316, + "storeLinks": [ + "https://play.google.com/music/m/Tpfep4wnxttmecw254uf3uff5vm" + ], + "albumId": 1021, + "artistIds": [ + 787 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Sing, Sing, Sing", + "id": 1317, + "storeLinks": [ + "https://play.google.com/music/m/Tnbbpoxqu5xgiqoyhsacvatqg5a" + ], + "albumId": 1022, + "artistIds": [ + 788 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "My Blue Heaven", + "id": 1318, + "storeLinks": [ + "https://play.google.com/music/m/Tyb3pk6gwdpotwoqpzootpepjt4" + ], + "albumId": 1023, + "artistIds": [ + 789 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Deja Vu", + "id": 1319, + "storeLinks": [ + "https://play.google.com/music/m/T7bgm2ka7lra7n46bsiemtf6hzu" + ], + "albumId": 1024, + "artistIds": [ + 790 + ], + "tagIds": [ + 145 + ] + }, + { + "mbApi_typename": "track", + "name": "Right Between the Eyes (Live)", + "id": 1320, + "storeLinks": [ + "https://play.google.com/music/m/Tplcvtbpoqm5pesuqryzayubspm" + ], + "albumId": 1025, + "artistIds": [ + 790 + ], + "tagIds": [ + 145 + ] + }, + { + "mbApi_typename": "track", + "name": "Tainted Love", + "id": 1321, + "storeLinks": [ + "https://play.google.com/music/m/T4cixpen2velcp3d2adkgb3ltuu" + ], + "albumId": 1026, + "artistIds": [ + 791 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Best Friend (feat. NERVO, The Knocks & ALISA UENO)", + "id": 1322, + "storeLinks": [ + "https://play.google.com/music/m/Taqhqbjz6auhymxrdhdmvha3icq" + ], + "albumId": 1027, + "artistIds": [ + 792 + ], + "tagIds": [ + 141 + ] + }, + { + "mbApi_typename": "track", + "name": "Everybody", + "id": 1323, + "storeLinks": [ + "https://play.google.com/music/m/Tr3bxzd4or2soil7p4x2zqdqepu" + ], + "albumId": 1028, + "artistIds": [ + 793 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Lose Yourself", + "id": 1324, + "storeLinks": [ + "https://play.google.com/music/m/Tuu5snatbxzx46q3plyymd7heei" + ], + "albumId": 1029, + "artistIds": [ + 794 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "And So We Dance (Alors On Dance)", + "id": 1325, + "storeLinks": [ + "https://play.google.com/music/m/T22vwibyljbutjg2jbhehg5pvsa" + ], + "albumId": 1029, + "artistIds": [ + 794 + ], + "tagIds": [ + 146 + ] + }, + { + "mbApi_typename": "track", + "name": "She's Creeping", + "id": 1326, + "storeLinks": [ + "https://play.google.com/music/m/Tcuyjgn5g2fbbcda32vvc44cj5m" + ], + "albumId": 1030, + "artistIds": [ + 795 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Dead End Friends", + "id": 1327, + "storeLinks": [ + "https://play.google.com/music/m/Tz2dn3yh5fd6ygnltcvlfsro4na" + ], + "albumId": 1031, + "artistIds": [ + 796 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "No Use Squawkin'", + "id": 1328, + "storeLinks": [ + "https://play.google.com/music/m/Tivr6bh4n6tc3x3nirsh5yxlaka" + ], + "albumId": 1032, + "artistIds": [ + 797 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "In Hell I'll Be in Good Company", + "id": 1329, + "storeLinks": [ + "https://play.google.com/music/m/Tzykdbtu7pgvmz4dpswf5yndlia" + ], + "albumId": 1033, + "artistIds": [ + 798 + ], + "tagIds": [ + 147 + ] + }, + { + "mbApi_typename": "track", + "name": "I Don't Want to Set the World on Fire", + "id": 1330, + "storeLinks": [ + "https://play.google.com/music/m/T4kbe3dyugqqj73cfmiqrppqodi" + ], + "albumId": 1034, + "artistIds": [ + 799 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Dream a Little of Me", + "id": 1331, + "storeLinks": [ + "https://play.google.com/music/m/Tzsdbkk6aniyfwv7y3jpt247hca" + ], + "albumId": 1035, + "artistIds": [ + 800 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Zeilmeisje", + "id": 1332, + "storeLinks": [ + "https://play.google.com/music/m/Ttrycocwl4ysml2lpm6bvve67pe" + ], + "albumId": 1036, + "artistIds": [ + 801 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Now Or Never", + "id": 1333, + "storeLinks": [ + "https://play.google.com/music/m/Tmrbwajn3ks4qcjcgvq6x7ur5pq" + ], + "albumId": 1037, + "artistIds": [ + 762 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "The Gospel of John Hurt", + "id": 1334, + "storeLinks": [ + "https://play.google.com/music/m/Tbjv7zo53znablxy523iy4ffyj4" + ], + "albumId": 1038, + "artistIds": [ + 802 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Happiness", + "id": 1335, + "storeLinks": [ + "https://play.google.com/music/m/Thrateorh4hw7lcvjymwsu7frdu" + ], + "albumId": 1039, + "artistIds": [ + 803 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Such Great Heights ((Performed By Iron And Wine))", + "id": 1336, + "storeLinks": [ + "https://play.google.com/music/m/Tbrxkh5mfttgiwlcyg54yu536ji" + ], + "albumId": 1040, + "artistIds": [ + 804 + ], + "tagIds": [ + 148 + ] + }, + { + "mbApi_typename": "track", + "name": "In the Summertime", + "id": 1337, + "storeLinks": [ + "https://play.google.com/music/m/Td4w6pxz6jqriqf4ctxr7kaupcm" + ], + "albumId": 1041, + "artistIds": [ + 805 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Home (Remastered)", + "id": 1338, + "storeLinks": [ + "https://play.google.com/music/m/Tdrhc5eyhgamsaiegorbrkvuv64" + ], + "albumId": 1042, + "artistIds": [ + 806 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Two Weeks", + "id": 1339, + "storeLinks": [ + "https://play.google.com/music/m/Tgbzqry6ni2i622gdvibnm6bwj4" + ], + "albumId": 1043, + "artistIds": [ + 807 + ], + "tagIds": [ + 149 + ] + }, + { + "mbApi_typename": "track", + "name": "Reptilia", + "id": 1340, + "storeLinks": [ + "https://play.google.com/music/m/Tys6mrygce6wc5g4vibis4f7hpy" + ], + "albumId": 1044, + "artistIds": [ + 808 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "You Only Live Once", + "id": 1341, + "storeLinks": [ + "https://play.google.com/music/m/Twoixgk3ajfw547brhyfcb3vnje" + ], + "albumId": 1045, + "artistIds": [ + 808 + ], + "tagIds": [ + 149 + ] + }, + { + "mbApi_typename": "track", + "name": "Can't Stop Running", + "id": 1342, + "storeLinks": [ + "https://play.google.com/music/m/Tyxkatcu3rdr3jerdijqo3l2aau" + ], + "albumId": 1046, + "artistIds": [ + 809 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Systematic Lover", + "id": 1343, + "storeLinks": [ + "https://play.google.com/music/m/Tqhl54ib6eaez2y42p6zhycdxke" + ], + "albumId": 1047, + "artistIds": [ + 810 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Dig Down", + "id": 1344, + "storeLinks": [ + "https://play.google.com/music/m/Tj2izxwjmy6dsx6mm5c33mlupcm" + ], + "albumId": 1048, + "artistIds": [ + 811 + ], + "tagIds": [ + 141 + ] + }, + { + "mbApi_typename": "track", + "name": "The Sky Is A Neighborhood", + "id": 1345, + "storeLinks": [ + "https://play.google.com/music/m/Tmc3gidzisoss5n5drswwe2njle" + ], + "albumId": 1049, + "artistIds": [ + 812 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Map of the Problematique", + "id": 1346, + "storeLinks": [ + "https://play.google.com/music/m/Ttok4kojm3samqhyxtwvwghuh4i" + ], + "albumId": 1050, + "artistIds": [ + 811 + ], + "tagIds": [ + 143 + ] + }, + { + "mbApi_typename": "track", + "name": "New Shoes", + "id": 1347, + "storeLinks": [ + "https://play.google.com/music/m/Tk7kjvolcctn2hapnfc2v75gf3e" + ], + "albumId": 1051, + "artistIds": [ + 768 + ], + "tagIds": [ + 137 + ] + }, + { + "mbApi_typename": "track", + "name": "Starlight", + "id": 1348, + "storeLinks": [ + "https://play.google.com/music/m/Tuabqx4wqojrkm62uaxxifdj56q" + ], + "albumId": 1050, + "artistIds": [ + 811 + ], + "tagIds": [ + 143 + ] + }, + { + "mbApi_typename": "track", + "name": "Human", + "id": 1349, + "storeLinks": [ + "https://play.google.com/music/m/Tfqbilc5nzbhxx7cuixyh2lwxay" + ], + "albumId": 1052, + "artistIds": [ + 813 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Magic", + "id": 1350, + "storeLinks": [ + "https://play.google.com/music/m/T2w5y2fz6vs5efxgoln7q2ylxwu" + ], + "albumId": 1053, + "artistIds": [ + 814 + ], + "tagIds": [ + 150 + ] + }, + { + "mbApi_typename": "track", + "name": "Blame It on Me", + "id": 1351, + "storeLinks": [ + "https://play.google.com/music/m/Tghf36skgp27ahpdrgc5qppljjy" + ], + "albumId": 1054, + "artistIds": [ + 815 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Another One Bites The Dust (Remastered 2011)", + "id": 1352, + "storeLinks": [ + "https://play.google.com/music/m/Tcad6q4lsnq2yywclfihjdo3ltq" + ], + "albumId": 1055, + "artistIds": [ + 816 + ], + "tagIds": [ + 145 + ] + }, + { + "mbApi_typename": "track", + "name": "Riptide", + "id": 1353, + "storeLinks": [ + "https://play.google.com/music/m/Tekwphtx24juozsuewbmm5fvlyy" + ], + "albumId": 1056, + "artistIds": [ + 817 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "You've Got The Love", + "id": 1354, + "storeLinks": [ + "https://play.google.com/music/m/Tzsw7d2v2763bwkcqajzqujwisy" + ], + "albumId": 1057, + "artistIds": [ + 818 + ], + "tagIds": [ + 143 + ] + }, + { + "mbApi_typename": "track", + "name": "Feel Good Inc.", + "id": 1355, + "storeLinks": [ + "https://play.google.com/music/m/Tjhchifonml23dlhbqd25q4mhge" + ], + "albumId": 1058, + "artistIds": [ + 819 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "I'm Yours", + "id": 1356, + "storeLinks": [ + "https://play.google.com/music/m/T3slys5b6ptl7o2laticuutv4ze" + ], + "albumId": 1059, + "artistIds": [ + 820 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Better Together", + "id": 1357, + "storeLinks": [ + "https://play.google.com/music/m/Tcvmuvehw5debjvd4jhaghvqbum" + ], + "albumId": 1060, + "artistIds": [ + 821 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Hey Ya! (Radio Mix)", + "id": 1358, + "storeLinks": [ + "https://play.google.com/music/m/Tgecuvci55y7mxazqvcbwa4qcpm" + ], + "albumId": 1061, + "artistIds": [ + 822 + ], + "tagIds": [ + 151 + ] + }, + { + "mbApi_typename": "track", + "name": "Dancing in the Moonlight", + "id": 1359, + "storeLinks": [ + "https://play.google.com/music/m/Tapsporrmf53al6hpozrw25xb64" + ], + "albumId": 1062, + "artistIds": [ + 823 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Fill My Little World (Edit)", + "id": 1360, + "storeLinks": [ + "https://play.google.com/music/m/Thn4n5wrmuah3ds4af6cmmccgdu" + ], + "albumId": 1063, + "artistIds": [ + 824 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Island In The Sun", + "id": 1361, + "storeLinks": [ + "https://play.google.com/music/m/Trxpfebulivkynfu7u2ql7akrwy" + ], + "albumId": 1064, + "artistIds": [ + 825 + ], + "tagIds": [ + 152 + ] + }, + { + "mbApi_typename": "track", + "name": "If You're Into It", + "id": 1362, + "storeLinks": [ + "https://play.google.com/music/m/Tuaxyxdd32kyh2qg2saa4pfazvm" + ], + "albumId": 1065, + "artistIds": [ + 826 + ], + "tagIds": [ + 147 + ] + }, + { + "mbApi_typename": "track", + "name": "Business Time", + "id": 1363, + "storeLinks": [ + "https://play.google.com/music/m/T6yb6l743bppejkdamu5evelvpq" + ], + "albumId": 1065, + "artistIds": [ + 826 + ], + "tagIds": [ + 147 + ] + }, + { + "mbApi_typename": "track", + "name": "Clint Eastwood", + "id": 1364, + "storeLinks": [ + "https://play.google.com/music/m/Tjlr73fzyfwiix7fgooniw3uvse" + ], + "albumId": 1066, + "artistIds": [ + 819 + ], + "tagIds": [ + 143 + ] + }, + { + "mbApi_typename": "track", + "name": "This Fire", + "id": 1365, + "storeLinks": [ + "https://play.google.com/music/m/Tfoy3g6l57dopwuylegz6ckdkee" + ], + "albumId": 1067, + "artistIds": [ + 827 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Ain't No Rest for the Wicked", + "id": 1366, + "storeLinks": [ + "https://play.google.com/music/m/Tjjg746jwrso634jzq5ozoev4be" + ], + "albumId": 1068, + "artistIds": [ + 828 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Don't Wanna Fight", + "id": 1367, + "storeLinks": [ + "https://play.google.com/music/m/Tmggtrlgz2znkbzf5yx5uydcpgm" + ], + "albumId": 1069, + "artistIds": [ + 829 + ], + "tagIds": [ + 153 + ] + }, + { + "mbApi_typename": "track", + "name": "Stuck In The Middle With You", + "id": 1368, + "storeLinks": [ + "https://play.google.com/music/m/Tqeab5cfr722h7esgovzbkp26z4" + ], + "albumId": 1070, + "artistIds": [ + 830 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Here Comes The Sun (Remastered 2009)", + "id": 1369, + "storeLinks": [ + "https://play.google.com/music/m/Trgvsmwaydw52c75hz4jvvgq5he" + ], + "albumId": 1071, + "artistIds": [ + 831 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Gone", + "id": 1370, + "storeLinks": [ + "https://play.google.com/music/m/T4y3is6ytnmlf4albkjkiyq2u5a" + ], + "albumId": 1072, + "artistIds": [ + 821 + ], + "tagIds": [ + 137 + ] + }, + { + "mbApi_typename": "track", + "name": "Rock & Roll", + "id": 1371, + "storeLinks": [ + "https://play.google.com/music/m/T4qh4aucfm3vl454epcocgwenry" + ], + "albumId": 1073, + "artistIds": [ + 832 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Why Georgia", + "id": 1372, + "storeLinks": [ + "https://play.google.com/music/m/Tp3taz7kt2jwwyqcosmp6ajzbge" + ], + "albumId": 1074, + "artistIds": [ + 833 + ], + "tagIds": [ + 154 + ] + }, + { + "mbApi_typename": "track", + "name": "Burn One Down", + "id": 1373, + "storeLinks": [ + "https://play.google.com/music/m/Tpmqhgenjfovi7yejtxns2qwdbq" + ], + "albumId": 1075, + "artistIds": [ + 834 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Give It To You", + "id": 1374, + "storeLinks": [ + "https://play.google.com/music/m/Tnjusf7kq4jkycesudlvbodygke" + ], + "albumId": 1076, + "artistIds": [ + 835 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Our Love", + "id": 1375, + "storeLinks": [ + "https://play.google.com/music/m/Tfhosytctm3iqzqetugx7n3zegy" + ], + "albumId": 1077, + "artistIds": [ + 836 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Family (feat. Jack Johnson)", + "id": 1376, + "storeLinks": [ + "https://play.google.com/music/m/Trx3lm4uaz5ilbe564vch27mq5a" + ], + "albumId": 1078, + "artistIds": [ + 837 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Taylor", + "id": 1377, + "storeLinks": [ + "https://play.google.com/music/m/Ttnzccmgonbxcb73culnklw3eje" + ], + "albumId": 1072, + "artistIds": [ + 821 + ], + "tagIds": [ + 137 + ] + }, + { + "mbApi_typename": "track", + "name": "Get Down the Road", + "id": 1378, + "storeLinks": [ + "https://play.google.com/music/m/Tdxiiglwqaf6ipm7b5m4obexlb4" + ], + "albumId": 1079, + "artistIds": [ + 838 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Treasure", + "id": 1379, + "storeLinks": [ + "https://play.google.com/music/m/Tuibwtagcscd276nttl67fl4xdy" + ], + "albumId": 1080, + "artistIds": [ + 839 + ], + "tagIds": [ + 155 + ] + }, + { + "mbApi_typename": "track", + "name": "Cheating", + "id": 1380, + "storeLinks": [ + "https://play.google.com/music/m/Tlvim424nydjn4ms2xum2mz4qdi" + ], + "albumId": 1081, + "artistIds": [ + 840 + ], + "tagIds": [ + 155 + ] + }, + { + "mbApi_typename": "track", + "name": "Sing", + "id": 1381, + "storeLinks": [ + "https://play.google.com/music/m/Twkegirb75cm2ck3fdhzm62qdq4" + ], + "albumId": 1082, + "artistIds": [ + 841 + ], + "tagIds": [ + 155 + ] + }, + { + "mbApi_typename": "track", + "name": "Uptown Funk (feat. Bruno Mars)", + "id": 1382, + "storeLinks": [ + "https://play.google.com/music/m/Tcvjhikn3sgzutlmo5uef3vi7ui" + ], + "albumId": 1083, + "artistIds": [ + 842 + ], + "tagIds": [ + 155 + ] + }, + { + "mbApi_typename": "track", + "name": "One More Night", + "id": 1383, + "storeLinks": [ + "https://play.google.com/music/m/Tcdo47qc2lebcme7w2awizwkrwa" + ], + "albumId": 1084, + "artistIds": [ + 843 + ], + "tagIds": [ + 155 + ] + }, + { + "mbApi_typename": "track", + "name": "Runaway Baby", + "id": 1384, + "storeLinks": [ + "https://play.google.com/music/m/T23dftcakwqvftavdi2wagtngpe" + ], + "albumId": 1085, + "artistIds": [ + 839 + ], + "tagIds": [ + 155 + ] + }, + { + "mbApi_typename": "track", + "name": "Blurred Lines (feat. T.I. & Pharrell)", + "id": 1385, + "storeLinks": [ + "https://play.google.com/music/m/Tcwnqhzvvlccxie4jo5dwfcbeju" + ], + "albumId": 1086, + "artistIds": [ + 844 + ], + "tagIds": [ + 156 + ] + }, + { + "mbApi_typename": "track", + "name": "My Type", + "id": 1386, + "storeLinks": [ + "https://play.google.com/music/m/Tuepgzvnz3xrlkoen3ktmrbqaq4" + ], + "albumId": 1087, + "artistIds": [ + 845 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Get Lucky (Radio Edit) (feat. Pharrell Williams & Nile Rodgers)", + "id": 1387, + "storeLinks": [ + "https://play.google.com/music/m/Tcjreecf75v4ayedag7netzzvvy" + ], + "albumId": 1088, + "artistIds": [ + 846 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "American Boy [Feat. Kanye West] (Album Version)", + "id": 1388, + "storeLinks": [ + "https://play.google.com/music/m/T3fwedy4wvdvivgetyo676sxni4" + ], + "albumId": 1089, + "artistIds": [ + 847 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Scream (Funk My Life Up)", + "id": 1389, + "storeLinks": [ + "https://play.google.com/music/m/Tvmwsl5urksuiuetflqgbz33ewu" + ], + "albumId": 1002, + "artistIds": [ + 768 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Love Never Felt So Good", + "id": 1390, + "storeLinks": [ + "https://play.google.com/music/m/Trfbrxhb7mxz62uylgixxibupki" + ], + "albumId": 1090, + "artistIds": [ + 848 + ], + "tagIds": [ + 155 + ] + }, + { + "mbApi_typename": "track", + "name": "Can't Rely on You", + "id": 1391, + "storeLinks": [ + "https://play.google.com/music/m/Tw76yleauuzjtmrjayuvk7y6qey" + ], + "albumId": 1091, + "artistIds": [ + 849 + ], + "tagIds": [ + 156 + ] + }, + { + "mbApi_typename": "track", + "name": "Awkward (EP Version)", + "id": 1392, + "storeLinks": [ + "https://play.google.com/music/m/Tjjvsbkygpzjoltmwrcatspbxly" + ], + "albumId": 1092, + "artistIds": [ + 850 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Left Hand Free", + "id": 1393, + "storeLinks": [ + "https://play.google.com/music/m/Tykj6khszlhy2krywbasobcpyia" + ], + "albumId": 1038, + "artistIds": [ + 802 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Lightning Bolt", + "id": 1394, + "storeLinks": [ + "https://play.google.com/music/m/Tyto2dopa3irl4zlshr5xp4mhua" + ], + "albumId": 1093, + "artistIds": [ + 851 + ], + "tagIds": [ + 157 + ] + }, + { + "mbApi_typename": "track", + "name": "Paper Planes", + "id": 1395, + "storeLinks": [ + "https://play.google.com/music/m/T54zmuqajhariomydxup4h77r64" + ], + "albumId": 1094, + "artistIds": [ + 852 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Make The Call, Leave It All", + "id": 1396, + "storeLinks": [ + "https://play.google.com/music/m/Tez3a5gigfkxo73ymh66x6tbu6e" + ], + "albumId": 1047, + "artistIds": [ + 810 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "In The Morning", + "id": 1397, + "storeLinks": [ + "https://play.google.com/music/m/T7v5h4rmxrq4hj6bf6fhqldedem" + ], + "albumId": 1095, + "artistIds": [ + 853 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "I Predict A Riot", + "id": 1398, + "storeLinks": [ + "https://play.google.com/music/m/Tup47u7bvult3ffikssus53fdwy" + ], + "albumId": 1096, + "artistIds": [ + 854 + ], + "tagIds": [ + 143 + ] + }, + { + "mbApi_typename": "track", + "name": "Bohemian Like You", + "id": 1399, + "storeLinks": [ + "https://play.google.com/music/m/Tyzz7ztbliktbwe4uvh3othfbuq" + ], + "albumId": 1097, + "artistIds": [ + 855 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Mr. Brightside", + "id": 1400, + "storeLinks": [ + "https://play.google.com/music/m/Timiuktkpk5p4urw6pijxfqcxx4" + ], + "albumId": 1098, + "artistIds": [ + 856 + ], + "tagIds": [ + 143 + ] + }, + { + "mbApi_typename": "track", + "name": "Do You Want To", + "id": 1401, + "storeLinks": [ + "https://play.google.com/music/m/Tjwurm7at7jeq53s6j727idsrom" + ], + "albumId": 1099, + "artistIds": [ + 827 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Time to Pretend", + "id": 1402, + "storeLinks": [ + "https://play.google.com/music/m/Tu7vqmr3d67v66ymsqzoqowmcrm" + ], + "albumId": 1100, + "artistIds": [ + 857 + ], + "tagIds": [ + 148 + ] + }, + { + "mbApi_typename": "track", + "name": "Electric", + "id": 1403, + "storeLinks": [ + "https://play.google.com/music/m/Toyka25vyuaezvikscgx6qehn2q" + ], + "albumId": 1101, + "artistIds": [ + 858 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Fire", + "id": 1404, + "storeLinks": [ + "https://play.google.com/music/m/Tloh32lriz2tszinbzmjrzmx35m" + ], + "albumId": 1102, + "artistIds": [ + 859 + ], + "tagIds": [ + 143 + ] + }, + { + "mbApi_typename": "track", + "name": "Are You Gonna Be My Girl", + "id": 1405, + "storeLinks": [ + "https://play.google.com/music/m/Tnukxw7z3udttbh4oa6pcm3p3fu" + ], + "albumId": 1103, + "artistIds": [ + 860 + ], + "tagIds": [ + 143 + ] + }, + { + "mbApi_typename": "track", + "name": "Louise", + "id": 1406, + "storeLinks": [ + "https://play.google.com/music/m/T4hwaxgiduxlcz5yub6t6x34vai" + ], + "albumId": 1104, + "artistIds": [ + 767 + ], + "tagIds": [ + 137 + ] + }, + { + "mbApi_typename": "track", + "name": "Dance with Somebody", + "id": 1407, + "storeLinks": [ + "https://play.google.com/music/m/Tb5t2lq7vcxp27n5y7q6426i7eq" + ], + "albumId": 1105, + "artistIds": [ + 861 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "No One Knows", + "id": 1408, + "storeLinks": [ + "https://play.google.com/music/m/Tondiqnmyrt4vlzi7sto2fdja3y" + ], + "albumId": 1106, + "artistIds": [ + 862 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Chelsea Dagger", + "id": 1409, + "storeLinks": [ + "https://play.google.com/music/m/Tawstbzwoxi77ze4hutgeo4kkr4" + ], + "albumId": 1107, + "artistIds": [ + 863 + ], + "tagIds": [ + 158 + ] + }, + { + "mbApi_typename": "track", + "name": "Dreaming of You", + "id": 1410, + "storeLinks": [ + "https://play.google.com/music/m/Tcgidgazv47gejiuwa2o7tvm2ou" + ], + "albumId": 1108, + "artistIds": [ + 864 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Ruby", + "id": 1411, + "storeLinks": [ + "https://play.google.com/music/m/Tvb5wkmyqzlgl3v6lo5loeyfgbu" + ], + "albumId": 1109, + "artistIds": [ + 854 + ], + "tagIds": [ + 143 + ] + }, + { + "mbApi_typename": "track", + "name": "Tonight", + "id": 1412, + "storeLinks": [ + "https://play.google.com/music/m/Tjedfq5qyggjkz7hars3eicqzva" + ], + "albumId": 1000, + "artistIds": [ + 767 + ], + "tagIds": [ + 137 + ] + }, + { + "mbApi_typename": "track", + "name": "Fluorescent Adolescent", + "id": 1413, + "storeLinks": [ + "https://play.google.com/music/m/T3bmtz65szewahaxoah3c7zu6xa" + ], + "albumId": 1110, + "artistIds": [ + 865 + ], + "tagIds": [ + 143 + ] + }, + { + "mbApi_typename": "track", + "name": "Best Day Of My Life", + "id": 1414, + "storeLinks": [ + "https://play.google.com/music/m/Tjei35f37viga74mtulpkdj3sdy" + ], + "albumId": 1111, + "artistIds": [ + 866 + ], + "tagIds": [ + 150 + ] + }, + { + "mbApi_typename": "track", + "name": "Easy Love (Original Mix)", + "id": 1415, + "storeLinks": [ + "https://play.google.com/music/m/T5voh4ohmh2mtzibfhjlm3eomui" + ], + "albumId": 1112, + "artistIds": [ + 867 + ], + "tagIds": [ + 141 + ] + }, + { + "mbApi_typename": "track", + "name": "Paradise", + "id": 1416, + "storeLinks": [ + "https://play.google.com/music/m/T73rbcs5bp5rnvzgmlluntouhyu" + ], + "albumId": 1113, + "artistIds": [ + 814 + ], + "tagIds": [ + 153 + ] + }, + { + "mbApi_typename": "track", + "name": "Adventure of a Lifetime", + "id": 1417, + "storeLinks": [ + "https://play.google.com/music/m/Tawq62zwuwo6lsafha2mhvdozxi" + ], + "albumId": 1114, + "artistIds": [ + 814 + ], + "tagIds": [ + 159 + ] + }, + { + "mbApi_typename": "track", + "name": "Love Me Again", + "id": 1418, + "storeLinks": [ + "https://play.google.com/music/m/Tlkqesr6nh74nchdorrxuqicngq" + ], + "albumId": 1081, + "artistIds": [ + 840 + ], + "tagIds": [ + 155 + ] + }, + { + "mbApi_typename": "track", + "name": "Rude", + "id": 1419, + "storeLinks": [ + "https://play.google.com/music/m/T2e2pafju6jutr5jttfhyj63mfe" + ], + "albumId": 1115, + "artistIds": [ + 868 + ], + "tagIds": [ + 160 + ] + }, + { + "mbApi_typename": "track", + "name": "I Love It (feat. Charli XCX)", + "id": 1420, + "storeLinks": [ + "https://play.google.com/music/m/Tr5cexq6tfotod46cxgpte2qkj4" + ], + "albumId": 1116, + "artistIds": [ + 869 + ], + "tagIds": [ + 148 + ] + }, + { + "mbApi_typename": "track", + "name": "Express Yourself", + "id": 1421, + "storeLinks": [ + "https://play.google.com/music/m/Tad4gdiwwi7w4xufbevagfc7zo4" + ], + "albumId": 1117, + "artistIds": [ + 870 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Budapest", + "id": 1422, + "storeLinks": [ + "https://play.google.com/music/m/Txajytbubwaivpjz4lbj6utu3sy" + ], + "albumId": 1054, + "artistIds": [ + 815 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Cheerleader (Felix Jaehn Remix) (Radio Edit)", + "id": 1423, + "storeLinks": [ + "https://play.google.com/music/m/T3zjo5g3w3uccgxrzuhy5j2e75a" + ], + "albumId": 1118, + "artistIds": [ + 871 + ], + "tagIds": [ + 141 + ] + }, + { + "mbApi_typename": "track", + "name": "Locked out of Heaven", + "id": 1424, + "storeLinks": [ + "https://play.google.com/music/m/Ttip3yx5aexoblarqrmrs2a6jju" + ], + "albumId": 1080, + "artistIds": [ + 839 + ], + "tagIds": [ + 155 + ] + }, + { + "mbApi_typename": "track", + "name": "I Need A Dollar", + "id": 1425, + "storeLinks": [ + "https://play.google.com/music/m/Tppm6pszncbvp2ohke2bvbhghr4" + ], + "albumId": 1119, + "artistIds": [ + 872 + ], + "tagIds": [ + 161 + ] + }, + { + "mbApi_typename": "track", + "name": "The Seed (2.0) (feat. Cody Chestnutt)", + "id": 1426, + "storeLinks": [ + "https://play.google.com/music/m/Tfic3cc72qhk43v3snj7s7aol4u" + ], + "albumId": 1120, + "artistIds": [ + 873 + ], + "tagIds": [ + 162 + ] + }, + { + "mbApi_typename": "track", + "name": "Mr. Blue Sky", + "id": 1427, + "storeLinks": [ + "https://play.google.com/music/m/T5lpluz6pkl7g26adl2xlqmghvq" + ], + "albumId": 1121, + "artistIds": [ + 874 + ], + "tagIds": [ + 163 + ] + }, + { + "mbApi_typename": "track", + "name": "Broken (Single Version)", + "id": 1428, + "storeLinks": [ + "https://play.google.com/music/m/Th3nbcrqd7qjsowq2kqq6qnuoce" + ], + "albumId": 1122, + "artistIds": [ + 851 + ], + "tagIds": [ + 157 + ] + }, + { + "mbApi_typename": "track", + "name": "Home", + "id": 1429, + "storeLinks": [ + "https://play.google.com/music/m/Tkpsiiorr3rejza4ynhlfwy6xza" + ], + "albumId": 1123, + "artistIds": [ + 875 + ], + "tagIds": [ + 150 + ] + }, + { + "mbApi_typename": "track", + "name": "Hypnotised", + "id": 1430, + "storeLinks": [ + "https://play.google.com/music/m/Tisllgntbgbl2wwvlu3x6j7mefu" + ], + "albumId": 1124, + "artistIds": [ + 814 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Lost In The Light", + "id": 1431, + "storeLinks": [ + "https://play.google.com/music/m/Tiubnltuhxltpafvax2u3rjwpqi" + ], + "albumId": 1125, + "artistIds": [ + 876 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "First Day Of My Life", + "id": 1432, + "storeLinks": [ + "https://play.google.com/music/m/T6amkrrjohhsuifcnuzonngosgq" + ], + "albumId": 1126, + "artistIds": [ + 877 + ], + "tagIds": [ + 149 + ] + }, + { + "mbApi_typename": "track", + "name": "Banana Pancakes", + "id": 1433, + "storeLinks": [ + "https://play.google.com/music/m/Tfsen5k5rfqpgbrff3on65gwt3e" + ], + "albumId": 1060, + "artistIds": [ + 821 + ], + "tagIds": [ + 164 + ] + }, + { + "mbApi_typename": "track", + "name": "Steal My Kisses", + "id": 1434, + "storeLinks": [ + "https://play.google.com/music/m/Tmdrw246hl2no3sbuvjgkesrqla" + ], + "albumId": 1127, + "artistIds": [ + 834 + ], + "tagIds": [ + 165 + ] + }, + { + "mbApi_typename": "track", + "name": "Sunny Road", + "id": 1435, + "storeLinks": [ + "https://play.google.com/music/m/Tglh7q6t6fioueepet6j4bhuwom" + ], + "albumId": 1128, + "artistIds": [ + 878 + ], + "tagIds": [ + 143 + ] + }, + { + "mbApi_typename": "track", + "name": "Belief", + "id": 1436, + "storeLinks": [ + "https://play.google.com/music/m/T3puithj7kbiwwtiqmciq3jx4xi" + ], + "albumId": 1129, + "artistIds": [ + 833 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Big Jumps", + "id": 1437, + "storeLinks": [ + "https://play.google.com/music/m/Tptb3ddp6rkyjqgr6dxbsaomtwq" + ], + "albumId": 1130, + "artistIds": [ + 878 + ], + "tagIds": [ + 143 + ] + }, + { + "mbApi_typename": "track", + "name": "October", + "id": 1438, + "storeLinks": [ + "https://play.google.com/music/m/Tfu6sf373727hfjoeygqus2jz2a" + ], + "albumId": 1131, + "artistIds": [ + 879 + ], + "tagIds": [ + 166 + ] + }, + { + "mbApi_typename": "track", + "name": "Caravan", + "id": 1439, + "storeLinks": [ + "https://play.google.com/music/m/Tdb2oxsevp2fey4ncqmsa4ul7ru" + ], + "albumId": 1132, + "artistIds": [ + 880 + ], + "tagIds": [ + 135 + ] + }, + { + "mbApi_typename": "track", + "name": "Gangster Trippin", + "id": 1440, + "storeLinks": [ + "https://play.google.com/music/m/Ttk7oayqjlwljpn3g2wvf53u37q" + ], + "albumId": 1133, + "artistIds": [ + 881 + ], + "tagIds": [ + 141 + ] + }, + { + "mbApi_typename": "track", + "name": "Praise You", + "id": 1441, + "storeLinks": [ + "https://play.google.com/music/m/Tfslboq4hcwklleouxvqz7n3reu" + ], + "albumId": 1133, + "artistIds": [ + 881 + ], + "tagIds": [ + 141 + ] + }, + { + "mbApi_typename": "track", + "name": "Off the Rack", + "id": 1442, + "storeLinks": [ + "https://play.google.com/music/m/Tnlxlzi2vatumod2spcvfiukw6u" + ], + "albumId": 1134, + "artistIds": [ + 882 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Perfect Match", + "id": 1443, + "storeLinks": [ + "https://play.google.com/music/m/Tbjfluqa7mt237ztaud6ivwpmcy" + ], + "albumId": 1134, + "artistIds": [ + 882 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Flesh Tight", + "id": 1444, + "storeLinks": [ + "https://play.google.com/music/m/Tm2fnecwf6qhmoh5jsb7ou4e5sa" + ], + "albumId": 1135, + "artistIds": [ + 882 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Weapon of Choice", + "id": 1445, + "storeLinks": [ + "https://play.google.com/music/m/T6x4fxv7xktptwp2qrrficqwgsa" + ], + "albumId": 1136, + "artistIds": [ + 881 + ], + "tagIds": [ + 141 + ] + }, + { + "mbApi_typename": "track", + "name": "Rockafeller Skank", + "id": 1446, + "storeLinks": [ + "https://play.google.com/music/m/Tiwoks6idilr6k7nb5b2ujjlo5u" + ], + "albumId": 1133, + "artistIds": [ + 881 + ], + "tagIds": [ + 141 + ] + }, + { + "mbApi_typename": "track", + "name": "I Like Birds", + "id": 1447, + "storeLinks": [ + "https://play.google.com/music/m/Tlrssm3tux2242gk34je4sbuvkq" + ], + "albumId": 1137, + "artistIds": [ + 883 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Euro's", + "id": 1448, + "storeLinks": [ + "https://play.google.com/music/m/Tjgamuqwv7i22jphpvyc3nagdem" + ], + "albumId": 1138, + "artistIds": [ + 884 + ], + "tagIds": [ + 167 + ] + }, + { + "mbApi_typename": "track", + "name": "Bagagedrager (feat. Sef)", + "id": 1449, + "storeLinks": [ + "https://play.google.com/music/m/Ttbgobscdc2qm32njr5c364pnly" + ], + "albumId": 1139, + "artistIds": [ + 885 + ], + "tagIds": [ + 167 + ] + }, + { + "mbApi_typename": "track", + "name": "Ik Neem Je Mee", + "id": 1450, + "storeLinks": [ + "https://play.google.com/music/m/Txe367m3owe7xdodnarxbzaorym" + ], + "albumId": 1139, + "artistIds": [ + 885 + ], + "tagIds": [ + 167 + ] + }, + { + "mbApi_typename": "track", + "name": "Burning Son", + "id": 1451, + "storeLinks": [ + "https://play.google.com/music/m/Tlnhapbgci5nysz7m257nkfbrta" + ], + "albumId": 1140, + "artistIds": [ + 886 + ], + "tagIds": [ + 137 + ] + }, + { + "mbApi_typename": "track", + "name": "Trouble", + "id": 1452, + "storeLinks": [ + "https://play.google.com/music/m/Ttdgj2ugghtp2r2fciqidpveb7a" + ], + "albumId": 1141, + "artistIds": [ + 814 + ], + "tagIds": [ + 158 + ] + }, + { + "mbApi_typename": "track", + "name": "Wonderwall (Remastered)", + "id": 1453, + "storeLinks": [ + "https://play.google.com/music/m/Tzxcv2zzmhckbtisa7fkmkm7zoi" + ], + "albumId": 1142, + "artistIds": [ + 887 + ], + "tagIds": [ + 158 + ] + }, + { + "mbApi_typename": "track", + "name": "No Surprises", + "id": 1454, + "storeLinks": [ + "https://play.google.com/music/m/Tfr247co4znl7t7krx3mgjrqogu" + ], + "albumId": 1143, + "artistIds": [ + 888 + ], + "tagIds": [ + 158 + ] + }, + { + "mbApi_typename": "track", + "name": "Elephant", + "id": 1455, + "storeLinks": [ + "https://play.google.com/music/m/Tmd6jkckj6douxlxhz6q2ljlihm" + ], + "albumId": 1144, + "artistIds": [ + 756 + ], + "tagIds": [ + 150 + ] + }, + { + "mbApi_typename": "track", + "name": "Dance Me To The End Of Love", + "id": 1456, + "storeLinks": [ + "https://play.google.com/music/m/Tkdhheyq2f3ep4lwvxmguxaxdli" + ], + "albumId": 1145, + "artistIds": [ + 889 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "War Pigs", + "id": 1457, + "storeLinks": [ + "https://play.google.com/music/m/Ts6t5innrmcyzpoa6j6sjhlqixe" + ], + "albumId": 1146, + "artistIds": [ + 890 + ], + "tagIds": [ + 168 + ] + }, + { + "mbApi_typename": "track", + "name": "Discotheek", + "id": 1458, + "storeLinks": [ + "https://play.google.com/music/m/Tqrz75f5xbuyinxmgccux6nquq4" + ], + "albumId": 1147, + "artistIds": [ + 891 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Your Woman", + "id": 1459, + "storeLinks": [ + "https://play.google.com/music/m/T6cadqoangwwavjyugvwokmicl4" + ], + "albumId": 1148, + "artistIds": [ + 892 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "How Bizarre", + "id": 1460, + "storeLinks": [ + "https://play.google.com/music/m/Tyxh2wcxlo2iqcfxx2tx2zmsuim" + ], + "albumId": 1149, + "artistIds": [ + 893 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Dawn (Hannes Kretzer Remix)", + "id": 1461, + "storeLinks": [ + "https://play.google.com/music/m/Txmrvmvnqrgzmoc5ef2rqzbkws4" + ], + "albumId": 1150, + "artistIds": [ + 894 + ], + "tagIds": [ + 141 + ] + }, + { + "mbApi_typename": "track", + "name": "A Little Less Conversation", + "id": 1462, + "storeLinks": [ + "https://play.google.com/music/m/Tws523w2do5wwsj64ail5aajxzi" + ], + "albumId": 1151, + "artistIds": [ + 895 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Haus Am See", + "id": 1463, + "storeLinks": [ + "https://play.google.com/music/m/Tlze6qj5yvezkgyb5x3hdrojwby" + ], + "albumId": 1152, + "artistIds": [ + 896 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "I Will Survive", + "id": 1464, + "storeLinks": [ + "https://play.google.com/music/m/Tnyefpd7ivbff7qp43kg3zb7zoa" + ], + "albumId": 1153, + "artistIds": [ + 897 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Vampire", + "id": 1465, + "storeLinks": [ + "https://play.google.com/music/m/Tzvhxmhxrj625tnmwpsrdi244ea" + ], + "albumId": 1079, + "artistIds": [ + 838 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Rearview Mirrow", + "id": 1466, + "storeLinks": [ + "https://play.google.com/music/m/Tsksimbyooadsylop5srgz6fjee" + ], + "albumId": 1154, + "artistIds": [ + 898 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Halfway up the Hill (feat. Appel & Eefje de Visser)", + "id": 1467, + "storeLinks": [ + "https://play.google.com/music/m/Tngtgplfr6qh5ldskciuzftz4ui" + ], + "albumId": 1155, + "artistIds": [ + 899 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Try Again", + "id": 1468, + "storeLinks": [ + "https://play.google.com/music/m/Tqoc6am24twsvfxfznjdy5z4gma" + ], + "albumId": 1156, + "artistIds": [ + 793 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Hold On To", + "id": 1469, + "storeLinks": [ + "https://play.google.com/music/m/Tq7uslaxbktsjgnjugihygmbdrm" + ], + "albumId": 1157, + "artistIds": [ + 900 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Darling", + "id": 1470, + "storeLinks": [ + "https://play.google.com/music/m/Tfqcmx45c6gnpuxc3n4gnn7ywfe" + ], + "albumId": 1079, + "artistIds": [ + 838 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Fever", + "id": 1471, + "storeLinks": [ + "https://play.google.com/music/m/To2tp4ndka6mhjvkowhdcwjz2hm" + ], + "albumId": 1158, + "artistIds": [ + 901 + ], + "tagIds": [ + 169 + ] + }, + { + "mbApi_typename": "track", + "name": "Gloria (feat. The Gospel Queens)", + "id": 1472, + "storeLinks": [ + "https://play.google.com/music/m/T5bbn6dj4loq32jq2nrmjsr22iy" + ], + "albumId": 1159, + "artistIds": [ + 902 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "City Of Stars (Humming) (feat. Emma Stone)", + "id": 1473, + "storeLinks": [ + "https://play.google.com/music/m/T2dtihklqy3qiuxpzt7bg34pjue" + ], + "albumId": 1160, + "artistIds": [ + 903 + ], + "tagIds": [ + 135 + ] + }, + { + "mbApi_typename": "track", + "name": "Las Calaveras", + "id": 1474, + "storeLinks": [ + "https://play.google.com/music/m/Tj5hrwi4gldjlqvg67n5ipm7pky" + ], + "albumId": 1161, + "artistIds": [ + 886 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "The Architect", + "id": 1475, + "storeLinks": [ + "https://play.google.com/music/m/Tjvagy5glx7k4v63lphpzq3elhi" + ], + "albumId": 1162, + "artistIds": [ + 904 + ], + "tagIds": [ + 149 + ] + }, + { + "mbApi_typename": "track", + "name": "La crise", + "id": 1476, + "storeLinks": [ + "https://play.google.com/music/m/Tvypaphqvdse4wa6hx5hi5r4yre" + ], + "albumId": 1163, + "artistIds": [ + 905 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Twenty Flight Rock", + "id": 1477, + "storeLinks": [ + "https://play.google.com/music/m/Tbc6vlfmhuuhgnrsgiv4yvzshpm" + ], + "albumId": 1164, + "artistIds": [ + 906 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "It's Time", + "id": 1478, + "storeLinks": [ + "https://play.google.com/music/m/T2vf3uvxlceeg2cstc3sahil6xa" + ], + "albumId": 1165, + "artistIds": [ + 907 + ], + "tagIds": [ + 141 + ] + }, + { + "mbApi_typename": "track", + "name": "Tennessee Turkey (And a Carolina Chick)", + "id": 1479, + "storeLinks": [ + "https://play.google.com/music/m/Ttrocevnzdxnadcfnatioas3mbe" + ], + "albumId": 1166, + "artistIds": [ + 908 + ], + "tagIds": [ + 164 + ] + }, + { + "mbApi_typename": "track", + "name": "Input Source Select (Vinticious Version)", + "id": 1480, + "storeLinks": [ + "https://play.google.com/music/m/Tqat7mns6h4jtxzozowbn2dzrru" + ], + "albumId": 1167, + "artistIds": [ + 810 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "I Looked for You", + "id": 1481, + "storeLinks": [ + "https://play.google.com/music/m/Tcliqzdvtsdfz54ik6pgcifgaze" + ], + "albumId": 1168, + "artistIds": [ + 909 + ], + "tagIds": [ + 150 + ] + }, + { + "mbApi_typename": "track", + "name": "How Long", + "id": 1482, + "storeLinks": [ + "https://play.google.com/music/m/Tgtf4k4jkwsx7ziufmsasca37ka" + ], + "albumId": 1169, + "artistIds": [ + 910 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Pink & Blue", + "id": 1483, + "storeLinks": [ + "https://play.google.com/music/m/Ttpr5erwxthp4fngldbrjkwpiyu" + ], + "albumId": 1170, + "artistIds": [ + 911 + ], + "tagIds": [ + 150 + ] + }, + { + "mbApi_typename": "track", + "name": "These Boots Are Made For Walkin'", + "id": 1484, + "storeLinks": [ + "https://play.google.com/music/m/Tn3wgfvsngr7ajohf3el35jagti" + ], + "albumId": 1171, + "artistIds": [ + 912 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Good Now (Ponzo Light Version)", + "id": 1485, + "storeLinks": [ + "https://play.google.com/music/m/T7t4oiffvjqavmrzjpvisd7ezwe" + ], + "albumId": 1172, + "artistIds": [ + 900 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Everything I Do Ooh Ooh (Ponzo Light Version)", + "id": 1486, + "storeLinks": [ + "https://play.google.com/music/m/Tbo4k4myekhq7ysyb2q6eezxlya" + ], + "albumId": 1172, + "artistIds": [ + 900 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "From the Sun (Ponzo Light Version)", + "id": 1487, + "storeLinks": [ + "https://play.google.com/music/m/Tijb6warhkbbiwvwt53l3y4golq" + ], + "albumId": 1172, + "artistIds": [ + 900 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Memory Steel (Ponzo Light Version)", + "id": 1488, + "storeLinks": [ + "https://play.google.com/music/m/Tp4f6mutibz6l2qsx7p3d6smo3q" + ], + "albumId": 1172, + "artistIds": [ + 900 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Carry On (Ponzo Light Version)", + "id": 1489, + "storeLinks": [ + "https://play.google.com/music/m/Tnpkyljwkbyx3x3ezap3czg444m" + ], + "albumId": 1172, + "artistIds": [ + 900 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Filthy Rich (Ponzo Light Version)", + "id": 1490, + "storeLinks": [ + "https://play.google.com/music/m/Tl6og57opdvayofnyiiivonwsku" + ], + "albumId": 1172, + "artistIds": [ + 900 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Everything I Do Ooh Ooh (Live @ 3voor12)", + "id": 1491, + "storeLinks": [ + "https://play.google.com/music/m/Ttnmgciz255m7lx4ccuqtq43tae" + ], + "albumId": 1172, + "artistIds": [ + 900 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Lights", + "id": 1492, + "storeLinks": [ + "https://play.google.com/music/m/T4xy3i2nymg527v24ebfb7x2fge" + ], + "albumId": 1173, + "artistIds": [ + 900 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Bluebird", + "id": 1493, + "storeLinks": [ + "https://play.google.com/music/m/T2p536tj47ernkscae4kyz7hmva" + ], + "albumId": 1173, + "artistIds": [ + 900 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Remember What It Feels Like", + "id": 1494, + "storeLinks": [ + "https://play.google.com/music/m/Tvpef5nllczrwtpcgjto3kjmqr4" + ], + "albumId": 1173, + "artistIds": [ + 900 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Paris Syndrome", + "id": 1495, + "storeLinks": [ + "https://play.google.com/music/m/Trs7dq5el64pc6nctr5xxwzimcu" + ], + "albumId": 1173, + "artistIds": [ + 900 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Good God", + "id": 1496, + "storeLinks": [ + "https://play.google.com/music/m/Tcyfmfibixhgzquk3e5xxbaedna" + ], + "albumId": 1173, + "artistIds": [ + 900 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "I Am That Bird", + "id": 1497, + "storeLinks": [ + "https://play.google.com/music/m/Tqnkaqna6szpacwug5lt6cxbpdu" + ], + "albumId": 1173, + "artistIds": [ + 900 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "New Orleans", + "id": 1498, + "storeLinks": [ + "https://play.google.com/music/m/T4cii4zb5g6nwaos77dqafi7she" + ], + "albumId": 1173, + "artistIds": [ + 900 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Sun", + "id": 1499, + "storeLinks": [ + "https://play.google.com/music/m/Tzh3clxukggycxfn2vq66hshi4e" + ], + "albumId": 1173, + "artistIds": [ + 900 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Ocean", + "id": 1500, + "storeLinks": [ + "https://play.google.com/music/m/Tzm2udwusx2lgmsyuvcq67k2xr4" + ], + "albumId": 1173, + "artistIds": [ + 900 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Friend", + "id": 1501, + "storeLinks": [ + "https://play.google.com/music/m/Tjxfdueryvj45wnhi5qpwq2nexu" + ], + "albumId": 1173, + "artistIds": [ + 900 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Stay Young", + "id": 1502, + "storeLinks": [ + "https://play.google.com/music/m/Ttbre535utlwwithiffp7a7k6oi" + ], + "albumId": 1173, + "artistIds": [ + 900 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "OK", + "id": 1503, + "storeLinks": [ + "https://play.google.com/music/m/T7amal36yzhskxald7ljflqenne" + ], + "albumId": 1173, + "artistIds": [ + 900 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Cold Little Heart", + "id": 1504, + "storeLinks": [ + "https://play.google.com/music/m/T6bxfviaudsoxbpflklzjdlm45i" + ], + "albumId": 1174, + "artistIds": [ + 913 + ], + "tagIds": [ + 170 + ] + }, + { + "mbApi_typename": "track", + "name": "Black Man In A White World", + "id": 1505, + "storeLinks": [ + "https://play.google.com/music/m/Tzrx75uprx6jpwq26wysc5a4zai" + ], + "albumId": 1174, + "artistIds": [ + 913 + ], + "tagIds": [ + 170 + ] + }, + { + "mbApi_typename": "track", + "name": "Falling", + "id": 1506, + "storeLinks": [ + "https://play.google.com/music/m/T7oh5fv5433rzbc7dx2tqfrv5pe" + ], + "albumId": 1174, + "artistIds": [ + 913 + ], + "tagIds": [ + 170 + ] + }, + { + "mbApi_typename": "track", + "name": "Place I Belong", + "id": 1507, + "storeLinks": [ + "https://play.google.com/music/m/Tujux5u4vw4epe3ny3euhrj6gwy" + ], + "albumId": 1174, + "artistIds": [ + 913 + ], + "tagIds": [ + 170 + ] + }, + { + "mbApi_typename": "track", + "name": "Love & Hate", + "id": 1508, + "storeLinks": [ + "https://play.google.com/music/m/Tasy7algj6naysv7rqxsffsqugq" + ], + "albumId": 1174, + "artistIds": [ + 913 + ], + "tagIds": [ + 170 + ] + }, + { + "mbApi_typename": "track", + "name": "One More Night", + "id": 1509, + "storeLinks": [ + "https://play.google.com/music/m/Tyo244u22zxu4g4bscsjpkk75me" + ], + "albumId": 1174, + "artistIds": [ + 913 + ], + "tagIds": [ + 170 + ] + }, + { + "mbApi_typename": "track", + "name": "I'll Never Love", + "id": 1510, + "storeLinks": [ + "https://play.google.com/music/m/Tjoc42cbjrvq5nyyyckorznrrli" + ], + "albumId": 1174, + "artistIds": [ + 913 + ], + "tagIds": [ + 170 + ] + }, + { + "mbApi_typename": "track", + "name": "Rule The World", + "id": 1511, + "storeLinks": [ + "https://play.google.com/music/m/Tbv7x2okqcgbdxszdzar4fr2enq" + ], + "albumId": 1174, + "artistIds": [ + 913 + ], + "tagIds": [ + 170 + ] + }, + { + "mbApi_typename": "track", + "name": "Father's Child", + "id": 1512, + "storeLinks": [ + "https://play.google.com/music/m/Tjnyawd4rpsqnfgpkdvg6lbj3pu" + ], + "albumId": 1174, + "artistIds": [ + 913 + ], + "tagIds": [ + 170 + ] + }, + { + "mbApi_typename": "track", + "name": "The Final Frame", + "id": 1513, + "storeLinks": [ + "https://play.google.com/music/m/Tvkturxoo5chegasomdofrprroy" + ], + "albumId": 1174, + "artistIds": [ + 913 + ], + "tagIds": [ + 170 + ] + }, + { + "mbApi_typename": "track", + "name": "My Baby Just Cares for Me", + "id": 1514, + "storeLinks": [ + "https://play.google.com/music/m/Tdneyagc3dmjtkonqvtetxqebsi" + ], + "albumId": 1175, + "artistIds": [ + 914 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "A Good Man Is Hard To Find", + "id": 1515, + "storeLinks": [ + "https://play.google.com/music/m/Ty7zxhnf7ze4wnnlj22fbpzeori" + ], + "albumId": 1176, + "artistIds": [ + 915 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Be-Bop-a-Lula", + "id": 1516, + "storeLinks": [ + "https://play.google.com/music/m/Txgcta6rg2nhzaj4rb2cevof2ge" + ], + "albumId": 1177, + "artistIds": [ + 916 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Clara-Bella", + "id": 1517, + "storeLinks": [ + "https://play.google.com/music/m/Ttg5tkknb3jvakk52ptmhntjwru" + ], + "albumId": 1178, + "artistIds": [ + 917 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Cow Cow Boogie", + "id": 1518, + "storeLinks": [ + "https://play.google.com/music/m/Ttesosnjuaxgwytdu7y7ftf2czm" + ], + "albumId": 1179, + "artistIds": [ + 918 + ], + "tagIds": [ + 170 + ] + }, + { + "mbApi_typename": "track", + "name": "Fever", + "id": 1519, + "storeLinks": [ + "https://play.google.com/music/m/Tynr6c2pefkcwqnofzuqscriuxu" + ], + "albumId": 1180, + "artistIds": [ + 919 + ], + "tagIds": [ + 171 + ] + }, + { + "mbApi_typename": "track", + "name": "Let Me Go Home, Whiskey", + "id": 1520, + "storeLinks": [ + "https://play.google.com/music/m/Tfz5xpnumgafs2sgfonxwsb5wh4" + ], + "albumId": 1181, + "artistIds": [ + 920 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Gonna Dance Tonight (Pt. 1)", + "id": 1521, + "storeLinks": [ + "https://play.google.com/music/m/Tsu3oiv36g4icduq2fmqcpymxxe" + ], + "albumId": 1182, + "artistIds": [ + 921 + ], + "tagIds": [ + 172 + ] + }, + { + "mbApi_typename": "track", + "name": "Good Rockin' Daddy", + "id": 1522, + "storeLinks": [ + "https://play.google.com/music/m/Tw4paws7lonfyshfrotlibs5tba" + ], + "albumId": 1183, + "artistIds": [ + 922 + ], + "tagIds": [ + 170 + ] + }, + { + "mbApi_typename": "track", + "name": "Rock The Bop", + "id": 1523, + "storeLinks": [ + "https://play.google.com/music/m/Tr5rspxkbzbjgqncazkdf3sxhbu" + ], + "albumId": 1184, + "artistIds": [ + 915 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "You Ain't Got It No More", + "id": 1524, + "storeLinks": [ + "https://play.google.com/music/m/Tp73ccfz776nqe7uhvn4rb4ttpa" + ], + "albumId": 1185, + "artistIds": [ + 923 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Swing Paradise (Slow Version)", + "id": 1525, + "storeLinks": [ + "https://play.google.com/music/m/Tgnkw2rcf6iellpdqamoxrrcxp4" + ], + "albumId": 1186, + "artistIds": [ + 924 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Lean Baby", + "id": 1526, + "storeLinks": [ + "https://play.google.com/music/m/Ti2qlira5s6xfxdtrjxnrucewgm" + ], + "albumId": 1187, + "artistIds": [ + 925 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Benny's Bugle", + "id": 1527, + "storeLinks": [ + "https://play.google.com/music/m/Ttmrvbbroliuo5nlebcuzxlrqgu" + ], + "albumId": 1188, + "artistIds": [ + 926 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Ona", + "id": 1528, + "storeLinks": [ + "https://play.google.com/music/m/T2bthv4d2qkzbef7mrlmbz2lk5u" + ], + "albumId": 1189, + "artistIds": [ + 924 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Little Brown Jug", + "id": 1529, + "storeLinks": [ + "https://play.google.com/music/m/T6e2rbojgowkmkgbrtjdtz6jmse" + ], + "albumId": 1190, + "artistIds": [ + 927 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "I Wan'na Be Like You", + "id": 1530, + "storeLinks": [ + "https://play.google.com/music/m/Tq2mvrs5ziwdb3dfvw6yes4ib6a" + ], + "albumId": 1191, + "artistIds": [ + 928 + ], + "tagIds": [ + 135 + ] + }, + { + "mbApi_typename": "track", + "name": "The Goon Drag", + "id": 1531, + "storeLinks": [ + "https://play.google.com/music/m/Tqt3xxns3vcwte7kyzhvr4l2jtq" + ], + "albumId": 1192, + "artistIds": [ + 929 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Black Swamp Village", + "id": 1532, + "storeLinks": [ + "https://play.google.com/music/m/Tait56hlgw2u3hkeo7j6fem2noq" + ], + "albumId": 1193, + "artistIds": [ + 930 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Comme ci, comme ça", + "id": 1533, + "storeLinks": [ + "https://play.google.com/music/m/Tijmk3zafwfdu47vtpl7wx36rvi" + ], + "albumId": 1194, + "artistIds": [ + 931 + ], + "tagIds": [ + 173 + ] + }, + { + "mbApi_typename": "track", + "name": "Twenty Four Robbers", + "id": 1534, + "storeLinks": [ + "https://play.google.com/music/m/Tdzuqkqcnisnt2bt74i4cz67isq" + ], + "albumId": 1195, + "artistIds": [ + 932 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "24 Robbers", + "id": 1535, + "storeLinks": [ + "https://play.google.com/music/m/Tg25jm62urp2huyfdrpha5poro4" + ], + "albumId": 1196, + "artistIds": [ + 933 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "24 Robbers", + "id": 1536, + "storeLinks": [ + "https://play.google.com/music/m/Tlfmpasyreqrgoav6ufvfcxa7qi" + ], + "albumId": 1197, + "artistIds": [ + 934 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Twentyfour Robbers (2001 Remaster)", + "id": 1537, + "storeLinks": [ + "https://play.google.com/music/m/Tvhscflojrfla6bplv73demprry" + ], + "albumId": 1198, + "artistIds": [ + 935 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Twenty-Four Robbers", + "id": 1538, + "storeLinks": [ + "https://play.google.com/music/m/Thsk2iyjv7vn4evzlucxajz724m" + ], + "albumId": 1199, + "artistIds": [ + 936 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Twenty Four Robbers", + "id": 1539, + "storeLinks": [ + "https://play.google.com/music/m/Tmlg3wvm3ldospevjvsgvvgcaz4" + ], + "albumId": 1200, + "artistIds": [ + 937 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Tuxedo Junction", + "id": 1540, + "storeLinks": [ + "https://play.google.com/music/m/Tkap4qk74gmmugj5ynebjwyashi" + ], + "albumId": 1201, + "artistIds": [ + 938 + ], + "tagIds": [ + 138 + ] + }, + { + "mbApi_typename": "track", + "name": "Just A Little Bit South Of North Carolina", + "id": 1541, + "storeLinks": [ + "https://play.google.com/music/m/Tt7muv7vrukdfjoy42g372iq6mq" + ], + "albumId": 1202, + "artistIds": [ + 939 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Caldonia Boogie (feat. Ella Fitzgerald, Bing Crosby, Louis Armstrong & The Tympany Five)", + "id": 1542, + "storeLinks": [ + "https://play.google.com/music/m/Tj34bzjf74vrog3b37njodzq4sa" + ], + "albumId": 1203, + "artistIds": [ + 940 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Small Talk", + "id": 1543, + "storeLinks": [ + "https://play.google.com/music/m/Tzwdjc2uiwmdxngvuxlqvl2opgi" + ], + "albumId": 1204, + "artistIds": [ + 924 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Joshua Fit the Battle of Jericho", + "id": 1544, + "storeLinks": [ + "https://play.google.com/music/m/Tgqetkipfln6xc6uo3p7iasctyi" + ], + "albumId": 1205, + "artistIds": [ + 941 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Wondering Where", + "id": 1545, + "storeLinks": [ + "https://play.google.com/music/m/Tdgkw5vb73enx4x6lrookduteba" + ], + "albumId": 1190, + "artistIds": [ + 927 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Wham!!!", + "id": 1546, + "storeLinks": [ + "https://play.google.com/music/m/T2a5d2y7eeb57hzdvw2cgi4prpy" + ], + "albumId": 1206, + "artistIds": [ + 942 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Posin’", + "id": 1547, + "storeLinks": [ + "https://play.google.com/music/m/Tutioaitvlzg343ey457rjz44eq" + ], + "albumId": 1207, + "artistIds": [ + 745 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Sweet Sue – Just You", + "id": 1548, + "storeLinks": [ + "https://play.google.com/music/m/Tqmbswnmyvss5cusucq6c2ke7ma" + ], + "albumId": 1208, + "artistIds": [ + 943 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Flying Home", + "id": 1549, + "storeLinks": [ + "https://play.google.com/music/m/Tywxvuaifhzo67kjs7xmnzluxsy" + ], + "albumId": 1186, + "artistIds": [ + 924 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "That's How I Feel About You", + "id": 1550, + "storeLinks": [ + "https://play.google.com/music/m/T2vspklykykt7rgd254slzrzqlu" + ], + "albumId": 1209, + "artistIds": [ + 944 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Rooster", + "id": 1551, + "storeLinks": [ + "https://play.google.com/music/m/Tx445rphslx6hfcs4zdmcjs2goy" + ], + "albumId": 1210, + "artistIds": [ + 945 + ], + "tagIds": [ + 174 + ] + }, + { + "mbApi_typename": "track", + "name": "More Than a Feeling", + "id": 1552, + "storeLinks": [ + "https://play.google.com/music/m/Tdkdw7vlrmcajvpphxgq27hhgee" + ], + "albumId": 1211, + "artistIds": [ + 946 + ], + "tagIds": [ + 145 + ] + }, + { + "mbApi_typename": "track", + "name": "Godzilla", + "id": 1553, + "storeLinks": [ + "https://play.google.com/music/m/T3lohhpxrbdranzd44ssaggwiiq" + ], + "albumId": 1212, + "artistIds": [ + 947 + ], + "tagIds": [ + 175 + ] + }, + { + "mbApi_typename": "track", + "name": "Mongoose", + "id": 1554, + "storeLinks": [ + "https://play.google.com/music/m/T3uw242lrcveb7ocbyvny4qpk2q" + ], + "albumId": 1212, + "artistIds": [ + 947 + ], + "tagIds": [ + 175 + ] + }, + { + "mbApi_typename": "track", + "name": "Chameleon", + "id": 1555, + "storeLinks": [ + "https://play.google.com/music/m/Tsx3rjkkgbg6pbvikwkbtfybp3i" + ], + "albumId": 1213, + "artistIds": [ + 948 + ], + "tagIds": [ + 176 + ] + }, + { + "mbApi_typename": "track", + "name": "Purple Pills", + "id": 1556, + "storeLinks": [ + "https://play.google.com/music/m/Tv3vgpuzjdcr7o77oyghr3sqrbq" + ], + "albumId": 1214, + "artistIds": [ + 949 + ], + "tagIds": [ + 167 + ] + }, + { + "mbApi_typename": "track", + "name": "Chambermaid Swing", + "id": 1557, + "storeLinks": [ + "https://play.google.com/music/m/T2oteyoag6w67wkfm7en2srotlm" + ], + "albumId": 1215, + "artistIds": [ + 950 + ], + "tagIds": [ + 141 + ] + }, + { + "mbApi_typename": "track", + "name": "Changing", + "id": 1558, + "storeLinks": [ + "https://play.google.com/music/m/Tutst7e7gpgd6ujtbfaxxbohhea" + ], + "albumId": 1216, + "artistIds": [ + 951 + ], + "tagIds": [ + 177 + ] + }, + { + "mbApi_typename": "track", + "name": "I'm the Mountain", + "id": 1559, + "storeLinks": [ + "https://play.google.com/music/m/Tfv4qoencezc2i5ptotknnts6qq" + ], + "albumId": 1217, + "artistIds": [ + 952 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Sun And Mist", + "id": 1560, + "storeLinks": [ + "https://play.google.com/music/m/T3bqo3vgew6g66vk7jocjuyccu4" + ], + "albumId": 1218, + "artistIds": [ + 953 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Eatin' Dust", + "id": 1561, + "storeLinks": [ + "https://play.google.com/music/m/Ticqjks4cfwrektopverl3iphxu" + ], + "albumId": 1212, + "artistIds": [ + 947 + ], + "tagIds": [ + 175 + ] + }, + { + "mbApi_typename": "track", + "name": "Moving In Stereo", + "id": 1562, + "storeLinks": [ + "https://play.google.com/music/m/Tr5d74ap4yzwlllxjhnqz776oti" + ], + "albumId": 1219, + "artistIds": [ + 947 + ], + "tagIds": [ + 175 + ] + }, + { + "mbApi_typename": "track", + "name": "Electric Mistress", + "id": 1563, + "storeLinks": [ + "https://play.google.com/music/m/Ttwvqw4qcokzljccokj74jzqyda" + ], + "albumId": 1217, + "artistIds": [ + 952 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Bright Like the Morning", + "id": 1564, + "storeLinks": [ + "https://play.google.com/music/m/Tgwg7kvjsldydtbwgrjz3bipcpu" + ], + "albumId": 1217, + "artistIds": [ + 952 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Wound", + "id": 1565, + "storeLinks": [ + "https://play.google.com/music/m/Tazgan2hoizvwi2ieoare5cu5xi" + ], + "albumId": 1220, + "artistIds": [ + 952 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Balshazzar", + "id": 1566, + "storeLinks": [ + "https://play.google.com/music/m/Tc6kd72un5nzekkxkjcdhc5muda" + ], + "albumId": 1218, + "artistIds": [ + 953 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Queen Of The Desert", + "id": 1567, + "storeLinks": [ + "https://play.google.com/music/m/T65p2emk6cbsnfo4gkhm5wh7xh4" + ], + "albumId": 1218, + "artistIds": [ + 953 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Mammoth Caravan", + "id": 1568, + "storeLinks": [ + "https://play.google.com/music/m/Tvub3uwq55nok26a3srmuyv7ihm" + ], + "albumId": 1218, + "artistIds": [ + 953 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Autopilot", + "id": 1569, + "storeLinks": [ + "https://play.google.com/music/m/Tyenw22gogjomwjpa7ujsxgvsvy" + ], + "albumId": 1221, + "artistIds": [ + 954 + ], + "tagIds": [ + 178 + ] + }, + { + "mbApi_typename": "track", + "name": "Here We Come", + "id": 1570, + "storeLinks": [ + "https://play.google.com/music/m/T64mlv6h3ukxygbxlsiywznjkmm" + ], + "albumId": 1222, + "artistIds": [ + 955 + ], + "tagIds": [ + 152 + ] + }, + { + "mbApi_typename": "track", + "name": "Untitled", + "id": 1571, + "storeLinks": [ + "https://play.google.com/music/m/Tcxy6pwwmh6lvdf4rpdgfvyvanu" + ], + "albumId": 1223, + "artistIds": [ + 954 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "All The Way Down", + "id": 1572, + "storeLinks": [ + "https://play.google.com/music/m/T73on7fa2pygp4v5rvxe34g3zja" + ], + "albumId": 1224, + "artistIds": [ + 956 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "F.Y.I'm Free", + "id": 1573, + "storeLinks": [ + "https://play.google.com/music/m/Tiq62yrtb6ndn4yo3m6z3lajkcu" + ], + "albumId": 1223, + "artistIds": [ + 954 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Open Passageways", + "id": 1574, + "storeLinks": [ + "https://play.google.com/music/m/Tqtplx7mznrfhqc7dpsq4gmafae" + ], + "albumId": 1225, + "artistIds": [ + 957 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "When God Comes Back", + "id": 1575, + "storeLinks": [ + "https://play.google.com/music/m/Tsqatvdndclhmrjeugkhzr2qbuu" + ], + "albumId": 1226, + "artistIds": [ + 957 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Fishbelly 86 Onions", + "id": 1576, + "storeLinks": [ + "https://play.google.com/music/m/T3cnkahox4d7a6zomnogzdpubl4" + ], + "albumId": 1227, + "artistIds": [ + 957 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Don't Bring Me Coffee", + "id": 1577, + "storeLinks": [ + "https://play.google.com/music/m/Tbcmdvpc2s5n7x5luquyq37nfnu" + ], + "albumId": 1228, + "artistIds": [ + 957 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Violence of the Red Sea", + "id": 1578, + "storeLinks": [ + "https://play.google.com/music/m/T2coonyxtfqmqti6gb4e7ne7foq" + ], + "albumId": 1229, + "artistIds": [ + 958 + ], + "tagIds": [ + 175 + ] + }, + { + "mbApi_typename": "track", + "name": "Black Heaven", + "id": 1579, + "storeLinks": [ + "https://play.google.com/music/m/Taqwxgueoqucs4sxkwt5kxufadi" + ], + "albumId": 1230, + "artistIds": [ + 958 + ], + "tagIds": [ + 175 + ] + }, + { + "mbApi_typename": "track", + "name": "Gifted by the Wind", + "id": 1580, + "storeLinks": [ + "https://play.google.com/music/m/Tgmtlozrah25wfaquripczj36fi" + ], + "albumId": 1230, + "artistIds": [ + 958 + ], + "tagIds": [ + 175 + ] + }, + { + "mbApi_typename": "track", + "name": "Uluru Rock", + "id": 1581, + "storeLinks": [ + "https://play.google.com/music/m/Tt3gspy57bpw7vrwcjjhfxyb4tm" + ], + "albumId": 1229, + "artistIds": [ + 958 + ], + "tagIds": [ + 175 + ] + }, + { + "mbApi_typename": "track", + "name": "Unitive Knowledge of the Godhead", + "id": 1582, + "storeLinks": [ + "https://play.google.com/music/m/Tfgblul7aoadrpbzsgbsdcwnr7e" + ], + "albumId": 1231, + "artistIds": [ + 959 + ], + "tagIds": [ + 177 + ] + }, + { + "mbApi_typename": "track", + "name": "Pilgrimage (Reprise)", + "id": 1583, + "storeLinks": [ + "https://play.google.com/music/m/Tncmvcdvb4cjw5wfg3pfh633dqe" + ], + "albumId": 1231, + "artistIds": [ + 959 + ], + "tagIds": [ + 177 + ] + }, + { + "mbApi_typename": "track", + "name": "Distance", + "id": 1584, + "storeLinks": [ + "https://play.google.com/music/m/Tzz7nsqvtwmw6dwnmshbv2fhjq4" + ], + "albumId": 1232, + "artistIds": [ + 960 + ], + "tagIds": [ + 179 + ] + }, + { + "mbApi_typename": "track", + "name": "The Ghost of Charlie Barracuda", + "id": 1585, + "storeLinks": [ + "https://play.google.com/music/m/T4o4exnjduggytekrgbjduiobnm" + ], + "albumId": 1232, + "artistIds": [ + 960 + ], + "tagIds": [ + 179 + ] + }, + { + "mbApi_typename": "track", + "name": "Storm Coming Down", + "id": 1586, + "storeLinks": [ + "https://play.google.com/music/m/To65bqi3pvdfioy5y7rva7jbvhq" + ], + "albumId": 1232, + "artistIds": [ + 960 + ], + "tagIds": [ + 179 + ] + }, + { + "mbApi_typename": "track", + "name": "Tired Old Dog", + "id": 1587, + "storeLinks": [ + "https://play.google.com/music/m/Tcfkinkgjzcuajij7xp5gpjojti" + ], + "albumId": 1232, + "artistIds": [ + 960 + ], + "tagIds": [ + 179 + ] + }, + { + "mbApi_typename": "track", + "name": "Root to Root", + "id": 1588, + "storeLinks": [ + "https://play.google.com/music/m/T7javg3q4yx4smivudx6wsizmx4" + ], + "albumId": 1232, + "artistIds": [ + 960 + ], + "tagIds": [ + 179 + ] + }, + { + "mbApi_typename": "track", + "name": "Spirals", + "id": 1589, + "storeLinks": [ + "https://play.google.com/music/m/Tqcp2bqs4bwbdz5ydsq74d4jkum" + ], + "albumId": 1233, + "artistIds": [ + 961 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Prism", + "id": 1590, + "storeLinks": [ + "https://play.google.com/music/m/Tjxpombti7zflzzriibw4al7az4" + ], + "albumId": 1233, + "artistIds": [ + 961 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Ida", + "id": 1591, + "storeLinks": [ + "https://play.google.com/music/m/Tfdnllzghzx6vjamwwzdtxqdvra" + ], + "albumId": 1233, + "artistIds": [ + 961 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Axis", + "id": 1592, + "storeLinks": [ + "https://play.google.com/music/m/T22vlegmzq4ayial6lminuyttaq" + ], + "albumId": 1233, + "artistIds": [ + 961 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Ellipsis", + "id": 1593, + "storeLinks": [ + "https://play.google.com/music/m/Tmosdzrbh3al74tlv4gk44jcnru" + ], + "albumId": 1233, + "artistIds": [ + 961 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Soul Of Fire", + "id": 1594, + "storeLinks": [ + "https://play.google.com/music/m/Tyu5ucjyyqytacsb2mpakqwxmjq" + ], + "albumId": 1216, + "artistIds": [ + 951 + ], + "tagIds": [ + 177 + ] + }, + { + "mbApi_typename": "track", + "name": "Rip Van Winkle", + "id": 1595, + "storeLinks": [ + "https://play.google.com/music/m/Txm2t2hmr5aktpcwzzjpfkm65g4" + ], + "albumId": 1216, + "artistIds": [ + 951 + ], + "tagIds": [ + 177 + ] + }, + { + "mbApi_typename": "track", + "name": "Black Saint", + "id": 1596, + "storeLinks": [ + "https://play.google.com/music/m/Tkcdrq6ezexvbn55qpbnkoer7fy" + ], + "albumId": 1216, + "artistIds": [ + 951 + ], + "tagIds": [ + 177 + ] + }, + { + "mbApi_typename": "track", + "name": "3-5-7", + "id": 1597, + "storeLinks": [ + "https://play.google.com/music/m/Twzfbxhzd4pcentupb5hl6qtpyy" + ], + "albumId": 1234, + "artistIds": [ + 957 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Silverstruck", + "id": 1598, + "storeLinks": [ + "https://play.google.com/music/m/Tylei4nqw3ll5uw3ukpsnoqscy4" + ], + "albumId": 1218, + "artistIds": [ + 953 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Losing Sleep", + "id": 1599, + "storeLinks": [ + "https://play.google.com/music/m/Tbz2t6ekrhww53665p7mtkczdve" + ], + "albumId": 1218, + "artistIds": [ + 953 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "A Tip Of Salem", + "id": 1600, + "storeLinks": [ + "https://play.google.com/music/m/Tldzyahro6imli5sjslzh77gpw4" + ], + "albumId": 1218, + "artistIds": [ + 953 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Cold Hand", + "id": 1601, + "storeLinks": [ + "https://play.google.com/music/m/Tou2yuadfkk3tz7wwhjxib77kq4" + ], + "albumId": 1235, + "artistIds": [ + 953 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Winter Sunn", + "id": 1602, + "storeLinks": [ + "https://play.google.com/music/m/Tsaihn3u6fhmh6em2oa56m3awom" + ], + "albumId": 1235, + "artistIds": [ + 953 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "The Marriage of Coyote Woman", + "id": 1603, + "storeLinks": [ + "https://play.google.com/music/m/Tyrpl3bgqr32fsccnibg4alxapa" + ], + "albumId": 1226, + "artistIds": [ + 957 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Am I Going Up?", + "id": 1604, + "storeLinks": [ + "https://play.google.com/music/m/Tt5fwac52i5a6r6svqpte5sze4u" + ], + "albumId": 1228, + "artistIds": [ + 957 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Bulls", + "id": 1605, + "storeLinks": [ + "https://play.google.com/music/m/Tp4lhl6qxmrte46favghlauzfnu" + ], + "albumId": 1234, + "artistIds": [ + 957 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Shift Kicker", + "id": 1606, + "storeLinks": [ + "https://play.google.com/music/m/Tiu4lfjvh5gx26m4qrndlpbuqyu" + ], + "albumId": 1212, + "artistIds": [ + 947 + ], + "tagIds": [ + 175 + ] + }, + { + "mbApi_typename": "track", + "name": "Written In Stone", + "id": 1607, + "storeLinks": [ + "https://play.google.com/music/m/Tanw7s5u4hqvkvzxuetcj3yvulm" + ], + "albumId": 1236, + "artistIds": [ + 947 + ], + "tagIds": [ + 175 + ] + }, + { + "mbApi_typename": "track", + "name": "Open Your Eyes", + "id": 1608, + "storeLinks": [ + "https://play.google.com/music/m/T3tblsyz2whcbuimddzmnwnweta" + ], + "albumId": 1236, + "artistIds": [ + 947 + ], + "tagIds": [ + 175 + ] + }, + { + "mbApi_typename": "track", + "name": "Knew It All Along", + "id": 1609, + "storeLinks": [ + "https://play.google.com/music/m/Tqoy5zvk4uk2cdz5gjepnc3xvfe" + ], + "albumId": 1219, + "artistIds": [ + 947 + ], + "tagIds": [ + 175 + ] + }, + { + "mbApi_typename": "track", + "name": "Runaway", + "id": 1610, + "storeLinks": [ + "https://play.google.com/music/m/Teelhe5dsex4plwsrb5ak5qvu2y" + ], + "albumId": 1237, + "artistIds": [ + 962 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Disko Partizani", + "id": 1611, + "storeLinks": [ + "https://play.google.com/music/m/Ttu7ms5unopsjxbwj7uouf33woy" + ], + "albumId": 1238, + "artistIds": [ + 963 + ], + "tagIds": [ + 147 + ] + }, + { + "mbApi_typename": "track", + "name": "A Canister And A Glass Of Wine", + "id": 1612, + "storeLinks": [ + "https://play.google.com/music/m/Tkiixf53f4vc2dunpceyjdmyqb4" + ], + "albumId": 1239, + "artistIds": [ + 964 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Mahalageasca", + "id": 1613, + "storeLinks": [ + "https://play.google.com/music/m/Tofrjdmy7wzekwztkdwmdytg6by" + ], + "albumId": 1240, + "artistIds": [ + 965 + ], + "tagIds": [ + 147 + ] + }, + { + "mbApi_typename": "track", + "name": "Disko Boy", + "id": 1614, + "storeLinks": [ + "https://play.google.com/music/m/Tsmxbtjsemi5sdksjp4wqcsmfty" + ], + "albumId": 1238, + "artistIds": [ + 963 + ], + "tagIds": [ + 147 + ] + }, + { + "mbApi_typename": "track", + "name": "Satchel Mouth Baby", + "id": 1615, + "storeLinks": [ + "https://play.google.com/music/m/T5tkkqporwvlxsvohunq37tdxsm" + ], + "albumId": 1241, + "artistIds": [ + 966 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Hallelujah I Love Her So", + "id": 1616, + "storeLinks": [ + "https://play.google.com/music/m/Tvpgjnpm52ul2bxd4izgw55xq5a" + ], + "albumId": 1242, + "artistIds": [ + 967 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Hallelujah I Love Her So", + "id": 1617, + "storeLinks": [ + "https://play.google.com/music/m/Tyw7iecey5mqkl4ufm6so2eizae" + ], + "albumId": 1243, + "artistIds": [ + 968 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Hallelujah I Love Him So", + "id": 1618, + "storeLinks": [ + "https://play.google.com/music/m/Tlfxh2drjvryzktdod5h3bdml64" + ], + "albumId": 1244, + "artistIds": [ + 915 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Swing Paradise", + "id": 1619, + "storeLinks": [ + "https://play.google.com/music/m/Twjx35ayiyhnovr7siirron7jje" + ], + "albumId": 1186, + "artistIds": [ + 924 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Exactly Like You", + "id": 1620, + "storeLinks": [ + "https://play.google.com/music/m/T3jtkgx6e5ixk2h5l2r5vggwiey" + ], + "albumId": 1004, + "artistIds": [ + 770 + ], + "tagIds": [ + 138 + ] + }, + { + "mbApi_typename": "track", + "name": "Sermonette", + "id": 1621, + "storeLinks": [ + "https://play.google.com/music/m/Tav3aqstrk7dlshcwnttafhstj4" + ], + "albumId": 1245, + "artistIds": [ + 969 + ], + "tagIds": [ + 170 + ] + }, + { + "mbApi_typename": "track", + "name": "Diga Diga Doo", + "id": 1622, + "storeLinks": [ + "https://play.google.com/music/m/Txkjs42et6podjf6nr2to7ncjn4" + ], + "albumId": 1246, + "artistIds": [ + 970 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Blue Skies", + "id": 1623, + "storeLinks": [ + "https://play.google.com/music/m/Texakheb4av7hift3srpb6egme4" + ], + "albumId": 1247, + "artistIds": [ + 971 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "I Know How to Do It", + "id": 1624, + "storeLinks": [ + "https://play.google.com/music/m/Tiltgj3drjsn2ww32fgv7tcpwpm" + ], + "albumId": 1248, + "artistIds": [ + 972 + ], + "tagIds": [ + 138 + ] + }, + { + "mbApi_typename": "track", + "name": "Satchel Mouth Baby", + "id": 1625, + "storeLinks": [ + "https://play.google.com/music/m/Tlubsddseytmhhrwgc32nbrcztu" + ], + "albumId": 1249, + "artistIds": [ + 973 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Dark Eyes", + "id": 1626, + "storeLinks": [ + "https://play.google.com/music/m/Tl3kdvqivktz42c7uzigkbskfla" + ], + "albumId": 1250, + "artistIds": [ + 754 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Sing Sing Sing", + "id": 1627, + "storeLinks": [ + "https://play.google.com/music/m/Tab754igddhq6rfjthjpninx25m" + ], + "albumId": 1251, + "artistIds": [ + 974 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Five O'clock Drag", + "id": 1628, + "storeLinks": [ + "https://play.google.com/music/m/Ttmsrrhpywyyjpezaus6nl4x2zy" + ], + "albumId": 1252, + "artistIds": [ + 975 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Big John Special", + "id": 1629, + "storeLinks": [ + "https://play.google.com/music/m/T4bxluwnek5abplrfyggzmmmmrm" + ], + "albumId": 1253, + "artistIds": [ + 943 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "It Don't Mean a Thing If It Ain't Got That Swing", + "id": 1630, + "storeLinks": [ + "https://play.google.com/music/m/Tr4arib4222edepl4epqcu7lp3u" + ], + "albumId": 1254, + "artistIds": [ + 976 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Sure Thing", + "id": 1631, + "storeLinks": [ + "https://play.google.com/music/m/Tx23tsvrjxkkn637kymn2x5zk7q" + ], + "albumId": 1255, + "artistIds": [ + 977 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Jump Session", + "id": 1632, + "storeLinks": [ + "https://play.google.com/music/m/Tl5twykhf5os75sf6ctpvteiaou" + ], + "albumId": 1256, + "artistIds": [ + 978 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Blitzkrieg baby", + "id": 1633, + "storeLinks": [ + "https://play.google.com/music/m/Tp7n5zyurypxgig7bk76d5ch4ay" + ], + "albumId": 1257, + "artistIds": [ + 979 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "C Jam Blues (Live)", + "id": 1634, + "storeLinks": [ + "https://play.google.com/music/m/Til26mehlctnq4v2bae2tzot25u" + ], + "albumId": 1258, + "artistIds": [ + 980 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Perdito", + "id": 1635, + "storeLinks": [ + "https://play.google.com/music/m/Tqzk6x34h64ruln3nnswobnakee" + ], + "albumId": 1252, + "artistIds": [ + 975 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Stomping At the Savoy", + "id": 1636, + "storeLinks": [ + "https://play.google.com/music/m/Tebdiwol4x47m3f73lk6cz6k6ly" + ], + "albumId": 1259, + "artistIds": [ + 981 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Hey! Ba-Ba-Re-Bop", + "id": 1637, + "storeLinks": [ + "https://play.google.com/music/m/T2o3bzhagnvlrm3atmtmtbkyawm" + ], + "albumId": 1260, + "artistIds": [ + 982 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Fly Me to the Moon (feat. Frank Sinatra)", + "id": 1638, + "storeLinks": [ + "https://play.google.com/music/m/T7ponv5xzcuhu7hsmu6dqce5paq" + ], + "albumId": 1261, + "artistIds": [ + 977 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Lindy Hopper's Delight", + "id": 1639, + "storeLinks": [ + "https://play.google.com/music/m/Twu45no73ecxmzs3q66mu4vgdxi" + ], + "albumId": 1262, + "artistIds": [ + 983 + ], + "tagIds": [ + 131 + ] + }, + { + "mbApi_typename": "track", + "name": "I'm Beginning to See the Light", + "id": 1640, + "storeLinks": [ + "https://play.google.com/music/m/T23e3xghuuu5t3jmm277zet7yby" + ], + "albumId": 1263, + "artistIds": [ + 751 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Kansas City Riffs", + "id": 1641, + "storeLinks": [ + "https://play.google.com/music/m/Tvavnjae42qyrp2ecd3ac4tztvi" + ], + "albumId": 1264, + "artistIds": [ + 984 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Splanky", + "id": 1642, + "storeLinks": [ + "https://play.google.com/music/m/Tbbf3xi4sk4xbzyzrc4unkg6vwa" + ], + "albumId": 1265, + "artistIds": [ + 985 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Cole Slaw (Sorghum Switch)", + "id": 1643, + "storeLinks": [ + "https://play.google.com/music/m/Tohpnfniwo5vfno74aqghgtdowu" + ], + "albumId": 1266, + "artistIds": [ + 986 + ], + "tagIds": [ + 179 + ] + }, + { + "mbApi_typename": "track", + "name": "Corner Pocket", + "id": 1644, + "storeLinks": [ + "https://play.google.com/music/m/Twafbvaadvaovzwjezy62cqt5em" + ], + "albumId": 1190, + "artistIds": [ + 927 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Fine Brown Frame", + "id": 1645, + "storeLinks": [ + "https://play.google.com/music/m/Thqm2hqjg6itnu4s2ta7z7kmita" + ], + "albumId": 1267, + "artistIds": [ + 987 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Lavender Coffin", + "id": 1646, + "storeLinks": [ + "https://play.google.com/music/m/Ttbslgpdnnxxpabuyloiyfwtpkm" + ], + "albumId": 1268, + "artistIds": [ + 976 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Just a Gigolo", + "id": 1647, + "storeLinks": [ + "https://play.google.com/music/m/Tdk3vqou4r3yj4i5pyjlrylmiea" + ], + "albumId": 1269, + "artistIds": [ + 988 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Roll with My Baby", + "id": 1648, + "storeLinks": [ + "https://play.google.com/music/m/Tlx2564ygpk6dhssfc23f4g26g4" + ], + "albumId": 1270, + "artistIds": [ + 968 + ], + "tagIds": [ + 170 + ] + }, + { + "mbApi_typename": "track", + "name": "Hootie Blues", + "id": 1649, + "storeLinks": [ + "https://play.google.com/music/m/Tquh3rqlwv4viewnkip47c2j7eu" + ], + "albumId": 1271, + "artistIds": [ + 989 + ], + "tagIds": [ + 170 + ] + }, + { + "mbApi_typename": "track", + "name": "Is You Is Or Is You Ain't My Baby", + "id": 1650, + "storeLinks": [ + "https://play.google.com/music/m/Tywsm6v6iuzy2tuby4f27wax36u" + ], + "albumId": 1272, + "artistIds": [ + 990 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "All That Meat and No Potatoes", + "id": 1651, + "storeLinks": [ + "https://play.google.com/music/m/Tr2ueshwjpkb3uvaemqse7ppfjq" + ], + "albumId": 1273, + "artistIds": [ + 936 + ], + "tagIds": [ + 180 + ] + }, + { + "mbApi_typename": "track", + "name": "Buzz Me", + "id": 1652, + "storeLinks": [ + "https://play.google.com/music/m/Td76faly62uyqzqc6yw3aa3bqtm" + ], + "albumId": 1274, + "artistIds": [ + 940 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Slow Blues (Electric Lady Studios, New York, NY, August 20, 1970)", + "id": 1653, + "storeLinks": [ + "https://play.google.com/music/m/Tsn3nx7dugyflgwlhynaegzsioe" + ], + "albumId": 1275, + "artistIds": [ + 991 + ], + "tagIds": [ + 145 + ] + }, + { + "mbApi_typename": "track", + "name": "See What I Mean? (02-28-41)", + "id": 1654, + "storeLinks": [ + "https://play.google.com/music/m/Tdjalw4w35lqxs2i3wstyizjkma" + ], + "albumId": 1276, + "artistIds": [ + 992 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Summit Ridge Drive", + "id": 1655, + "storeLinks": [ + "https://play.google.com/music/m/Twf7vub6veompdo23zx42yjl7vu" + ], + "albumId": 1188, + "artistIds": [ + 926 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Sandu", + "id": 1656, + "storeLinks": [ + "https://play.google.com/music/m/Tjem63kwxhl7yaedchm6cvl5yoa" + ], + "albumId": 1190, + "artistIds": [ + 927 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Bouncin Around", + "id": 1657, + "storeLinks": [ + "https://play.google.com/music/m/Tbh7reds6fzcehu6zs76hodoe3m" + ], + "albumId": 1206, + "artistIds": [ + 942 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Speak Easy", + "id": 1658, + "storeLinks": [ + "https://play.google.com/music/m/Tmd7y52waykt43v6a35joey2xgu" + ], + "albumId": 1204, + "artistIds": [ + 924 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "I Can't Give You Anything but Love", + "id": 1659, + "storeLinks": [ + "https://play.google.com/music/m/Tbgtrx5dy4zj3t33w32kpktyw7y" + ], + "albumId": 1248, + "artistIds": [ + 972 + ], + "tagIds": [ + 138 + ] + }, + { + "mbApi_typename": "track", + "name": "Your Feets Too Big", + "id": 1660, + "storeLinks": [ + "https://play.google.com/music/m/Tylpgf4yhn2o7nncf5shqs4snd4" + ], + "albumId": 1277, + "artistIds": [ + 936 + ], + "tagIds": [ + 135 + ] + }, + { + "mbApi_typename": "track", + "name": "Eight, Nine And Ten (03-28-47)", + "id": 1661, + "storeLinks": [ + "https://play.google.com/music/m/Tuq4yfhfyysdek4ocxlmadh7any" + ], + "albumId": 1278, + "artistIds": [ + 943 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Back Porch", + "id": 1662, + "storeLinks": [ + "https://play.google.com/music/m/Tlnn5qhufs2pui5zbo7fruhqg3u" + ], + "albumId": 1279, + "artistIds": [ + 750 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Family Affair (Single Version)", + "id": 1663, + "storeLinks": [ + "https://play.google.com/music/m/T6f37fkev64vx67ydmcxwtj4qpq" + ], + "albumId": 1280, + "artistIds": [ + 993 + ], + "tagIds": [ + 140 + ] + }, + { + "mbApi_typename": "track", + "name": "Street Life", + "id": 1664, + "storeLinks": [ + "https://play.google.com/music/m/Tegzfr3ckor2sq2puhyieqx2fki" + ], + "albumId": 1281, + "artistIds": [ + 994 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Poison", + "id": 1665, + "storeLinks": [ + "https://play.google.com/music/m/Tkvhzt52a6aotkoy6zzv44enahu" + ], + "albumId": 1282, + "artistIds": [ + 995 + ], + "tagIds": [ + 170 + ] + }, + { + "mbApi_typename": "track", + "name": "Phenomenon (Radio Edit)", + "id": 1666, + "storeLinks": [ + "https://play.google.com/music/m/T62pmo5oskk6zhsu3xsjvpxhgsa" + ], + "albumId": 1283, + "artistIds": [ + 996 + ], + "tagIds": [ + 167 + ] + }, + { + "mbApi_typename": "track", + "name": "Milkshake", + "id": 1667, + "storeLinks": [ + "https://play.google.com/music/m/Taojydyegck2s6hdbgnpgach3my" + ], + "albumId": 1284, + "artistIds": [ + 997 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "This Is How We Do It", + "id": 1668, + "storeLinks": [ + "https://play.google.com/music/m/Tajivffgulvxhwtvryuyxy7b7sm" + ], + "albumId": 1285, + "artistIds": [ + 998 + ], + "tagIds": [ + 156 + ] + }, + { + "mbApi_typename": "track", + "name": "Get Ur Freak On", + "id": 1669, + "storeLinks": [ + "https://play.google.com/music/m/Tdgnjwzkqvl5j5xpyl46jex7t5q" + ], + "albumId": 1286, + "artistIds": [ + 999 + ], + "tagIds": [ + 151 + ] + }, + { + "mbApi_typename": "track", + "name": "Jump Around", + "id": 1670, + "storeLinks": [ + "https://play.google.com/music/m/Tfb2uewpjfas346dch66zchqcpe" + ], + "albumId": 1287, + "artistIds": [ + 1000 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Stayin' out Late", + "id": 1671, + "storeLinks": [ + "https://play.google.com/music/m/Tzdtp7qtce66apgswfh72sczqfe" + ], + "albumId": 1079, + "artistIds": [ + 838 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Wannabe in L.A", + "id": 1672, + "storeLinks": [ + "https://play.google.com/music/m/Todml2rf4y7ogyx7ujesam5lyae" + ], + "albumId": 1288, + "artistIds": [ + 1001 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Song 2", + "id": 1673, + "storeLinks": [ + "https://play.google.com/music/m/Twsnvgwib6w6ci3ezpppdqngdwi" + ], + "albumId": 1289, + "artistIds": [ + 1002 + ], + "tagIds": [ + 158 + ] + }, + { + "mbApi_typename": "track", + "name": "All This Dancin´ Around", + "id": 1674, + "storeLinks": [ + "https://play.google.com/music/m/Tdk3g5jmybfq57tnvu326u4pnhe" + ], + "albumId": 1290, + "artistIds": [ + 882 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Great Balls Of Fire", + "id": 1675, + "storeLinks": [ + "https://play.google.com/music/m/T4d5jmrsllerwxmlfuq2dqod67q" + ], + "albumId": 1291, + "artistIds": [ + 1003 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Walk This Way (Single Version) (feat. Aerosmith)", + "id": 1676, + "storeLinks": [ + "https://play.google.com/music/m/Tpx54mdkttia7gszdhfa6c2ntni" + ], + "albumId": 1292, + "artistIds": [ + 1004 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Tie Me Down (feat. Luwten)", + "id": 1677, + "storeLinks": [ + "https://play.google.com/music/m/Twmgzkadbvmzbtwppfqjleyrvyy" + ], + "albumId": 1293, + "artistIds": [ + 810 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Fever", + "id": 1678, + "storeLinks": [ + "https://play.google.com/music/m/T35ihdi6gqbck345er6tloncj4u" + ], + "albumId": 1294, + "artistIds": [ + 909 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Invaders Must Die", + "id": 1679, + "storeLinks": [ + "https://play.google.com/music/m/T5pvanxrqy3e2rnhvqfnugowoge" + ], + "albumId": 1295, + "artistIds": [ + 1005 + ], + "tagIds": [ + 181 + ] + }, + { + "mbApi_typename": "track", + "name": "Go", + "id": 1680, + "storeLinks": [ + "https://play.google.com/music/m/Tahj3zdn4dhexgz3aky2z2nlwoy" + ], + "albumId": 1296, + "artistIds": [ + 1006 + ], + "tagIds": [ + 141 + ] + }, + { + "mbApi_typename": "track", + "name": "Super Freak", + "id": 1681, + "storeLinks": [ + "https://play.google.com/music/m/Tscb7js4mtghihma5a6ba62yari" + ], + "albumId": 1297, + "artistIds": [ + 1007 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "We No Speak Americano (JT Radio Edit)", + "id": 1682, + "storeLinks": [ + "https://play.google.com/music/m/Tnbsmneguc2lp5yp33ws2ncg6h4" + ], + "albumId": 1298, + "artistIds": [ + 1008 + ], + "tagIds": [ + 141 + ] + }, + { + "mbApi_typename": "track", + "name": "The Mojo Radio Gang (Club Version)", + "id": 1683, + "storeLinks": [ + "https://play.google.com/music/m/Tdd6s7fnkdhjsb7cnegfee4xks4" + ], + "albumId": 1299, + "artistIds": [ + 950 + ], + "tagIds": [ + 141 + ] + }, + { + "mbApi_typename": "track", + "name": "The Mojo Radio Gang (Radio Version)", + "id": 1684, + "storeLinks": [ + "https://play.google.com/music/m/T4ubwe5jyj2wbk3sy34a2oqabym" + ], + "albumId": 1300, + "artistIds": [ + 950 + ], + "tagIds": [ + 141 + ] + }, + { + "mbApi_typename": "track", + "name": "Midnight in Richmond", + "id": 1685, + "storeLinks": [ + "https://play.google.com/music/m/Tdjklbi3fjkiz6y6cm55yvvoj6u" + ], + "albumId": 1301, + "artistIds": [ + 1009 + ], + "tagIds": [] + }, + { + "mbApi_typename": "track", + "name": "Lenny", + "id": 1686, + "storeLinks": [ + "https://play.google.com/music/m/Txt4fenuzub6ahxfl27rbuukhgm" + ], + "albumId": 1301, + "artistIds": [ + 1009 + ], + "tagIds": [] + }, + { + "mbApi_typename": "track", + "name": "Take It or Leave It", + "id": 1687, + "storeLinks": [ + "https://play.google.com/music/m/Tg7pkxoo6aq73vv7maln5sifkh4" + ], + "albumId": 1301, + "artistIds": [ + 1009 + ], + "tagIds": [] + }, + { + "mbApi_typename": "track", + "name": "Underdog", + "id": 1688, + "storeLinks": [ + "https://play.google.com/music/m/Tr4lchbko5blwrze7nu6grgfaey" + ], + "albumId": 1301, + "artistIds": [ + 1009 + ], + "tagIds": [] + }, + { + "mbApi_typename": "track", + "name": "Mojo Rising", + "id": 1689, + "storeLinks": [ + "https://play.google.com/music/m/Tmgdk3zkerxlxeilo7kz3gkzaj4" + ], + "albumId": 1301, + "artistIds": [ + 1009 + ], + "tagIds": [] + }, + { + "mbApi_typename": "track", + "name": "Just a Man", + "id": 1690, + "storeLinks": [ + "https://play.google.com/music/m/Tg4gbu3weknt5424dupe4xwpdim" + ], + "albumId": 1301, + "artistIds": [ + 1009 + ], + "tagIds": [] + }, + { + "mbApi_typename": "track", + "name": "Love Guarantee", + "id": 1691, + "storeLinks": [ + "https://play.google.com/music/m/Tnfzwtt4253wlwwc32v77i6sufi" + ], + "albumId": 1301, + "artistIds": [ + 1009 + ], + "tagIds": [] + }, + { + "mbApi_typename": "track", + "name": "Caroline", + "id": 1692, + "storeLinks": [ + "https://play.google.com/music/m/Tnhvjqvhkttyid5wbajk2ciworu" + ], + "albumId": 1301, + "artistIds": [ + 1009 + ], + "tagIds": [] + }, + { + "mbApi_typename": "track", + "name": "Kingston Boogie", + "id": 1693, + "storeLinks": [ + "https://play.google.com/music/m/Tifbjftejrcivchlxtzpcp2xfe4" + ], + "albumId": 1301, + "artistIds": [ + 1009 + ], + "tagIds": [] + }, + { + "mbApi_typename": "track", + "name": "Lolita", + "id": 1694, + "storeLinks": [ + "https://play.google.com/music/m/T2x6birfuw57tae6z25zysjiklq" + ], + "albumId": 1301, + "artistIds": [ + 1009 + ], + "tagIds": [] + }, + { + "mbApi_typename": "track", + "name": "When I Got Here", + "id": 1695, + "storeLinks": [ + "https://play.google.com/music/m/Tv4repmpddmgy7otur62wn6fumq" + ], + "albumId": 1302, + "artistIds": [ + 898 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "The Fall", + "id": 1696, + "storeLinks": [ + "https://play.google.com/music/m/T4nshmalxzvx6ovvfu773o7oxvq" + ], + "albumId": 1303, + "artistIds": [ + 1010 + ], + "tagIds": [ + 148 + ] + }, + { + "mbApi_typename": "track", + "name": "All Over But The Shoutin'", + "id": 1697, + "storeLinks": [ + "https://play.google.com/music/m/T4boc2n2bv66l6qq5zsea7h6pfi" + ], + "albumId": 1304, + "artistIds": [ + 1011 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Hallelujah I Love Her So (Bonus Track)", + "id": 1698, + "storeLinks": [ + "https://play.google.com/music/m/Ti55q3vsdvog32zp3zp42ju4f4e" + ], + "albumId": 1305, + "artistIds": [ + 1012 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Hallelujah I Love Him So", + "id": 1699, + "storeLinks": [ + "https://play.google.com/music/m/Tfttaok5rz5nz4q6kes4qqxysi4" + ], + "albumId": 1306, + "artistIds": [ + 1013 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Just About Right for Me", + "id": 1700, + "storeLinks": [ + "https://play.google.com/music/m/Tibtsz2amwbuiwa3zfp4dic73z4" + ], + "albumId": 1307, + "artistIds": [ + 754 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Exactly Like You", + "id": 1701, + "storeLinks": [ + "https://play.google.com/music/m/T7vzqjz3vifwnk5dvqywqftqdoa" + ], + "albumId": 1308, + "artistIds": [ + 1014 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Cheek to Cheek (Remastered)", + "id": 1702, + "storeLinks": [ + "https://play.google.com/music/m/Tkvxvkyq7m7idk3q23gpsariaai" + ], + "albumId": 1309, + "artistIds": [ + 1015 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "L-O-V-E", + "id": 1703, + "storeLinks": [ + "https://play.google.com/music/m/Tek3qxxgdvs2aazj4jehldzs6ue" + ], + "albumId": 1310, + "artistIds": [ + 1016 + ], + "tagIds": [ + 131 + ] + }, + { + "mbApi_typename": "track", + "name": "Capital Idea", + "id": 1704, + "storeLinks": [ + "https://play.google.com/music/m/Thqmmtsnevuebaut55ftufoemjq" + ], + "albumId": 1311, + "artistIds": [ + 1017 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Jive At Five", + "id": 1705, + "storeLinks": [ + "https://play.google.com/music/m/Trzocmafyfwiib2467sspn44mv4" + ], + "albumId": 1312, + "artistIds": [ + 1018 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Jumpin' at the Woodside", + "id": 1706, + "storeLinks": [ + "https://play.google.com/music/m/Tbeqg3r4pcyeeist7dukhjfitd4" + ], + "albumId": 1313, + "artistIds": [ + 979 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Above You", + "id": 1707, + "storeLinks": [ + "https://play.google.com/music/m/Ta24gws2qgrwalilnbpywsvq3u4" + ], + "albumId": 1314, + "artistIds": [ + 1019 + ], + "tagIds": [ + 182 + ] + }, + { + "mbApi_typename": "track", + "name": "Dzoka Uyamwe", + "id": 1708, + "storeLinks": [ + "https://play.google.com/music/m/Tabwixoo5x3i2simvd5hdbjtzde" + ], + "albumId": 1315, + "artistIds": [ + 1020 + ], + "tagIds": [ + 147 + ] + }, + { + "mbApi_typename": "track", + "name": "Spooky", + "id": 1709, + "storeLinks": [ + "https://play.google.com/music/m/T6mrsluhm4npgrfcpq6vdkuzo5y" + ], + "albumId": 1316, + "artistIds": [ + 1021 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Fools Gold", + "id": 1710, + "storeLinks": [ + "https://play.google.com/music/m/Tlxa3syc3kc73ddkixhxaosdhay" + ], + "albumId": 1317, + "artistIds": [ + 1022 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Home Again", + "id": 1711, + "storeLinks": [ + "https://play.google.com/music/m/T4rzyfxm4j5bmt77z3qyw5tk3gi" + ], + "albumId": 1318, + "artistIds": [ + 913 + ], + "tagIds": [ + 137 + ] + }, + { + "mbApi_typename": "track", + "name": "Jive at Five", + "id": 1712, + "storeLinks": [ + "https://play.google.com/music/m/Tcumkgn4gwfezunqp54cdda3sva" + ], + "albumId": 1319, + "artistIds": [ + 1023 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "¿Y Tú Qué Has Hecho?", + "id": 1713, + "storeLinks": [ + "https://play.google.com/music/m/Thingc4imm7nw76wquuveqpa5ky" + ], + "albumId": 994, + "artistIds": [ + 761 + ], + "tagIds": [ + 136 + ] + }, + { + "mbApi_typename": "track", + "name": "Helplessly Hoping (2005 Remaster)", + "id": 1714, + "storeLinks": [ + "https://play.google.com/music/m/Twptdgwpj6hjxf25fhiocn4njnq" + ], + "albumId": 1320, + "artistIds": [ + 1024 + ], + "tagIds": [ + 145 + ] + }, + { + "mbApi_typename": "track", + "name": "Davy's on the Road Again (Single Edit)", + "id": 1715, + "storeLinks": [ + "https://play.google.com/music/m/T5jhdptienxycvfm2hks6dd3qza" + ], + "albumId": 1321, + "artistIds": [ + 1025 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Agua De Beber", + "id": 1716, + "storeLinks": [ + "https://play.google.com/music/m/Tfduy26g7rqiju7hmch6ssdnczy" + ], + "albumId": 1322, + "artistIds": [ + 1026 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Citizen Alien", + "id": 1717, + "storeLinks": [ + "https://play.google.com/music/m/Tizl52lwm7jj7rutyze2ga3xlum" + ], + "albumId": 1323, + "artistIds": [ + 1027 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "What a Feeling Can't Do", + "id": 1718, + "storeLinks": [ + "https://play.google.com/music/m/Tbyxamrbnsh6irhhfjfidccwo64" + ], + "albumId": 1324, + "artistIds": [ + 1028 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Too Many Colors in the Sun", + "id": 1719, + "storeLinks": [ + "https://play.google.com/music/m/T63kux2po5xutw2ikt77m56pmau" + ], + "albumId": 1324, + "artistIds": [ + 1028 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "All Right, Okay, You Win", + "id": 1720, + "storeLinks": [ + "https://play.google.com/music/m/T6tzukejbm5wg2olmowngvmmn2m" + ], + "albumId": 1200, + "artistIds": [ + 937 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Free Bird", + "id": 1721, + "storeLinks": [ + "https://play.google.com/music/m/Tmcd256ai4ql3bleo2xwaqvujty" + ], + "albumId": 1079, + "artistIds": [ + 838 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "El Carretero", + "id": 1722, + "storeLinks": [ + "https://play.google.com/music/m/T5iwcrscv62wjzo43wbauhywei4" + ], + "albumId": 994, + "artistIds": [ + 761 + ], + "tagIds": [ + 136 + ] + }, + { + "mbApi_typename": "track", + "name": "Mas Que Nada", + "id": 1723, + "storeLinks": [ + "https://play.google.com/music/m/T5odqj2q45txytlsz23jbihovdi" + ], + "albumId": 1325, + "artistIds": [ + 1029 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Come Together (Remastered 2009)", + "id": 1724, + "storeLinks": [ + "https://play.google.com/music/m/Ts5zarr7aeo5gttycxrprrbxu6u" + ], + "albumId": 1071, + "artistIds": [ + 831 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Hooked on a Feeling", + "id": 1725, + "storeLinks": [ + "https://play.google.com/music/m/T6re3gjpwihv5mchy3e7txcyzi4" + ], + "albumId": 1326, + "artistIds": [ + 1030 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Don't Worry Be Happy", + "id": 1726, + "storeLinks": [ + "https://play.google.com/music/m/Twlhbc445zdsmd4u6v3agkjzsfi" + ], + "albumId": 1327, + "artistIds": [ + 1031 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "The Chain (2004 Remaster)", + "id": 1727, + "storeLinks": [ + "https://play.google.com/music/m/Tmbucg62hn24m34a47lzn6c6xuy" + ], + "albumId": 1328, + "artistIds": [ + 1032 + ], + "tagIds": [ + 145 + ] + }, + { + "mbApi_typename": "track", + "name": "Blackbird (Remastered 2009)", + "id": 1728, + "storeLinks": [ + "https://play.google.com/music/m/Tmv5gfvdrzqebw7pu7xstfmajqq" + ], + "albumId": 1329, + "artistIds": [ + 831 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Sunshine Superman", + "id": 1729, + "storeLinks": [ + "https://play.google.com/music/m/Ty2ftdrtbierxgt3j2vsmf3n2km" + ], + "albumId": 1330, + "artistIds": [ + 1033 + ], + "tagIds": [ + 183 + ] + }, + { + "mbApi_typename": "track", + "name": "Stairway to Heaven", + "id": 1730, + "storeLinks": [ + "https://play.google.com/music/m/T3jd6bjgntyickqykjsajs7bpp4" + ], + "albumId": 1331, + "artistIds": [ + 1034 + ], + "tagIds": [ + 147 + ] + }, + { + "mbApi_typename": "track", + "name": "Tamacun", + "id": 1731, + "storeLinks": [ + "https://play.google.com/music/m/Thhlmjmrjoyawiid4o2od2uho74" + ], + "albumId": 1331, + "artistIds": [ + 1034 + ], + "tagIds": [ + 147 + ] + }, + { + "mbApi_typename": "track", + "name": "Lifeboats", + "id": 1732, + "storeLinks": [ + "https://play.google.com/music/m/Tgnktjete7kde4mshiz6j76sobu" + ], + "albumId": 1332, + "artistIds": [ + 1035 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Aneurysm", + "id": 1733, + "storeLinks": [ + "https://play.google.com/music/m/Tbe3qssoj6ih7hnagwabhbzroiq" + ], + "albumId": 1333, + "artistIds": [ + 1036 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Blinded by the Light", + "id": 1734, + "storeLinks": [ + "https://play.google.com/music/m/Tfzziditqjy742insniv4jobd4i" + ], + "albumId": 1334, + "artistIds": [ + 1025 + ], + "tagIds": [ + 184 + ] + }, + { + "mbApi_typename": "track", + "name": "Radio Attack", + "id": 1735, + "storeLinks": [ + "https://play.google.com/music/m/T2tqi5m5xhclro3e6lcgjl7k4ny" + ], + "albumId": 1335, + "artistIds": [ + 1037 + ], + "tagIds": [ + 167 + ] + }, + { + "mbApi_typename": "track", + "name": "Cupid's Dead", + "id": 1736, + "storeLinks": [ + "https://play.google.com/music/m/Teg3itcdbaw5jb64kkolhen5ode" + ], + "albumId": 1336, + "artistIds": [ + 1038 + ], + "tagIds": [ + 175 + ] + }, + { + "mbApi_typename": "track", + "name": "A&W Song", + "id": 1737, + "storeLinks": [ + "https://play.google.com/music/m/Tv5s62p532s5whvzzrth4gfilgm" + ], + "albumId": 1337, + "artistIds": [ + 1039 + ], + "tagIds": [ + 164 + ] + }, + { + "mbApi_typename": "track", + "name": "Don't Forget It", + "id": 1738, + "storeLinks": [ + "https://play.google.com/music/m/Tq7ujc24jhayj4kesbjomzsy33a" + ], + "albumId": 1338, + "artistIds": [ + 1040 + ], + "tagIds": [ + 185 + ] + }, + { + "mbApi_typename": "track", + "name": "Love for Sale", + "id": 1739, + "storeLinks": [ + "https://play.google.com/music/m/T5cawnwicq2olx7equhn5dtzlpm" + ], + "albumId": 1339, + "artistIds": [ + 1041 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Dreams (2004 Remaster)", + "id": 1740, + "storeLinks": [ + "https://play.google.com/music/m/Tg4pvcahfooma443kw67ya62iem" + ], + "albumId": 1340, + "artistIds": [ + 1032 + ], + "tagIds": [ + 145 + ] + }, + { + "mbApi_typename": "track", + "name": "Cities In Dust (Extended Version)", + "id": 1741, + "storeLinks": [ + "https://play.google.com/music/m/Tlhpsguqitzmmtu76u27t2dogna" + ], + "albumId": 1341, + "artistIds": [ + 1042 + ], + "tagIds": [ + 186 + ] + }, + { + "mbApi_typename": "track", + "name": "Boa Sorte / Good Luck (feat. Ben Harper)", + "id": 1742, + "storeLinks": [ + "https://play.google.com/music/m/T4qlloyww5ispj6ug3csxlbwxdi" + ], + "albumId": 1342, + "artistIds": [ + 1043 + ], + "tagIds": [ + 136 + ] + }, + { + "mbApi_typename": "track", + "name": "It's So Hard (2 Meter Session)", + "id": 1743, + "storeLinks": [ + "https://play.google.com/music/m/Twsq6dygv5f7hgkvlhe6zh6ny5q" + ], + "albumId": 1343, + "artistIds": [ + 1044 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "The Globalist", + "id": 1744, + "storeLinks": [ + "https://play.google.com/music/m/Tfpfwsojq32xssjn3qxfcoaykge" + ], + "albumId": 1344, + "artistIds": [ + 811 + ], + "tagIds": [ + 184 + ] + }, + { + "mbApi_typename": "track", + "name": "Ain't Nobody (Loves Me Better) (feat. Jasmine Thompson)", + "id": 1745, + "storeLinks": [ + "https://play.google.com/music/m/Tgukzd4htctx62pqfvqxc6pycae" + ], + "albumId": 1345, + "artistIds": [ + 1045 + ], + "tagIds": [ + 141 + ] + }, + { + "mbApi_typename": "track", + "name": "Sweet Sunshine", + "id": 1746, + "storeLinks": [ + "https://play.google.com/music/m/Tv56dunqna65rad5limwo6xp57q" + ], + "albumId": 1346, + "artistIds": [ + 1046 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Broad Daylight", + "id": 1747, + "storeLinks": [ + "https://play.google.com/music/m/Thwcyclxkbzilt5o345czeo4z2u" + ], + "albumId": 1347, + "artistIds": [ + 886 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Black Spider", + "id": 1748, + "storeLinks": [ + "https://play.google.com/music/m/Tyqgdtdiuqow62gzqetptosl6sy" + ], + "albumId": 1348, + "artistIds": [ + 1047 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Devil's Blood", + "id": 1749, + "storeLinks": [ + "https://play.google.com/music/m/Tt7d7u6p46z4lhmlbwbsoyucu2y" + ], + "albumId": 1349, + "artistIds": [ + 810 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Pelican", + "id": 1750, + "storeLinks": [ + "https://play.google.com/music/m/Tagkwvviixiakppg3u4xf36h434" + ], + "albumId": 1350, + "artistIds": [ + 1048 + ], + "tagIds": [ + 143 + ] + }, + { + "mbApi_typename": "track", + "name": "I'm All Over It", + "id": 1751, + "storeLinks": [ + "https://play.google.com/music/m/Tqlmrqeastzc4un5ydnte5ydbou" + ], + "albumId": 1351, + "artistIds": [ + 1049 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Cherub Rock (Remastered 2011)", + "id": 1752, + "storeLinks": [ + "https://play.google.com/music/m/Tjosptub24g2dft37lforqnudpe" + ], + "albumId": 1352, + "artistIds": [ + 1050 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Do It Again", + "id": 1753, + "storeLinks": [ + "https://play.google.com/music/m/Thypkufwesqupjj5gzqmkgpcw7a" + ], + "albumId": 1353, + "artistIds": [ + 1051 + ], + "tagIds": [ + 140 + ] + }, + { + "mbApi_typename": "track", + "name": "Boris", + "id": 1754, + "storeLinks": [ + "https://play.google.com/music/m/Tuulwmof7sgvvxpznzmvk4jcs44" + ], + "albumId": 1354, + "artistIds": [ + 1052 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Inhaler", + "id": 1755, + "storeLinks": [ + "https://play.google.com/music/m/Tr6weugi3jy5uoehkpgyinjedom" + ], + "albumId": 1355, + "artistIds": [ + 1053 + ], + "tagIds": [ + 149 + ] + }, + { + "mbApi_typename": "track", + "name": "Thoughts of a Dying Atheist", + "id": 1756, + "storeLinks": [ + "https://play.google.com/music/m/Tetddkaallsqoojfrcjbqsywwfy" + ], + "albumId": 1356, + "artistIds": [ + 811 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Animals", + "id": 1757, + "storeLinks": [ + "https://play.google.com/music/m/T63a6iszwkxjue4nnzy2sbwtire" + ], + "albumId": 1357, + "artistIds": [ + 811 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Build a Fire", + "id": 1758, + "storeLinks": [ + "https://play.google.com/music/m/T2pmehiyrimyw6ki2vcmusncpcu" + ], + "albumId": 1358, + "artistIds": [ + 1054 + ], + "tagIds": [ + 167 + ] + }, + { + "mbApi_typename": "track", + "name": "Feels Like We Only Go Backwards", + "id": 1759, + "storeLinks": [ + "https://play.google.com/music/m/Tpspfq7n7ahl2zqwsz57hvhxidq" + ], + "albumId": 1144, + "artistIds": [ + 756 + ], + "tagIds": [ + 150 + ] + }, + { + "mbApi_typename": "track", + "name": "Respect", + "id": 1760, + "storeLinks": [ + "https://play.google.com/music/m/Tflrawehnounghzjbampf3cn5di" + ], + "albumId": 1359, + "artistIds": [ + 1055 + ], + "tagIds": [ + 170 + ] + }, + { + "mbApi_typename": "track", + "name": "Love Spreads", + "id": 1761, + "storeLinks": [ + "https://play.google.com/music/m/T7u4ikqrattsghpyznszgb4f6ga" + ], + "albumId": 1360, + "artistIds": [ + 1022 + ], + "tagIds": [ + 168 + ] + }, + { + "mbApi_typename": "track", + "name": "Banana Split For My Baby", + "id": 1762, + "storeLinks": [ + "https://play.google.com/music/m/T54lu3nfa7hbsxwxmrvqymikmta" + ], + "albumId": 1361, + "artistIds": [ + 1056 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "For Dancers Only", + "id": 1763, + "storeLinks": [ + "https://play.google.com/music/m/Ttzefxple76k3vkc7sdmoygvvcq" + ], + "albumId": 1362, + "artistIds": [ + 938 + ], + "tagIds": [ + 138 + ] + }, + { + "mbApi_typename": "track", + "name": "Goody, Goody", + "id": 1764, + "storeLinks": [ + "https://play.google.com/music/m/Tclcagv3j3qr36hl25xbs2r7vvq" + ], + "albumId": 1363, + "artistIds": [ + 751 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Peckin'", + "id": 1765, + "storeLinks": [ + "https://play.google.com/music/m/Tdixylfe5leexdjycy4egb2ccsu" + ], + "albumId": 1364, + "artistIds": [ + 1057 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Take It Easy Greasy", + "id": 1766, + "storeLinks": [ + "https://play.google.com/music/m/Tisgldfukasnsu4gkvlw7reguhy" + ], + "albumId": 1248, + "artistIds": [ + 972 + ], + "tagIds": [ + 138 + ] + }, + { + "mbApi_typename": "track", + "name": "Long Gone John", + "id": 1767, + "storeLinks": [ + "https://play.google.com/music/m/Tvnsolym3sk77qn22w4s7woeqa4" + ], + "albumId": 1200, + "artistIds": [ + 937 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Tain't What You Do", + "id": 1768, + "storeLinks": [ + "https://play.google.com/music/m/T2e3wklak4urjw7s4ckbqq3zsp4" + ], + "albumId": 1365, + "artistIds": [ + 1058 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Big Apple Contest", + "id": 1769, + "storeLinks": [ + "https://play.google.com/music/m/Tcqfvp6qpzbso7xavqb2ean7gou" + ], + "albumId": 1362, + "artistIds": [ + 938 + ], + "tagIds": [ + 138 + ] + }, + { + "mbApi_typename": "track", + "name": "Oh, Lady Be Good", + "id": 1770, + "storeLinks": [ + "https://play.google.com/music/m/Tg3rifxqxmll32vpn4wi5jfikka" + ], + "albumId": 1366, + "artistIds": [ + 985 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Take the \"A\" Train", + "id": 1771, + "storeLinks": [ + "https://play.google.com/music/m/Ttkyfsdttv7t57pbwlbqmd6cgcy" + ], + "albumId": 1367, + "artistIds": [ + 755 + ], + "tagIds": [] + }, + { + "mbApi_typename": "track", + "name": "Tutti Frutti", + "id": 1772, + "storeLinks": [ + "https://play.google.com/music/m/Trgcezxfzijw37yz2yc72bskj3i" + ], + "albumId": 1368, + "artistIds": [ + 978 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Be Cool AKA Keep Cool", + "id": 1773, + "storeLinks": [ + "https://play.google.com/music/m/T3comajha4ogwtkoyqgehu4lbvi" + ], + "albumId": 1369, + "artistIds": [ + 1059 + ], + "tagIds": [ + 135 + ] + }, + { + "mbApi_typename": "track", + "name": "Ain't Misbehavin'", + "id": 1774, + "storeLinks": [ + "https://play.google.com/music/m/Tfkzzo3nbsfedlwwul3m5oabrhq" + ], + "albumId": 1370, + "artistIds": [ + 1060 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Heavy Sugar", + "id": 1775, + "storeLinks": [ + "https://play.google.com/music/m/Tymxczel3pjhhkt45dd6f7biwzq" + ], + "albumId": 1371, + "artistIds": [ + 1061 + ], + "tagIds": [ + 170 + ] + }, + { + "mbApi_typename": "track", + "name": "Mr. Rhythm", + "id": 1776, + "storeLinks": [ + "https://play.google.com/music/m/Tqbaz6xupxd3fdi5zivkb3zuqfa" + ], + "albumId": 1372, + "artistIds": [ + 1062 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Begin the Beguine", + "id": 1777, + "storeLinks": [ + "https://play.google.com/music/m/Tn4ez2g3l5szczzurdls6obmwre" + ], + "albumId": 1373, + "artistIds": [ + 1063 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Just A Sittin' And A Rockin'", + "id": 1778, + "storeLinks": [ + "https://play.google.com/music/m/Tah6eaaunkii3ktayoyuzgqdgre" + ], + "albumId": 1374, + "artistIds": [ + 755 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Man About Town", + "id": 1779, + "storeLinks": [ + "https://play.google.com/music/m/Tu2etkchqcxgukq5gjejwxlc6ha" + ], + "albumId": 1375, + "artistIds": [ + 1064 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "One Scotch, One Bourbon, One Beer (Remastered)", + "id": 1780, + "storeLinks": [ + "https://play.google.com/music/m/Tbabuhjrk6prbkmjx6l6gobgw44" + ], + "albumId": 1376, + "artistIds": [ + 920 + ], + "tagIds": [ + 179 + ] + }, + { + "mbApi_typename": "track", + "name": "Boulder Buff", + "id": 1781, + "storeLinks": [ + "https://play.google.com/music/m/Tna7afqntnjuk35m5lnyjidduwu" + ], + "albumId": 1377, + "artistIds": [ + 766 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Kandylamb (02-24-45)", + "id": 1782, + "storeLinks": [ + "https://play.google.com/music/m/Tlu7x34wfhtt3e4asmoiuxd5rbi" + ], + "albumId": 1378, + "artistIds": [ + 755 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "When the Quailccome Back to San Quentin", + "id": 1783, + "storeLinks": [ + "https://play.google.com/music/m/Tp234ucbtniowd7qaqaeoha5gqq" + ], + "albumId": 1188, + "artistIds": [ + 926 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Lagwood Walk", + "id": 1784, + "storeLinks": [ + "https://play.google.com/music/m/T7xu2vaxezakvvfezqds3j5efpe" + ], + "albumId": 1188, + "artistIds": [ + 926 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Jorbita", + "id": 1785, + "storeLinks": [ + "https://play.google.com/music/m/Txrew2lnxlzubuzwljrfpcqijee" + ], + "albumId": 1379, + "artistIds": [ + 924 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "ALW", + "id": 1786, + "storeLinks": [ + "https://play.google.com/music/m/Troozjhwdwulfvtma23fntpmfaa" + ], + "albumId": 1379, + "artistIds": [ + 924 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Black Market Stuff", + "id": 1787, + "storeLinks": [ + "https://play.google.com/music/m/Tdtrgv6itvx7tjprt634gnstq64" + ], + "albumId": 1188, + "artistIds": [ + 926 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "How Deep Is the Ocean", + "id": 1788, + "storeLinks": [ + "https://play.google.com/music/m/Titaqo25fdyrbmlukbxatikecf4" + ], + "albumId": 1206, + "artistIds": [ + 942 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Flip Lid", + "id": 1789, + "storeLinks": [ + "https://play.google.com/music/m/T7bad5ha3clccraopmfqlqu2efm" + ], + "albumId": 1206, + "artistIds": [ + 942 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "I'm Confessin' That I Love You", + "id": 1790, + "storeLinks": [ + "https://play.google.com/music/m/T4fvy55zrk3qt3iaflauh2vv25m" + ], + "albumId": 1200, + "artistIds": [ + 937 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "I Can't Dance", + "id": 1791, + "storeLinks": [ + "https://play.google.com/music/m/Thn7j2daxdly73l2axccfpbhbpu" + ], + "albumId": 1206, + "artistIds": [ + 942 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "The Grabtown Grapple", + "id": 1792, + "storeLinks": [ + "https://play.google.com/music/m/Tuh5nytisi6nkd2dfdrdmqzxswy" + ], + "albumId": 1190, + "artistIds": [ + 927 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Dance of the Lindy Blossoms", + "id": 1793, + "storeLinks": [ + "https://play.google.com/music/m/Tw2rsgf52shahofp6g3mdudk6eu" + ], + "albumId": 1307, + "artistIds": [ + 754 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Somebody Loves Me", + "id": 1794, + "storeLinks": [ + "https://play.google.com/music/m/T36qmqbrlxjwwr3xzqsf42m6kdq" + ], + "albumId": 1250, + "artistIds": [ + 754 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Stuffy", + "id": 1795, + "storeLinks": [ + "https://play.google.com/music/m/T5t7se6un2kyhofbygzgprwb7u4" + ], + "albumId": 1380, + "artistIds": [ + 754 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Rose Room", + "id": 1796, + "storeLinks": [ + "https://play.google.com/music/m/Tsnhtf5ae7z236vhmwdffzwuzp4" + ], + "albumId": 1307, + "artistIds": [ + 754 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Oomph Fa Fa", + "id": 1797, + "storeLinks": [ + "https://play.google.com/music/m/Tqcgxfpiv6ov7poilrum5xvmctu" + ], + "albumId": 1380, + "artistIds": [ + 754 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Mister 5x5", + "id": 1798, + "storeLinks": [ + "https://play.google.com/music/m/Tsbjfa2tihqgtnlnxx2vcwtifdi" + ], + "albumId": 1380, + "artistIds": [ + 754 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "A Smooth One", + "id": 1799, + "storeLinks": [ + "https://play.google.com/music/m/Tiaawxvncqqgifounbfcnqcnjpu" + ], + "albumId": 1188, + "artistIds": [ + 926 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Lester's Bebop Boogie", + "id": 1800, + "storeLinks": [ + "https://play.google.com/music/m/Taonozjbvrvki7re2ma7jw4fzau" + ], + "albumId": 1380, + "artistIds": [ + 754 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Savoy Blip", + "id": 1801, + "storeLinks": [ + "https://play.google.com/music/m/Tjxoj63ixcnwob3ech75zjisstm" + ], + "albumId": 1250, + "artistIds": [ + 754 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Jacquet in the Box", + "id": 1802, + "storeLinks": [ + "https://play.google.com/music/m/Takycnsvauvau6d4rxkauegece4" + ], + "albumId": 1250, + "artistIds": [ + 754 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Cheek to Cheek", + "id": 1803, + "storeLinks": [ + "https://play.google.com/music/m/T7o7bvhrc4jjphgrnj4hdl33l6e" + ], + "albumId": 1307, + "artistIds": [ + 754 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Miss Brown to You", + "id": 1804, + "storeLinks": [ + "https://play.google.com/music/m/T45rzo2uvhxe4cdzukqnfjs7js4" + ], + "albumId": 1307, + "artistIds": [ + 754 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Tea for Two (feat. Luca Filastro) [Ragtime Remaster]", + "id": 1805, + "storeLinks": [ + "https://play.google.com/music/m/Tx3cwt2nsw5uhjjooarqs7zyrci" + ], + "albumId": 1381, + "artistIds": [ + 1065 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Don't Come Too Soon", + "id": 1806, + "storeLinks": [ + "https://play.google.com/music/m/Tiarkeovld3xmhwh2fdn5hiois4" + ], + "albumId": 1382, + "artistIds": [ + 1066 + ], + "tagIds": [ + 179 + ] + }, + { + "mbApi_typename": "track", + "name": "Black and Tan Fantasy (Live)", + "id": 1807, + "storeLinks": [ + "https://play.google.com/music/m/Tzpaf6wfnjvc3ijcqb5rsuekg4a" + ], + "albumId": 1258, + "artistIds": [ + 980 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "I Don't Stand a Ghost of a Chance", + "id": 1808, + "storeLinks": [ + "https://play.google.com/music/m/Tomvsjq5ntg7bisjj6kxrubonda" + ], + "albumId": 1383, + "artistIds": [ + 1067 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "One O'Clock Jump (feat. James Rushing)", + "id": 1809, + "storeLinks": [ + "https://play.google.com/music/m/T5paptjlqimsfykhsv5apbhxny4" + ], + "albumId": 1384, + "artistIds": [ + 985 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Jumpin' At the Woodside", + "id": 1810, + "storeLinks": [ + "https://play.google.com/music/m/Te63ulosj6qzuwhv7zncstdzdey" + ], + "albumId": 1385, + "artistIds": [ + 977 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Organ Grinder's Swing", + "id": 1811, + "storeLinks": [ + "https://play.google.com/music/m/Tuy4uxtmadget7g2sroytzc5phu" + ], + "albumId": 1386, + "artistIds": [ + 745 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Le Jazz Hot", + "id": 1812, + "storeLinks": [ + "https://play.google.com/music/m/Tu3bocpcubmdid2kcig4nuyk5je" + ], + "albumId": 1387, + "artistIds": [ + 745 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Rhythm Is Our Business", + "id": 1813, + "storeLinks": [ + "https://play.google.com/music/m/T27ezgsa33pibvdbr7kook3oehe" + ], + "albumId": 1387, + "artistIds": [ + 745 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Come On Over To My House", + "id": 1814, + "storeLinks": [ + "https://play.google.com/music/m/Ttcrxkpvo2dea56d3svlq5a3gce" + ], + "albumId": 1388, + "artistIds": [ + 1066 + ], + "tagIds": [ + 170 + ] + }, + { + "mbApi_typename": "track", + "name": "Strictly Live", + "id": 1815, + "storeLinks": [ + "https://play.google.com/music/m/Tn2yq2yjpt6przyzkzyrliwif5m" + ], + "albumId": 1389, + "artistIds": [ + 1068 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "The Spinach Song (I Didn't Like It the First Time)", + "id": 1816, + "storeLinks": [ + "https://play.google.com/music/m/Tk3o6bvrrysyb6zxg7s6mhs4e3a" + ], + "albumId": 1390, + "artistIds": [ + 1066 + ], + "tagIds": [ + 179 + ] + }, + { + "mbApi_typename": "track", + "name": "Spinnin' the Webb", + "id": 1817, + "storeLinks": [ + "https://play.google.com/music/m/T4crxtlhrqc6l3dv4wo5rm6cun4" + ], + "albumId": 1391, + "artistIds": [ + 1069 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Fyodor", + "id": 1818, + "storeLinks": [ + "https://play.google.com/music/m/Tpbm6uejk47mswdyoqnvbdido7q" + ], + "albumId": 1204, + "artistIds": [ + 924 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Zuzu Blues", + "id": 1819, + "storeLinks": [ + "https://play.google.com/music/m/Tm4tdxnrt5b75isu3s7mtd7j3ga" + ], + "albumId": 1204, + "artistIds": [ + 924 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Like It Is", + "id": 1820, + "storeLinks": [ + "https://play.google.com/music/m/Tip7sn3tayvql3ievozay5fwh6y" + ], + "albumId": 1392, + "artistIds": [ + 1070 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Lottie (From Made In Paris (M-G-M, 1966))", + "id": 1821, + "storeLinks": [ + "https://play.google.com/music/m/T7eehsroqcy25zxtltwxjjvpeim" + ], + "albumId": 1393, + "artistIds": [ + 1071 + ], + "tagIds": [ + 172 + ] + }, + { + "mbApi_typename": "track", + "name": "Woke Up Clipped", + "id": 1822, + "storeLinks": [ + "https://play.google.com/music/m/Tg7jboytzjmzkraj5lgm3gdno5m" + ], + "albumId": 1252, + "artistIds": [ + 975 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "I Don't Know Enough About You", + "id": 1823, + "storeLinks": [ + "https://play.google.com/music/m/Tecsbo3jpbkxzngk7ca3v5je45e" + ], + "albumId": 986, + "artistIds": [ + 754 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Boog It", + "id": 1824, + "storeLinks": [ + "https://play.google.com/music/m/T2ydqvnhiihdzs2w37hekf25u3i" + ], + "albumId": 1394, + "artistIds": [ + 1072 + ], + "tagIds": [ + 179 + ] + }, + { + "mbApi_typename": "track", + "name": "Hot And Anxious", + "id": 1825, + "storeLinks": [ + "https://play.google.com/music/m/Tnryileofrksyw7qqcwwrgjcpbe" + ], + "albumId": 1395, + "artistIds": [ + 1073 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Opp Bop Sh'bam", + "id": 1826, + "storeLinks": [ + "https://play.google.com/music/m/T6omkzastuusxyavbyhgqtrxxeu" + ], + "albumId": 1396, + "artistIds": [ + 1074 + ], + "tagIds": [ + 187 + ] + }, + { + "mbApi_typename": "track", + "name": "Blues My Naughty Sweetie Gave To Me", + "id": 1827, + "storeLinks": [ + "https://play.google.com/music/m/Tveritggjsjpk22lmwvb4vygzme" + ], + "albumId": 1397, + "artistIds": [ + 1075 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "You’re A Heavenly Thing", + "id": 1828, + "storeLinks": [ + "https://play.google.com/music/m/Tszb22yxfx23yv4z7nmt3avkyfy" + ], + "albumId": 1398, + "artistIds": [ + 1076 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Music Makers", + "id": 1829, + "storeLinks": [ + "https://play.google.com/music/m/Tfwckpv33lyw6leipjr7k2ajsui" + ], + "albumId": 1399, + "artistIds": [ + 1077 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Straighten Up And Fly Right", + "id": 1830, + "storeLinks": [ + "https://play.google.com/music/m/Tcxolc2erx2gli7hdo53zrtrq7q" + ], + "albumId": 1400, + "artistIds": [ + 1078 + ], + "tagIds": [ + 135 + ] + }, + { + "mbApi_typename": "track", + "name": "They Can't Take That Away From Me", + "id": 1831, + "storeLinks": [ + "https://play.google.com/music/m/T6z6axk3grhrlwrfmz7gug3bahm" + ], + "albumId": 1401, + "artistIds": [ + 1079 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Just Squeeze Me", + "id": 1832, + "storeLinks": [ + "https://play.google.com/music/m/Tlgmvsqafxf5ktygzm4dwifttlm" + ], + "albumId": 1402, + "artistIds": [ + 1080 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Comes Love", + "id": 1833, + "storeLinks": [ + "https://play.google.com/music/m/Tabno4dnmr3zosgc2leqkrqeh3u" + ], + "albumId": 1403, + "artistIds": [ + 1081 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "I Could Write a Book (Remastered 2015)", + "id": 1834, + "storeLinks": [ + "https://play.google.com/music/m/Tzxrrgqmuupkajy5qyybvznxidy" + ], + "albumId": 1404, + "artistIds": [ + 1082 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Stompin' At the Savoy", + "id": 1835, + "storeLinks": [ + "https://play.google.com/music/m/T7sqevwla2ubhujtxhz3ulpztmu" + ], + "albumId": 1405, + "artistIds": [ + 939 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Life Is So Peculiar (08-23-50)", + "id": 1836, + "storeLinks": [ + "https://play.google.com/music/m/Th4jvpimsam6gwiizrmlgvfom5q" + ], + "albumId": 1406, + "artistIds": [ + 1083 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Can't We Be Friends?", + "id": 1837, + "storeLinks": [ + "https://play.google.com/music/m/Tiviwwco6voejzrml3iofkfv4e4" + ], + "albumId": 1407, + "artistIds": [ + 1084 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Killin' Jive", + "id": 1838, + "storeLinks": [ + "https://play.google.com/music/m/Tp75ybenoj3dc3wb4jcjtmigepu" + ], + "albumId": 1408, + "artistIds": [ + 1085 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "It Might As Well Be Spring", + "id": 1839, + "storeLinks": [ + "https://play.google.com/music/m/Tnuk3k2itk57ox4kwawobge2bli" + ], + "albumId": 1409, + "artistIds": [ + 1079 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Big Mama's Back in Town", + "id": 1840, + "storeLinks": [ + "https://play.google.com/music/m/Tiwsznoqud3utps4vxqaxnlyb5y" + ], + "albumId": 1410, + "artistIds": [ + 1083 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Flat Foot Boogie", + "id": 1841, + "storeLinks": [ + "https://play.google.com/music/m/Trxlndaycu5bd5wolyskecf4jrm" + ], + "albumId": 1411, + "artistIds": [ + 1086 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Hallelujah, I Love Her So", + "id": 1842, + "storeLinks": [ + "https://play.google.com/music/m/T2aud35ax76s25t4xdi4iy7vtli" + ], + "albumId": 1412, + "artistIds": [ + 968 + ], + "tagIds": [ + 188 + ] + }, + { + "mbApi_typename": "track", + "name": "See Jam", + "id": 1843, + "storeLinks": [ + "https://play.google.com/music/m/T7on7to4ozkjy5hnjvb6ekorpfa" + ], + "albumId": 1413, + "artistIds": [ + 1087 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Jack I'm Mellow", + "id": 1844, + "storeLinks": [ + "https://play.google.com/music/m/T25paaenq4pr4g5okzz4tyg3y54" + ], + "albumId": 1413, + "artistIds": [ + 1087 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "A Slip Of The Lip [Can Sink A Ship]", + "id": 1845, + "storeLinks": [ + "https://play.google.com/music/m/T5f6sceqzq7rbbt5e4xtz5fje4u" + ], + "albumId": 1414, + "artistIds": [ + 1088 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Don't Be That Way", + "id": 1846, + "storeLinks": [ + "https://play.google.com/music/m/Tvlvepybmzbkpnv3efwsq3yygoa" + ], + "albumId": 1415, + "artistIds": [ + 939 + ], + "tagIds": [ + 169 + ] + }, + { + "mbApi_typename": "track", + "name": "Frantonality", + "id": 1847, + "storeLinks": [ + "https://play.google.com/music/m/Toax5qjlc5wkgokiuo4djuicdx4" + ], + "albumId": 1416, + "artistIds": [ + 1070 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "In a Mellow Tone", + "id": 1848, + "storeLinks": [ + "https://play.google.com/music/m/Tn2wjcndxpti4ikmzgfnpfdxv3y" + ], + "albumId": 1417, + "artistIds": [ + 1089 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Castle Rock: Sideways", + "id": 1849, + "storeLinks": [ + "https://play.google.com/music/m/Tnwh52c545uo5kmkhe7lentfcjq" + ], + "albumId": 1418, + "artistIds": [ + 1057 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Just You, Just Me", + "id": 1850, + "storeLinks": [ + "https://play.google.com/music/m/T5tjahzwsph4m63myafsfb7pv2i" + ], + "albumId": 1419, + "artistIds": [ + 1016 + ], + "tagIds": [ + 131 + ] + }, + { + "mbApi_typename": "track", + "name": "Easy Does It", + "id": 1851, + "storeLinks": [ + "https://play.google.com/music/m/Tgarsndn2ysuvtjaob5esa3obbq" + ], + "albumId": 1420, + "artistIds": [ + 1090 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "I'm Beginning to See the Light", + "id": 1852, + "storeLinks": [ + "https://play.google.com/music/m/Tgc6273u5nj5p6imv7b7krpiktq" + ], + "albumId": 1421, + "artistIds": [ + 975 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Big Apple Contest", + "id": 1853, + "storeLinks": [ + "https://play.google.com/music/m/T6rjzw3pve4q4sa2nsoe57h45ru" + ], + "albumId": 1422, + "artistIds": [ + 1091 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Grabtown Grapple", + "id": 1854, + "storeLinks": [ + "https://play.google.com/music/m/Tuf3bxhvajg6nmfz2du4xwaulvq" + ], + "albumId": 1423, + "artistIds": [ + 1063 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Paper Doll (feat. Bing Crosby, Duke Ellington, Ella Fitzgerald, Louis Armstrong, Al Jolson & Tom Dorsey)", + "id": 1855, + "storeLinks": [ + "https://play.google.com/music/m/Te4iyjnnyfyibxf6mfk4qtjmhwe" + ], + "albumId": 1424, + "artistIds": [ + 1092 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "What's The Riff (12-31-52)", + "id": 1856, + "storeLinks": [ + "https://play.google.com/music/m/Txmcwlsprremthtexq3m2e7p5le" + ], + "albumId": 1425, + "artistIds": [ + 1093 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Good 'N Groovy (05-02-45)", + "id": 1857, + "storeLinks": [ + "https://play.google.com/music/m/T45bbnjibntxblf6qv76m27mpay" + ], + "albumId": 1426, + "artistIds": [ + 1094 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "A chicken Ain´t Nothing´but a bird", + "id": 1858, + "storeLinks": [ + "https://play.google.com/music/m/Tqxkvbkyzpi2h4nwogcllbg5ozi" + ], + "albumId": 1427, + "artistIds": [ + 1095 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Buckin' The Dice (Tpm: 40)", + "id": 1859, + "storeLinks": [ + "https://play.google.com/music/m/Tu5u4g3eeevdjvuyvbec4rkbrqu" + ], + "albumId": 1428, + "artistIds": [ + 936 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Who Threw the Whiskey Down the Well", + "id": 1860, + "storeLinks": [ + "https://play.google.com/music/m/Tyroonj3h4qvvtilyw4snk5w5yq" + ], + "albumId": 1429, + "artistIds": [ + 1061 + ], + "tagIds": [ + 131 + ] + }, + { + "mbApi_typename": "track", + "name": "Big Fat Mama", + "id": 1861, + "storeLinks": [ + "https://play.google.com/music/m/Tryjyj3sfnllmoeejr2zd646yny" + ], + "albumId": 1429, + "artistIds": [ + 1061 + ], + "tagIds": [ + 131 + ] + }, + { + "mbApi_typename": "track", + "name": "King Porter Stomp (feat. Lester Young)", + "id": 1862, + "storeLinks": [ + "https://play.google.com/music/m/Tcc7bfwmlxnv6izyady2yauboam" + ], + "albumId": 1430, + "artistIds": [ + 977 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Flying Home (version 1)", + "id": 1863, + "storeLinks": [ + "https://play.google.com/music/m/Tmvsgyrwvyczjsfnnb5z6nhyrym" + ], + "albumId": 1431, + "artistIds": [ + 976 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Jeep Jockey Jump", + "id": 1864, + "storeLinks": [ + "https://play.google.com/music/m/Tegdkycdxthdp2ju6dpxzieamoi" + ], + "albumId": 978, + "artistIds": [ + 746 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Traffic Jam", + "id": 1865, + "storeLinks": [ + "https://play.google.com/music/m/Tymyk5mk4jn2wxjz7vhtdqb4iyi" + ], + "albumId": 1432, + "artistIds": [ + 1063 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Count's Place", + "id": 1866, + "storeLinks": [ + "https://play.google.com/music/m/Tl5pfavlsdlpg2krvnf4tgbhbpu" + ], + "albumId": 1433, + "artistIds": [ + 1096 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Dickie's Dream", + "id": 1867, + "storeLinks": [ + "https://play.google.com/music/m/Tfztevojv22ttok3igbbnpgzxjy" + ], + "albumId": 1434, + "artistIds": [ + 977 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Walk 'Em", + "id": 1868, + "storeLinks": [ + "https://play.google.com/music/m/Trusj2ggegyyklyxs74fzjwjgle" + ], + "albumId": 1435, + "artistIds": [ + 1097 + ], + "tagIds": [ + 141 + ] + }, + { + "mbApi_typename": "track", + "name": "That's It, I Quit, I'm Moving on", + "id": 1869, + "storeLinks": [ + "https://play.google.com/music/m/Twc4bxdagdnzrhte7l3mqn35sqm" + ], + "albumId": 1436, + "artistIds": [ + 1098 + ], + "tagIds": [ + 170 + ] + }, + { + "mbApi_typename": "track", + "name": "Just a Simple Melody (Remastered)", + "id": 1870, + "storeLinks": [ + "https://play.google.com/music/m/Tz33lrwdskpgmdn6r3kno5gq3vu" + ], + "albumId": 1437, + "artistIds": [ + 1068 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Rails", + "id": 1871, + "storeLinks": [ + "https://play.google.com/music/m/Tknupmidvj6gumo2chqlpspaeoa" + ], + "albumId": 1438, + "artistIds": [ + 977 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Apollo Jump (09-05-41)", + "id": 1872, + "storeLinks": [ + "https://play.google.com/music/m/Tiqqxybgfwac2p4eeunikq4b75m" + ], + "albumId": 1439, + "artistIds": [ + 1061 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "In The Groove At The Grove [Featuring Ella Fitzgearld]", + "id": 1873, + "storeLinks": [ + "https://play.google.com/music/m/T6yev3zibumgpccworlpjybt44y" + ], + "albumId": 1440, + "artistIds": [ + 1068 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Let's Get Together", + "id": 1874, + "storeLinks": [ + "https://play.google.com/music/m/Tjgvdcxtvvpva7tq6a5evz4zkiu" + ], + "albumId": 1441, + "artistIds": [ + 755 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Tally Ho, Mr. Basie!", + "id": 1875, + "storeLinks": [ + "https://play.google.com/music/m/Tj5ccj45ne22jkag3ha4lspwdj4" + ], + "albumId": 1433, + "artistIds": [ + 1096 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Dipsy Doodle", + "id": 1876, + "storeLinks": [ + "https://play.google.com/music/m/Tdasp6jcsvd6wedfl2evazgjqya" + ], + "albumId": 1442, + "artistIds": [ + 751 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Keep on Churnin' ('til the Butter Comes)", + "id": 1877, + "storeLinks": [ + "https://play.google.com/music/m/Txxyjkwldafakeacsj7gs6mekva" + ], + "albumId": 1443, + "artistIds": [ + 1099 + ], + "tagIds": [ + 179 + ] + }, + { + "mbApi_typename": "track", + "name": "Slidin' And Glidin' (03-02-49)", + "id": 1878, + "storeLinks": [ + "https://play.google.com/music/m/Tmkzsfryhqtesrkib3olclw4ow4" + ], + "albumId": 1444, + "artistIds": [ + 1100 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Jingle Bells", + "id": 1879, + "storeLinks": [ + "https://play.google.com/music/m/Tl32dj4c4geegzfoa4zo32jakuy" + ], + "albumId": 1445, + "artistIds": [ + 1101 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Yacht Club", + "id": 1880, + "storeLinks": [ + "https://play.google.com/music/m/Tbiicfhgsrc6fkxqfdotfwyxecy" + ], + "albumId": 1319, + "artistIds": [ + 1023 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Yacht Club Swing", + "id": 1881, + "storeLinks": [ + "https://play.google.com/music/m/Tjmzxo7rnh3edsmowb2exyj4mq4" + ], + "albumId": 1446, + "artistIds": [ + 936 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Starlight", + "id": 1882, + "storeLinks": [ + "https://play.google.com/music/m/T33yki36objpfwwaohkjla7yhe4" + ], + "albumId": 1447, + "artistIds": [ + 1102 + ], + "tagIds": [ + 141 + ] + }, + { + "mbApi_typename": "track", + "name": "Burning", + "id": 1883, + "storeLinks": [ + "https://play.google.com/music/m/T3wzwujk6kmbgaxidppy2bg7jbi" + ], + "albumId": 1314, + "artistIds": [ + 1019 + ], + "tagIds": [ + 182 + ] + }, + { + "mbApi_typename": "track", + "name": "Take Me Out", + "id": 1884, + "storeLinks": [ + "https://play.google.com/music/m/Tdewtmxh7rnryaoec3mdgc7c7oi" + ], + "albumId": 1067, + "artistIds": [ + 827 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "I Want You Back (From \"Guardians of the Galaxy\")", + "id": 1885, + "storeLinks": [ + "https://play.google.com/music/m/T4p42qbjxneuiuimlx74vzricd4" + ], + "albumId": 1448, + "artistIds": [ + 1103 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Sweatshop", + "id": 1886, + "storeLinks": [ + "https://play.google.com/music/m/Tqyz3xwrh2w74hvl3lg42geaduq" + ], + "albumId": 1449, + "artistIds": [ + 810 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "I'm A Rat", + "id": 1887, + "storeLinks": [ + "https://play.google.com/music/m/Tiqsauj4lr4nvxcahr2424vry7a" + ], + "albumId": 1449, + "artistIds": [ + 810 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Short Skirt / Long Jacket", + "id": 1888, + "storeLinks": [ + "https://play.google.com/music/m/T7lk7cotsjucbwxfc6ugewz4abi" + ], + "albumId": 1450, + "artistIds": [ + 897 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Bunker", + "id": 1889, + "storeLinks": [ + "https://play.google.com/music/m/Tusrmckt7nlovzr4ejysrhopg7u" + ], + "albumId": 1168, + "artistIds": [ + 909 + ], + "tagIds": [ + 150 + ] + }, + { + "mbApi_typename": "track", + "name": "Nightclub", + "id": 1890, + "storeLinks": [ + "https://play.google.com/music/m/Twnxqosniu32b6lm57prl4nw524" + ], + "albumId": 1168, + "artistIds": [ + 909 + ], + "tagIds": [ + 150 + ] + }, + { + "mbApi_typename": "track", + "name": "Medicine", + "id": 1891, + "storeLinks": [ + "https://play.google.com/music/m/T3k2ryldpf7yn6pcm6zdxeochhu" + ], + "albumId": 1451, + "artistIds": [ + 1104 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Somebody That I Used to Know", + "id": 1892, + "storeLinks": [ + "https://play.google.com/music/m/Twd3skfkhxnamxo2ji4eodbwmpy" + ], + "albumId": 1452, + "artistIds": [ + 1105 + ], + "tagIds": [ + 155 + ] + }, + { + "mbApi_typename": "track", + "name": "Act of Leaving", + "id": 1893, + "storeLinks": [ + "https://play.google.com/music/m/Ti6yu2vcxow37q3axm5ig25ep2q" + ], + "albumId": 1453, + "artistIds": [ + 1106 + ], + "tagIds": [ + 134 + ] + }, + { + "mbApi_typename": "track", + "name": "Happy Family", + "id": 1894, + "storeLinks": [ + "https://play.google.com/music/m/T4d3mtc6mmnplpt7qeaeb3cqkxy" + ], + "albumId": 1454, + "artistIds": [ + 1107 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Pawns", + "id": 1895, + "storeLinks": [ + "https://play.google.com/music/m/T7dksbl7nbmux5ipj6hkxudalea" + ], + "albumId": 1455, + "artistIds": [ + 1108 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "These Are The Days", + "id": 1896, + "storeLinks": [ + "https://play.google.com/music/m/Tfnzu7wq776ug7zeb45dk4dow24" + ], + "albumId": 1456, + "artistIds": [ + 1049 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "Twentysomething", + "id": 1897, + "storeLinks": [ + "https://play.google.com/music/m/Tqityrxi54ksup7yp5ntt7qnl7y" + ], + "albumId": 1456, + "artistIds": [ + 1049 + ], + "tagIds": [ + 130 + ] + }, + { + "mbApi_typename": "track", + "name": "My Shit's Fucked Up", + "id": 1898, + "storeLinks": [ + "https://play.google.com/music/m/Txj6tmyvwuokboft4hwvmmb7jbm" + ], + "albumId": 1457, + "artistIds": [ + 1109 + ], + "tagIds": [ + 129 + ] + }, + { + "mbApi_typename": "track", + "name": "Spoonman", + "id": 1899, + "storeLinks": [ + "https://play.google.com/music/m/Tyxatdy6aqawgsgqdwiwokpelea" + ], + "albumId": 1458, + "artistIds": [ + 1110 + ], + "tagIds": [ + 174 + ] + }, + { + "mbApi_typename": "track", + "name": "Pride and Joy", + "id": 1900, + "storeLinks": [ + "https://play.google.com/music/m/Tmcqbajqkdcrqpr3wrtiuywmpuq" + ], + "albumId": 1459, + "artistIds": [ + 1111 + ], + "tagIds": [ + 189 + ] + }, + { + "mbApi_typename": "track", + "name": "Bridge to Better Days", + "id": 1901, + "storeLinks": [ + "https://play.google.com/music/m/T5xbfy4zqgtnjt5j5u5sdoycffu" + ], + "albumId": 1460, + "artistIds": [ + 1112 + ], + "tagIds": [ + 189 + ] + }, + { + "mbApi_typename": "track", + "name": "Toxic (Acoustic)", + "id": 1902, + "storeLinks": [ + "https://play.google.com/music/m/Tcw6lyoa6uc6vuqtdkyjwcuiyj4" + ], + "albumId": 1461, + "artistIds": [ + 1113 + ], + "tagIds": [ + 132 + ] + }, + { + "mbApi_typename": "track", + "name": "Barracuda", + "id": 1903, + "storeLinks": [ + "https://play.google.com/music/m/Tllko5cvht5pfdxtyx5mtisycry" + ], + "albumId": 1462, + "artistIds": [ + 1114 + ], + "tagIds": [ + 145 + ] + }, + { + "mbApi_typename": "track", + "name": "La Grange (1999 Remaster)", + "id": 1904, + "storeLinks": [ + "https://play.google.com/music/m/Trghomgibrl6hrirwwnfigy4pii" + ], + "albumId": 1463, + "artistIds": [ + 1115 + ], + "tagIds": [ + 145 + ] + }, + { + "mbApi_typename": "track", + "name": "Ain't No Sunshine", + "id": 1905, + "storeLinks": [ + "https://play.google.com/music/m/Tsgjduwwm5ukjk5in2kgdqjwp5q" + ], + "albumId": 1464, + "artistIds": [ + 1116 + ], + "tagIds": [ + 130 + ] + } + ], + "albums": [ + { + "mbApi_typename": "album", + "id": 977, + "name": "The History of Rhythm and Blues 1925 - 1942", + "storeLinks": [], + "artistIds": [ + 745 + ], + "tagIds": [], + "trackIds": [ + 1271 + ] + }, + { + "mbApi_typename": "album", + "id": 978, + "name": "Swingin' the Century", + "storeLinks": [], + "artistIds": [ + 746 + ], + "tagIds": [], + "trackIds": [ + 1272, + 1864 + ] + }, + { + "mbApi_typename": "album", + "id": 979, + "name": "Happy Times (Remastered 2015)", + "storeLinks": [], + "artistIds": [ + 747 + ], + "tagIds": [], + "trackIds": [ + 1273 + ] + }, + { + "mbApi_typename": "album", + "id": 980, + "name": "Preservation Hall Hot 4 With Duke Dejan", + "storeLinks": [], + "artistIds": [ + 748 + ], + "tagIds": [], + "trackIds": [ + 1274, + 1276 + ] + }, + { + "mbApi_typename": "album", + "id": 981, + "name": "Ella and Basie On the Sunny Side of the Street", + "storeLinks": [], + "artistIds": [ + 749 + ], + "tagIds": [], + "trackIds": [ + 1275 + ] + }, + { + "mbApi_typename": "album", + "id": 982, + "name": "An Album To Benefit Preservation Hall & The Preservation Hall Music Outreach Program", + "storeLinks": [], + "artistIds": [ + 750 + ], + "tagIds": [], + "trackIds": [ + 1277 + ] + }, + { + "mbApi_typename": "album", + "id": 983, + "name": "Get Happy", + "storeLinks": [], + "artistIds": [ + 751 + ], + "tagIds": [], + "trackIds": [ + 1278 + ] + }, + { + "mbApi_typename": "album", + "id": 984, + "name": "Saga Jazz: The Rockin' Chair Lady", + "storeLinks": [], + "artistIds": [ + 752 + ], + "tagIds": [], + "trackIds": [ + 1279 + ] + }, + { + "mbApi_typename": "album", + "id": 985, + "name": "Sleepless In Seattle: Original Motion Picture Soundtrack", + "storeLinks": [], + "artistIds": [ + 753 + ], + "tagIds": [], + "trackIds": [ + 1280 + ] + }, + { + "mbApi_typename": "album", + "id": 986, + "name": "Moppin' And Boppin'", + "storeLinks": [], + "artistIds": [ + 754 + ], + "tagIds": [], + "trackIds": [ + 1281, + 1823 + ] + }, + { + "mbApi_typename": "album", + "id": 987, + "name": "Redwood Tree", + "storeLinks": [], + "artistIds": [ + 745 + ], + "tagIds": [], + "trackIds": [ + 1282 + ] + }, + { + "mbApi_typename": "album", + "id": 988, + "name": "Louis and Duke Together", + "storeLinks": [], + "artistIds": [ + 755 + ], + "tagIds": [], + "trackIds": [ + 1283 + ] + }, + { + "mbApi_typename": "album", + "id": 989, + "name": "Currents", + "storeLinks": [], + "artistIds": [ + 756 + ], + "tagIds": [], + "trackIds": [ + 1284 + ] + }, + { + "mbApi_typename": "album", + "id": 990, + "name": "Fugitives", + "storeLinks": [], + "artistIds": [ + 757 + ], + "tagIds": [], + "trackIds": [ + 1285 + ] + }, + { + "mbApi_typename": "album", + "id": 991, + "name": "Live at the North Sea Jazz Festival", + "storeLinks": [], + "artistIds": [ + 758 + ], + "tagIds": [], + "trackIds": [ + 1286 + ] + }, + { + "mbApi_typename": "album", + "id": 992, + "name": "The Missing (Original Television Soundtrack)", + "storeLinks": [], + "artistIds": [ + 759 + ], + "tagIds": [], + "trackIds": [ + 1287 + ] + }, + { + "mbApi_typename": "album", + "id": 993, + "name": "Nothing's Real But Love", + "storeLinks": [], + "artistIds": [ + 760 + ], + "tagIds": [], + "trackIds": [ + 1288 + ] + }, + { + "mbApi_typename": "album", + "id": 994, + "name": "Buena Vista Social Club", + "storeLinks": [], + "artistIds": [ + 761 + ], + "tagIds": [], + "trackIds": [ + 1289, + 1713, + 1722 + ] + }, + { + "mbApi_typename": "album", + "id": 995, + "name": "Another Day", + "storeLinks": [], + "artistIds": [ + 762 + ], + "tagIds": [], + "trackIds": [ + 1290 + ] + }, + { + "mbApi_typename": "album", + "id": 996, + "name": "Lunatico", + "storeLinks": [], + "artistIds": [ + 763 + ], + "tagIds": [], + "trackIds": [ + 1291 + ] + }, + { + "mbApi_typename": "album", + "id": 997, + "name": "Globalization", + "storeLinks": [], + "artistIds": [ + 764 + ], + "tagIds": [], + "trackIds": [ + 1292 + ] + }, + { + "mbApi_typename": "album", + "id": 998, + "name": "The Electric Guitar Man", + "storeLinks": [], + "artistIds": [ + 765 + ], + "tagIds": [], + "trackIds": [ + 1293 + ] + }, + { + "mbApi_typename": "album", + "id": 999, + "name": "Forever Gold - The Very Best Of", + "storeLinks": [], + "artistIds": [ + 766 + ], + "tagIds": [], + "trackIds": [ + 1294 + ] + }, + { + "mbApi_typename": "album", + "id": 1000, + "name": "Venus & Mars", + "storeLinks": [], + "artistIds": [ + 767 + ], + "tagIds": [], + "trackIds": [ + 1295, + 1412 + ] + }, + { + "mbApi_typename": "album", + "id": 1001, + "name": "Sunny Side Up", + "storeLinks": [], + "artistIds": [ + 768 + ], + "tagIds": [], + "trackIds": [ + 1296 + ] + }, + { + "mbApi_typename": "album", + "id": 1002, + "name": "Caustic Love", + "storeLinks": [], + "artistIds": [ + 768 + ], + "tagIds": [], + "trackIds": [ + 1297, + 1389 + ] + }, + { + "mbApi_typename": "album", + "id": 1003, + "name": "The Collection", + "storeLinks": [], + "artistIds": [ + 769 + ], + "tagIds": [], + "trackIds": [ + 1298 + ] + }, + { + "mbApi_typename": "album", + "id": 1004, + "name": "Battle Axe", + "storeLinks": [], + "artistIds": [ + 770 + ], + "tagIds": [], + "trackIds": [ + 1299, + 1620 + ] + }, + { + "mbApi_typename": "album", + "id": 1005, + "name": "Bohèmes, une bande son par Béatrice Ardisson", + "storeLinks": [], + "artistIds": [ + 771 + ], + "tagIds": [], + "trackIds": [ + 1300 + ] + }, + { + "mbApi_typename": "album", + "id": 1006, + "name": "Bistro Fada", + "storeLinks": [], + "artistIds": [ + 772 + ], + "tagIds": [], + "trackIds": [ + 1301 + ] + }, + { + "mbApi_typename": "album", + "id": 1007, + "name": "London Town", + "storeLinks": [], + "artistIds": [ + 773 + ], + "tagIds": [], + "trackIds": [ + 1302 + ] + }, + { + "mbApi_typename": "album", + "id": 1008, + "name": "Tonight Josephine / Aerophon Maxi", + "storeLinks": [], + "artistIds": [ + 774 + ], + "tagIds": [], + "trackIds": [ + 1303 + ] + }, + { + "mbApi_typename": "album", + "id": 1009, + "name": "Big Suspicious", + "storeLinks": [], + "artistIds": [ + 775 + ], + "tagIds": [], + "trackIds": [ + 1304 + ] + }, + { + "mbApi_typename": "album", + "id": 1010, + "name": "Vintage Café: Lounge and Jazz Blends (Special Selection), Pt. 4", + "storeLinks": [], + "artistIds": [ + 776 + ], + "tagIds": [], + "trackIds": [ + 1305 + ] + }, + { + "mbApi_typename": "album", + "id": 1011, + "name": "Carmin", + "storeLinks": [], + "artistIds": [ + 777 + ], + "tagIds": [], + "trackIds": [ + 1306 + ] + }, + { + "mbApi_typename": "album", + "id": 1012, + "name": "Paris Milonga", + "storeLinks": [], + "artistIds": [ + 778 + ], + "tagIds": [], + "trackIds": [ + 1307 + ] + }, + { + "mbApi_typename": "album", + "id": 1013, + "name": "Rockabilly & Hillbilly Hell Raisers", + "storeLinks": [], + "artistIds": [ + 779 + ], + "tagIds": [], + "trackIds": [ + 1308 + ] + }, + { + "mbApi_typename": "album", + "id": 1014, + "name": "Mary Jane", + "storeLinks": [], + "artistIds": [ + 780 + ], + "tagIds": [], + "trackIds": [ + 1309 + ] + }, + { + "mbApi_typename": "album", + "id": 1015, + "name": "Immortalized", + "storeLinks": [], + "artistIds": [ + 781 + ], + "tagIds": [], + "trackIds": [ + 1310 + ] + }, + { + "mbApi_typename": "album", + "id": 1016, + "name": "The Seldom Seen Kid (Bonus Tracks Version)", + "storeLinks": [], + "artistIds": [ + 782 + ], + "tagIds": [], + "trackIds": [ + 1311 + ] + }, + { + "mbApi_typename": "album", + "id": 1017, + "name": "Shotgun", + "storeLinks": [], + "artistIds": [ + 783 + ], + "tagIds": [], + "trackIds": [ + 1312 + ] + }, + { + "mbApi_typename": "album", + "id": 1018, + "name": "Mr. Big Stuff (Remastered)", + "storeLinks": [], + "artistIds": [ + 784 + ], + "tagIds": [], + "trackIds": [ + 1313 + ] + }, + { + "mbApi_typename": "album", + "id": 1019, + "name": "Harvest (Remastered Version)", + "storeLinks": [], + "artistIds": [ + 785 + ], + "tagIds": [], + "trackIds": [ + 1314 + ] + }, + { + "mbApi_typename": "album", + "id": 1020, + "name": "Magic Moments: Instrumental Love Songs of the Swing Era, Vol. 1", + "storeLinks": [], + "artistIds": [ + 786 + ], + "tagIds": [], + "trackIds": [ + 1315 + ] + }, + { + "mbApi_typename": "album", + "id": 1021, + "name": "The Swing Era: The Best of the Instrumentals", + "storeLinks": [], + "artistIds": [ + 787 + ], + "tagIds": [], + "trackIds": [ + 1316 + ] + }, + { + "mbApi_typename": "album", + "id": 1022, + "name": "The Swing Era: The Best of the Instrumentals", + "storeLinks": [], + "artistIds": [ + 788 + ], + "tagIds": [], + "trackIds": [ + 1317 + ] + }, + { + "mbApi_typename": "album", + "id": 1023, + "name": "The Swing Era: The Best of the Instrumentals", + "storeLinks": [], + "artistIds": [ + 789 + ], + "tagIds": [], + "trackIds": [ + 1318 + ] + }, + { + "mbApi_typename": "album", + "id": 1024, + "name": "Déjà Vu", + "storeLinks": [], + "artistIds": [ + 790 + ], + "tagIds": [], + "trackIds": [ + 1319 + ] + }, + { + "mbApi_typename": "album", + "id": 1025, + "name": "4 Way Street", + "storeLinks": [], + "artistIds": [ + 790 + ], + "tagIds": [], + "trackIds": [ + 1320 + ] + }, + { + "mbApi_typename": "album", + "id": 1026, + "name": "The Best so Far…", + "storeLinks": [], + "artistIds": [ + 791 + ], + "tagIds": [], + "trackIds": [ + 1321 + ] + }, + { + "mbApi_typename": "album", + "id": 1027, + "name": "Best Friend", + "storeLinks": [], + "artistIds": [ + 792 + ], + "tagIds": [], + "trackIds": [ + 1322 + ] + }, + { + "mbApi_typename": "album", + "id": 1028, + "name": "Passing Through (Deluxe)", + "storeLinks": [], + "artistIds": [ + 793 + ], + "tagIds": [], + "trackIds": [ + 1323 + ] + }, + { + "mbApi_typename": "album", + "id": 1029, + "name": "I Remember When", + "storeLinks": [], + "artistIds": [ + 794 + ], + "tagIds": [], + "trackIds": [ + 1324, + 1325 + ] + }, + { + "mbApi_typename": "album", + "id": 1030, + "name": "How Did We Get So Dark?", + "storeLinks": [], + "artistIds": [ + 795 + ], + "tagIds": [], + "trackIds": [ + 1326 + ] + }, + { + "mbApi_typename": "album", + "id": 1031, + "name": "Them Crooked Vultures", + "storeLinks": [], + "artistIds": [ + 796 + ], + "tagIds": [], + "trackIds": [ + 1327 + ] + }, + { + "mbApi_typename": "album", + "id": 1032, + "name": "Don't Cry Baby", + "storeLinks": [], + "artistIds": [ + 797 + ], + "tagIds": [], + "trackIds": [ + 1328 + ] + }, + { + "mbApi_typename": "album", + "id": 1033, + "name": "Good Company", + "storeLinks": [], + "artistIds": [ + 798 + ], + "tagIds": [], + "trackIds": [ + 1329 + ] + }, + { + "mbApi_typename": "album", + "id": 1034, + "name": "The Forties - Million Sellers", + "storeLinks": [], + "artistIds": [ + 799 + ], + "tagIds": [], + "trackIds": [ + 1330 + ] + }, + { + "mbApi_typename": "album", + "id": 1035, + "name": "Uncaged", + "storeLinks": [], + "artistIds": [ + 800 + ], + "tagIds": [], + "trackIds": [ + 1331 + ] + }, + { + "mbApi_typename": "album", + "id": 1036, + "name": "In Je Nakie", + "storeLinks": [], + "artistIds": [ + 801 + ], + "tagIds": [], + "trackIds": [ + 1332 + ] + }, + { + "mbApi_typename": "album", + "id": 1037, + "name": "Because Of Billie", + "storeLinks": [], + "artistIds": [ + 762 + ], + "tagIds": [], + "trackIds": [ + 1333 + ] + }, + { + "mbApi_typename": "album", + "id": 1038, + "name": "This Is All Yours", + "storeLinks": [], + "artistIds": [ + 802 + ], + "tagIds": [], + "trackIds": [ + 1334, + 1393 + ] + }, + { + "mbApi_typename": "album", + "id": 1039, + "name": "A Solitary Man", + "storeLinks": [], + "artistIds": [ + 803 + ], + "tagIds": [], + "trackIds": [ + 1335 + ] + }, + { + "mbApi_typename": "album", + "id": 1040, + "name": "Such Great Heights", + "storeLinks": [], + "artistIds": [ + 804 + ], + "tagIds": [], + "trackIds": [ + 1336 + ] + }, + { + "mbApi_typename": "album", + "id": 1041, + "name": "In the Summertime", + "storeLinks": [], + "artistIds": [ + 805 + ], + "tagIds": [], + "trackIds": [ + 1337 + ] + }, + { + "mbApi_typename": "album", + "id": 1042, + "name": "Up From Below (Remastered)", + "storeLinks": [], + "artistIds": [ + 806 + ], + "tagIds": [], + "trackIds": [ + 1338 + ] + }, + { + "mbApi_typename": "album", + "id": 1043, + "name": "Veckatimest", + "storeLinks": [], + "artistIds": [ + 807 + ], + "tagIds": [], + "trackIds": [ + 1339 + ] + }, + { + "mbApi_typename": "album", + "id": 1044, + "name": "Room On Fire", + "storeLinks": [], + "artistIds": [ + 808 + ], + "tagIds": [], + "trackIds": [ + 1340 + ] + }, + { + "mbApi_typename": "album", + "id": 1045, + "name": "First Impressions Of Earth", + "storeLinks": [], + "artistIds": [ + 808 + ], + "tagIds": [], + "trackIds": [ + 1341 + ] + }, + { + "mbApi_typename": "album", + "id": 1046, + "name": "Can't Stop Running", + "storeLinks": [], + "artistIds": [ + 809 + ], + "tagIds": [], + "trackIds": [ + 1342 + ] + }, + { + "mbApi_typename": "album", + "id": 1047, + "name": "O", + "storeLinks": [], + "artistIds": [ + 810 + ], + "tagIds": [], + "trackIds": [ + 1343, + 1396 + ] + }, + { + "mbApi_typename": "album", + "id": 1048, + "name": "Dig Down", + "storeLinks": [], + "artistIds": [ + 811 + ], + "tagIds": [], + "trackIds": [ + 1344 + ] + }, + { + "mbApi_typename": "album", + "id": 1049, + "name": "Concrete and Gold", + "storeLinks": [], + "artistIds": [ + 812 + ], + "tagIds": [], + "trackIds": [ + 1345 + ] + }, + { + "mbApi_typename": "album", + "id": 1050, + "name": "Black Holes And Revelations", + "storeLinks": [], + "artistIds": [ + 811 + ], + "tagIds": [], + "trackIds": [ + 1346, + 1348 + ] + }, + { + "mbApi_typename": "album", + "id": 1051, + "name": "These Streets", + "storeLinks": [], + "artistIds": [ + 768 + ], + "tagIds": [], + "trackIds": [ + 1347 + ] + }, + { + "mbApi_typename": "album", + "id": 1052, + "name": "Human (Deluxe)", + "storeLinks": [], + "artistIds": [ + 813 + ], + "tagIds": [], + "trackIds": [ + 1349 + ] + }, + { + "mbApi_typename": "album", + "id": 1053, + "name": "Ghost Stories", + "storeLinks": [], + "artistIds": [ + 814 + ], + "tagIds": [], + "trackIds": [ + 1350 + ] + }, + { + "mbApi_typename": "album", + "id": 1054, + "name": "Wanted on Voyage", + "storeLinks": [], + "artistIds": [ + 815 + ], + "tagIds": [], + "trackIds": [ + 1351, + 1422 + ] + }, + { + "mbApi_typename": "album", + "id": 1055, + "name": "The Game", + "storeLinks": [], + "artistIds": [ + 816 + ], + "tagIds": [], + "trackIds": [ + 1352 + ] + }, + { + "mbApi_typename": "album", + "id": 1056, + "name": "Dream Your Life Away (Special Edition)", + "storeLinks": [], + "artistIds": [ + 817 + ], + "tagIds": [], + "trackIds": [ + 1353 + ] + }, + { + "mbApi_typename": "album", + "id": 1057, + "name": "Lungs (Deluxe Version)", + "storeLinks": [], + "artistIds": [ + 818 + ], + "tagIds": [], + "trackIds": [ + 1354 + ] + }, + { + "mbApi_typename": "album", + "id": 1058, + "name": "Demon Days", + "storeLinks": [], + "artistIds": [ + 819 + ], + "tagIds": [], + "trackIds": [ + 1355 + ] + }, + { + "mbApi_typename": "album", + "id": 1059, + "name": "We Sing. We Dance. We Steal Things.", + "storeLinks": [], + "artistIds": [ + 820 + ], + "tagIds": [], + "trackIds": [ + 1356 + ] + }, + { + "mbApi_typename": "album", + "id": 1060, + "name": "In Between Dreams", + "storeLinks": [], + "artistIds": [ + 821 + ], + "tagIds": [], + "trackIds": [ + 1357, + 1433 + ] + }, + { + "mbApi_typename": "album", + "id": 1061, + "name": "Speakerboxxx/The Love Below (Deluxe)", + "storeLinks": [], + "artistIds": [ + 822 + ], + "tagIds": [], + "trackIds": [ + 1358 + ] + }, + { + "mbApi_typename": "album", + "id": 1062, + "name": "Onka's Big Moka", + "storeLinks": [], + "artistIds": [ + 823 + ], + "tagIds": [], + "trackIds": [ + 1359 + ] + }, + { + "mbApi_typename": "album", + "id": 1063, + "name": "Fill My Little World", + "storeLinks": [], + "artistIds": [ + 824 + ], + "tagIds": [], + "trackIds": [ + 1360 + ] + }, + { + "mbApi_typename": "album", + "id": 1064, + "name": "Weezer (Green Album)", + "storeLinks": [], + "artistIds": [ + 825 + ], + "tagIds": [], + "trackIds": [ + 1361 + ] + }, + { + "mbApi_typename": "album", + "id": 1065, + "name": "The Distant Future", + "storeLinks": [], + "artistIds": [ + 826 + ], + "tagIds": [], + "trackIds": [ + 1362, + 1363 + ] + }, + { + "mbApi_typename": "album", + "id": 1066, + "name": "Gorillaz", + "storeLinks": [], + "artistIds": [ + 819 + ], + "tagIds": [], + "trackIds": [ + 1364 + ] + }, + { + "mbApi_typename": "album", + "id": 1067, + "name": "Franz Ferdinand", + "storeLinks": [], + "artistIds": [ + 827 + ], + "tagIds": [], + "trackIds": [ + 1365, + 1884 + ] + }, + { + "mbApi_typename": "album", + "id": 1068, + "name": "The Best Chart Album in the World... Ever!", + "storeLinks": [], + "artistIds": [ + 828 + ], + "tagIds": [], + "trackIds": [ + 1366 + ] + }, + { + "mbApi_typename": "album", + "id": 1069, + "name": "Sound & Color", + "storeLinks": [], + "artistIds": [ + 829 + ], + "tagIds": [], + "trackIds": [ + 1367 + ] + }, + { + "mbApi_typename": "album", + "id": 1070, + "name": "Reservoir Dogs (Original Motion Picture Soundtrack)", + "storeLinks": [], + "artistIds": [ + 830 + ], + "tagIds": [], + "trackIds": [ + 1368 + ] + }, + { + "mbApi_typename": "album", + "id": 1071, + "name": "Abbey Road (Remastered)", + "storeLinks": [], + "artistIds": [ + 831 + ], + "tagIds": [], + "trackIds": [ + 1369, + 1724 + ] + }, + { + "mbApi_typename": "album", + "id": 1072, + "name": "On And On", + "storeLinks": [], + "artistIds": [ + 821 + ], + "tagIds": [], + "trackIds": [ + 1370, + 1377 + ] + }, + { + "mbApi_typename": "album", + "id": 1073, + "name": "Sounds Like This", + "storeLinks": [], + "artistIds": [ + 832 + ], + "tagIds": [], + "trackIds": [ + 1371 + ] + }, + { + "mbApi_typename": "album", + "id": 1074, + "name": "Room For Squares", + "storeLinks": [], + "artistIds": [ + 833 + ], + "tagIds": [], + "trackIds": [ + 1372 + ] + }, + { + "mbApi_typename": "album", + "id": 1075, + "name": "Fight For Your Mind", + "storeLinks": [], + "artistIds": [ + 834 + ], + "tagIds": [], + "trackIds": [ + 1373 + ] + }, + { + "mbApi_typename": "album", + "id": 1076, + "name": "The Hustle", + "storeLinks": [], + "artistIds": [ + 835 + ], + "tagIds": [], + "trackIds": [ + 1374 + ] + }, + { + "mbApi_typename": "album", + "id": 1077, + "name": "Donavon Frankenreiter", + "storeLinks": [], + "artistIds": [ + 836 + ], + "tagIds": [], + "trackIds": [ + 1375 + ] + }, + { + "mbApi_typename": "album", + "id": 1078, + "name": "Stuff", + "storeLinks": [], + "artistIds": [ + 837 + ], + "tagIds": [], + "trackIds": [ + 1376 + ] + }, + { + "mbApi_typename": "album", + "id": 1079, + "name": "Stayin' out Late", + "storeLinks": [], + "artistIds": [ + 838 + ], + "tagIds": [], + "trackIds": [ + 1378, + 1465, + 1470, + 1671, + 1721 + ] + }, + { + "mbApi_typename": "album", + "id": 1080, + "name": "Unorthodox Jukebox", + "storeLinks": [], + "artistIds": [ + 839 + ], + "tagIds": [], + "trackIds": [ + 1379, + 1424 + ] + }, + { + "mbApi_typename": "album", + "id": 1081, + "name": "Tribute", + "storeLinks": [], + "artistIds": [ + 840 + ], + "tagIds": [], + "trackIds": [ + 1380, + 1418 + ] + }, + { + "mbApi_typename": "album", + "id": 1082, + "name": "x (Deluxe Edition)", + "storeLinks": [], + "artistIds": [ + 841 + ], + "tagIds": [], + "trackIds": [ + 1381 + ] + }, + { + "mbApi_typename": "album", + "id": 1083, + "name": "Uptown Special", + "storeLinks": [], + "artistIds": [ + 842 + ], + "tagIds": [], + "trackIds": [ + 1382 + ] + }, + { + "mbApi_typename": "album", + "id": 1084, + "name": "Overexposed", + "storeLinks": [], + "artistIds": [ + 843 + ], + "tagIds": [], + "trackIds": [ + 1383 + ] + }, + { + "mbApi_typename": "album", + "id": 1085, + "name": "Doo-Wops & Hooligans", + "storeLinks": [], + "artistIds": [ + 839 + ], + "tagIds": [], + "trackIds": [ + 1384 + ] + }, + { + "mbApi_typename": "album", + "id": 1086, + "name": "Blurred Lines (Deluxe)", + "storeLinks": [], + "artistIds": [ + 844 + ], + "tagIds": [], + "trackIds": [ + 1385 + ] + }, + { + "mbApi_typename": "album", + "id": 1087, + "name": "My Type", + "storeLinks": [], + "artistIds": [ + 845 + ], + "tagIds": [], + "trackIds": [ + 1386 + ] + }, + { + "mbApi_typename": "album", + "id": 1088, + "name": "Get Lucky", + "storeLinks": [], + "artistIds": [ + 846 + ], + "tagIds": [], + "trackIds": [ + 1387 + ] + }, + { + "mbApi_typename": "album", + "id": 1089, + "name": "Shine", + "storeLinks": [], + "artistIds": [ + 847 + ], + "tagIds": [], + "trackIds": [ + 1388 + ] + }, + { + "mbApi_typename": "album", + "id": 1090, + "name": "XSCAPE", + "storeLinks": [], + "artistIds": [ + 848 + ], + "tagIds": [], + "trackIds": [ + 1390 + ] + }, + { + "mbApi_typename": "album", + "id": 1091, + "name": "A Perfect Contradiction (Outsiders' Expanded Edition)", + "storeLinks": [], + "artistIds": [ + 849 + ], + "tagIds": [], + "trackIds": [ + 1391 + ] + }, + { + "mbApi_typename": "album", + "id": 1092, + "name": "San Cisco", + "storeLinks": [], + "artistIds": [ + 850 + ], + "tagIds": [], + "trackIds": [ + 1392 + ] + }, + { + "mbApi_typename": "album", + "id": 1093, + "name": "Jake Bugg", + "storeLinks": [], + "artistIds": [ + 851 + ], + "tagIds": [], + "trackIds": [ + 1394 + ] + }, + { + "mbApi_typename": "album", + "id": 1094, + "name": "Kala", + "storeLinks": [], + "artistIds": [ + 852 + ], + "tagIds": [], + "trackIds": [ + 1395 + ] + }, + { + "mbApi_typename": "album", + "id": 1095, + "name": "Razorlight", + "storeLinks": [], + "artistIds": [ + 853 + ], + "tagIds": [], + "trackIds": [ + 1397 + ] + }, + { + "mbApi_typename": "album", + "id": 1096, + "name": "Employment", + "storeLinks": [], + "artistIds": [ + 854 + ], + "tagIds": [], + "trackIds": [ + 1398 + ] + }, + { + "mbApi_typename": "album", + "id": 1097, + "name": "Thirteen Tales From Urban Bohemia", + "storeLinks": [], + "artistIds": [ + 855 + ], + "tagIds": [], + "trackIds": [ + 1399 + ] + }, + { + "mbApi_typename": "album", + "id": 1098, + "name": "Hot Fuss", + "storeLinks": [], + "artistIds": [ + 856 + ], + "tagIds": [], + "trackIds": [ + 1400 + ] + }, + { + "mbApi_typename": "album", + "id": 1099, + "name": "You Could Have It So Much Better", + "storeLinks": [], + "artistIds": [ + 827 + ], + "tagIds": [], + "trackIds": [ + 1401 + ] + }, + { + "mbApi_typename": "album", + "id": 1100, + "name": "Oracular Spectacular", + "storeLinks": [], + "artistIds": [ + 857 + ], + "tagIds": [], + "trackIds": [ + 1402 + ] + }, + { + "mbApi_typename": "album", + "id": 1101, + "name": "Electric", + "storeLinks": [], + "artistIds": [ + 858 + ], + "tagIds": [], + "trackIds": [ + 1403 + ] + }, + { + "mbApi_typename": "album", + "id": 1102, + "name": "West Ryder Pauper Lunatic Asylum", + "storeLinks": [], + "artistIds": [ + 859 + ], + "tagIds": [], + "trackIds": [ + 1404 + ] + }, + { + "mbApi_typename": "album", + "id": 1103, + "name": "Get Born", + "storeLinks": [], + "artistIds": [ + 860 + ], + "tagIds": [], + "trackIds": [ + 1405 + ] + }, + { + "mbApi_typename": "album", + "id": 1104, + "name": "Venus", + "storeLinks": [], + "artistIds": [ + 767 + ], + "tagIds": [], + "trackIds": [ + 1406 + ] + }, + { + "mbApi_typename": "album", + "id": 1105, + "name": "Give Me Fire", + "storeLinks": [], + "artistIds": [ + 861 + ], + "tagIds": [], + "trackIds": [ + 1407 + ] + }, + { + "mbApi_typename": "album", + "id": 1106, + "name": "Runtastic - Power Workout (Vol. 1)", + "storeLinks": [], + "artistIds": [ + 862 + ], + "tagIds": [], + "trackIds": [ + 1408 + ] + }, + { + "mbApi_typename": "album", + "id": 1107, + "name": "Costello Music", + "storeLinks": [], + "artistIds": [ + 863 + ], + "tagIds": [], + "trackIds": [ + 1409 + ] + }, + { + "mbApi_typename": "album", + "id": 1108, + "name": "The Coral", + "storeLinks": [], + "artistIds": [ + 864 + ], + "tagIds": [], + "trackIds": [ + 1410 + ] + }, + { + "mbApi_typename": "album", + "id": 1109, + "name": "Yours Truly, Angry Mob", + "storeLinks": [], + "artistIds": [ + 854 + ], + "tagIds": [], + "trackIds": [ + 1411 + ] + }, + { + "mbApi_typename": "album", + "id": 1110, + "name": "Favourite Worst Nightmare", + "storeLinks": [], + "artistIds": [ + 865 + ], + "tagIds": [], + "trackIds": [ + 1413 + ] + }, + { + "mbApi_typename": "album", + "id": 1111, + "name": "Oh, What A Life", + "storeLinks": [], + "artistIds": [ + 866 + ], + "tagIds": [], + "trackIds": [ + 1414 + ] + }, + { + "mbApi_typename": "album", + "id": 1112, + "name": "Easy Love", + "storeLinks": [], + "artistIds": [ + 867 + ], + "tagIds": [], + "trackIds": [ + 1415 + ] + }, + { + "mbApi_typename": "album", + "id": 1113, + "name": "Mylo Xyloto", + "storeLinks": [], + "artistIds": [ + 814 + ], + "tagIds": [], + "trackIds": [ + 1416 + ] + }, + { + "mbApi_typename": "album", + "id": 1114, + "name": "Adventure of a Lifetime", + "storeLinks": [], + "artistIds": [ + 814 + ], + "tagIds": [], + "trackIds": [ + 1417 + ] + }, + { + "mbApi_typename": "album", + "id": 1115, + "name": "Don't Kill the Magic", + "storeLinks": [], + "artistIds": [ + 868 + ], + "tagIds": [], + "trackIds": [ + 1419 + ] + }, + { + "mbApi_typename": "album", + "id": 1116, + "name": "This Is... Icona Pop", + "storeLinks": [], + "artistIds": [ + 869 + ], + "tagIds": [], + "trackIds": [ + 1420 + ] + }, + { + "mbApi_typename": "album", + "id": 1117, + "name": "Express Yourself", + "storeLinks": [], + "artistIds": [ + 870 + ], + "tagIds": [], + "trackIds": [ + 1421 + ] + }, + { + "mbApi_typename": "album", + "id": 1118, + "name": "Me 4 U", + "storeLinks": [], + "artistIds": [ + 871 + ], + "tagIds": [], + "trackIds": [ + 1423 + ] + }, + { + "mbApi_typename": "album", + "id": 1119, + "name": "Good Things", + "storeLinks": [], + "artistIds": [ + 872 + ], + "tagIds": [], + "trackIds": [ + 1425 + ] + }, + { + "mbApi_typename": "album", + "id": 1120, + "name": "Phrenology", + "storeLinks": [], + "artistIds": [ + 873 + ], + "tagIds": [], + "trackIds": [ + 1426 + ] + }, + { + "mbApi_typename": "album", + "id": 1121, + "name": "Out of the Blue", + "storeLinks": [], + "artistIds": [ + 874 + ], + "tagIds": [], + "trackIds": [ + 1427 + ] + }, + { + "mbApi_typename": "album", + "id": 1122, + "name": "Broken", + "storeLinks": [], + "artistIds": [ + 851 + ], + "tagIds": [], + "trackIds": [ + 1428 + ] + }, + { + "mbApi_typename": "album", + "id": 1123, + "name": "Sweet Disarray", + "storeLinks": [], + "artistIds": [ + 875 + ], + "tagIds": [], + "trackIds": [ + 1429 + ] + }, + { + "mbApi_typename": "album", + "id": 1124, + "name": "Hypnotised", + "storeLinks": [], + "artistIds": [ + 814 + ], + "tagIds": [], + "trackIds": [ + 1430 + ] + }, + { + "mbApi_typename": "album", + "id": 1125, + "name": "Barchords", + "storeLinks": [], + "artistIds": [ + 876 + ], + "tagIds": [], + "trackIds": [ + 1431 + ] + }, + { + "mbApi_typename": "album", + "id": 1126, + "name": "I'm Wide Awake, It's Morning", + "storeLinks": [], + "artistIds": [ + 877 + ], + "tagIds": [], + "trackIds": [ + 1432 + ] + }, + { + "mbApi_typename": "album", + "id": 1127, + "name": "Burn To Shine", + "storeLinks": [], + "artistIds": [ + 834 + ], + "tagIds": [], + "trackIds": [ + 1434 + ] + }, + { + "mbApi_typename": "album", + "id": 1128, + "name": "Fisherman's Woman", + "storeLinks": [], + "artistIds": [ + 878 + ], + "tagIds": [], + "trackIds": [ + 1435 + ] + }, + { + "mbApi_typename": "album", + "id": 1129, + "name": "Continuum", + "storeLinks": [], + "artistIds": [ + 833 + ], + "tagIds": [], + "trackIds": [ + 1436 + ] + }, + { + "mbApi_typename": "album", + "id": 1130, + "name": "Me And Armini", + "storeLinks": [], + "artistIds": [ + 878 + ], + "tagIds": [], + "trackIds": [ + 1437 + ] + }, + { + "mbApi_typename": "album", + "id": 1131, + "name": "October", + "storeLinks": [], + "artistIds": [ + 879 + ], + "tagIds": [], + "trackIds": [ + 1438 + ] + }, + { + "mbApi_typename": "album", + "id": 1132, + "name": "Whiplash (Original Motion Picture Soundtrack)", + "storeLinks": [], + "artistIds": [ + 880 + ], + "tagIds": [], + "trackIds": [ + 1439 + ] + }, + { + "mbApi_typename": "album", + "id": 1133, + "name": "You've Come a Long Way Baby", + "storeLinks": [], + "artistIds": [ + 881 + ], + "tagIds": [], + "trackIds": [ + 1440, + 1441, + 1446 + ] + }, + { + "mbApi_typename": "album", + "id": 1134, + "name": "By Absence of the Sun", + "storeLinks": [], + "artistIds": [ + 882 + ], + "tagIds": [], + "trackIds": [ + 1442, + 1443 + ] + }, + { + "mbApi_typename": "album", + "id": 1135, + "name": "Colossus", + "storeLinks": [], + "artistIds": [ + 882 + ], + "tagIds": [], + "trackIds": [ + 1444 + ] + }, + { + "mbApi_typename": "album", + "id": 1136, + "name": "Skint 15", + "storeLinks": [], + "artistIds": [ + 881 + ], + "tagIds": [], + "trackIds": [ + 1445 + ] + }, + { + "mbApi_typename": "album", + "id": 1137, + "name": "Daisies Of The Galaxy", + "storeLinks": [], + "artistIds": [ + 883 + ], + "tagIds": [], + "trackIds": [ + 1447 + ] + }, + { + "mbApi_typename": "album", + "id": 1138, + "name": "Crane III", + "storeLinks": [], + "artistIds": [ + 884 + ], + "tagIds": [], + "trackIds": [ + 1448 + ] + }, + { + "mbApi_typename": "album", + "id": 1139, + "name": "Deze Wereld Is Van Jou", + "storeLinks": [], + "artistIds": [ + 885 + ], + "tagIds": [], + "trackIds": [ + 1449, + 1450 + ] + }, + { + "mbApi_typename": "album", + "id": 1140, + "name": "This Marauder's Midnight (Deluxe Version)", + "storeLinks": [], + "artistIds": [ + 886 + ], + "tagIds": [], + "trackIds": [ + 1451 + ] + }, + { + "mbApi_typename": "album", + "id": 1141, + "name": "Parachutes", + "storeLinks": [], + "artistIds": [ + 814 + ], + "tagIds": [], + "trackIds": [ + 1452 + ] + }, + { + "mbApi_typename": "album", + "id": 1142, + "name": "(What's the Story) Morning Glory? (Remastered)", + "storeLinks": [], + "artistIds": [ + 887 + ], + "tagIds": [], + "trackIds": [ + 1453 + ] + }, + { + "mbApi_typename": "album", + "id": 1143, + "name": "OK Computer", + "storeLinks": [], + "artistIds": [ + 888 + ], + "tagIds": [], + "trackIds": [ + 1454 + ] + }, + { + "mbApi_typename": "album", + "id": 1144, + "name": "Lonerism", + "storeLinks": [], + "artistIds": [ + 756 + ], + "tagIds": [], + "trackIds": [ + 1455, + 1759 + ] + }, + { + "mbApi_typename": "album", + "id": 1145, + "name": "Careless Love", + "storeLinks": [], + "artistIds": [ + 889 + ], + "tagIds": [], + "trackIds": [ + 1456 + ] + }, + { + "mbApi_typename": "album", + "id": 1146, + "name": "B-Sides And Rarities", + "storeLinks": [], + "artistIds": [ + 890 + ], + "tagIds": [], + "trackIds": [ + 1457 + ] + }, + { + "mbApi_typename": "album", + "id": 1147, + "name": "De Tweede Speeldoos", + "storeLinks": [], + "artistIds": [ + 891 + ], + "tagIds": [], + "trackIds": [ + 1458 + ] + }, + { + "mbApi_typename": "album", + "id": 1148, + "name": "Women In Technology", + "storeLinks": [], + "artistIds": [ + 892 + ], + "tagIds": [], + "trackIds": [ + 1459 + ] + }, + { + "mbApi_typename": "album", + "id": 1149, + "name": "How Bizarre (Deluxe)", + "storeLinks": [], + "artistIds": [ + 893 + ], + "tagIds": [], + "trackIds": [ + 1460 + ] + }, + { + "mbApi_typename": "album", + "id": 1150, + "name": "Dawn (Hannes Kretzer Remix)", + "storeLinks": [], + "artistIds": [ + 894 + ], + "tagIds": [], + "trackIds": [ + 1461 + ] + }, + { + "mbApi_typename": "album", + "id": 1151, + "name": "World's Greatest Football Anthems - 40 Sing-a-Long Anthems for the World Cup 2014", + "storeLinks": [], + "artistIds": [ + 895 + ], + "tagIds": [], + "trackIds": [ + 1462 + ] + }, + { + "mbApi_typename": "album", + "id": 1152, + "name": "Sensational German Pop Playlist", + "storeLinks": [], + "artistIds": [ + 896 + ], + "tagIds": [], + "trackIds": [ + 1463 + ] + }, + { + "mbApi_typename": "album", + "id": 1153, + "name": "Fashion Nugget", + "storeLinks": [], + "artistIds": [ + 897 + ], + "tagIds": [], + "trackIds": [ + 1464 + ] + }, + { + "mbApi_typename": "album", + "id": 1154, + "name": "Soldier On", + "storeLinks": [], + "artistIds": [ + 898 + ], + "tagIds": [], + "trackIds": [ + 1466 + ] + }, + { + "mbApi_typename": "album", + "id": 1155, + "name": "The Daily Drumbeat", + "storeLinks": [], + "artistIds": [ + 899 + ], + "tagIds": [], + "trackIds": [ + 1467 + ] + }, + { + "mbApi_typename": "album", + "id": 1156, + "name": "Amigo", + "storeLinks": [], + "artistIds": [ + 793 + ], + "tagIds": [], + "trackIds": [ + 1468 + ] + }, + { + "mbApi_typename": "album", + "id": 1157, + "name": "Janne Schra", + "storeLinks": [], + "artistIds": [ + 900 + ], + "tagIds": [], + "trackIds": [ + 1469 + ] + }, + { + "mbApi_typename": "album", + "id": 1158, + "name": "Michael Bublé (US Version)", + "storeLinks": [], + "artistIds": [ + 901 + ], + "tagIds": [], + "trackIds": [ + 1471 + ] + }, + { + "mbApi_typename": "album", + "id": 1159, + "name": "Highway Cruiser", + "storeLinks": [], + "artistIds": [ + 902 + ], + "tagIds": [], + "trackIds": [ + 1472 + ] + }, + { + "mbApi_typename": "album", + "id": 1160, + "name": "La La Land (Original Motion Picture Soundtrack)", + "storeLinks": [], + "artistIds": [ + 903 + ], + "tagIds": [], + "trackIds": [ + 1473 + ] + }, + { + "mbApi_typename": "album", + "id": 1161, + "name": "Angelhead (Morehead Edition)", + "storeLinks": [], + "artistIds": [ + 886 + ], + "tagIds": [], + "trackIds": [ + 1474 + ] + }, + { + "mbApi_typename": "album", + "id": 1162, + "name": "Vantage Point", + "storeLinks": [], + "artistIds": [ + 904 + ], + "tagIds": [], + "trackIds": [ + 1475 + ] + }, + { + "mbApi_typename": "album", + "id": 1163, + "name": "Le franc belge", + "storeLinks": [], + "artistIds": [ + 905 + ], + "tagIds": [], + "trackIds": [ + 1476 + ] + }, + { + "mbApi_typename": "album", + "id": 1164, + "name": "De Wereld Draait Door Recordings Vol. 2", + "storeLinks": [], + "artistIds": [ + 906 + ], + "tagIds": [], + "trackIds": [ + 1477 + ] + }, + { + "mbApi_typename": "album", + "id": 1165, + "name": "Keep Driving", + "storeLinks": [], + "artistIds": [ + 907 + ], + "tagIds": [], + "trackIds": [ + 1478 + ] + }, + { + "mbApi_typename": "album", + "id": 1166, + "name": "If Walls Could Talk", + "storeLinks": [], + "artistIds": [ + 908 + ], + "tagIds": [], + "trackIds": [ + 1479 + ] + }, + { + "mbApi_typename": "album", + "id": 1167, + "name": "Vinticious Versions", + "storeLinks": [], + "artistIds": [ + 810 + ], + "tagIds": [], + "trackIds": [ + 1480 + ] + }, + { + "mbApi_typename": "album", + "id": 1168, + "name": "Thin Walls", + "storeLinks": [], + "artistIds": [ + 909 + ], + "tagIds": [], + "trackIds": [ + 1481, + 1889, + 1890 + ] + }, + { + "mbApi_typename": "album", + "id": 1169, + "name": "Belgica (Original Soundtrack by Soulwax)", + "storeLinks": [], + "artistIds": [ + 910 + ], + "tagIds": [], + "trackIds": [ + 1482 + ] + }, + { + "mbApi_typename": "album", + "id": 1170, + "name": "Welcome To Strange Paradise", + "storeLinks": [], + "artistIds": [ + 911 + ], + "tagIds": [], + "trackIds": [ + 1483 + ] + }, + { + "mbApi_typename": "album", + "id": 1171, + "name": "Boots", + "storeLinks": [], + "artistIds": [ + 912 + ], + "tagIds": [], + "trackIds": [ + 1484 + ] + }, + { + "mbApi_typename": "album", + "id": 1172, + "name": "Ponzo Light", + "storeLinks": [], + "artistIds": [ + 900 + ], + "tagIds": [], + "trackIds": [ + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491 + ] + }, + { + "mbApi_typename": "album", + "id": 1173, + "name": "OK", + "storeLinks": [], + "artistIds": [ + 900 + ], + "tagIds": [], + "trackIds": [ + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503 + ] + }, + { + "mbApi_typename": "album", + "id": 1174, + "name": "Love & Hate", + "storeLinks": [], + "artistIds": [ + 913 + ], + "tagIds": [], + "trackIds": [ + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513 + ] + }, + { + "mbApi_typename": "album", + "id": 1175, + "name": "My Baby Just Cares for Me", + "storeLinks": [], + "artistIds": [ + 914 + ], + "tagIds": [], + "trackIds": [ + 1514 + ] + }, + { + "mbApi_typename": "album", + "id": 1176, + "name": "Wonderful Music", + "storeLinks": [], + "artistIds": [ + 915 + ], + "tagIds": [], + "trackIds": [ + 1515 + ] + }, + { + "mbApi_typename": "album", + "id": 1177, + "name": "Rock 'N' Roll Never Dies, Vol. 2", + "storeLinks": [], + "artistIds": [ + 916 + ], + "tagIds": [], + "trackIds": [ + 1516 + ] + }, + { + "mbApi_typename": "album", + "id": 1178, + "name": "'60s Peace, Love, & Rock n' Roll", + "storeLinks": [], + "artistIds": [ + 917 + ], + "tagIds": [], + "trackIds": [ + 1517 + ] + }, + { + "mbApi_typename": "album", + "id": 1179, + "name": "Boogie Woogie", + "storeLinks": [], + "artistIds": [ + 918 + ], + "tagIds": [], + "trackIds": [ + 1518 + ] + }, + { + "mbApi_typename": "album", + "id": 1180, + "name": "Elvis Is Back!", + "storeLinks": [], + "artistIds": [ + 919 + ], + "tagIds": [], + "trackIds": [ + 1519 + ] + }, + { + "mbApi_typename": "album", + "id": 1181, + "name": "Down The Road Apiece -The Best Of Amos Milburn", + "storeLinks": [], + "artistIds": [ + 920 + ], + "tagIds": [], + "trackIds": [ + 1520 + ] + }, + { + "mbApi_typename": "album", + "id": 1182, + "name": "Bip Bop Boom", + "storeLinks": [], + "artistIds": [ + 921 + ], + "tagIds": [], + "trackIds": [ + 1521 + ] + }, + { + "mbApi_typename": "album", + "id": 1183, + "name": "Riba Daba Doo - Tough Chicks, Vol. 1", + "storeLinks": [], + "artistIds": [ + 922 + ], + "tagIds": [], + "trackIds": [ + 1522 + ] + }, + { + "mbApi_typename": "album", + "id": 1184, + "name": "Cold Winter Songs", + "storeLinks": [], + "artistIds": [ + 915 + ], + "tagIds": [], + "trackIds": [ + 1523 + ] + }, + { + "mbApi_typename": "album", + "id": 1185, + "name": "Vintage Songs, Cocktail Parties", + "storeLinks": [], + "artistIds": [ + 923 + ], + "tagIds": [], + "trackIds": [ + 1524 + ] + }, + { + "mbApi_typename": "album", + "id": 1186, + "name": "Flying Home", + "storeLinks": [], + "artistIds": [ + 924 + ], + "tagIds": [], + "trackIds": [ + 1525, + 1549, + 1619 + ] + }, + { + "mbApi_typename": "album", + "id": 1187, + "name": "Shaken Awake", + "storeLinks": [], + "artistIds": [ + 925 + ], + "tagIds": [], + "trackIds": [ + 1526 + ] + }, + { + "mbApi_typename": "album", + "id": 1188, + "name": "Black Market Stuff", + "storeLinks": [], + "artistIds": [ + 926 + ], + "tagIds": [], + "trackIds": [ + 1527, + 1655, + 1783, + 1784, + 1787, + 1799 + ] + }, + { + "mbApi_typename": "album", + "id": 1189, + "name": "Rasu Blue", + "storeLinks": [], + "artistIds": [ + 924 + ], + "tagIds": [], + "trackIds": [ + 1528 + ] + }, + { + "mbApi_typename": "album", + "id": 1190, + "name": "Wondering Where", + "storeLinks": [], + "artistIds": [ + 927 + ], + "tagIds": [], + "trackIds": [ + 1529, + 1545, + 1644, + 1656, + 1792 + ] + }, + { + "mbApi_typename": "album", + "id": 1191, + "name": "The Jungle Book (Original Motion Picture Soundtrack)", + "storeLinks": [], + "artistIds": [ + 928 + ], + "tagIds": [], + "trackIds": [ + 1530 + ] + }, + { + "mbApi_typename": "album", + "id": 1192, + "name": "Red Label - Hommage to Lester Young & the Basie-Ites", + "storeLinks": [], + "artistIds": [ + 929 + ], + "tagIds": [], + "trackIds": [ + 1531 + ] + }, + { + "mbApi_typename": "album", + "id": 1193, + "name": "Bathtub Gin", + "storeLinks": [], + "artistIds": [ + 930 + ], + "tagIds": [], + "trackIds": [ + 1532 + ] + }, + { + "mbApi_typename": "album", + "id": 1194, + "name": "Recto verso (Edition Collector)", + "storeLinks": [], + "artistIds": [ + 931 + ], + "tagIds": [], + "trackIds": [ + 1533 + ] + }, + { + "mbApi_typename": "album", + "id": 1195, + "name": "My Blue Heaven", + "storeLinks": [], + "artistIds": [ + 932 + ], + "tagIds": [], + "trackIds": [ + 1534 + ] + }, + { + "mbApi_typename": "album", + "id": 1196, + "name": "The Shoeshiners Band", + "storeLinks": [], + "artistIds": [ + 933 + ], + "tagIds": [], + "trackIds": [ + 1535 + ] + }, + { + "mbApi_typename": "album", + "id": 1197, + "name": "Live !", + "storeLinks": [], + "artistIds": [ + 934 + ], + "tagIds": [], + "trackIds": [ + 1536 + ] + }, + { + "mbApi_typename": "album", + "id": 1198, + "name": "Swedish jazz Masters: Charlie Norman - 1 Timme, 12 Minuter Och 30 Sekunder", + "storeLinks": [], + "artistIds": [ + 935 + ], + "tagIds": [], + "trackIds": [ + 1537 + ] + }, + { + "mbApi_typename": "album", + "id": 1199, + "name": "The Great", + "storeLinks": [], + "artistIds": [ + 936 + ], + "tagIds": [], + "trackIds": [ + 1538 + ] + }, + { + "mbApi_typename": "album", + "id": 1200, + "name": "Happy When I'm With You", + "storeLinks": [], + "artistIds": [ + 937 + ], + "tagIds": [], + "trackIds": [ + 1539, + 1720, + 1767, + 1790 + ] + }, + { + "mbApi_typename": "album", + "id": 1201, + "name": "Ain’t No School Like the Old School", + "storeLinks": [], + "artistIds": [ + 938 + ], + "tagIds": [], + "trackIds": [ + 1540 + ] + }, + { + "mbApi_typename": "album", + "id": 1202, + "name": "Anita O'Day With Gene Krupa & Stan Kenton", + "storeLinks": [], + "artistIds": [ + 939 + ], + "tagIds": [], + "trackIds": [ + 1541 + ] + }, + { + "mbApi_typename": "album", + "id": 1203, + "name": "Let the Good Times Roll", + "storeLinks": [], + "artistIds": [ + 940 + ], + "tagIds": [], + "trackIds": [ + 1542 + ] + }, + { + "mbApi_typename": "album", + "id": 1204, + "name": "Fyodor", + "storeLinks": [], + "artistIds": [ + 924 + ], + "tagIds": [], + "trackIds": [ + 1543, + 1658, + 1818, + 1819 + ] + }, + { + "mbApi_typename": "album", + "id": 1205, + "name": "Gospel Classics, Vol. 1", + "storeLinks": [], + "artistIds": [ + 941 + ], + "tagIds": [], + "trackIds": [ + 1544 + ] + }, + { + "mbApi_typename": "album", + "id": 1206, + "name": "Are You in Shape", + "storeLinks": [], + "artistIds": [ + 942 + ], + "tagIds": [], + "trackIds": [ + 1546, + 1657, + 1788, + 1789, + 1791 + ] + }, + { + "mbApi_typename": "album", + "id": 1207, + "name": "Life is fine Vol 2", + "storeLinks": [], + "artistIds": [ + 745 + ], + "tagIds": [], + "trackIds": [ + 1547 + ] + }, + { + "mbApi_typename": "album", + "id": 1208, + "name": "Benny Goodman-Small Group", + "storeLinks": [], + "artistIds": [ + 943 + ], + "tagIds": [], + "trackIds": [ + 1548 + ] + }, + { + "mbApi_typename": "album", + "id": 1209, + "name": "Rock 'N' Roll Early Years - Vol. 4", + "storeLinks": [], + "artistIds": [ + 944 + ], + "tagIds": [], + "trackIds": [ + 1550 + ] + }, + { + "mbApi_typename": "album", + "id": 1210, + "name": "Dirt", + "storeLinks": [], + "artistIds": [ + 945 + ], + "tagIds": [], + "trackIds": [ + 1551 + ] + }, + { + "mbApi_typename": "album", + "id": 1211, + "name": "Boston", + "storeLinks": [], + "artistIds": [ + 946 + ], + "tagIds": [], + "trackIds": [ + 1552 + ] + }, + { + "mbApi_typename": "album", + "id": 1212, + "name": "Godzilla's / Eatin' dust", + "storeLinks": [], + "artistIds": [ + 947 + ], + "tagIds": [], + "trackIds": [ + 1553, + 1554, + 1561, + 1606 + ] + }, + { + "mbApi_typename": "album", + "id": 1213, + "name": "Head Hunters", + "storeLinks": [], + "artistIds": [ + 948 + ], + "tagIds": [], + "trackIds": [ + 1555 + ] + }, + { + "mbApi_typename": "album", + "id": 1214, + "name": "Devils Night", + "storeLinks": [], + "artistIds": [ + 949 + ], + "tagIds": [], + "trackIds": [ + 1556 + ] + }, + { + "mbApi_typename": "album", + "id": 1215, + "name": "Charleston Butterfly", + "storeLinks": [], + "artistIds": [ + 950 + ], + "tagIds": [], + "trackIds": [ + 1557 + ] + }, + { + "mbApi_typename": "album", + "id": 1216, + "name": "Witch", + "storeLinks": [], + "artistIds": [ + 951 + ], + "tagIds": [], + "trackIds": [ + 1558, + 1594, + 1595, + 1596 + ] + }, + { + "mbApi_typename": "album", + "id": 1217, + "name": "Seven Thunders Roar", + "storeLinks": [], + "artistIds": [ + 952 + ], + "tagIds": [], + "trackIds": [ + 1559, + 1563, + 1564 + ] + }, + { + "mbApi_typename": "album", + "id": 1218, + "name": "Salem's Bend", + "storeLinks": [], + "artistIds": [ + 953 + ], + "tagIds": [], + "trackIds": [ + 1560, + 1566, + 1567, + 1568, + 1598, + 1599, + 1600 + ] + }, + { + "mbApi_typename": "album", + "id": 1219, + "name": "We Must Obey", + "storeLinks": [], + "artistIds": [ + 947 + ], + "tagIds": [], + "trackIds": [ + 1562, + 1609 + ] + }, + { + "mbApi_typename": "album", + "id": 1220, + "name": "The Harvest", + "storeLinks": [], + "artistIds": [ + 952 + ], + "tagIds": [], + "trackIds": [ + 1565 + ] + }, + { + "mbApi_typename": "album", + "id": 1221, + "name": "Demolition Day", + "storeLinks": [], + "artistIds": [ + 954 + ], + "tagIds": [], + "trackIds": [ + 1569 + ] + }, + { + "mbApi_typename": "album", + "id": 1222, + "name": "A Drug Problem That Never Existed", + "storeLinks": [], + "artistIds": [ + 955 + ], + "tagIds": [], + "trackIds": [ + 1570 + ] + }, + { + "mbApi_typename": "album", + "id": 1223, + "name": "A Drug Problem That Never Existed", + "storeLinks": [], + "artistIds": [ + 954 + ], + "tagIds": [], + "trackIds": [ + 1571, + 1573 + ] + }, + { + "mbApi_typename": "album", + "id": 1224, + "name": "Dead Planet: SonicSlowMotionTrails", + "storeLinks": [], + "artistIds": [ + 956 + ], + "tagIds": [], + "trackIds": [ + 1572 + ] + }, + { + "mbApi_typename": "album", + "id": 1225, + "name": "Dying Surfer Meets His Maker", + "storeLinks": [], + "artistIds": [ + 957 + ], + "tagIds": [], + "trackIds": [ + 1574 + ] + }, + { + "mbApi_typename": "album", + "id": 1226, + "name": "Lightning at the Door", + "storeLinks": [], + "artistIds": [ + 957 + ], + "tagIds": [], + "trackIds": [ + 1575, + 1603 + ] + }, + { + "mbApi_typename": "album", + "id": 1227, + "name": "ATW", + "storeLinks": [], + "artistIds": [ + 957 + ], + "tagIds": [], + "trackIds": [ + 1576 + ] + }, + { + "mbApi_typename": "album", + "id": 1228, + "name": "Sleeping Through the War (Deluxe Edition)", + "storeLinks": [], + "artistIds": [ + 957 + ], + "tagIds": [], + "trackIds": [ + 1577, + 1604 + ] + }, + { + "mbApi_typename": "album", + "id": 1229, + "name": "From the Ages", + "storeLinks": [], + "artistIds": [ + 958 + ], + "tagIds": [], + "trackIds": [ + 1578, + 1581 + ] + }, + { + "mbApi_typename": "album", + "id": 1230, + "name": "Black Heaven", + "storeLinks": [], + "artistIds": [ + 958 + ], + "tagIds": [], + "trackIds": [ + 1579, + 1580 + ] + }, + { + "mbApi_typename": "album", + "id": 1231, + "name": "Pilgrimage", + "storeLinks": [], + "artistIds": [ + 959 + ], + "tagIds": [], + "trackIds": [ + 1582, + 1583 + ] + }, + { + "mbApi_typename": "album", + "id": 1232, + "name": "The Devil and the Almighty Blues", + "storeLinks": [], + "artistIds": [ + 960 + ], + "tagIds": [], + "trackIds": [ + 1584, + 1585, + 1586, + 1587, + 1588 + ] + }, + { + "mbApi_typename": "album", + "id": 1233, + "name": "Sphere", + "storeLinks": [], + "artistIds": [ + 961 + ], + "tagIds": [], + "trackIds": [ + 1589, + 1590, + 1591, + 1592, + 1593 + ] + }, + { + "mbApi_typename": "album", + "id": 1234, + "name": "Sleeping Through the War", + "storeLinks": [], + "artistIds": [ + 957 + ], + "tagIds": [], + "trackIds": [ + 1597, + 1605 + ] + }, + { + "mbApi_typename": "album", + "id": 1235, + "name": "Cold Hand Live EP", + "storeLinks": [], + "artistIds": [ + 953 + ], + "tagIds": [], + "trackIds": [ + 1601, + 1602 + ] + }, + { + "mbApi_typename": "album", + "id": 1236, + "name": "Start the Machine [Deluxe Edition]", + "storeLinks": [], + "artistIds": [ + 947 + ], + "tagIds": [], + "trackIds": [ + 1607, + 1608 + ] + }, + { + "mbApi_typename": "album", + "id": 1237, + "name": "Creation's Finest", + "storeLinks": [], + "artistIds": [ + 962 + ], + "tagIds": [], + "trackIds": [ + 1610 + ] + }, + { + "mbApi_typename": "album", + "id": 1238, + "name": "Disko Partizani", + "storeLinks": [], + "artistIds": [ + 963 + ], + "tagIds": [], + "trackIds": [ + 1611, + 1614 + ] + }, + { + "mbApi_typename": "album", + "id": 1239, + "name": "Balkan Disco Night", + "storeLinks": [], + "artistIds": [ + 964 + ], + "tagIds": [], + "trackIds": [ + 1612 + ] + }, + { + "mbApi_typename": "album", + "id": 1240, + "name": "Mahala Rai Banda", + "storeLinks": [], + "artistIds": [ + 965 + ], + "tagIds": [], + "trackIds": [ + 1613 + ] + }, + { + "mbApi_typename": "album", + "id": 1241, + "name": "Strictly Romancin'", + "storeLinks": [], + "artistIds": [ + 966 + ], + "tagIds": [], + "trackIds": [ + 1615 + ] + }, + { + "mbApi_typename": "album", + "id": 1242, + "name": "Hallelujah I Love Her So", + "storeLinks": [], + "artistIds": [ + 967 + ], + "tagIds": [], + "trackIds": [ + 1616 + ] + }, + { + "mbApi_typename": "album", + "id": 1243, + "name": "Yesterday Hits, Vol. 3", + "storeLinks": [], + "artistIds": [ + 968 + ], + "tagIds": [], + "trackIds": [ + 1617 + ] + }, + { + "mbApi_typename": "album", + "id": 1244, + "name": "Can't Get Enough", + "storeLinks": [], + "artistIds": [ + 915 + ], + "tagIds": [], + "trackIds": [ + 1618 + ] + }, + { + "mbApi_typename": "album", + "id": 1245, + "name": "Fever", + "storeLinks": [], + "artistIds": [ + 969 + ], + "tagIds": [], + "trackIds": [ + 1621 + ] + }, + { + "mbApi_typename": "album", + "id": 1246, + "name": "Rattle Them Bones", + "storeLinks": [], + "artistIds": [ + 970 + ], + "tagIds": [], + "trackIds": [ + 1622 + ] + }, + { + "mbApi_typename": "album", + "id": 1247, + "name": "Blue Skies", + "storeLinks": [], + "artistIds": [ + 971 + ], + "tagIds": [], + "trackIds": [ + 1623 + ] + }, + { + "mbApi_typename": "album", + "id": 1248, + "name": "Naomi & Her Handsome Devils", + "storeLinks": [], + "artistIds": [ + 972 + ], + "tagIds": [], + "trackIds": [ + 1624, + 1659, + 1766 + ] + }, + { + "mbApi_typename": "album", + "id": 1249, + "name": "Jazz Radio présente The Best of Jazz", + "storeLinks": [], + "artistIds": [ + 973 + ], + "tagIds": [], + "trackIds": [ + 1625 + ] + }, + { + "mbApi_typename": "album", + "id": 1250, + "name": "Crazy Rhythm", + "storeLinks": [], + "artistIds": [ + 754 + ], + "tagIds": [], + "trackIds": [ + 1626, + 1794, + 1801, + 1802 + ] + }, + { + "mbApi_typename": "album", + "id": 1251, + "name": "Jazz Finest 50's", + "storeLinks": [], + "artistIds": [ + 974 + ], + "tagIds": [], + "trackIds": [ + 1627 + ] + }, + { + "mbApi_typename": "album", + "id": 1252, + "name": "The Masters of Jazz: 33 Best of Artie Shaw & Ben Webster", + "storeLinks": [], + "artistIds": [ + 975 + ], + "tagIds": [], + "trackIds": [ + 1628, + 1635, + 1822 + ] + }, + { + "mbApi_typename": "album", + "id": 1253, + "name": "Swing Swing Swing", + "storeLinks": [], + "artistIds": [ + 943 + ], + "tagIds": [], + "trackIds": [ + 1629 + ] + }, + { + "mbApi_typename": "album", + "id": 1254, + "name": "The Golden Age of Swing, Vol. 5: The Jive Album", + "storeLinks": [], + "artistIds": [ + 976 + ], + "tagIds": [], + "trackIds": [ + 1630 + ] + }, + { + "mbApi_typename": "album", + "id": 1255, + "name": "Dance Sessions", + "storeLinks": [], + "artistIds": [ + 977 + ], + "tagIds": [], + "trackIds": [ + 1631 + ] + }, + { + "mbApi_typename": "album", + "id": 1256, + "name": "100% Slim Gaillard, Vol. 1", + "storeLinks": [], + "artistIds": [ + 978 + ], + "tagIds": [], + "trackIds": [ + 1632 + ] + }, + { + "mbApi_typename": "album", + "id": 1257, + "name": "Lester Young Quintessence, Vol. 1: Chicago-New York-Los Angeles 1936-1944", + "storeLinks": [], + "artistIds": [ + 979 + ], + "tagIds": [], + "trackIds": [ + 1633 + ] + }, + { + "mbApi_typename": "album", + "id": 1258, + "name": "Live In Swing City- Swingin' With Duke", + "storeLinks": [], + "artistIds": [ + 980 + ], + "tagIds": [], + "trackIds": [ + 1634, + 1807 + ] + }, + { + "mbApi_typename": "album", + "id": 1259, + "name": "Stadium Anthems: Songs for Baseball and Football Season", + "storeLinks": [], + "artistIds": [ + 981 + ], + "tagIds": [], + "trackIds": [ + 1636 + ] + }, + { + "mbApi_typename": "album", + "id": 1260, + "name": "AM Radio The Birth Of Rock & Roll", + "storeLinks": [], + "artistIds": [ + 982 + ], + "tagIds": [], + "trackIds": [ + 1637 + ] + }, + { + "mbApi_typename": "album", + "id": 1261, + "name": "Count Basie, Jazz Masters Deluxe Collection", + "storeLinks": [], + "artistIds": [ + 977 + ], + "tagIds": [], + "trackIds": [ + 1638 + ] + }, + { + "mbApi_typename": "album", + "id": 1262, + "name": "Please Love Me", + "storeLinks": [], + "artistIds": [ + 983 + ], + "tagIds": [], + "trackIds": [ + 1639 + ] + }, + { + "mbApi_typename": "album", + "id": 1263, + "name": "Do You See The Light?", + "storeLinks": [], + "artistIds": [ + 751 + ], + "tagIds": [], + "trackIds": [ + 1640 + ] + }, + { + "mbApi_typename": "album", + "id": 1264, + "name": "The Legendary Buster Smith", + "storeLinks": [], + "artistIds": [ + 984 + ], + "tagIds": [], + "trackIds": [ + 1641 + ] + }, + { + "mbApi_typename": "album", + "id": 1265, + "name": "The Atomic Mr Basie (Original Album Plus Bonus Tracks 1957)", + "storeLinks": [], + "artistIds": [ + 985 + ], + "tagIds": [], + "trackIds": [ + 1642 + ] + }, + { + "mbApi_typename": "album", + "id": 1266, + "name": "Danger & Sleaze Vintage Music", + "storeLinks": [], + "artistIds": [ + 986 + ], + "tagIds": [], + "trackIds": [ + 1643 + ] + }, + { + "mbApi_typename": "album", + "id": 1267, + "name": "Forever Jazz: Greatest Hits, Vol. 2 (The Best Collection)", + "storeLinks": [], + "artistIds": [ + 987 + ], + "tagIds": [], + "trackIds": [ + 1645 + ] + }, + { + "mbApi_typename": "album", + "id": 1268, + "name": "Midnight Sun", + "storeLinks": [], + "artistIds": [ + 976 + ], + "tagIds": [], + "trackIds": [ + 1646 + ] + }, + { + "mbApi_typename": "album", + "id": 1269, + "name": "Essential Crooner Ballads", + "storeLinks": [], + "artistIds": [ + 988 + ], + "tagIds": [], + "trackIds": [ + 1647 + ] + }, + { + "mbApi_typename": "album", + "id": 1270, + "name": "The Roots of Soul 1951-61", + "storeLinks": [], + "artistIds": [ + 968 + ], + "tagIds": [], + "trackIds": [ + 1648 + ] + }, + { + "mbApi_typename": "album", + "id": 1271, + "name": "The Last Of The Blue Devils", + "storeLinks": [], + "artistIds": [ + 989 + ], + "tagIds": [], + "trackIds": [ + 1649 + ] + }, + { + "mbApi_typename": "album", + "id": 1272, + "name": "Choo Choo Ch' Boogie", + "storeLinks": [], + "artistIds": [ + 990 + ], + "tagIds": [], + "trackIds": [ + 1650 + ] + }, + { + "mbApi_typename": "album", + "id": 1273, + "name": "Happy Jazz", + "storeLinks": [], + "artistIds": [ + 936 + ], + "tagIds": [], + "trackIds": [ + 1651 + ] + }, + { + "mbApi_typename": "album", + "id": 1274, + "name": "Essential Collection Vol. 1: My Baby Said Yes", + "storeLinks": [], + "artistIds": [ + 940 + ], + "tagIds": [], + "trackIds": [ + 1652 + ] + }, + { + "mbApi_typename": "album", + "id": 1275, + "name": "The Jimi Hendrix Experience (Deluxe Reissue)", + "storeLinks": [], + "artistIds": [ + 991 + ], + "tagIds": [], + "trackIds": [ + 1653 + ] + }, + { + "mbApi_typename": "album", + "id": 1276, + "name": "Complete Jazz Series 1938 - 1941", + "storeLinks": [], + "artistIds": [ + 992 + ], + "tagIds": [], + "trackIds": [ + 1654 + ] + }, + { + "mbApi_typename": "album", + "id": 1277, + "name": "Be Kind Rewind (Original Motion Picture Soundtrack)", + "storeLinks": [], + "artistIds": [ + 936 + ], + "tagIds": [], + "trackIds": [ + 1660 + ] + }, + { + "mbApi_typename": "album", + "id": 1278, + "name": "Complete Jazz Series 1946 - 1947", + "storeLinks": [], + "artistIds": [ + 943 + ], + "tagIds": [], + "trackIds": [ + 1661 + ] + }, + { + "mbApi_typename": "album", + "id": 1279, + "name": "Shake That Thing", + "storeLinks": [], + "artistIds": [ + 750 + ], + "tagIds": [], + "trackIds": [ + 1662 + ] + }, + { + "mbApi_typename": "album", + "id": 1280, + "name": "The Best Year Of My Life: 1971", + "storeLinks": [], + "artistIds": [ + 993 + ], + "tagIds": [], + "trackIds": [ + 1663 + ] + }, + { + "mbApi_typename": "album", + "id": 1281, + "name": "Jackie Brown (Music from the Miramax Motion Picture)", + "storeLinks": [], + "artistIds": [ + 994 + ], + "tagIds": [], + "trackIds": [ + 1664 + ] + }, + { + "mbApi_typename": "album", + "id": 1282, + "name": "RnB Old School, vol. 1", + "storeLinks": [], + "artistIds": [ + 995 + ], + "tagIds": [], + "trackIds": [ + 1665 + ] + }, + { + "mbApi_typename": "album", + "id": 1283, + "name": "R&B Club", + "storeLinks": [], + "artistIds": [ + 996 + ], + "tagIds": [], + "trackIds": [ + 1666 + ] + }, + { + "mbApi_typename": "album", + "id": 1284, + "name": "Housework Hits 2", + "storeLinks": [], + "artistIds": [ + 997 + ], + "tagIds": [], + "trackIds": [ + 1667 + ] + }, + { + "mbApi_typename": "album", + "id": 1285, + "name": "This Is How We Do It", + "storeLinks": [], + "artistIds": [ + 998 + ], + "tagIds": [], + "trackIds": [ + 1668 + ] + }, + { + "mbApi_typename": "album", + "id": 1286, + "name": "Miss E... So Addictive", + "storeLinks": [], + "artistIds": [ + 999 + ], + "tagIds": [], + "trackIds": [ + 1669 + ] + }, + { + "mbApi_typename": "album", + "id": 1287, + "name": "Rhino Hi-Five: House Of Pain", + "storeLinks": [], + "artistIds": [ + 1000 + ], + "tagIds": [], + "trackIds": [ + 1670 + ] + }, + { + "mbApi_typename": "album", + "id": 1288, + "name": "Heart On", + "storeLinks": [], + "artistIds": [ + 1001 + ], + "tagIds": [], + "trackIds": [ + 1672 + ] + }, + { + "mbApi_typename": "album", + "id": 1289, + "name": "Blur: The Best Of", + "storeLinks": [], + "artistIds": [ + 1002 + ], + "tagIds": [], + "trackIds": [ + 1673 + ] + }, + { + "mbApi_typename": "album", + "id": 1290, + "name": "All This Dancin' Around", + "storeLinks": [], + "artistIds": [ + 882 + ], + "tagIds": [], + "trackIds": [ + 1674 + ] + }, + { + "mbApi_typename": "album", + "id": 1291, + "name": "Autumn Hiking", + "storeLinks": [], + "artistIds": [ + 1003 + ], + "tagIds": [], + "trackIds": [ + 1675 + ] + }, + { + "mbApi_typename": "album", + "id": 1292, + "name": "Pure... Fitness", + "storeLinks": [], + "artistIds": [ + 1004 + ], + "tagIds": [], + "trackIds": [ + 1676 + ] + }, + { + "mbApi_typename": "album", + "id": 1293, + "name": "Bubble Gum", + "storeLinks": [], + "artistIds": [ + 810 + ], + "tagIds": [], + "trackIds": [ + 1677 + ] + }, + { + "mbApi_typename": "album", + "id": 1294, + "name": "Fever", + "storeLinks": [], + "artistIds": [ + 909 + ], + "tagIds": [], + "trackIds": [ + 1678 + ] + }, + { + "mbApi_typename": "album", + "id": 1295, + "name": "Invaders Must Die", + "storeLinks": [], + "artistIds": [ + 1005 + ], + "tagIds": [], + "trackIds": [ + 1679 + ] + }, + { + "mbApi_typename": "album", + "id": 1296, + "name": "Born In The Echoes", + "storeLinks": [], + "artistIds": [ + 1006 + ], + "tagIds": [], + "trackIds": [ + 1680 + ] + }, + { + "mbApi_typename": "album", + "id": 1297, + "name": "Motown Greatest Hits", + "storeLinks": [], + "artistIds": [ + 1007 + ], + "tagIds": [], + "trackIds": [ + 1681 + ] + }, + { + "mbApi_typename": "album", + "id": 1298, + "name": "We No Speak Americano (Remixes, Vol. 1)", + "storeLinks": [], + "artistIds": [ + 1008 + ], + "tagIds": [], + "trackIds": [ + 1682 + ] + }, + { + "mbApi_typename": "album", + "id": 1299, + "name": "Coco EP", + "storeLinks": [], + "artistIds": [ + 950 + ], + "tagIds": [], + "trackIds": [ + 1683 + ] + }, + { + "mbApi_typename": "album", + "id": 1300, + "name": "Coco, Pt. 2", + "storeLinks": [], + "artistIds": [ + 950 + ], + "tagIds": [], + "trackIds": [ + 1684 + ] + }, + { + "mbApi_typename": "album", + "id": 1301, + "name": "Am Waves", + "storeLinks": [], + "artistIds": [ + 1009 + ], + "tagIds": [], + "trackIds": [ + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694 + ] + }, + { + "mbApi_typename": "album", + "id": 1302, + "name": "Tim Knol", + "storeLinks": [], + "artistIds": [ + 898 + ], + "tagIds": [], + "trackIds": [ + 1695 + ] + }, + { + "mbApi_typename": "album", + "id": 1303, + "name": "Woman", + "storeLinks": [], + "artistIds": [ + 1010 + ], + "tagIds": [], + "trackIds": [ + 1696 + ] + }, + { + "mbApi_typename": "album", + "id": 1304, + "name": "Accumulator", + "storeLinks": [], + "artistIds": [ + 1011 + ], + "tagIds": [], + "trackIds": [ + 1697 + ] + }, + { + "mbApi_typename": "album", + "id": 1305, + "name": "Ray Charles and Betty Carter (Original Album Plus Bonus Tracks)", + "storeLinks": [], + "artistIds": [ + 1012 + ], + "tagIds": [], + "trackIds": [ + 1698 + ] + }, + { + "mbApi_typename": "album", + "id": 1306, + "name": "It Don't Mean a Thing, If It Ain't Got That Swing", + "storeLinks": [], + "artistIds": [ + 1013 + ], + "tagIds": [], + "trackIds": [ + 1699 + ] + }, + { + "mbApi_typename": "album", + "id": 1307, + "name": "Spreadin' Rhythm Around", + "storeLinks": [], + "artistIds": [ + 754 + ], + "tagIds": [], + "trackIds": [ + 1700, + 1793, + 1796, + 1803, + 1804 + ] + }, + { + "mbApi_typename": "album", + "id": 1308, + "name": "Divas of Soul", + "storeLinks": [], + "artistIds": [ + 1014 + ], + "tagIds": [], + "trackIds": [ + 1701 + ] + }, + { + "mbApi_typename": "album", + "id": 1309, + "name": "The Touch of Her Voice, Vol. 2 (Remastered)", + "storeLinks": [], + "artistIds": [ + 1015 + ], + "tagIds": [], + "trackIds": [ + 1702 + ] + }, + { + "mbApi_typename": "album", + "id": 1310, + "name": "The Extraordinary (Deluxe Edition)", + "storeLinks": [], + "artistIds": [ + 1016 + ], + "tagIds": [], + "trackIds": [ + 1703 + ] + }, + { + "mbApi_typename": "album", + "id": 1311, + "name": "The Gene Krupa Sextet #2 (Remastered)", + "storeLinks": [], + "artistIds": [ + 1017 + ], + "tagIds": [], + "trackIds": [ + 1704 + ] + }, + { + "mbApi_typename": "album", + "id": 1312, + "name": "Essential Jazz Masters", + "storeLinks": [], + "artistIds": [ + 1018 + ], + "tagIds": [], + "trackIds": [ + 1705 + ] + }, + { + "mbApi_typename": "album", + "id": 1313, + "name": "Midnight Sax", + "storeLinks": [], + "artistIds": [ + 979 + ], + "tagIds": [], + "trackIds": [ + 1706 + ] + }, + { + "mbApi_typename": "album", + "id": 1314, + "name": "Dreams", + "storeLinks": [], + "artistIds": [ + 1019 + ], + "tagIds": [], + "trackIds": [ + 1707, + 1883 + ] + }, + { + "mbApi_typename": "album", + "id": 1315, + "name": "Tuku Music", + "storeLinks": [], + "artistIds": [ + 1020 + ], + "tagIds": [], + "trackIds": [ + 1708 + ] + }, + { + "mbApi_typename": "album", + "id": 1316, + "name": "Dusty... Definitely (Remastered with bonus tracks)", + "storeLinks": [], + "artistIds": [ + 1021 + ], + "tagIds": [], + "trackIds": [ + 1709 + ] + }, + { + "mbApi_typename": "album", + "id": 1317, + "name": "The Complete Stone Roses", + "storeLinks": [], + "artistIds": [ + 1022 + ], + "tagIds": [], + "trackIds": [ + 1710 + ] + }, + { + "mbApi_typename": "album", + "id": 1318, + "name": "Home Again (Deluxe Version)", + "storeLinks": [], + "artistIds": [ + 913 + ], + "tagIds": [], + "trackIds": [ + 1711 + ] + }, + { + "mbApi_typename": "album", + "id": 1319, + "name": "Jive at Five", + "storeLinks": [], + "artistIds": [ + 1023 + ], + "tagIds": [], + "trackIds": [ + 1712, + 1880 + ] + }, + { + "mbApi_typename": "album", + "id": 1320, + "name": "Crosby, Stills & Nash", + "storeLinks": [], + "artistIds": [ + 1024 + ], + "tagIds": [], + "trackIds": [ + 1714 + ] + }, + { + "mbApi_typename": "album", + "id": 1321, + "name": "Watch", + "storeLinks": [], + "artistIds": [ + 1025 + ], + "tagIds": [], + "trackIds": [ + 1715 + ] + }, + { + "mbApi_typename": "album", + "id": 1322, + "name": "Glow", + "storeLinks": [], + "artistIds": [ + 1026 + ], + "tagIds": [], + "trackIds": [ + 1716 + ] + }, + { + "mbApi_typename": "album", + "id": 1323, + "name": "Citizen Alien", + "storeLinks": [], + "artistIds": [ + 1027 + ], + "tagIds": [], + "trackIds": [ + 1717 + ] + }, + { + "mbApi_typename": "album", + "id": 1324, + "name": "Classic", + "storeLinks": [], + "artistIds": [ + 1028 + ], + "tagIds": [], + "trackIds": [ + 1718, + 1719 + ] + }, + { + "mbApi_typename": "album", + "id": 1325, + "name": "Más que Nada", + "storeLinks": [], + "artistIds": [ + 1029 + ], + "tagIds": [], + "trackIds": [ + 1723 + ] + }, + { + "mbApi_typename": "album", + "id": 1326, + "name": "Hooked On A Feeling", + "storeLinks": [], + "artistIds": [ + 1030 + ], + "tagIds": [], + "trackIds": [ + 1725 + ] + }, + { + "mbApi_typename": "album", + "id": 1327, + "name": "The Best Of Bobby McFerrin", + "storeLinks": [], + "artistIds": [ + 1031 + ], + "tagIds": [], + "trackIds": [ + 1726 + ] + }, + { + "mbApi_typename": "album", + "id": 1328, + "name": "Rumours", + "storeLinks": [], + "artistIds": [ + 1032 + ], + "tagIds": [], + "trackIds": [ + 1727 + ] + }, + { + "mbApi_typename": "album", + "id": 1329, + "name": "The Beatles (Remastered)", + "storeLinks": [], + "artistIds": [ + 831 + ], + "tagIds": [], + "trackIds": [ + 1728 + ] + }, + { + "mbApi_typename": "album", + "id": 1330, + "name": "Sunshine Superman", + "storeLinks": [], + "artistIds": [ + 1033 + ], + "tagIds": [], + "trackIds": [ + 1729 + ] + }, + { + "mbApi_typename": "album", + "id": 1331, + "name": "Rodrigo y Gabriela", + "storeLinks": [], + "artistIds": [ + 1034 + ], + "tagIds": [], + "trackIds": [ + 1730, + 1731 + ] + }, + { + "mbApi_typename": "album", + "id": 1332, + "name": "A Hundred Million Suns", + "storeLinks": [], + "artistIds": [ + 1035 + ], + "tagIds": [], + "trackIds": [ + 1732 + ] + }, + { + "mbApi_typename": "album", + "id": 1333, + "name": "MTV Studios, New York, January 10th, 1992 (Doxy Collection, Remastered, Live on Broadcasting)", + "storeLinks": [], + "artistIds": [ + 1036 + ], + "tagIds": [], + "trackIds": [ + 1733 + ] + }, + { + "mbApi_typename": "album", + "id": 1334, + "name": "The Roaring Silence", + "storeLinks": [], + "artistIds": [ + 1025 + ], + "tagIds": [], + "trackIds": [ + 1734 + ] + }, + { + "mbApi_typename": "album", + "id": 1335, + "name": "Vocal Studies + Uprock Narratives", + "storeLinks": [], + "artistIds": [ + 1037 + ], + "tagIds": [], + "trackIds": [ + 1735 + ] + }, + { + "mbApi_typename": "album", + "id": 1336, + "name": "The Best Of Extreme (An Accidental Collication Of Atoms)", + "storeLinks": [], + "artistIds": [ + 1038 + ], + "tagIds": [], + "trackIds": [ + 1736 + ] + }, + { + "mbApi_typename": "album", + "id": 1337, + "name": "Tender Is The Night", + "storeLinks": [], + "artistIds": [ + 1039 + ], + "tagIds": [], + "trackIds": [ + 1737 + ] + }, + { + "mbApi_typename": "album", + "id": 1338, + "name": "Hollerin'!", + "storeLinks": [], + "artistIds": [ + 1040 + ], + "tagIds": [], + "trackIds": [ + 1738 + ] + }, + { + "mbApi_typename": "album", + "id": 1339, + "name": "Jazz Blues Divas", + "storeLinks": [], + "artistIds": [ + 1041 + ], + "tagIds": [], + "trackIds": [ + 1739 + ] + }, + { + "mbApi_typename": "album", + "id": 1340, + "name": "Rumours (Deluxe)", + "storeLinks": [], + "artistIds": [ + 1032 + ], + "tagIds": [], + "trackIds": [ + 1740 + ] + }, + { + "mbApi_typename": "album", + "id": 1341, + "name": "Tinderbox (Remastered) (Expanded)", + "storeLinks": [], + "artistIds": [ + 1042 + ], + "tagIds": [], + "trackIds": [ + 1741 + ] + }, + { + "mbApi_typename": "album", + "id": 1342, + "name": "Sim", + "storeLinks": [], + "artistIds": [ + 1043 + ], + "tagIds": [], + "trackIds": [ + 1742 + ] + }, + { + "mbApi_typename": "album", + "id": 1343, + "name": "Jan Douwe Kroeske presents: The Best of 2 Meter Sessions 1987-2009", + "storeLinks": [], + "artistIds": [ + 1044 + ], + "tagIds": [], + "trackIds": [ + 1743 + ] + }, + { + "mbApi_typename": "album", + "id": 1344, + "name": "Drones", + "storeLinks": [], + "artistIds": [ + 811 + ], + "tagIds": [], + "trackIds": [ + 1744 + ] + }, + { + "mbApi_typename": "album", + "id": 1345, + "name": "I", + "storeLinks": [], + "artistIds": [ + 1045 + ], + "tagIds": [], + "trackIds": [ + 1745 + ] + }, + { + "mbApi_typename": "album", + "id": 1346, + "name": "Pass It On", + "storeLinks": [], + "artistIds": [ + 1046 + ], + "tagIds": [], + "trackIds": [ + 1746 + ] + }, + { + "mbApi_typename": "album", + "id": 1347, + "name": "Ghostboy", + "storeLinks": [], + "artistIds": [ + 886 + ], + "tagIds": [], + "trackIds": [ + 1747 + ] + }, + { + "mbApi_typename": "album", + "id": 1348, + "name": "Cheap Smell", + "storeLinks": [], + "artistIds": [ + 1047 + ], + "tagIds": [], + "trackIds": [ + 1748 + ] + }, + { + "mbApi_typename": "album", + "id": 1349, + "name": "I_CON", + "storeLinks": [], + "artistIds": [ + 810 + ], + "tagIds": [], + "trackIds": [ + 1749 + ] + }, + { + "mbApi_typename": "album", + "id": 1350, + "name": "Given To The Wild", + "storeLinks": [], + "artistIds": [ + 1048 + ], + "tagIds": [], + "trackIds": [ + 1750 + ] + }, + { + "mbApi_typename": "album", + "id": 1351, + "name": "The Pursuit", + "storeLinks": [], + "artistIds": [ + 1049 + ], + "tagIds": [], + "trackIds": [ + 1751 + ] + }, + { + "mbApi_typename": "album", + "id": 1352, + "name": "Siamese Dream (2011 - Remaster)", + "storeLinks": [], + "artistIds": [ + 1050 + ], + "tagIds": [], + "trackIds": [ + 1752 + ] + }, + { + "mbApi_typename": "album", + "id": 1353, + "name": "Can't Buy A Thrill", + "storeLinks": [], + "artistIds": [ + 1051 + ], + "tagIds": [], + "trackIds": [ + 1753 + ] + }, + { + "mbApi_typename": "album", + "id": 1354, + "name": "Mutual Friends", + "storeLinks": [], + "artistIds": [ + 1052 + ], + "tagIds": [], + "trackIds": [ + 1754 + ] + }, + { + "mbApi_typename": "album", + "id": 1355, + "name": "Holy Fire", + "storeLinks": [], + "artistIds": [ + 1053 + ], + "tagIds": [], + "trackIds": [ + 1755 + ] + }, + { + "mbApi_typename": "album", + "id": 1356, + "name": "Absolution", + "storeLinks": [], + "artistIds": [ + 811 + ], + "tagIds": [], + "trackIds": [ + 1756 + ] + }, + { + "mbApi_typename": "album", + "id": 1357, + "name": "The 2nd Law", + "storeLinks": [], + "artistIds": [ + 811 + ], + "tagIds": [], + "trackIds": [ + 1757 + ] + }, + { + "mbApi_typename": "album", + "id": 1358, + "name": "Build a Fire", + "storeLinks": [], + "artistIds": [ + 1054 + ], + "tagIds": [], + "trackIds": [ + 1758 + ] + }, + { + "mbApi_typename": "album", + "id": 1359, + "name": "The Album", + "storeLinks": [], + "artistIds": [ + 1055 + ], + "tagIds": [], + "trackIds": [ + 1760 + ] + }, + { + "mbApi_typename": "album", + "id": 1360, + "name": "Second Coming", + "storeLinks": [], + "artistIds": [ + 1022 + ], + "tagIds": [], + "trackIds": [ + 1761 + ] + }, + { + "mbApi_typename": "album", + "id": 1361, + "name": "The Very Best Of", + "storeLinks": [], + "artistIds": [ + 1056 + ], + "tagIds": [], + "trackIds": [ + 1762 + ] + }, + { + "mbApi_typename": "album", + "id": 1362, + "name": "Swingmatism", + "storeLinks": [], + "artistIds": [ + 938 + ], + "tagIds": [], + "trackIds": [ + 1763, + 1769 + ] + }, + { + "mbApi_typename": "album", + "id": 1363, + "name": "The Very Best Of - Deluxe Edition", + "storeLinks": [], + "artistIds": [ + 751 + ], + "tagIds": [], + "trackIds": [ + 1764 + ] + }, + { + "mbApi_typename": "album", + "id": 1364, + "name": "The Jeep Is Jumpin'", + "storeLinks": [], + "artistIds": [ + 1057 + ], + "tagIds": [], + "trackIds": [ + 1765 + ] + }, + { + "mbApi_typename": "album", + "id": 1365, + "name": "Harlem Shout (Disc 1/2)", + "storeLinks": [], + "artistIds": [ + 1058 + ], + "tagIds": [], + "trackIds": [ + 1768 + ] + }, + { + "mbApi_typename": "album", + "id": 1366, + "name": "One O'Clock Jump - The Very Best Of Count Basie", + "storeLinks": [], + "artistIds": [ + 985 + ], + "tagIds": [], + "trackIds": [ + 1770 + ] + }, + { + "mbApi_typename": "album", + "id": 1367, + "name": "The Greatest Swing Hits", + "storeLinks": [], + "artistIds": [ + 755 + ], + "tagIds": [], + "trackIds": [ + 1771 + ] + }, + { + "mbApi_typename": "album", + "id": 1368, + "name": "Swing Along", + "storeLinks": [], + "artistIds": [ + 978 + ], + "tagIds": [], + "trackIds": [ + 1772 + ] + }, + { + "mbApi_typename": "album", + "id": 1369, + "name": "Brooklyn (Original Motion Picture Soundtrack)", + "storeLinks": [], + "artistIds": [ + 1059 + ], + "tagIds": [], + "trackIds": [ + 1773 + ] + }, + { + "mbApi_typename": "album", + "id": 1370, + "name": "Ain't Misbehavin' - From The Archives (Digitally Remastered)", + "storeLinks": [], + "artistIds": [ + 1060 + ], + "tagIds": [], + "trackIds": [ + 1774 + ] + }, + { + "mbApi_typename": "album", + "id": 1371, + "name": "The Henry Glover Story Pt. 3 - Drown in My Own Tears", + "storeLinks": [], + "artistIds": [ + 1061 + ], + "tagIds": [], + "trackIds": [ + 1775 + ] + }, + { + "mbApi_typename": "album", + "id": 1372, + "name": "Harlem Mad", + "storeLinks": [], + "artistIds": [ + 1062 + ], + "tagIds": [], + "trackIds": [ + 1776 + ] + }, + { + "mbApi_typename": "album", + "id": 1373, + "name": "The Dance Band Days", + "storeLinks": [], + "artistIds": [ + 1063 + ], + "tagIds": [], + "trackIds": [ + 1777 + ] + }, + { + "mbApi_typename": "album", + "id": 1374, + "name": "Delta Serenade", + "storeLinks": [], + "artistIds": [ + 755 + ], + "tagIds": [], + "trackIds": [ + 1778 + ] + }, + { + "mbApi_typename": "album", + "id": 1375, + "name": "Get Rhythm in Your Feet", + "storeLinks": [], + "artistIds": [ + 1064 + ], + "tagIds": [], + "trackIds": [ + 1779 + ] + }, + { + "mbApi_typename": "album", + "id": 1376, + "name": "Black Music - Soul, Jazz & Blues (Remastered)", + "storeLinks": [], + "artistIds": [ + 920 + ], + "tagIds": [], + "trackIds": [ + 1780 + ] + }, + { + "mbApi_typename": "album", + "id": 1377, + "name": "Hits and Rarities", + "storeLinks": [], + "artistIds": [ + 766 + ], + "tagIds": [], + "trackIds": [ + 1781 + ] + }, + { + "mbApi_typename": "album", + "id": 1378, + "name": "Complete Jazz Series 1944 - 1945", + "storeLinks": [], + "artistIds": [ + 755 + ], + "tagIds": [], + "trackIds": [ + 1782 + ] + }, + { + "mbApi_typename": "album", + "id": 1379, + "name": "Teisutis", + "storeLinks": [], + "artistIds": [ + 924 + ], + "tagIds": [], + "trackIds": [ + 1785, + 1786 + ] + }, + { + "mbApi_typename": "album", + "id": 1380, + "name": "Jammin' the Blues", + "storeLinks": [], + "artistIds": [ + 754 + ], + "tagIds": [], + "trackIds": [ + 1795, + 1797, + 1798, + 1800 + ] + }, + { + "mbApi_typename": "album", + "id": 1381, + "name": "In Swing We Trust, Vol. 2 (Ballroom & Classic Vintage Jazz Swing)", + "storeLinks": [], + "artistIds": [ + 1065 + ], + "tagIds": [], + "trackIds": [ + 1805 + ] + }, + { + "mbApi_typename": "album", + "id": 1382, + "name": "Get up off Your Knees", + "storeLinks": [], + "artistIds": [ + 1066 + ], + "tagIds": [], + "trackIds": [ + 1806 + ] + }, + { + "mbApi_typename": "album", + "id": 1383, + "name": "The Women Classic Jazz Female Artists", + "storeLinks": [], + "artistIds": [ + 1067 + ], + "tagIds": [], + "trackIds": [ + 1808 + ] + }, + { + "mbApi_typename": "album", + "id": 1384, + "name": "One O'Clock Jump (Mono Version)", + "storeLinks": [], + "artistIds": [ + 985 + ], + "tagIds": [], + "trackIds": [ + 1809 + ] + }, + { + "mbApi_typename": "album", + "id": 1385, + "name": "The Very Best Of : Count Basie", + "storeLinks": [], + "artistIds": [ + 977 + ], + "tagIds": [], + "trackIds": [ + 1810 + ] + }, + { + "mbApi_typename": "album", + "id": 1386, + "name": "The Greatest Hits of Art Tatum, Ella Fitzgerald, Louis Armstrong and Other Famous Artists, Vol. 5 (150 Songs)", + "storeLinks": [], + "artistIds": [ + 745 + ], + "tagIds": [], + "trackIds": [ + 1811 + ] + }, + { + "mbApi_typename": "album", + "id": 1387, + "name": "Rhythm Is Our Business", + "storeLinks": [], + "artistIds": [ + 745 + ], + "tagIds": [], + "trackIds": [ + 1812, + 1813 + ] + }, + { + "mbApi_typename": "album", + "id": 1388, + "name": "The Definitive R&B Series – 1944", + "storeLinks": [], + "artistIds": [ + 1066 + ], + "tagIds": [], + "trackIds": [ + 1814 + ] + }, + { + "mbApi_typename": "album", + "id": 1389, + "name": "Stompin' At The Savoy (The Best Of)", + "storeLinks": [], + "artistIds": [ + 1068 + ], + "tagIds": [], + "trackIds": [ + 1815 + ] + }, + { + "mbApi_typename": "album", + "id": 1390, + "name": "All Time Best Pop Songs, Vol. 7", + "storeLinks": [], + "artistIds": [ + 1066 + ], + "tagIds": [], + "trackIds": [ + 1816 + ] + }, + { + "mbApi_typename": "album", + "id": 1391, + "name": "Ella and Chick Webb (Mono Version)", + "storeLinks": [], + "artistIds": [ + 1069 + ], + "tagIds": [], + "trackIds": [ + 1817 + ] + }, + { + "mbApi_typename": "album", + "id": 1392, + "name": "That's My Kick", + "storeLinks": [], + "artistIds": [ + 1070 + ], + "tagIds": [], + "trackIds": [ + 1820 + ] + }, + { + "mbApi_typename": "album", + "id": 1393, + "name": "Hollywood Swing & Jazz", + "storeLinks": [], + "artistIds": [ + 1071 + ], + "tagIds": [], + "trackIds": [ + 1821 + ] + }, + { + "mbApi_typename": "album", + "id": 1394, + "name": "Are You Hep To The Jive?", + "storeLinks": [], + "artistIds": [ + 1072 + ], + "tagIds": [], + "trackIds": [ + 1824 + ] + }, + { + "mbApi_typename": "album", + "id": 1395, + "name": "The Definitive", + "storeLinks": [], + "artistIds": [ + 1073 + ], + "tagIds": [], + "trackIds": [ + 1825 + ] + }, + { + "mbApi_typename": "album", + "id": 1396, + "name": "Dizzy Gillespie Relaxing Jazz Music", + "storeLinks": [], + "artistIds": [ + 1074 + ], + "tagIds": [], + "trackIds": [ + 1826 + ] + }, + { + "mbApi_typename": "album", + "id": 1397, + "name": "In New Orleans 1975", + "storeLinks": [], + "artistIds": [ + 1075 + ], + "tagIds": [], + "trackIds": [ + 1827 + ] + }, + { + "mbApi_typename": "album", + "id": 1398, + "name": "Black Moonlight - 4 Track EP", + "storeLinks": [], + "artistIds": [ + 1076 + ], + "tagIds": [], + "trackIds": [ + 1828 + ] + }, + { + "mbApi_typename": "album", + "id": 1399, + "name": "Greatest Swing Hits Vol. 3", + "storeLinks": [], + "artistIds": [ + 1077 + ], + "tagIds": [], + "trackIds": [ + 1829 + ] + }, + { + "mbApi_typename": "album", + "id": 1400, + "name": "Guilty By Suspicion (Original Motion Picture Soundtrack)", + "storeLinks": [], + "artistIds": [ + 1078 + ], + "tagIds": [], + "trackIds": [ + 1830 + ] + }, + { + "mbApi_typename": "album", + "id": 1401, + "name": "Images", + "storeLinks": [], + "artistIds": [ + 1079 + ], + "tagIds": [], + "trackIds": [ + 1831 + ] + }, + { + "mbApi_typename": "album", + "id": 1402, + "name": "Four! The Complete Miles Davis Quintet 1955-1956 Recordings, Vol. 1 (Hd Remastered Edition)", + "storeLinks": [], + "artistIds": [ + 1080 + ], + "tagIds": [], + "trackIds": [ + 1832 + ] + }, + { + "mbApi_typename": "album", + "id": 1403, + "name": "Jazz in the Charts Vol. 50 - Moonlight Serenade", + "storeLinks": [], + "artistIds": [ + 1081 + ], + "tagIds": [], + "trackIds": [ + 1833 + ] + }, + { + "mbApi_typename": "album", + "id": 1404, + "name": "For Those in Love (Remastered 2015)", + "storeLinks": [], + "artistIds": [ + 1082 + ], + "tagIds": [], + "trackIds": [ + 1834 + ] + }, + { + "mbApi_typename": "album", + "id": 1405, + "name": "Pick Yourself Up With Anita O'day", + "storeLinks": [], + "artistIds": [ + 939 + ], + "tagIds": [], + "trackIds": [ + 1835 + ] + }, + { + "mbApi_typename": "album", + "id": 1406, + "name": "Best of - 50 Tracks", + "storeLinks": [], + "artistIds": [ + 1083 + ], + "tagIds": [], + "trackIds": [ + 1836 + ] + }, + { + "mbApi_typename": "album", + "id": 1407, + "name": "História do Jazz 1952-1961: Enciclopédia de Jazz Vol.5", + "storeLinks": [], + "artistIds": [ + 1084 + ], + "tagIds": [], + "trackIds": [ + 1837 + ] + }, + { + "mbApi_typename": "album", + "id": 1408, + "name": "Wise Guys & Wild Women! Jazz Noir", + "storeLinks": [], + "artistIds": [ + 1085 + ], + "tagIds": [], + "trackIds": [ + 1838 + ] + }, + { + "mbApi_typename": "album", + "id": 1409, + "name": "Miles Davis Vol. 5", + "storeLinks": [], + "artistIds": [ + 1079 + ], + "tagIds": [], + "trackIds": [ + 1839 + ] + }, + { + "mbApi_typename": "album", + "id": 1410, + "name": "Ultimate Live Jazz Collection", + "storeLinks": [], + "artistIds": [ + 1083 + ], + "tagIds": [], + "trackIds": [ + 1840 + ] + }, + { + "mbApi_typename": "album", + "id": 1411, + "name": "99 Essential War Years Classics", + "storeLinks": [], + "artistIds": [ + 1086 + ], + "tagIds": [], + "trackIds": [ + 1841 + ] + }, + { + "mbApi_typename": "album", + "id": 1412, + "name": "Ray Charles (aka: Hallelujah, I Love Her So)", + "storeLinks": [], + "artistIds": [ + 968 + ], + "tagIds": [], + "trackIds": [ + 1842 + ] + }, + { + "mbApi_typename": "album", + "id": 1413, + "name": "Lithuanian Artillery", + "storeLinks": [], + "artistIds": [ + 1087 + ], + "tagIds": [], + "trackIds": [ + 1843, + 1844 + ] + }, + { + "mbApi_typename": "album", + "id": 1414, + "name": "Jazz in the Charts Vol. 74 - My Shining Hour", + "storeLinks": [], + "artistIds": [ + 1088 + ], + "tagIds": [], + "trackIds": [ + 1845 + ] + }, + { + "mbApi_typename": "album", + "id": 1415, + "name": "Pick Yourself Up (Expanded Edition)", + "storeLinks": [], + "artistIds": [ + 939 + ], + "tagIds": [], + "trackIds": [ + 1846 + ] + }, + { + "mbApi_typename": "album", + "id": 1416, + "name": "Jazz Foundations Vol. 27", + "storeLinks": [], + "artistIds": [ + 1070 + ], + "tagIds": [], + "trackIds": [ + 1847 + ] + }, + { + "mbApi_typename": "album", + "id": 1417, + "name": "The Best of Christmas Holidays (Fantastic Relaxing Songs)", + "storeLinks": [], + "artistIds": [ + 1089 + ], + "tagIds": [], + "trackIds": [ + 1848 + ] + }, + { + "mbApi_typename": "album", + "id": 1418, + "name": "Four Classic Albums (Castle Rock / In A Mellow Tone / Perdido / Creamy) (Digitally Remastered)", + "storeLinks": [], + "artistIds": [ + 1057 + ], + "tagIds": [], + "trackIds": [ + 1849 + ] + }, + { + "mbApi_typename": "album", + "id": 1419, + "name": "When I Fall in Love (100 Original Songs)", + "storeLinks": [], + "artistIds": [ + 1016 + ], + "tagIds": [], + "trackIds": [ + 1850 + ] + }, + { + "mbApi_typename": "album", + "id": 1420, + "name": "Plays Count Basie", + "storeLinks": [], + "artistIds": [ + 1090 + ], + "tagIds": [], + "trackIds": [ + 1851 + ] + }, + { + "mbApi_typename": "album", + "id": 1421, + "name": "The Warm Moods", + "storeLinks": [], + "artistIds": [ + 975 + ], + "tagIds": [], + "trackIds": [ + 1852 + ] + }, + { + "mbApi_typename": "album", + "id": 1422, + "name": "Swing Out!", + "storeLinks": [], + "artistIds": [ + 1091 + ], + "tagIds": [], + "trackIds": [ + 1853 + ] + }, + { + "mbApi_typename": "album", + "id": 1423, + "name": "100 Big Band Golden Classics", + "storeLinks": [], + "artistIds": [ + 1063 + ], + "tagIds": [], + "trackIds": [ + 1854 + ] + }, + { + "mbApi_typename": "album", + "id": 1424, + "name": "Paper Doll", + "storeLinks": [], + "artistIds": [ + 1092 + ], + "tagIds": [], + "trackIds": [ + 1855 + ] + }, + { + "mbApi_typename": "album", + "id": 1425, + "name": "Complete Jazz Series 1951 - 1952", + "storeLinks": [], + "artistIds": [ + 1093 + ], + "tagIds": [], + "trackIds": [ + 1856 + ] + }, + { + "mbApi_typename": "album", + "id": 1426, + "name": "Complete Jazz Series 1944 - 1946", + "storeLinks": [], + "artistIds": [ + 1094 + ], + "tagIds": [], + "trackIds": [ + 1857 + ] + }, + { + "mbApi_typename": "album", + "id": 1427, + "name": "The Road Of Jazz Vol. 4", + "storeLinks": [], + "artistIds": [ + 1095 + ], + "tagIds": [], + "trackIds": [ + 1858 + ] + }, + { + "mbApi_typename": "album", + "id": 1428, + "name": "Lindy Hop - Swing Dance", + "storeLinks": [], + "artistIds": [ + 936 + ], + "tagIds": [], + "trackIds": [ + 1859 + ] + }, + { + "mbApi_typename": "album", + "id": 1429, + "name": "Apollo Jump", + "storeLinks": [], + "artistIds": [ + 1061 + ], + "tagIds": [], + "trackIds": [ + 1860, + 1861 + ] + }, + { + "mbApi_typename": "album", + "id": 1430, + "name": "Rock a Bye Basie (Remastered Version) [Doxy Collection]", + "storeLinks": [], + "artistIds": [ + 977 + ], + "tagIds": [], + "trackIds": [ + 1862 + ] + }, + { + "mbApi_typename": "album", + "id": 1431, + "name": "65 Jazz Classics by Lionel Hampton (The Best Of Lionel Hampton)", + "storeLinks": [], + "artistIds": [ + 976 + ], + "tagIds": [], + "trackIds": [ + 1863 + ] + }, + { + "mbApi_typename": "album", + "id": 1432, + "name": "Artie Shaw's Masterpieces", + "storeLinks": [], + "artistIds": [ + 1063 + ], + "tagIds": [], + "trackIds": [ + 1865 + ] + }, + { + "mbApi_typename": "album", + "id": 1433, + "name": "Count Basie And The Kansas City Seven", + "storeLinks": [], + "artistIds": [ + 1096 + ], + "tagIds": [], + "trackIds": [ + 1866, + 1875 + ] + }, + { + "mbApi_typename": "album", + "id": 1434, + "name": "Dickie's Dream", + "storeLinks": [], + "artistIds": [ + 977 + ], + "tagIds": [], + "trackIds": [ + 1867 + ] + }, + { + "mbApi_typename": "album", + "id": 1435, + "name": "Top 50 Classics - The Very Best of Buddy Johnson", + "storeLinks": [], + "artistIds": [ + 1097 + ], + "tagIds": [], + "trackIds": [ + 1868 + ] + }, + { + "mbApi_typename": "album", + "id": 1436, + "name": "Twistin' the Night Away", + "storeLinks": [], + "artistIds": [ + 1098 + ], + "tagIds": [], + "trackIds": [ + 1869 + ] + }, + { + "mbApi_typename": "album", + "id": 1437, + "name": "All the Best Songs (Fantastic Masterpieces Remastered)", + "storeLinks": [], + "artistIds": [ + 1068 + ], + "tagIds": [], + "trackIds": [ + 1870 + ] + }, + { + "mbApi_typename": "album", + "id": 1438, + "name": "282 Masterpieces", + "storeLinks": [], + "artistIds": [ + 977 + ], + "tagIds": [], + "trackIds": [ + 1871 + ] + }, + { + "mbApi_typename": "album", + "id": 1439, + "name": "Complete Jazz Series 1941 - 1942", + "storeLinks": [], + "artistIds": [ + 1061 + ], + "tagIds": [], + "trackIds": [ + 1872 + ] + }, + { + "mbApi_typename": "album", + "id": 1440, + "name": "Top 50 Classics - The Very Best of Chick Webb", + "storeLinks": [], + "artistIds": [ + 1068 + ], + "tagIds": [], + "trackIds": [ + 1873 + ] + }, + { + "mbApi_typename": "album", + "id": 1441, + "name": "Recollections Of The Big Band Era", + "storeLinks": [], + "artistIds": [ + 755 + ], + "tagIds": [], + "trackIds": [ + 1874 + ] + }, + { + "mbApi_typename": "album", + "id": 1442, + "name": "Ella Fitzgerald - Golden Collection", + "storeLinks": [], + "artistIds": [ + 751 + ], + "tagIds": [], + "trackIds": [ + 1876 + ] + }, + { + "mbApi_typename": "album", + "id": 1443, + "name": "You Got to Give Me Some of It - 55 Risque Blues and R & B Classics, 1928 - 1954", + "storeLinks": [], + "artistIds": [ + 1099 + ], + "tagIds": [], + "trackIds": [ + 1877 + ] + }, + { + "mbApi_typename": "album", + "id": 1444, + "name": "Complete Jazz Series 1946 - 1949", + "storeLinks": [], + "artistIds": [ + 1100 + ], + "tagIds": [], + "trackIds": [ + 1878 + ] + }, + { + "mbApi_typename": "album", + "id": 1445, + "name": "Legendary Performer", + "storeLinks": [], + "artistIds": [ + 1101 + ], + "tagIds": [], + "trackIds": [ + 1879 + ] + }, + { + "mbApi_typename": "album", + "id": 1446, + "name": "Fats Waller Swings Low", + "storeLinks": [], + "artistIds": [ + 936 + ], + "tagIds": [], + "trackIds": [ + 1881 + ] + }, + { + "mbApi_typename": "album", + "id": 1447, + "name": "Starlight - EP", + "storeLinks": [], + "artistIds": [ + 1102 + ], + "tagIds": [], + "trackIds": [ + 1882 + ] + }, + { + "mbApi_typename": "album", + "id": 1448, + "name": "Awesome Love Songs Mix Vol. 1", + "storeLinks": [], + "artistIds": [ + 1103 + ], + "tagIds": [], + "trackIds": [ + 1885 + ] + }, + { + "mbApi_typename": "album", + "id": 1449, + "name": "Machinery", + "storeLinks": [], + "artistIds": [ + 810 + ], + "tagIds": [], + "trackIds": [ + 1886, + 1887 + ] + }, + { + "mbApi_typename": "album", + "id": 1450, + "name": "Comfort Eagle", + "storeLinks": [], + "artistIds": [ + 897 + ], + "tagIds": [], + "trackIds": [ + 1888 + ] + }, + { + "mbApi_typename": "album", + "id": 1451, + "name": "Strange Fruits and Undiscovered Plants", + "storeLinks": [], + "artistIds": [ + 1104 + ], + "tagIds": [], + "trackIds": [ + 1891 + ] + }, + { + "mbApi_typename": "album", + "id": 1452, + "name": "R.E.V.O.", + "storeLinks": [], + "artistIds": [ + 1105 + ], + "tagIds": [], + "trackIds": [ + 1892 + ] + }, + { + "mbApi_typename": "album", + "id": 1453, + "name": "Glow", + "storeLinks": [], + "artistIds": [ + 1106 + ], + "tagIds": [], + "trackIds": [ + 1893 + ] + }, + { + "mbApi_typename": "album", + "id": 1454, + "name": "Another Day (Deluxe Edition)", + "storeLinks": [], + "artistIds": [ + 1107 + ], + "tagIds": [], + "trackIds": [ + 1894 + ] + }, + { + "mbApi_typename": "album", + "id": 1455, + "name": "Lions, Liars, Guns And God", + "storeLinks": [], + "artistIds": [ + 1108 + ], + "tagIds": [], + "trackIds": [ + 1895 + ] + }, + { + "mbApi_typename": "album", + "id": 1456, + "name": "Jamie Cullum - Twentysomething", + "storeLinks": [], + "artistIds": [ + 1049 + ], + "tagIds": [], + "trackIds": [ + 1896, + 1897 + ] + }, + { + "mbApi_typename": "album", + "id": 1457, + "name": "Life'll Kill Ya", + "storeLinks": [], + "artistIds": [ + 1109 + ], + "tagIds": [], + "trackIds": [ + 1898 + ] + }, + { + "mbApi_typename": "album", + "id": 1458, + "name": "Superunknown (Deluxe Edition)", + "storeLinks": [], + "artistIds": [ + 1110 + ], + "tagIds": [], + "trackIds": [ + 1899 + ] + }, + { + "mbApi_typename": "album", + "id": 1459, + "name": "Texas Flood", + "storeLinks": [], + "artistIds": [ + 1111 + ], + "tagIds": [], + "trackIds": [ + 1900 + ] + }, + { + "mbApi_typename": "album", + "id": 1460, + "name": "You & Me", + "storeLinks": [], + "artistIds": [ + 1112 + ], + "tagIds": [], + "trackIds": [ + 1901 + ] + }, + { + "mbApi_typename": "album", + "id": 1461, + "name": "One Year Of Love", + "storeLinks": [], + "artistIds": [ + 1113 + ], + "tagIds": [], + "trackIds": [ + 1902 + ] + }, + { + "mbApi_typename": "album", + "id": 1462, + "name": "Little Queen", + "storeLinks": [], + "artistIds": [ + 1114 + ], + "tagIds": [], + "trackIds": [ + 1903 + ] + }, + { + "mbApi_typename": "album", + "id": 1463, + "name": "Chrome, Smoke & BBQ", + "storeLinks": [], + "artistIds": [ + 1115 + ], + "tagIds": [], + "trackIds": [ + 1904 + ] + }, + { + "mbApi_typename": "album", + "id": 1464, + "name": "Lean On Me", + "storeLinks": [], + "artistIds": [ + 1116 + ], + "tagIds": [], + "trackIds": [ + 1905 + ] + } + ], + "artists": [ + { + "mbApi_typename": "artist", + "id": 745, + "name": "Jimmie Lunceford", + "storeLinks": [ + "https://play.google.com/music/mAwahbnk7s6flwmyzdej6aeuvptq" + ], + "albumIds": [ + 977, + 987, + 1207, + 1386, + 1387 + ], + "tagIds": [], + "trackIds": [ + 1271, + 1282, + 1547, + 1811, + 1812, + 1813 + ] + }, + { + "mbApi_typename": "artist", + "id": 746, + "name": "Bill Elliott Swing Orchestra", + "storeLinks": [ + "https://play.google.com/music/mAf4ke2gzgyc422zsjquu4ypm7ny" + ], + "albumIds": [ + 978 + ], + "tagIds": [], + "trackIds": [ + 1272, + 1864 + ] + }, + { + "mbApi_typename": "artist", + "id": 747, + "name": "Junior Mance Trio", + "storeLinks": [ + "https://play.google.com/music/mAhwnbjqzjj2qo4jhp7tdpt5dbke" + ], + "albumIds": [ + 979 + ], + "tagIds": [], + "trackIds": [ + 1273 + ] + }, + { + "mbApi_typename": "artist", + "id": 748, + "name": "Preservation Hall Hot 4 with Duke Dejan", + "storeLinks": [ + "https://play.google.com/music/mAyb5r3lgzui6h47llye3apsq2b4" + ], + "albumIds": [ + 980 + ], + "tagIds": [], + "trackIds": [ + 1274, + 1276 + ] + }, + { + "mbApi_typename": "artist", + "id": 749, + "name": "Ella Fitzgerald and Count Basie", + "storeLinks": [ + "https://play.google.com/music/mA2uofeedy4kwhvcyp3ob5sz3wti" + ], + "albumIds": [ + 981 + ], + "tagIds": [], + "trackIds": [ + 1275 + ] + }, + { + "mbApi_typename": "artist", + "id": 750, + "name": "Preservation Hall Jazz Band", + "storeLinks": [ + "https://play.google.com/music/mA6zau3lrh2f4doq6cd7vthpvj7m" + ], + "albumIds": [ + 982, + 1279 + ], + "tagIds": [], + "trackIds": [ + 1277, + 1662 + ] + }, + { + "mbApi_typename": "artist", + "id": 751, + "name": "Ella Fitzgerald", + "storeLinks": [ + "https://play.google.com/music/mA2uofeedy4kwhvcyp3ob5sz3wti" + ], + "albumIds": [ + 983, + 1263, + 1363, + 1442 + ], + "tagIds": [], + "trackIds": [ + 1278, + 1640, + 1764, + 1876 + ] + }, + { + "mbApi_typename": "artist", + "id": 752, + "name": "Mildred Bailey", + "storeLinks": [ + "https://play.google.com/music/mAukjhy3aozdrlxdb2xba2tr4x5i" + ], + "albumIds": [ + 984 + ], + "tagIds": [], + "trackIds": [ + 1279 + ] + }, + { + "mbApi_typename": "artist", + "id": 753, + "name": "Harry Connick Jr.", + "storeLinks": [ + "https://play.google.com/music/mAdbjfsg4mikka55ylwui5nwmju4" + ], + "albumIds": [ + 985 + ], + "tagIds": [], + "trackIds": [ + 1280 + ] + }, + { + "mbApi_typename": "artist", + "id": 754, + "name": "Hilary Alexander", + "storeLinks": [ + "https://play.google.com/music/mA2hwonnyommu443o6thes3dgape" + ], + "albumIds": [ + 986, + 1250, + 1307, + 1380 + ], + "tagIds": [], + "trackIds": [ + 1281, + 1626, + 1700, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1800, + 1801, + 1802, + 1803, + 1804, + 1823 + ] + }, + { + "mbApi_typename": "artist", + "id": 755, + "name": "Duke Ellington", + "storeLinks": [ + "https://play.google.com/music/mA4w3zue7olpdzfq2g4mafhmsfde" + ], + "albumIds": [ + 988, + 1367, + 1374, + 1378, + 1441 + ], + "tagIds": [], + "trackIds": [ + 1283, + 1771, + 1778, + 1782, + 1874 + ] + }, + { + "mbApi_typename": "artist", + "id": 756, + "name": "Tame Impala", + "storeLinks": [ + "https://play.google.com/music/mA6haq35jv5mlidgdakdwbicjlei" + ], + "albumIds": [ + 989, + 1144 + ], + "tagIds": [], + "trackIds": [ + 1284, + 1455, + 1759 + ] + }, + { + "mbApi_typename": "artist", + "id": 757, + "name": "Moriarty", + "storeLinks": [ + "https://play.google.com/music/mAgkk5cqsdrhlcfhq7om64bom5fa" + ], + "albumIds": [ + 990 + ], + "tagIds": [], + "trackIds": [ + 1285 + ] + }, + { + "mbApi_typename": "artist", + "id": 758, + "name": "Vinnievibes", + "storeLinks": [ + "https://play.google.com/music/mAuepyjruiu3jatm6lxzngr2knpy" + ], + "albumIds": [ + 991 + ], + "tagIds": [], + "trackIds": [ + 1286 + ] + }, + { + "mbApi_typename": "artist", + "id": 759, + "name": "Amatorski", + "storeLinks": [ + "https://play.google.com/music/mAewtxuresyg5euej767box4gj2y" + ], + "albumIds": [ + 992 + ], + "tagIds": [], + "trackIds": [ + 1287 + ] + }, + { + "mbApi_typename": "artist", + "id": 760, + "name": "Rebecca Ferguson", + "storeLinks": [ + "https://play.google.com/music/mAdphvslhjolbllsze5jckwotom4" + ], + "albumIds": [ + 993 + ], + "tagIds": [], + "trackIds": [ + 1288 + ] + }, + { + "mbApi_typename": "artist", + "id": 761, + "name": "Buena Vista Social Club", + "storeLinks": [ + "https://play.google.com/music/mAt5hvpchm62ajx5w2byyzs7gtjq" + ], + "albumIds": [ + 994 + ], + "tagIds": [], + "trackIds": [ + 1289, + 1713, + 1722 + ] + }, + { + "mbApi_typename": "artist", + "id": 762, + "name": "Molly Johnson", + "storeLinks": [ + "https://play.google.com/music/mAcwuigx34umnaktfjyse4ukpmjq" + ], + "albumIds": [ + 995, + 1037 + ], + "tagIds": [], + "trackIds": [ + 1290, + 1333 + ] + }, + { + "mbApi_typename": "artist", + "id": 763, + "name": "Gotan Project", + "storeLinks": [ + "https://play.google.com/music/mAkfx254fsu6mfaet7ajfo3vwyhe" + ], + "albumIds": [ + 996 + ], + "tagIds": [], + "trackIds": [ + 1291 + ] + }, + { + "mbApi_typename": "artist", + "id": 764, + "name": "Pitbull", + "storeLinks": [ + "https://play.google.com/music/mA2ptuqzui323ivvwvcfzrunlpvm" + ], + "albumIds": [ + 997 + ], + "tagIds": [], + "trackIds": [ + 1292 + ] + }, + { + "mbApi_typename": "artist", + "id": 765, + "name": "Charlie Christian", + "storeLinks": [ + "https://play.google.com/music/mArgklzzyzusuya67zyu7q7m65ha" + ], + "albumIds": [ + 998 + ], + "tagIds": [], + "trackIds": [ + 1293 + ] + }, + { + "mbApi_typename": "artist", + "id": 766, + "name": "Glenn Miller", + "storeLinks": [ + "https://play.google.com/music/mAxd6rp3rkf2qclx2dj6di4bt65a" + ], + "albumIds": [ + 999, + 1377 + ], + "tagIds": [], + "trackIds": [ + 1294, + 1781 + ] + }, + { + "mbApi_typename": "artist", + "id": 767, + "name": "Jett Rebel", + "storeLinks": [ + "https://play.google.com/music/mAw22pts6f5uecl356v6iq6xe44a" + ], + "albumIds": [ + 1000, + 1104 + ], + "tagIds": [], + "trackIds": [ + 1295, + 1406, + 1412 + ] + }, + { + "mbApi_typename": "artist", + "id": 768, + "name": "Paolo Nutini", + "storeLinks": [ + "https://play.google.com/music/mAzx5fy37pp5lrlbzv6e32q5lmsa" + ], + "albumIds": [ + 1001, + 1002, + 1051 + ], + "tagIds": [], + "trackIds": [ + 1296, + 1297, + 1347, + 1389 + ] + }, + { + "mbApi_typename": "artist", + "id": 769, + "name": "Indeep", + "storeLinks": [ + "https://play.google.com/music/mAjbx3zva2r6hfct3tw62c6h6toi" + ], + "albumIds": [ + 1003 + ], + "tagIds": [], + "trackIds": [ + 1298 + ] + }, + { + "mbApi_typename": "artist", + "id": 770, + "name": "Mint Julep Jazz Band", + "storeLinks": [ + "https://play.google.com/music/mAm232tjhjsej7fx2qbrwc7u2cke" + ], + "albumIds": [ + 1004 + ], + "tagIds": [], + "trackIds": [ + 1299, + 1620 + ] + }, + { + "mbApi_typename": "artist", + "id": 771, + "name": "Django Reinhardt", + "storeLinks": [ + "https://play.google.com/music/mA7254c53loblmbsgak7ki4skbgq" + ], + "albumIds": [ + 1005 + ], + "tagIds": [], + "trackIds": [ + 1300 + ] + }, + { + "mbApi_typename": "artist", + "id": 772, + "name": "Stephane Wrembel", + "storeLinks": [ + "https://play.google.com/music/mAq2ogxr3fc54l7m4pc3btyizxyy" + ], + "albumIds": [ + 1006 + ], + "tagIds": [], + "trackIds": [ + 1301 + ] + }, + { + "mbApi_typename": "artist", + "id": 773, + "name": "Wings", + "storeLinks": [ + "https://play.google.com/music/mA72g5dzetehvvtlwd2o5ulze6ji" + ], + "albumIds": [ + 1007 + ], + "tagIds": [], + "trackIds": [ + 1302 + ] + }, + { + "mbApi_typename": "artist", + "id": 774, + "name": "Tape Five", + "storeLinks": [ + "https://play.google.com/music/mAmr5h43f56iaflkbfjawrznagsq" + ], + "albumIds": [ + 1008 + ], + "tagIds": [], + "trackIds": [ + 1303 + ] + }, + { + "mbApi_typename": "artist", + "id": 775, + "name": "Wild Adriatic", + "storeLinks": [ + "https://play.google.com/music/mA5jv4kbfcpyxfggue66nsltuz54" + ], + "albumIds": [ + 1009 + ], + "tagIds": [], + "trackIds": [ + 1304 + ] + }, + { + "mbApi_typename": "artist", + "id": 776, + "name": "Jazzystics", + "storeLinks": [ + "https://play.google.com/music/mAexkinqrxfifarehtqcbz2v2odu" + ], + "albumIds": [ + 1010 + ], + "tagIds": [], + "trackIds": [ + 1305 + ] + }, + { + "mbApi_typename": "artist", + "id": 777, + "name": "Bïa", + "storeLinks": [ + "https://play.google.com/music/mAbz5qcjf7cj2zwskwwk3j7bqlky" + ], + "albumIds": [ + 1011 + ], + "tagIds": [], + "trackIds": [ + 1306 + ] + }, + { + "mbApi_typename": "artist", + "id": 778, + "name": "Paolo Conte", + "storeLinks": [ + "https://play.google.com/music/mA3ymcmyjuvccuqapmcxem4vk4ru" + ], + "albumIds": [ + 1012 + ], + "tagIds": [], + "trackIds": [ + 1307 + ] + }, + { + "mbApi_typename": "artist", + "id": 779, + "name": "Hank Penny", + "storeLinks": [ + "https://play.google.com/music/mAhl3ls2xs45lgwpte6hr45x2mo4" + ], + "albumIds": [ + 1013 + ], + "tagIds": [], + "trackIds": [ + 1308 + ] + }, + { + "mbApi_typename": "artist", + "id": 780, + "name": "Judy Blank", + "storeLinks": [ + "https://play.google.com/music/mAxtdelsyswbh7v5iiwfbyyth3we" + ], + "albumIds": [ + 1014 + ], + "tagIds": [], + "trackIds": [ + 1309 + ] + }, + { + "mbApi_typename": "artist", + "id": 781, + "name": "Disturbed", + "storeLinks": [ + "https://play.google.com/music/mAgtwc76vpoctlslvtttojp7yzia" + ], + "albumIds": [ + 1015 + ], + "tagIds": [], + "trackIds": [ + 1310 + ] + }, + { + "mbApi_typename": "artist", + "id": 782, + "name": "Elbow", + "storeLinks": [ + "https://play.google.com/music/mAtds5vbhq7wqim6lg4cazm2ogee" + ], + "albumIds": [ + 1016 + ], + "tagIds": [], + "trackIds": [ + 1311 + ] + }, + { + "mbApi_typename": "artist", + "id": 783, + "name": "Jr. Walker & The All Stars", + "storeLinks": [ + "https://play.google.com/music/mAa5ba5tliypz3fplk2gfgq4xyl4" + ], + "albumIds": [ + 1017 + ], + "tagIds": [], + "trackIds": [ + 1312 + ] + }, + { + "mbApi_typename": "artist", + "id": 784, + "name": "Jean Knight", + "storeLinks": [ + "https://play.google.com/music/mAigrmwpssgewigdmtybcpniod5m" + ], + "albumIds": [ + 1018 + ], + "tagIds": [], + "trackIds": [ + 1313 + ] + }, + { + "mbApi_typename": "artist", + "id": 785, + "name": "Neil Young", + "storeLinks": [ + "https://play.google.com/music/mAskjuhnookp2iyvbwibrol2hyfy" + ], + "albumIds": [ + 1019 + ], + "tagIds": [], + "trackIds": [ + 1314 + ] + }, + { + "mbApi_typename": "artist", + "id": 786, + "name": "Hit Crew Big Band", + "storeLinks": [ + "https://play.google.com/music/mAitn74nm3bv4vuqxfax2ucdzvrm" + ], + "albumIds": [ + 1020 + ], + "tagIds": [], + "trackIds": [ + 1315 + ] + }, + { + "mbApi_typename": "artist", + "id": 787, + "name": "The Miller Army Band", + "storeLinks": [ + "https://play.google.com/music/mA35ahcxqibxidqxaugpopwfahla" + ], + "albumIds": [ + 1021 + ], + "tagIds": [], + "trackIds": [ + 1316 + ] + }, + { + "mbApi_typename": "artist", + "id": 788, + "name": "Goodman Orchestra", + "storeLinks": [ + "https://play.google.com/music/mAntzgqbzqtmj23bxcerd7sy434q" + ], + "albumIds": [ + 1022 + ], + "tagIds": [], + "trackIds": [ + 1317 + ] + }, + { + "mbApi_typename": "artist", + "id": 789, + "name": "Jimmie Lunceford & His Orchestra", + "storeLinks": [ + "https://play.google.com/music/mAa6qobkmy5m2ugxpaxh4o5tjgiu" + ], + "albumIds": [ + 1023 + ], + "tagIds": [], + "trackIds": [ + 1318 + ] + }, + { + "mbApi_typename": "artist", + "id": 790, + "name": "Crosby, Stills, Nash & Young", + "storeLinks": [ + "https://play.google.com/music/mA2bgz3vgnpguudjelqa6cqgczwy" + ], + "albumIds": [ + 1024, + 1025 + ], + "tagIds": [], + "trackIds": [ + 1319, + 1320 + ] + }, + { + "mbApi_typename": "artist", + "id": 791, + "name": "Stella Starlight Trio", + "storeLinks": [ + "https://play.google.com/music/mAzxvyjq7yigrhk7upkd6li6ewga" + ], + "albumIds": [ + 1026 + ], + "tagIds": [], + "trackIds": [ + 1321 + ] + }, + { + "mbApi_typename": "artist", + "id": 792, + "name": "Sofie Tukker", + "storeLinks": [ + "https://play.google.com/music/mAwwxn6dfpilmw3rg6yafsnejafa" + ], + "albumIds": [ + 1027 + ], + "tagIds": [], + "trackIds": [ + 1322 + ] + }, + { + "mbApi_typename": "artist", + "id": 793, + "name": "Chef'Special", + "storeLinks": [ + "https://play.google.com/music/mAso5dtfmsx2xndobmxduobwaknm" + ], + "albumIds": [ + 1028, + 1156 + ], + "tagIds": [], + "trackIds": [ + 1323, + 1468 + ] + }, + { + "mbApi_typename": "artist", + "id": 794, + "name": "Kellylee Evans", + "storeLinks": [ + "https://play.google.com/music/mAx62mlo4wy5rjybqm7iiydkas2e" + ], + "albumIds": [ + 1029 + ], + "tagIds": [], + "trackIds": [ + 1324, + 1325 + ] + }, + { + "mbApi_typename": "artist", + "id": 795, + "name": "Royal Blood", + "storeLinks": [ + "https://play.google.com/music/mAwkngf7gvx34tath4pqhnh7rp2i" + ], + "albumIds": [ + 1030 + ], + "tagIds": [], + "trackIds": [ + 1326 + ] + }, + { + "mbApi_typename": "artist", + "id": 796, + "name": "Them Crooked Vultures", + "storeLinks": [ + "https://play.google.com/music/mA6bm2p6d5lbbrylkziucb36fioe" + ], + "albumIds": [ + 1031 + ], + "tagIds": [], + "trackIds": [ + 1327 + ] + }, + { + "mbApi_typename": "artist", + "id": 797, + "name": "Erskine Hawkins", + "storeLinks": [ + "https://play.google.com/music/mAijd6rj5z7gjguptywaluecx54u" + ], + "albumIds": [ + 1032 + ], + "tagIds": [], + "trackIds": [ + 1328 + ] + }, + { + "mbApi_typename": "artist", + "id": 798, + "name": "The Dead South", + "storeLinks": [ + "https://play.google.com/music/mAb6m5lpgnsg4o2frma3g4sapmfa" + ], + "albumIds": [ + 1033 + ], + "tagIds": [], + "trackIds": [ + 1329 + ] + }, + { + "mbApi_typename": "artist", + "id": 799, + "name": "The Ink Spots", + "storeLinks": [ + "https://play.google.com/music/mAyb6y7jcr7klps2zxwlhdbjs4xy" + ], + "albumIds": [ + 1034 + ], + "tagIds": [], + "trackIds": [ + 1330 + ] + }, + { + "mbApi_typename": "artist", + "id": 800, + "name": "Charles Pasi", + "storeLinks": [ + "https://play.google.com/music/mAtjayhcyzl7x72ps6jnxao7c23m" + ], + "albumIds": [ + 1035 + ], + "tagIds": [], + "trackIds": [ + 1331 + ] + }, + { + "mbApi_typename": "artist", + "id": 801, + "name": "Lucky Fonz III", + "storeLinks": [ + "https://play.google.com/music/mAlfeoswbwdzl44b6v4jmd3co3x4" + ], + "albumIds": [ + 1036 + ], + "tagIds": [], + "trackIds": [ + 1332 + ] + }, + { + "mbApi_typename": "artist", + "id": 802, + "name": "alt-J", + "storeLinks": [ + "https://play.google.com/music/mAthsssebkpefyjhiud3viw4ftn4" + ], + "albumIds": [ + 1038 + ], + "tagIds": [], + "trackIds": [ + 1334, + 1393 + ] + }, + { + "mbApi_typename": "artist", + "id": 803, + "name": "Jonathan Jeremiah", + "storeLinks": [ + "https://play.google.com/music/mAx3avvhn77knpmiyxr3gbhxrqoy" + ], + "albumIds": [ + 1039 + ], + "tagIds": [], + "trackIds": [ + 1335 + ] + }, + { + "mbApi_typename": "artist", + "id": 804, + "name": "Iron & Wine", + "storeLinks": [ + "https://play.google.com/music/mAs5f2hfroip4rv57br6axxayede" + ], + "albumIds": [ + 1040 + ], + "tagIds": [], + "trackIds": [ + 1336 + ] + }, + { + "mbApi_typename": "artist", + "id": 805, + "name": "Mungo Jerry", + "storeLinks": [ + "https://play.google.com/music/mAfppuqsqbzmfqikznvph4222ykq" + ], + "albumIds": [ + 1041 + ], + "tagIds": [], + "trackIds": [ + 1337 + ] + }, + { + "mbApi_typename": "artist", + "id": 806, + "name": "Edward Sharpe & The Magnetic Zeros", + "storeLinks": [ + "https://play.google.com/music/mAhsu2igu7sgqxj5axshc34mpzwe" + ], + "albumIds": [ + 1042 + ], + "tagIds": [], + "trackIds": [ + 1338 + ] + }, + { + "mbApi_typename": "artist", + "id": 807, + "name": "Grizzly Bear", + "storeLinks": [ + "https://play.google.com/music/mA6u75gbfq7u3xciqrhrz5wqfwo4" + ], + "albumIds": [ + 1043 + ], + "tagIds": [], + "trackIds": [ + 1339 + ] + }, + { + "mbApi_typename": "artist", + "id": 808, + "name": "The Strokes", + "storeLinks": [ + "https://play.google.com/music/mAvw6b33q7hsn6s2qtkkmlbgkqqm" + ], + "albumIds": [ + 1044, + 1045 + ], + "tagIds": [], + "trackIds": [ + 1340, + 1341 + ] + }, + { + "mbApi_typename": "artist", + "id": 809, + "name": "Adam Ben Ezra", + "storeLinks": [ + "https://play.google.com/music/mAhpqxwgk2u4aihb3wbjwwiaa4oa" + ], + "albumIds": [ + 1046 + ], + "tagIds": [], + "trackIds": [ + 1342 + ] + }, + { + "mbApi_typename": "artist", + "id": 810, + "name": "De Staat", + "storeLinks": [ + "https://play.google.com/music/mAedfzli723ofoxwmbwkczqz7oie" + ], + "albumIds": [ + 1047, + 1167, + 1293, + 1349, + 1449 + ], + "tagIds": [], + "trackIds": [ + 1343, + 1396, + 1480, + 1677, + 1749, + 1886, + 1887 + ] + }, + { + "mbApi_typename": "artist", + "id": 811, + "name": "Muse", + "storeLinks": [ + "https://play.google.com/music/mA2yuzeawfml3ribpb7n3gq5nb4y" + ], + "albumIds": [ + 1048, + 1050, + 1344, + 1356, + 1357 + ], + "tagIds": [], + "trackIds": [ + 1344, + 1346, + 1348, + 1744, + 1756, + 1757 + ] + }, + { + "mbApi_typename": "artist", + "id": 812, + "name": "Foo Fighters", + "storeLinks": [ + "https://play.google.com/music/mAsei6q555jozgefmpreko6c2zs4" + ], + "albumIds": [ + 1049 + ], + "tagIds": [], + "trackIds": [ + 1345 + ] + }, + { + "mbApi_typename": "artist", + "id": 813, + "name": "Rag'n'Bone Man", + "storeLinks": [ + "https://play.google.com/music/mArfehq52uy6wfpgg4nlcjq7qdxy" + ], + "albumIds": [ + 1052 + ], + "tagIds": [], + "trackIds": [ + 1349 + ] + }, + { + "mbApi_typename": "artist", + "id": 814, + "name": "Coldplay", + "storeLinks": [ + "https://play.google.com/music/mAroavh4k5ypej6qdhyoo52q7bpm" + ], + "albumIds": [ + 1053, + 1113, + 1114, + 1124, + 1141 + ], + "tagIds": [], + "trackIds": [ + 1350, + 1416, + 1417, + 1430, + 1452 + ] + }, + { + "mbApi_typename": "artist", + "id": 815, + "name": "George Ezra", + "storeLinks": [ + "https://play.google.com/music/mAkehvhae4yy57dvkua4imi3uafm" + ], + "albumIds": [ + 1054 + ], + "tagIds": [], + "trackIds": [ + 1351, + 1422 + ] + }, + { + "mbApi_typename": "artist", + "id": 816, + "name": "Queen", + "storeLinks": [ + "https://play.google.com/music/mA52ikp5gjplylwfrj7bjwdfsozi" + ], + "albumIds": [ + 1055 + ], + "tagIds": [], + "trackIds": [ + 1352 + ] + }, + { + "mbApi_typename": "artist", + "id": 817, + "name": "Vance Joy", + "storeLinks": [ + "https://play.google.com/music/mArxztyb2pdg3f3nuosuggoimdpi" + ], + "albumIds": [ + 1056 + ], + "tagIds": [], + "trackIds": [ + 1353 + ] + }, + { + "mbApi_typename": "artist", + "id": 818, + "name": "Florence + The Machine", + "storeLinks": [ + "https://play.google.com/music/mAoypvtdpf5pzrpegrwxomxw3pri" + ], + "albumIds": [ + 1057 + ], + "tagIds": [], + "trackIds": [ + 1354 + ] + }, + { + "mbApi_typename": "artist", + "id": 819, + "name": "Gorillaz", + "storeLinks": [ + "https://play.google.com/music/mAroh44zu6cgh4wcufnlvem5z4oq" + ], + "albumIds": [ + 1058, + 1066 + ], + "tagIds": [], + "trackIds": [ + 1355, + 1364 + ] + }, + { + "mbApi_typename": "artist", + "id": 820, + "name": "Jason Mraz", + "storeLinks": [ + "https://play.google.com/music/mA36gniyzjedlgcxnkw2dhlxqoe4" + ], + "albumIds": [ + 1059 + ], + "tagIds": [], + "trackIds": [ + 1356 + ] + }, + { + "mbApi_typename": "artist", + "id": 821, + "name": "Jack Johnson", + "storeLinks": [ + "https://play.google.com/music/mAfxrn5zhakgphysclasi56wfovq" + ], + "albumIds": [ + 1060, + 1072 + ], + "tagIds": [], + "trackIds": [ + 1357, + 1370, + 1377, + 1433 + ] + }, + { + "mbApi_typename": "artist", + "id": 822, + "name": "OutKast", + "storeLinks": [ + "https://play.google.com/music/mA7e6cb2huybwdhine7yruhtrvrm" + ], + "albumIds": [ + 1061 + ], + "tagIds": [], + "trackIds": [ + 1358 + ] + }, + { + "mbApi_typename": "artist", + "id": 823, + "name": "Toploader", + "storeLinks": [ + "https://play.google.com/music/mAzaorfsvqej4jr7p7zogw5bd4si" + ], + "albumIds": [ + 1062 + ], + "tagIds": [], + "trackIds": [ + 1359 + ] + }, + { + "mbApi_typename": "artist", + "id": 824, + "name": "The Feeling", + "storeLinks": [ + "https://play.google.com/music/mAsgp4l5vti3d2znxr3u74eusjqq" + ], + "albumIds": [ + 1063 + ], + "tagIds": [], + "trackIds": [ + 1360 + ] + }, + { + "mbApi_typename": "artist", + "id": 825, + "name": "Weezer", + "storeLinks": [ + "https://play.google.com/music/mA7lfdjid6ytdxsha3u52n22ouvq" + ], + "albumIds": [ + 1064 + ], + "tagIds": [], + "trackIds": [ + 1361 + ] + }, + { + "mbApi_typename": "artist", + "id": 826, + "name": "Flight Of The Conchords", + "storeLinks": [ + "https://play.google.com/music/mAflkkquitwe2dsbaik727wbudwm" + ], + "albumIds": [ + 1065 + ], + "tagIds": [], + "trackIds": [ + 1362, + 1363 + ] + }, + { + "mbApi_typename": "artist", + "id": 827, + "name": "Franz Ferdinand", + "storeLinks": [ + "https://play.google.com/music/mAz4b5f7ugyfv4uzx4q3icczalyi" + ], + "albumIds": [ + 1067, + 1099 + ], + "tagIds": [], + "trackIds": [ + 1365, + 1401, + 1884 + ] + }, + { + "mbApi_typename": "artist", + "id": 828, + "name": "Cage The Elephant", + "storeLinks": [ + "https://play.google.com/music/mAkrdmn6x3jggdthgggx6ck42aqi" + ], + "albumIds": [ + 1068 + ], + "tagIds": [], + "trackIds": [ + 1366 + ] + }, + { + "mbApi_typename": "artist", + "id": 829, + "name": "Alabama Shakes", + "storeLinks": [ + "https://play.google.com/music/mA3nmqea3dd5bmqjasgrv5l5vwc4" + ], + "albumIds": [ + 1069 + ], + "tagIds": [], + "trackIds": [ + 1367 + ] + }, + { + "mbApi_typename": "artist", + "id": 830, + "name": "Stealers Wheel", + "storeLinks": [ + "https://play.google.com/music/mA77eujlz6nf3yw5sgf2vuo4k3au" + ], + "albumIds": [ + 1070 + ], + "tagIds": [], + "trackIds": [ + 1368 + ] + }, + { + "mbApi_typename": "artist", + "id": 831, + "name": "The Beatles", + "storeLinks": [ + "https://play.google.com/music/mApyx6rt3d2amstq7u3ntxenxhkq" + ], + "albumIds": [ + 1071, + 1329 + ], + "tagIds": [], + "trackIds": [ + 1369, + 1724, + 1728 + ] + }, + { + "mbApi_typename": "artist", + "id": 832, + "name": "Eric Hutchinson", + "storeLinks": [ + "https://play.google.com/music/mAlfzs7t352mg4ljwu64vvylmmrm" + ], + "albumIds": [ + 1073 + ], + "tagIds": [], + "trackIds": [ + 1371 + ] + }, + { + "mbApi_typename": "artist", + "id": 833, + "name": "John Mayer", + "storeLinks": [ + "https://play.google.com/music/mAlxzz2aiamzz4gj3an4vsfrxmfa" + ], + "albumIds": [ + 1074, + 1129 + ], + "tagIds": [], + "trackIds": [ + 1372, + 1436 + ] + }, + { + "mbApi_typename": "artist", + "id": 834, + "name": "Ben Harper", + "storeLinks": [ + "https://play.google.com/music/mAa2kpdkictysdqunplqidcipwxm" + ], + "albumIds": [ + 1075, + 1127 + ], + "tagIds": [], + "trackIds": [ + 1373, + 1434 + ] + }, + { + "mbApi_typename": "artist", + "id": 835, + "name": "G. Love", + "storeLinks": [ + "https://play.google.com/music/mAuyfsao5utcnxsah5rihxct7x5m" + ], + "albumIds": [ + 1076 + ], + "tagIds": [], + "trackIds": [ + 1374 + ] + }, + { + "mbApi_typename": "artist", + "id": 836, + "name": "Donavon Frankenreiter", + "storeLinks": [ + "https://play.google.com/music/mAibme6iwpecezgcaq6rtrfkefmi" + ], + "albumIds": [ + 1077 + ], + "tagIds": [], + "trackIds": [ + 1375 + ] + }, + { + "mbApi_typename": "artist", + "id": 837, + "name": "Zach Gill", + "storeLinks": [ + "https://play.google.com/music/mAndxyl6wobfmtflahtm7ym6ta5i" + ], + "albumIds": [ + 1078 + ], + "tagIds": [], + "trackIds": [ + 1376 + ] + }, + { + "mbApi_typename": "artist", + "id": 838, + "name": "Dawn Brothers", + "storeLinks": [ + "https://play.google.com/music/mA5vqwvwr7khlf2a2wukhvon45pi" + ], + "albumIds": [ + 1079 + ], + "tagIds": [], + "trackIds": [ + 1378, + 1465, + 1470, + 1671, + 1721 + ] + }, + { + "mbApi_typename": "artist", + "id": 839, + "name": "Bruno Mars", + "storeLinks": [ + "https://play.google.com/music/mA75kqwzpoke43xhbjxrbloyylwq" + ], + "albumIds": [ + 1080, + 1085 + ], + "tagIds": [], + "trackIds": [ + 1379, + 1384, + 1424 + ] + }, + { + "mbApi_typename": "artist", + "id": 840, + "name": "John Newman", + "storeLinks": [ + "https://play.google.com/music/mAurveqvjuucajf2hin7quezjwme" + ], + "albumIds": [ + 1081 + ], + "tagIds": [], + "trackIds": [ + 1380, + 1418 + ] + }, + { + "mbApi_typename": "artist", + "id": 841, + "name": "Ed Sheeran", + "storeLinks": [ + "https://play.google.com/music/mAelpv6xw456fdtfl3yf3nkdzdwq" + ], + "albumIds": [ + 1082 + ], + "tagIds": [], + "trackIds": [ + 1381 + ] + }, + { + "mbApi_typename": "artist", + "id": 842, + "name": "Mark Ronson", + "storeLinks": [ + "https://play.google.com/music/mAawzto2mugjggj3asdwx4j3musy" + ], + "albumIds": [ + 1083 + ], + "tagIds": [], + "trackIds": [ + 1382 + ] + }, + { + "mbApi_typename": "artist", + "id": 843, + "name": "Maroon 5", + "storeLinks": [ + "https://play.google.com/music/mAh3nldudehbgi4g7ymqx4wopu6u" + ], + "albumIds": [ + 1084 + ], + "tagIds": [], + "trackIds": [ + 1383 + ] + }, + { + "mbApi_typename": "artist", + "id": 844, + "name": "Robin Thicke", + "storeLinks": [ + "https://play.google.com/music/mAz3ccnzhujpyg3wv2nkmttvyf6u" + ], + "albumIds": [ + 1086 + ], + "tagIds": [], + "trackIds": [ + 1385 + ] + }, + { + "mbApi_typename": "artist", + "id": 845, + "name": "Saint Motel", + "storeLinks": [ + "https://play.google.com/music/mA4p3ctvcw7kbdhoqjkj6557g4py" + ], + "albumIds": [ + 1087 + ], + "tagIds": [], + "trackIds": [ + 1386 + ] + }, + { + "mbApi_typename": "artist", + "id": 846, + "name": "Daft Punk", + "storeLinks": [ + "https://play.google.com/music/mAp6exarirw2ls3jjrhnf5p2lcvm" + ], + "albumIds": [ + 1088 + ], + "tagIds": [], + "trackIds": [ + 1387 + ] + }, + { + "mbApi_typename": "artist", + "id": 847, + "name": "Estelle", + "storeLinks": [ + "https://play.google.com/music/mAr5mroaj54xipamcn73uovqvpye" + ], + "albumIds": [ + 1089 + ], + "tagIds": [], + "trackIds": [ + 1388 + ] + }, + { + "mbApi_typename": "artist", + "id": 848, + "name": "Michael Jackson", + "storeLinks": [ + "https://play.google.com/music/mAi6bhstqbdyafulwecypadv2b34" + ], + "albumIds": [ + 1090 + ], + "tagIds": [], + "trackIds": [ + 1390 + ] + }, + { + "mbApi_typename": "artist", + "id": 849, + "name": "Paloma Faith", + "storeLinks": [ + "https://play.google.com/music/mAk4sdltge5ssu7z3mwq76ttnqrm" + ], + "albumIds": [ + 1091 + ], + "tagIds": [], + "trackIds": [ + 1391 + ] + }, + { + "mbApi_typename": "artist", + "id": 850, + "name": "San Cisco", + "storeLinks": [ + "https://play.google.com/music/mAkpe6cumyf65gbg4h7dqql347ia" + ], + "albumIds": [ + 1092 + ], + "tagIds": [], + "trackIds": [ + 1392 + ] + }, + { + "mbApi_typename": "artist", + "id": 851, + "name": "Jake Bugg", + "storeLinks": [ + "https://play.google.com/music/mAg76fco2mfeiyppuyxwfqxe4nhi" + ], + "albumIds": [ + 1093, + 1122 + ], + "tagIds": [], + "trackIds": [ + 1394, + 1428 + ] + }, + { + "mbApi_typename": "artist", + "id": 852, + "name": "M.I.A.", + "storeLinks": [ + "https://play.google.com/music/mAgstyl5ti724iqwpldy56buzywe" + ], + "albumIds": [ + 1094 + ], + "tagIds": [], + "trackIds": [ + 1395 + ] + }, + { + "mbApi_typename": "artist", + "id": 853, + "name": "Razorlight", + "storeLinks": [ + "https://play.google.com/music/mAtunobjkozmfrzbhprl2mbxvs3u" + ], + "albumIds": [ + 1095 + ], + "tagIds": [], + "trackIds": [ + 1397 + ] + }, + { + "mbApi_typename": "artist", + "id": 854, + "name": "Kaiser Chiefs", + "storeLinks": [ + "https://play.google.com/music/mAchvstfbqa5xdhg7ziqox5djtpq" + ], + "albumIds": [ + 1096, + 1109 + ], + "tagIds": [], + "trackIds": [ + 1398, + 1411 + ] + }, + { + "mbApi_typename": "artist", + "id": 855, + "name": "The Dandy Warhols", + "storeLinks": [ + "https://play.google.com/music/mAp3v2otlagfdzdsei3z7svndvz4" + ], + "albumIds": [ + 1097 + ], + "tagIds": [], + "trackIds": [ + 1399 + ] + }, + { + "mbApi_typename": "artist", + "id": 856, + "name": "The Killers", + "storeLinks": [ + "https://play.google.com/music/mA7pnwd4rzxpkoah7nqksv5ljomu" + ], + "albumIds": [ + 1098 + ], + "tagIds": [], + "trackIds": [ + 1400 + ] + }, + { + "mbApi_typename": "artist", + "id": 857, + "name": "MGMT", + "storeLinks": [ + "https://play.google.com/music/mAlovx35xtltzw3g3n7bvhdl6o2i" + ], + "albumIds": [ + 1100 + ], + "tagIds": [], + "trackIds": [ + 1402 + ] + }, + { + "mbApi_typename": "artist", + "id": 858, + "name": "Go Back To The Zoo", + "storeLinks": [ + "https://play.google.com/music/mAenao3z4dn7fpb3bhx7vvz3s6sm" + ], + "albumIds": [ + 1101 + ], + "tagIds": [], + "trackIds": [ + 1403 + ] + }, + { + "mbApi_typename": "artist", + "id": 859, + "name": "Kasabian", + "storeLinks": [ + "https://play.google.com/music/mA2chuocuj6o6rswcqvmb6h2fzn4" + ], + "albumIds": [ + 1102 + ], + "tagIds": [], + "trackIds": [ + 1404 + ] + }, + { + "mbApi_typename": "artist", + "id": 860, + "name": "Jet", + "storeLinks": [ + "https://play.google.com/music/mAvupwlnrk7owvaiyyfzjuv6bk3a" + ], + "albumIds": [ + 1103 + ], + "tagIds": [], + "trackIds": [ + 1405 + ] + }, + { + "mbApi_typename": "artist", + "id": 861, + "name": "Mando Diao", + "storeLinks": [ + "https://play.google.com/music/mAdyi3a2lqqma4563x77rozddwbe" + ], + "albumIds": [ + 1105 + ], + "tagIds": [], + "trackIds": [ + 1407 + ] + }, + { + "mbApi_typename": "artist", + "id": 862, + "name": "Queens Of The Stone Age", + "storeLinks": [ + "https://play.google.com/music/mAr3gfgslmbjw6f4hogex4m7lgdq" + ], + "albumIds": [ + 1106 + ], + "tagIds": [], + "trackIds": [ + 1408 + ] + }, + { + "mbApi_typename": "artist", + "id": 863, + "name": "The Fratellis", + "storeLinks": [ + "https://play.google.com/music/mA7gc4fqyneqqqh7ue7a7qgz2iaq" + ], + "albumIds": [ + 1107 + ], + "tagIds": [], + "trackIds": [ + 1409 + ] + }, + { + "mbApi_typename": "artist", + "id": 864, + "name": "The Coral", + "storeLinks": [ + "https://play.google.com/music/mAz3snixfn4lgidloit6jdim4zze" + ], + "albumIds": [ + 1108 + ], + "tagIds": [], + "trackIds": [ + 1410 + ] + }, + { + "mbApi_typename": "artist", + "id": 865, + "name": "Arctic Monkeys", + "storeLinks": [ + "https://play.google.com/music/mAvnnuehmn7ml3upe5m4giajj7gu" + ], + "albumIds": [ + 1110 + ], + "tagIds": [], + "trackIds": [ + 1413 + ] + }, + { + "mbApi_typename": "artist", + "id": 866, + "name": "American Authors", + "storeLinks": [ + "https://play.google.com/music/mAxolpu34pbl6u35h3z3lnkcsy2q" + ], + "albumIds": [ + 1111 + ], + "tagIds": [], + "trackIds": [ + 1414 + ] + }, + { + "mbApi_typename": "artist", + "id": 867, + "name": "Sigala", + "storeLinks": [ + "https://play.google.com/music/mAthbdkirf44wj265lnmbeaqmxba" + ], + "albumIds": [ + 1112 + ], + "tagIds": [], + "trackIds": [ + 1415 + ] + }, + { + "mbApi_typename": "artist", + "id": 868, + "name": "MAGIC!", + "storeLinks": [ + "https://play.google.com/music/mAqhggclei2mcrvfkangwspap5ky" + ], + "albumIds": [ + 1115 + ], + "tagIds": [], + "trackIds": [ + 1419 + ] + }, + { + "mbApi_typename": "artist", + "id": 869, + "name": "Icona Pop", + "storeLinks": [ + "https://play.google.com/music/mA2at526ojnetno2woeam7sdrqqi" + ], + "albumIds": [ + 1116 + ], + "tagIds": [], + "trackIds": [ + 1420 + ] + }, + { + "mbApi_typename": "artist", + "id": 870, + "name": "Labrinth", + "storeLinks": [ + "https://play.google.com/music/mA26ssg67jibxu5hlylvgdtqa7ym" + ], + "albumIds": [ + 1117 + ], + "tagIds": [], + "trackIds": [ + 1421 + ] + }, + { + "mbApi_typename": "artist", + "id": 871, + "name": "OMI", + "storeLinks": [ + "https://play.google.com/music/mArsgxfnodhnsfi4fy44o4v55yy4" + ], + "albumIds": [ + 1118 + ], + "tagIds": [], + "trackIds": [ + 1423 + ] + }, + { + "mbApi_typename": "artist", + "id": 872, + "name": "Aloe Blacc", + "storeLinks": [ + "https://play.google.com/music/mAakuxene7wlkyncbfhdlvl4nkna" + ], + "albumIds": [ + 1119 + ], + "tagIds": [], + "trackIds": [ + 1425 + ] + }, + { + "mbApi_typename": "artist", + "id": 873, + "name": "The Roots", + "storeLinks": [ + "https://play.google.com/music/mArqtugv6dq2wtvz762t45glcfi4" + ], + "albumIds": [ + 1120 + ], + "tagIds": [], + "trackIds": [ + 1426 + ] + }, + { + "mbApi_typename": "artist", + "id": 874, + "name": "Electric Light Orchestra", + "storeLinks": [ + "https://play.google.com/music/mAst364wv3rufz6bupcms7cbaaem" + ], + "albumIds": [ + 1121 + ], + "tagIds": [], + "trackIds": [ + 1427 + ] + }, + { + "mbApi_typename": "artist", + "id": 875, + "name": "Dan Croll", + "storeLinks": [ + "https://play.google.com/music/mAcu3lljy4thvhwavrn3anhxjqoq" + ], + "albumIds": [ + 1123 + ], + "tagIds": [], + "trackIds": [ + 1429 + ] + }, + { + "mbApi_typename": "artist", + "id": 876, + "name": "Bahamas", + "storeLinks": [ + "https://play.google.com/music/mAr2pw2hvjdus3y7r43no5lfm7mu" + ], + "albumIds": [ + 1125 + ], + "tagIds": [], + "trackIds": [ + 1431 + ] + }, + { + "mbApi_typename": "artist", + "id": 877, + "name": "Bright Eyes", + "storeLinks": [ + "https://play.google.com/music/mAlgpnnlzxghffxiu6iqqjoxxiqq" + ], + "albumIds": [ + 1126 + ], + "tagIds": [], + "trackIds": [ + 1432 + ] + }, + { + "mbApi_typename": "artist", + "id": 878, + "name": "Emiliana Torrini", + "storeLinks": [ + "https://play.google.com/music/mApwyxfxvxsqnqfx4kdfgmb5uxca" + ], + "albumIds": [ + 1128, + 1130 + ], + "tagIds": [], + "trackIds": [ + 1435, + 1437 + ] + }, + { + "mbApi_typename": "artist", + "id": 879, + "name": "Jonas Alaska", + "storeLinks": [ + "https://play.google.com/music/mAqlbwt6jpmsgs2jwd55iocm6nty" + ], + "albumIds": [ + 1131 + ], + "tagIds": [], + "trackIds": [ + 1438 + ] + }, + { + "mbApi_typename": "artist", + "id": 880, + "name": "John Wasson", + "storeLinks": [ + "https://play.google.com/music/mAnab5o7bgs63awz2zdjmu3dbwa4" + ], + "albumIds": [ + 1132 + ], + "tagIds": [], + "trackIds": [ + 1439 + ] + }, + { + "mbApi_typename": "artist", + "id": 881, + "name": "Fatboy Slim", + "storeLinks": [ + "https://play.google.com/music/mAlcavyh42plq6dfbngmpfsl4vwa" + ], + "albumIds": [ + 1133, + 1136 + ], + "tagIds": [], + "trackIds": [ + 1440, + 1441, + 1445, + 1446 + ] + }, + { + "mbApi_typename": "artist", + "id": 882, + "name": "Triggerfinger", + "storeLinks": [ + "https://play.google.com/music/mAyfrei57pwhxe7ittzkpgws4iqm" + ], + "albumIds": [ + 1134, + 1135, + 1290 + ], + "tagIds": [], + "trackIds": [ + 1442, + 1443, + 1444, + 1674 + ] + }, + { + "mbApi_typename": "artist", + "id": 883, + "name": "Eels", + "storeLinks": [ + "https://play.google.com/music/mAhoygdamunwtdzimjlfiathewhm" + ], + "albumIds": [ + 1137 + ], + "tagIds": [], + "trackIds": [ + 1447 + ] + }, + { + "mbApi_typename": "artist", + "id": 884, + "name": "Kraantje Pappie", + "storeLinks": [ + "https://play.google.com/music/mAqtv7a7suir5rtf7dprj65svpym" + ], + "albumIds": [ + 1138 + ], + "tagIds": [], + "trackIds": [ + 1448 + ] + }, + { + "mbApi_typename": "artist", + "id": 885, + "name": "Gers Pardoel", + "storeLinks": [ + "https://play.google.com/music/mAnwogyyf3dgyt4vpygwzbvyyuuu" + ], + "albumIds": [ + 1139 + ], + "tagIds": [], + "trackIds": [ + 1449, + 1450 + ] + }, + { + "mbApi_typename": "artist", + "id": 886, + "name": "Gabriel Rios", + "storeLinks": [ + "https://play.google.com/music/mAoqlgszuca344a3xqrjhtmumpji" + ], + "albumIds": [ + 1140, + 1161, + 1347 + ], + "tagIds": [], + "trackIds": [ + 1451, + 1474, + 1747 + ] + }, + { + "mbApi_typename": "artist", + "id": 887, + "name": "Oasis", + "storeLinks": [ + "https://play.google.com/music/mAttf5x4al6hyrfnfjlbe5yxfmse" + ], + "albumIds": [ + 1142 + ], + "tagIds": [], + "trackIds": [ + 1453 + ] + }, + { + "mbApi_typename": "artist", + "id": 888, + "name": "Radiohead", + "storeLinks": [ + "https://play.google.com/music/mAbr5hmwi6xwsh3utjqcn5f5rnh4" + ], + "albumIds": [ + 1143 + ], + "tagIds": [], + "trackIds": [ + 1454 + ] + }, + { + "mbApi_typename": "artist", + "id": 889, + "name": "Madeleine Peyroux", + "storeLinks": [ + "https://play.google.com/music/mA4nzi6xmejdgui3ojhmtel3qcxq" + ], + "albumIds": [ + 1145 + ], + "tagIds": [], + "trackIds": [ + 1456 + ] + }, + { + "mbApi_typename": "artist", + "id": 890, + "name": "CAKE", + "storeLinks": [ + "https://play.google.com/music/mAai66okd5qse7n7iqjz4wwhlzsu" + ], + "albumIds": [ + 1146 + ], + "tagIds": [], + "trackIds": [ + 1457 + ] + }, + { + "mbApi_typename": "artist", + "id": 891, + "name": "Torre Florim", + "storeLinks": [ + "https://play.google.com/music/mAphdflzhawomytll5izzuvtgtpe" + ], + "albumIds": [ + 1147 + ], + "tagIds": [], + "trackIds": [ + 1458 + ] + }, + { + "mbApi_typename": "artist", + "id": 892, + "name": "White Town", + "storeLinks": [ + "https://play.google.com/music/mAy3u2fh4se635fzusp6m7arcedq" + ], + "albumIds": [ + 1148 + ], + "tagIds": [], + "trackIds": [ + 1459 + ] + }, + { + "mbApi_typename": "artist", + "id": 893, + "name": "OMC", + "storeLinks": [ + "https://play.google.com/music/mAsyjwr6wsyox7mkejsa7ynmsapm" + ], + "albumIds": [ + 1149 + ], + "tagIds": [], + "trackIds": [ + 1460 + ] + }, + { + "mbApi_typename": "artist", + "id": 894, + "name": "Niklas Paschburg", + "storeLinks": [ + "https://play.google.com/music/mA5rdu4ie2obbt5eaqvzhytvgumi" + ], + "albumIds": [ + 1150 + ], + "tagIds": [], + "trackIds": [ + 1461 + ] + }, + { + "mbApi_typename": "artist", + "id": 895, + "name": "Football Masters", + "storeLinks": [ + "https://play.google.com/music/mAiyhmcwksppwietexysaccfi6gm" + ], + "albumIds": [ + 1151 + ], + "tagIds": [], + "trackIds": [ + 1462 + ] + }, + { + "mbApi_typename": "artist", + "id": 896, + "name": "Pop Feast", + "storeLinks": [ + "https://play.google.com/music/mAhcn2odgpxqgwiwj67wt3gdmq4m" + ], + "albumIds": [ + 1152 + ], + "tagIds": [], + "trackIds": [ + 1463 + ] + }, + { + "mbApi_typename": "artist", + "id": 897, + "name": "Cake", + "storeLinks": [ + "https://play.google.com/music/mAai66okd5qse7n7iqjz4wwhlzsu" + ], + "albumIds": [ + 1153, + 1450 + ], + "tagIds": [], + "trackIds": [ + 1464, + 1888 + ] + }, + { + "mbApi_typename": "artist", + "id": 898, + "name": "Tim Knol", + "storeLinks": [ + "https://play.google.com/music/mAnkbttufkvm7v423aaihrce6e6a" + ], + "albumIds": [ + 1154, + 1302 + ], + "tagIds": [], + "trackIds": [ + 1466, + 1695 + ] + }, + { + "mbApi_typename": "artist", + "id": 899, + "name": "Happy Camper", + "storeLinks": [ + "https://play.google.com/music/mAclb5xrhrmo6yycoclilgatrov4" + ], + "albumIds": [ + 1155 + ], + "tagIds": [], + "trackIds": [ + 1467 + ] + }, + { + "mbApi_typename": "artist", + "id": 900, + "name": "Janne Schra", + "storeLinks": [ + "https://play.google.com/music/mAqazg6ul3xopxirr2wmm6ewlxqi" + ], + "albumIds": [ + 1157, + 1172, + 1173 + ], + "tagIds": [], + "trackIds": [ + 1469, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503 + ] + }, + { + "mbApi_typename": "artist", + "id": 901, + "name": "Michael Bublé", + "storeLinks": [ + "https://play.google.com/music/mAagvx6qc2bcdfhdkzn4crelraby" + ], + "albumIds": [ + 1158 + ], + "tagIds": [], + "trackIds": [ + 1471 + ] + }, + { + "mbApi_typename": "artist", + "id": 902, + "name": "Black Box Revelation", + "storeLinks": [ + "https://play.google.com/music/mAsfysbqggdpmbq3z2yxby4yo6k4" + ], + "albumIds": [ + 1159 + ], + "tagIds": [], + "trackIds": [ + 1472 + ] + }, + { + "mbApi_typename": "artist", + "id": 903, + "name": "Justin Hurwitz", + "storeLinks": [ + "https://play.google.com/music/mAsdsf4kf2xxj5k7iexlifvs3hp4" + ], + "albumIds": [ + 1160 + ], + "tagIds": [], + "trackIds": [ + 1473 + ] + }, + { + "mbApi_typename": "artist", + "id": 904, + "name": "dEUS", + "storeLinks": [ + "https://play.google.com/music/mAcfzuy7cmwja4zj5ythefmyi474" + ], + "albumIds": [ + 1162 + ], + "tagIds": [], + "trackIds": [ + 1475 + ] + }, + { + "mbApi_typename": "artist", + "id": 905, + "name": "Daan", + "storeLinks": [ + "https://play.google.com/music/mAjmzio7nmhkadpboxijy5sionqe" + ], + "albumIds": [ + 1163 + ], + "tagIds": [], + "trackIds": [ + 1476 + ] + }, + { + "mbApi_typename": "artist", + "id": 906, + "name": "Huub van der Lubbe", + "storeLinks": [ + "https://play.google.com/music/mAm4rqy5jhx2exmwiuidoik3dhci" + ], + "albumIds": [ + 1164 + ], + "tagIds": [], + "trackIds": [ + 1477 + ] + }, + { + "mbApi_typename": "artist", + "id": 907, + "name": "Balthazar", + "storeLinks": [ + "https://play.google.com/music/mA6a44tmbskjwp7f7apz6e4xduuy" + ], + "albumIds": [ + 1165 + ], + "tagIds": [], + "trackIds": [ + 1478 + ] + }, + { + "mbApi_typename": "artist", + "id": 908, + "name": "Justin Johnson", + "storeLinks": [ + "https://play.google.com/music/mAv22rvslmdc6vl6ybmc6je7i7fi" + ], + "albumIds": [ + 1166 + ], + "tagIds": [], + "trackIds": [ + 1479 + ] + }, + { + "mbApi_typename": "artist", + "id": 909, + "name": "Balthazar", + "storeLinks": [ + "https://play.google.com/music/mAocvxmjaijxundm5od3wv45npuq" + ], + "albumIds": [ + 1168, + 1294 + ], + "tagIds": [], + "trackIds": [ + 1481, + 1678, + 1889, + 1890 + ] + }, + { + "mbApi_typename": "artist", + "id": 910, + "name": "The Shitz", + "storeLinks": [ + "https://play.google.com/music/mAomao7hd7ewpfx4kbomgsosrlne" + ], + "albumIds": [ + 1169 + ], + "tagIds": [], + "trackIds": [ + 1482 + ] + }, + { + "mbApi_typename": "artist", + "id": 911, + "name": "The Van Jets", + "storeLinks": [ + "https://play.google.com/music/mAu4irxshjiwhu67zn7k2yysvjqm" + ], + "albumIds": [ + 1170 + ], + "tagIds": [], + "trackIds": [ + 1483 + ] + }, + { + "mbApi_typename": "artist", + "id": 912, + "name": "Nancy Sinatra", + "storeLinks": [ + "https://play.google.com/music/mAxbhounmsoclbrfaxfokwbhvlby" + ], + "albumIds": [ + 1171 + ], + "tagIds": [], + "trackIds": [ + 1484 + ] + }, + { + "mbApi_typename": "artist", + "id": 913, + "name": "Michael Kiwanuka", + "storeLinks": [ + "https://play.google.com/music/mAxsmrcw62ttybnqs2nsbo3j7nku" + ], + "albumIds": [ + 1174, + 1318 + ], + "tagIds": [], + "trackIds": [ + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1711 + ] + }, + { + "mbApi_typename": "artist", + "id": 914, + "name": "Nina Simone", + "storeLinks": [ + "https://play.google.com/music/mAt76nkxulbjagixm4v6njsbm774" + ], + "albumIds": [ + 1175 + ], + "tagIds": [], + "trackIds": [ + 1514 + ] + }, + { + "mbApi_typename": "artist", + "id": 915, + "name": "Brenda Lee", + "storeLinks": [ + "https://play.google.com/music/mA7sj76o3oipgvyk3s6e6ma5kbnq" + ], + "albumIds": [ + 1176, + 1184, + 1244 + ], + "tagIds": [], + "trackIds": [ + 1515, + 1523, + 1618 + ] + }, + { + "mbApi_typename": "artist", + "id": 916, + "name": "Gene Vincent", + "storeLinks": [ + "https://play.google.com/music/mA6kb2si653m7cipthpfgvouidi4" + ], + "albumIds": [ + 1177 + ], + "tagIds": [], + "trackIds": [ + 1516 + ] + }, + { + "mbApi_typename": "artist", + "id": 917, + "name": "The Jodimars", + "storeLinks": [ + "https://play.google.com/music/mA6lb5d65kahz2egrwadls5l3f2u" + ], + "albumIds": [ + 1178 + ], + "tagIds": [], + "trackIds": [ + 1517 + ] + }, + { + "mbApi_typename": "artist", + "id": 918, + "name": "Ella Mae Morse", + "storeLinks": [ + "https://play.google.com/music/mAfymnejoe2wdpyekfyirwdhz6ge" + ], + "albumIds": [ + 1179 + ], + "tagIds": [], + "trackIds": [ + 1518 + ] + }, + { + "mbApi_typename": "artist", + "id": 919, + "name": "Elvis Presley", + "storeLinks": [ + "https://play.google.com/music/mAuockoc4x2cefmyvkatvky4fbgm" + ], + "albumIds": [ + 1180 + ], + "tagIds": [], + "trackIds": [ + 1519 + ] + }, + { + "mbApi_typename": "artist", + "id": 920, + "name": "Amos Milburn", + "storeLinks": [ + "https://play.google.com/music/mAle7lln2qg763z7tzt5dtruub64" + ], + "albumIds": [ + 1181, + 1376 + ], + "tagIds": [], + "trackIds": [ + 1520, + 1780 + ] + }, + { + "mbApi_typename": "artist", + "id": 921, + "name": "Micky Hawks", + "storeLinks": [ + "https://play.google.com/music/mAdxkbdepu7stmrjk2ydzt2pqozu" + ], + "albumIds": [ + 1182 + ], + "tagIds": [], + "trackIds": [ + 1521 + ] + }, + { + "mbApi_typename": "artist", + "id": 922, + "name": "Etta James", + "storeLinks": [ + "https://play.google.com/music/mAr6qnf7l4qreecngc4ievp3yohq" + ], + "albumIds": [ + 1183 + ], + "tagIds": [], + "trackIds": [ + 1522 + ] + }, + { + "mbApi_typename": "artist", + "id": 923, + "name": "Her Boyfriends", + "storeLinks": [ + "https://play.google.com/music/mArvw3uaxievg3gdljrfuz45mz6y" + ], + "albumIds": [ + 1185 + ], + "tagIds": [], + "trackIds": [ + 1524 + ] + }, + { + "mbApi_typename": "artist", + "id": 924, + "name": "The Schwings Band", + "storeLinks": [ + "https://play.google.com/music/mA6ro45okuy2fjrvymmv74wod5da" + ], + "albumIds": [ + 1186, + 1189, + 1204, + 1379 + ], + "tagIds": [], + "trackIds": [ + 1525, + 1528, + 1543, + 1549, + 1619, + 1658, + 1785, + 1786, + 1818, + 1819 + ] + }, + { + "mbApi_typename": "artist", + "id": 925, + "name": "Johnny Martin", + "storeLinks": [ + "https://play.google.com/music/mApnz63jy3qeyjh63ekwenfoajqq" + ], + "albumIds": [ + 1187 + ], + "tagIds": [], + "trackIds": [ + 1526 + ] + }, + { + "mbApi_typename": "artist", + "id": 926, + "name": "Hot Swing Sextet", + "storeLinks": [ + "https://play.google.com/music/mA2k4bhrkbo3h2wtisns67psfyrm" + ], + "albumIds": [ + 1188 + ], + "tagIds": [], + "trackIds": [ + 1527, + 1655, + 1783, + 1784, + 1787, + 1799 + ] + }, + { + "mbApi_typename": "artist", + "id": 927, + "name": "Hot Sugar Band", + "storeLinks": [ + "https://play.google.com/music/mApjyjxysxn3u3wvulp4eufxqh4e" + ], + "albumIds": [ + 1190 + ], + "tagIds": [], + "trackIds": [ + 1529, + 1545, + 1644, + 1656, + 1792 + ] + }, + { + "mbApi_typename": "artist", + "id": 928, + "name": "Christopher Walken", + "storeLinks": [ + "https://play.google.com/music/mArigc57gwhnr3oisffh4gfh6ltq" + ], + "albumIds": [ + 1191 + ], + "tagIds": [], + "trackIds": [ + 1530 + ] + }, + { + "mbApi_typename": "artist", + "id": 929, + "name": "Lester's Blues", + "storeLinks": [ + "https://play.google.com/music/mAnahi2yiyukaqm3g5qgktgzn45m" + ], + "albumIds": [ + 1192 + ], + "tagIds": [], + "trackIds": [ + 1531 + ] + }, + { + "mbApi_typename": "artist", + "id": 930, + "name": "The Speakeasies' Swing Band!", + "storeLinks": [ + "https://play.google.com/music/mAb6hoecezawcovbyh2mnwh7pfsy" + ], + "albumIds": [ + 1193 + ], + "tagIds": [], + "trackIds": [ + 1532 + ] + }, + { + "mbApi_typename": "artist", + "id": 931, + "name": "Zaz", + "storeLinks": [ + "https://play.google.com/music/mAwcemtat5txmyzb75f3njctebbq" + ], + "albumIds": [ + 1194 + ], + "tagIds": [], + "trackIds": [ + 1533 + ] + }, + { + "mbApi_typename": "artist", + "id": 932, + "name": "Papajazz", + "storeLinks": [ + "https://play.google.com/music/mAd6wesb3zuhxfqagkykyciojyzq" + ], + "albumIds": [ + 1195 + ], + "tagIds": [], + "trackIds": [ + 1534 + ] + }, + { + "mbApi_typename": "artist", + "id": 933, + "name": "The Shoeshiners Band", + "storeLinks": [ + "https://play.google.com/music/mA535q37xuis7kmztdezctpacc5q" + ], + "albumIds": [ + 1196 + ], + "tagIds": [], + "trackIds": [ + 1535 + ] + }, + { + "mbApi_typename": "artist", + "id": 934, + "name": "Jordans Drive", + "storeLinks": [ + "https://play.google.com/music/mAeixrmk6tlt5dzpt6lupy5yptlq" + ], + "albumIds": [ + 1197 + ], + "tagIds": [], + "trackIds": [ + 1536 + ] + }, + { + "mbApi_typename": "artist", + "id": 935, + "name": "Charlie Norman", + "storeLinks": [ + "https://play.google.com/music/mAurx6wgq67lljcbehytwh5o7fm4" + ], + "albumIds": [ + 1198 + ], + "tagIds": [], + "trackIds": [ + 1537 + ] + }, + { + "mbApi_typename": "artist", + "id": 936, + "name": "Fats Waller", + "storeLinks": [ + "https://play.google.com/music/mAwnvn4ivxkhbh7yqstuni3jgm3u" + ], + "albumIds": [ + 1199, + 1273, + 1277, + 1428, + 1446 + ], + "tagIds": [], + "trackIds": [ + 1538, + 1651, + 1660, + 1859, + 1881 + ] + }, + { + "mbApi_typename": "artist", + "id": 937, + "name": "Gordon Webster", + "storeLinks": [ + "https://play.google.com/music/mAp5bnvdrdo5hbmpmhq5s664wbgm" + ], + "albumIds": [ + 1200 + ], + "tagIds": [], + "trackIds": [ + 1539, + 1720, + 1767, + 1790 + ] + }, + { + "mbApi_typename": "artist", + "id": 938, + "name": "The Solomon Douglas Swingtet", + "storeLinks": [ + "https://play.google.com/music/mAmlbx2k5iqur23bmmvivbng7rxy" + ], + "albumIds": [ + 1201, + 1362 + ], + "tagIds": [], + "trackIds": [ + 1540, + 1763, + 1769 + ] + }, + { + "mbApi_typename": "artist", + "id": 939, + "name": "Anita O'Day", + "storeLinks": [ + "https://play.google.com/music/mA7jlh5wecuyy5vye3k3irmozaxu" + ], + "albumIds": [ + 1202, + 1405, + 1415 + ], + "tagIds": [], + "trackIds": [ + 1541, + 1835, + 1846 + ] + }, + { + "mbApi_typename": "artist", + "id": 940, + "name": "Louis Jordan", + "storeLinks": [ + "https://play.google.com/music/mAexovpzbzoljy6ww2yb5npnehau" + ], + "albumIds": [ + 1203, + 1274 + ], + "tagIds": [], + "trackIds": [ + 1542, + 1652 + ] + }, + { + "mbApi_typename": "artist", + "id": 941, + "name": "Sidney Bechet", + "storeLinks": [ + "https://play.google.com/music/mAff2tjrhpsnuhvwfvgc5nw325iy" + ], + "albumIds": [ + 1205 + ], + "tagIds": [], + "trackIds": [ + 1544 + ] + }, + { + "mbApi_typename": "artist", + "id": 942, + "name": "Hot Sugar Band", + "storeLinks": [ + "https://play.google.com/music/mAgjumdx6nja4esumdule7tfmvkm" + ], + "albumIds": [ + 1206 + ], + "tagIds": [], + "trackIds": [ + 1546, + 1657, + 1788, + 1789, + 1791 + ] + }, + { + "mbApi_typename": "artist", + "id": 943, + "name": "Benny Goodman", + "storeLinks": [ + "https://play.google.com/music/mAntzgqbzqtmj23bxcerd7sy434q" + ], + "albumIds": [ + 1208, + 1253, + 1278 + ], + "tagIds": [], + "trackIds": [ + 1548, + 1629, + 1661 + ] + }, + { + "mbApi_typename": "artist", + "id": 944, + "name": "Buddy & Ella Johnson", + "storeLinks": [ + "https://play.google.com/music/mAxtbdm33uxaopada6qpqo3iywqu" + ], + "albumIds": [ + 1209 + ], + "tagIds": [], + "trackIds": [ + 1550 + ] + }, + { + "mbApi_typename": "artist", + "id": 945, + "name": "Alice In Chains", + "storeLinks": [ + "https://play.google.com/music/mAzkch4xbiepfoixnzmex6twv7a4" + ], + "albumIds": [ + 1210 + ], + "tagIds": [], + "trackIds": [ + 1551 + ] + }, + { + "mbApi_typename": "artist", + "id": 946, + "name": "Boston", + "storeLinks": [ + "https://play.google.com/music/mAclj33hz6ryri3il44htevopkdy" + ], + "albumIds": [ + 1211 + ], + "tagIds": [], + "trackIds": [ + 1552 + ] + }, + { + "mbApi_typename": "artist", + "id": 947, + "name": "Fu Manchu", + "storeLinks": [ + "https://play.google.com/music/mAb736nx3edso2wo3qzkjlvj2aqe" + ], + "albumIds": [ + 1212, + 1219, + 1236 + ], + "tagIds": [], + "trackIds": [ + 1553, + 1554, + 1561, + 1562, + 1606, + 1607, + 1608, + 1609 + ] + }, + { + "mbApi_typename": "artist", + "id": 948, + "name": "Herbie Hancock", + "storeLinks": [ + "https://play.google.com/music/mAuuhfqvdcyfzynraoz7dkfifopy" + ], + "albumIds": [ + 1213 + ], + "tagIds": [], + "trackIds": [ + 1555 + ] + }, + { + "mbApi_typename": "artist", + "id": 949, + "name": "D12", + "storeLinks": [ + "https://play.google.com/music/mAadhgt7aoz2t5cqf3iv2dv5qdeu" + ], + "albumIds": [ + 1214 + ], + "tagIds": [], + "trackIds": [ + 1556 + ] + }, + { + "mbApi_typename": "artist", + "id": 950, + "name": "Parov Stelar", + "storeLinks": [ + "https://play.google.com/music/mAhu2gx5wwxzfwnaqsj3kcxkujvy" + ], + "albumIds": [ + 1215, + 1299, + 1300 + ], + "tagIds": [], + "trackIds": [ + 1557, + 1683, + 1684 + ] + }, + { + "mbApi_typename": "artist", + "id": 951, + "name": "Witch", + "storeLinks": [ + "https://play.google.com/music/mApbcl2lsv7wiahe4rz7z2j5v3o4" + ], + "albumIds": [ + 1216 + ], + "tagIds": [], + "trackIds": [ + 1558, + 1594, + 1595, + 1596 + ] + }, + { + "mbApi_typename": "artist", + "id": 952, + "name": "Stoned Jesus", + "storeLinks": [ + "https://play.google.com/music/mAfjzr7c7v4a5nx3wrr5ywmincfu" + ], + "albumIds": [ + 1217, + 1220 + ], + "tagIds": [], + "trackIds": [ + 1559, + 1563, + 1564, + 1565 + ] + }, + { + "mbApi_typename": "artist", + "id": 953, + "name": "Salem's Bend", + "storeLinks": [ + "https://play.google.com/music/mAu45kxdszgepzvrlljhpta46g4y" + ], + "albumIds": [ + 1218, + 1235 + ], + "tagIds": [], + "trackIds": [ + 1560, + 1566, + 1567, + 1568, + 1598, + 1599, + 1600, + 1601, + 1602 + ] + }, + { + "mbApi_typename": "artist", + "id": 954, + "name": "Mondo Generator", + "storeLinks": [ + "https://play.google.com/music/mAnxgf6yyjgcdh2ioheyugdxpzei" + ], + "albumIds": [ + 1221, + 1223 + ], + "tagIds": [], + "trackIds": [ + 1569, + 1571, + 1573 + ] + }, + { + "mbApi_typename": "artist", + "id": 955, + "name": "Mondo Generator", + "storeLinks": [ + "https://play.google.com/music/mAgx572eal2asrgzv5oypdvfq7q4" + ], + "albumIds": [ + 1222 + ], + "tagIds": [], + "trackIds": [ + 1570 + ] + }, + { + "mbApi_typename": "artist", + "id": 956, + "name": "Nick Oliveri And The Mondo Generator", + "storeLinks": [ + "https://play.google.com/music/mAkpkwtnwxfxaho6e6l2rqq43sti" + ], + "albumIds": [ + 1224 + ], + "tagIds": [], + "trackIds": [ + 1572 + ] + }, + { + "mbApi_typename": "artist", + "id": 957, + "name": "All Them Witches", + "storeLinks": [ + "https://play.google.com/music/mAryob53krp66yyr72s7ml4wayty" + ], + "albumIds": [ + 1225, + 1226, + 1227, + 1228, + 1234 + ], + "tagIds": [], + "trackIds": [ + 1574, + 1575, + 1576, + 1577, + 1597, + 1603, + 1604, + 1605 + ] + }, + { + "mbApi_typename": "artist", + "id": 958, + "name": "Earthless", + "storeLinks": [ + "https://play.google.com/music/mAiq6nmdtvl7zvkheg74r4ggwn5y" + ], + "albumIds": [ + 1229, + 1230 + ], + "tagIds": [], + "trackIds": [ + 1578, + 1579, + 1580, + 1581 + ] + }, + { + "mbApi_typename": "artist", + "id": 959, + "name": "OM", + "storeLinks": [ + "https://play.google.com/music/mAsuhv4ctqy5dhiq4hppydctkrte" + ], + "albumIds": [ + 1231 + ], + "tagIds": [], + "trackIds": [ + 1582, + 1583 + ] + }, + { + "mbApi_typename": "artist", + "id": 960, + "name": "The Devil and The Almighty Blues", + "storeLinks": [ + "https://play.google.com/music/mAilsy2frrz7e2rrktjbebsxtc4e" + ], + "albumIds": [ + 1232 + ], + "tagIds": [], + "trackIds": [ + 1584, + 1585, + 1586, + 1587, + 1588 + ] + }, + { + "mbApi_typename": "artist", + "id": 961, + "name": "Monkey3", + "storeLinks": [ + "https://play.google.com/music/mAl3qyg2yzhjhyfy6g2c7omedcuu" + ], + "albumIds": [ + 1233 + ], + "tagIds": [], + "trackIds": [ + 1589, + 1590, + 1591, + 1592, + 1593 + ] + }, + { + "mbApi_typename": "artist", + "id": 962, + "name": "Mother's Cake", + "storeLinks": [ + "https://play.google.com/music/mAsrj67rxd3t226lb4o4buqgnsxu" + ], + "albumIds": [ + 1237 + ], + "tagIds": [], + "trackIds": [ + 1610 + ] + }, + { + "mbApi_typename": "artist", + "id": 963, + "name": "Shantel", + "storeLinks": [ + "https://play.google.com/music/mAzalosk23crigffhynvuab5wi3e" + ], + "albumIds": [ + 1238 + ], + "tagIds": [], + "trackIds": [ + 1611, + 1614 + ] + }, + { + "mbApi_typename": "artist", + "id": 964, + "name": "Boogazz", + "storeLinks": [ + "https://play.google.com/music/mAtdmlzyadmzeackmfyjze5xa5ve" + ], + "albumIds": [ + 1239 + ], + "tagIds": [], + "trackIds": [ + 1612 + ] + }, + { + "mbApi_typename": "artist", + "id": 965, + "name": "Mahala Rai Banda", + "storeLinks": [ + "https://play.google.com/music/mAldsbp4kmq2lr3h5i7eorgfkh7a" + ], + "albumIds": [ + 1240 + ], + "tagIds": [], + "trackIds": [ + 1613 + ] + }, + { + "mbApi_typename": "artist", + "id": 966, + "name": "Catherine Russell, Mark Shane, Lee Hudson and Matt Munisteri", + "storeLinks": [ + "https://play.google.com/music/mAgsi6nmetk5zc3ind3nglxrhkze" + ], + "albumIds": [ + 1241 + ], + "tagIds": [], + "trackIds": [ + 1615 + ] + }, + { + "mbApi_typename": "artist", + "id": 967, + "name": "Harry Belafonte", + "storeLinks": [ + "https://play.google.com/music/mAihjlnlwzdw6rwg3rbq2ocswf64" + ], + "albumIds": [ + 1242 + ], + "tagIds": [], + "trackIds": [ + 1616 + ] + }, + { + "mbApi_typename": "artist", + "id": 968, + "name": "Ray Charles", + "storeLinks": [ + "https://play.google.com/music/mAydyyuulnejtq2mrphq2hi54k4q" + ], + "albumIds": [ + 1243, + 1270, + 1412 + ], + "tagIds": [], + "trackIds": [ + 1617, + 1648, + 1842 + ] + }, + { + "mbApi_typename": "artist", + "id": 969, + "name": "Earl Grant", + "storeLinks": [ + "https://play.google.com/music/mA4b7tnze7ucuui6fvyzpr6t5qfi" + ], + "albumIds": [ + 1245 + ], + "tagIds": [], + "trackIds": [ + 1621 + ] + }, + { + "mbApi_typename": "artist", + "id": 970, + "name": "Big Bad Voodoo Daddy", + "storeLinks": [ + "https://play.google.com/music/mA4x6oebnfeeqr3azpr4m6calnyy" + ], + "albumIds": [ + 1246 + ], + "tagIds": [], + "trackIds": [ + 1622 + ] + }, + { + "mbApi_typename": "artist", + "id": 971, + "name": "Shades", + "storeLinks": [ + "https://play.google.com/music/mAc6bu7p7zmu2mlnk6rekj3mpmgi" + ], + "albumIds": [ + 1247 + ], + "tagIds": [], + "trackIds": [ + 1623 + ] + }, + { + "mbApi_typename": "artist", + "id": 972, + "name": "Naomi & Her Handsome Devils", + "storeLinks": [ + "https://play.google.com/music/mAazl2ijm7ks5lo4prq3rlyvvqsi" + ], + "albumIds": [ + 1248 + ], + "tagIds": [], + "trackIds": [ + 1624, + 1659, + 1766 + ] + }, + { + "mbApi_typename": "artist", + "id": 973, + "name": "Catherine Russell", + "storeLinks": [ + "https://play.google.com/music/mAgsi6nmetk5zc3ind3nglxrhkze" + ], + "albumIds": [ + 1249 + ], + "tagIds": [], + "trackIds": [ + 1625 + ] + }, + { + "mbApi_typename": "artist", + "id": 974, + "name": "Benny Godman", + "storeLinks": [ + "https://play.google.com/music/mAntzgqbzqtmj23bxcerd7sy434q" + ], + "albumIds": [ + 1251 + ], + "tagIds": [], + "trackIds": [ + 1627 + ] + }, + { + "mbApi_typename": "artist", + "id": 975, + "name": "Ben Webster", + "storeLinks": [ + "https://play.google.com/music/mAuv5pxijc666cwxjbd6xgpmrulq" + ], + "albumIds": [ + 1252, + 1421 + ], + "tagIds": [], + "trackIds": [ + 1628, + 1635, + 1822, + 1852 + ] + }, + { + "mbApi_typename": "artist", + "id": 976, + "name": "Lionel Hampton", + "storeLinks": [ + "https://play.google.com/music/mAbqkiscmwfthx33ehsv3ct3vdmm" + ], + "albumIds": [ + 1254, + 1268, + 1431 + ], + "tagIds": [], + "trackIds": [ + 1630, + 1646, + 1863 + ] + }, + { + "mbApi_typename": "artist", + "id": 977, + "name": "Count Basie", + "storeLinks": [ + "https://play.google.com/music/mAkwhxzfuqsc73x4wd52wvijv5am" + ], + "albumIds": [ + 1255, + 1261, + 1385, + 1430, + 1434, + 1438 + ], + "tagIds": [], + "trackIds": [ + 1631, + 1638, + 1810, + 1862, + 1867, + 1871 + ] + }, + { + "mbApi_typename": "artist", + "id": 978, + "name": "Slim Gaillard", + "storeLinks": [ + "https://play.google.com/music/mAnjg2ijtngmpcig7mbul3a6brsy" + ], + "albumIds": [ + 1256, + 1368 + ], + "tagIds": [], + "trackIds": [ + 1632, + 1772 + ] + }, + { + "mbApi_typename": "artist", + "id": 979, + "name": "Lester Young", + "storeLinks": [ + "https://play.google.com/music/mAct7qrmxf3mv6yw352vekozpo54" + ], + "albumIds": [ + 1257, + 1313 + ], + "tagIds": [], + "trackIds": [ + 1633, + 1706 + ] + }, + { + "mbApi_typename": "artist", + "id": 980, + "name": "Lincoln Center Jazz Orchestra", + "storeLinks": [ + "https://play.google.com/music/mAh3fehaexzpi6j7rrz7pcuo6gtu" + ], + "albumIds": [ + 1258 + ], + "tagIds": [], + "trackIds": [ + 1634, + 1807 + ] + }, + { + "mbApi_typename": "artist", + "id": 981, + "name": "The Benny Goodman Orchestra", + "storeLinks": [ + "https://play.google.com/music/mAntzgqbzqtmj23bxcerd7sy434q" + ], + "albumIds": [ + 1259 + ], + "tagIds": [], + "trackIds": [ + 1636 + ] + }, + { + "mbApi_typename": "artist", + "id": 982, + "name": "Lionel Hampton & His Orchestra", + "storeLinks": [ + "https://play.google.com/music/mAbqkiscmwfthx33ehsv3ct3vdmm" + ], + "albumIds": [ + 1260 + ], + "tagIds": [], + "trackIds": [ + 1637 + ] + }, + { + "mbApi_typename": "artist", + "id": 983, + "name": "Ella Fitzgerald and Her Famous Orchestra", + "storeLinks": [ + "https://play.google.com/music/mA2uofeedy4kwhvcyp3ob5sz3wti" + ], + "albumIds": [ + 1262 + ], + "tagIds": [], + "trackIds": [ + 1639 + ] + }, + { + "mbApi_typename": "artist", + "id": 984, + "name": "Buster Smith", + "storeLinks": [ + "https://play.google.com/music/mAs77mmln7k66lsbha4un63qnc5a" + ], + "albumIds": [ + 1264 + ], + "tagIds": [], + "trackIds": [ + 1641 + ] + }, + { + "mbApi_typename": "artist", + "id": 985, + "name": "Count Basie and His Orchestra", + "storeLinks": [ + "https://play.google.com/music/mAkwhxzfuqsc73x4wd52wvijv5am" + ], + "albumIds": [ + 1265, + 1366, + 1384 + ], + "tagIds": [], + "trackIds": [ + 1642, + 1770, + 1809 + ] + }, + { + "mbApi_typename": "artist", + "id": 986, + "name": "Jesse Stone", + "storeLinks": [ + "https://play.google.com/music/mAhevermeamlnpkp7dplrkp5tkaa" + ], + "albumIds": [ + 1266 + ], + "tagIds": [], + "trackIds": [ + 1643 + ] + }, + { + "mbApi_typename": "artist", + "id": 987, + "name": "Nellie Luther", + "storeLinks": [ + "https://play.google.com/music/mA6kfns4upv3ezhkdjfjyxs5ympy" + ], + "albumIds": [ + 1267 + ], + "tagIds": [], + "trackIds": [ + 1645 + ] + }, + { + "mbApi_typename": "artist", + "id": 988, + "name": "Louis Prima", + "storeLinks": [ + "https://play.google.com/music/mAyg5r4lviwd3q4g3fickqiee7py" + ], + "albumIds": [ + 1269 + ], + "tagIds": [], + "trackIds": [ + 1647 + ] + }, + { + "mbApi_typename": "artist", + "id": 989, + "name": "Jay McShann", + "storeLinks": [ + "https://play.google.com/music/mAwcjnraviomis7sg6r2ln44pzpa" + ], + "albumIds": [ + 1271 + ], + "tagIds": [], + "trackIds": [ + 1649 + ] + }, + { + "mbApi_typename": "artist", + "id": 990, + "name": "Louis Jordan & His Tympany Five", + "storeLinks": [ + "https://play.google.com/music/mAegrh5yu3bn6henmf3a5l6o7jd4" + ], + "albumIds": [ + 1272 + ], + "tagIds": [], + "trackIds": [ + 1650 + ] + }, + { + "mbApi_typename": "artist", + "id": 991, + "name": "The Jimi Hendrix Experience", + "storeLinks": [ + "https://play.google.com/music/mAkca45r4sv3ec5jzpq7tvfdetme" + ], + "albumIds": [ + 1275 + ], + "tagIds": [], + "trackIds": [ + 1653 + ] + }, + { + "mbApi_typename": "artist", + "id": 992, + "name": "Al Cooper", + "storeLinks": [ + "https://play.google.com/music/mAolwkvz2m7ff26v5kup4nzrnzlu" + ], + "albumIds": [ + 1276 + ], + "tagIds": [], + "trackIds": [ + 1654 + ] + }, + { + "mbApi_typename": "artist", + "id": 993, + "name": "Sly & The Family Stone", + "storeLinks": [ + "https://play.google.com/music/mAdxlh6565vv3j7sarfbmp3zznou" + ], + "albumIds": [ + 1280 + ], + "tagIds": [], + "trackIds": [ + 1663 + ] + }, + { + "mbApi_typename": "artist", + "id": 994, + "name": "Randy Crawford", + "storeLinks": [ + "https://play.google.com/music/mAniygbbancfcbkyznwk4werqram" + ], + "albumIds": [ + 1281 + ], + "tagIds": [], + "trackIds": [ + 1664 + ] + }, + { + "mbApi_typename": "artist", + "id": 995, + "name": "Bell Biv Devoe", + "storeLinks": [ + "https://play.google.com/music/mAevrqhzozjnhqdxxjrgw5nt2szi" + ], + "albumIds": [ + 1282 + ], + "tagIds": [], + "trackIds": [ + 1665 + ] + }, + { + "mbApi_typename": "artist", + "id": 996, + "name": "LL Cool J", + "storeLinks": [ + "https://play.google.com/music/mApou7fnbr5dpmnevkol6p43uptu" + ], + "albumIds": [ + 1283 + ], + "tagIds": [], + "trackIds": [ + 1666 + ] + }, + { + "mbApi_typename": "artist", + "id": 997, + "name": "Kelis", + "storeLinks": [ + "https://play.google.com/music/mA6juzgw4imphko3uhv26iwsctoi" + ], + "albumIds": [ + 1284 + ], + "tagIds": [], + "trackIds": [ + 1667 + ] + }, + { + "mbApi_typename": "artist", + "id": 998, + "name": "Montell Jordan", + "storeLinks": [ + "https://play.google.com/music/mAcrd3ucsizl4jn6payfvzmu2y7e" + ], + "albumIds": [ + 1285 + ], + "tagIds": [], + "trackIds": [ + 1668 + ] + }, + { + "mbApi_typename": "artist", + "id": 999, + "name": "Missy Elliott", + "storeLinks": [ + "https://play.google.com/music/mA4746cuzklcthpnqz4aas4fdtuy" + ], + "albumIds": [ + 1286 + ], + "tagIds": [], + "trackIds": [ + 1669 + ] + }, + { + "mbApi_typename": "artist", + "id": 1000, + "name": "House Of Pain", + "storeLinks": [ + "https://play.google.com/music/mAc2ugxifvxiolxbyivs5ikv6dpy" + ], + "albumIds": [ + 1287 + ], + "tagIds": [], + "trackIds": [ + 1670 + ] + }, + { + "mbApi_typename": "artist", + "id": 1001, + "name": "Eagles Of Death Metal", + "storeLinks": [ + "https://play.google.com/music/mA6pyemov6g34azgckgkru3y7tlu" + ], + "albumIds": [ + 1288 + ], + "tagIds": [], + "trackIds": [ + 1672 + ] + }, + { + "mbApi_typename": "artist", + "id": 1002, + "name": "Blur", + "storeLinks": [ + "https://play.google.com/music/mAxjgp6jtctensn2ijxp5w5ydsty" + ], + "albumIds": [ + 1289 + ], + "tagIds": [], + "trackIds": [ + 1673 + ] + }, + { + "mbApi_typename": "artist", + "id": 1003, + "name": "Jerry Lee Lewis", + "storeLinks": [ + "https://play.google.com/music/mAzpranvopqmki4k7sgbrmroigv4" + ], + "albumIds": [ + 1291 + ], + "tagIds": [], + "trackIds": [ + 1675 + ] + }, + { + "mbApi_typename": "artist", + "id": 1004, + "name": "RUN DMC", + "storeLinks": [ + "https://play.google.com/music/mAaupracdosxt5buvmx5v3gqbcda" + ], + "albumIds": [ + 1292 + ], + "tagIds": [], + "trackIds": [ + 1676 + ] + }, + { + "mbApi_typename": "artist", + "id": 1005, + "name": "The Prodigy", + "storeLinks": [ + "https://play.google.com/music/mAyoidtvwv3jchewjeahrw3vuw7i" + ], + "albumIds": [ + 1295 + ], + "tagIds": [], + "trackIds": [ + 1679 + ] + }, + { + "mbApi_typename": "artist", + "id": 1006, + "name": "The Chemical Brothers", + "storeLinks": [ + "https://play.google.com/music/mAdhiec2ed2lvaglrmt52f3xu3ie" + ], + "albumIds": [ + 1296 + ], + "tagIds": [], + "trackIds": [ + 1680 + ] + }, + { + "mbApi_typename": "artist", + "id": 1007, + "name": "Rick James", + "storeLinks": [ + "https://play.google.com/music/mAv347xwp4p7nysqttzowrwp6mnm" + ], + "albumIds": [ + 1297 + ], + "tagIds": [], + "trackIds": [ + 1681 + ] + }, + { + "mbApi_typename": "artist", + "id": 1008, + "name": "Yolanda be Cool, DCUP", + "storeLinks": [ + "https://play.google.com/music/mAxoinbuvsvwmwg6ivw7zh4wrdgu" + ], + "albumIds": [ + 1298 + ], + "tagIds": [], + "trackIds": [ + 1682 + ] + }, + { + "mbApi_typename": "artist", + "id": 1009, + "name": "Young Gun Silver Fox", + "storeLinks": [ + "https://play.google.com/music/mAasffa76bobffhtbc2zygntgzs4" + ], + "albumIds": [ + 1301 + ], + "tagIds": [], + "trackIds": [ + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694 + ] + }, + { + "mbApi_typename": "artist", + "id": 1010, + "name": "Rhye", + "storeLinks": [ + "https://play.google.com/music/mAuo7tobpdzdgeq4xht53ge2eqem" + ], + "albumIds": [ + 1303 + ], + "tagIds": [], + "trackIds": [ + 1696 + ] + }, + { + "mbApi_typename": "artist", + "id": 1011, + "name": "Greyhounds", + "storeLinks": [ + "https://play.google.com/music/mAkmvqcymhtrq5uhlckhirrmwjvu" + ], + "albumIds": [ + 1304 + ], + "tagIds": [], + "trackIds": [ + 1697 + ] + }, + { + "mbApi_typename": "artist", + "id": 1012, + "name": "Ray Charles, Betty Carter", + "storeLinks": [ + "https://play.google.com/music/mAydyyuulnejtq2mrphq2hi54k4q" + ], + "albumIds": [ + 1305 + ], + "tagIds": [], + "trackIds": [ + 1698 + ] + }, + { + "mbApi_typename": "artist", + "id": 1013, + "name": "Chris Connor", + "storeLinks": [ + "https://play.google.com/music/mAxqoctg4idu6iw6lxapegkf7pyy" + ], + "albumIds": [ + 1306 + ], + "tagIds": [], + "trackIds": [ + 1699 + ] + }, + { + "mbApi_typename": "artist", + "id": 1014, + "name": "Carmen McRae", + "storeLinks": [ + "https://play.google.com/music/mAjt2zogz2vvcdqhsoasdu2b2fq4" + ], + "albumIds": [ + 1308 + ], + "tagIds": [], + "trackIds": [ + 1701 + ] + }, + { + "mbApi_typename": "artist", + "id": 1015, + "name": "Billie Holiday", + "storeLinks": [ + "https://play.google.com/music/mAxc2rntbtmyloxmdblk5kgpxeea" + ], + "albumIds": [ + 1309 + ], + "tagIds": [], + "trackIds": [ + 1702 + ] + }, + { + "mbApi_typename": "artist", + "id": 1016, + "name": "Nat King Cole", + "storeLinks": [ + "https://play.google.com/music/mAcs3sdvmbmlu37ac5psnyh4ww5q" + ], + "albumIds": [ + 1310, + 1419 + ], + "tagIds": [], + "trackIds": [ + 1703, + 1850 + ] + }, + { + "mbApi_typename": "artist", + "id": 1017, + "name": "The Gene Krupa Sextet", + "storeLinks": [ + "https://play.google.com/music/mAelbye3oamiyvyau3lxuppaloba" + ], + "albumIds": [ + 1311 + ], + "tagIds": [], + "trackIds": [ + 1704 + ] + }, + { + "mbApi_typename": "artist", + "id": 1018, + "name": "Jo Jones", + "storeLinks": [ + "https://play.google.com/music/mAkjygj5adtb77qkyikjs4osydhy" + ], + "albumIds": [ + 1312 + ], + "tagIds": [], + "trackIds": [ + 1705 + ] + }, + { + "mbApi_typename": "artist", + "id": 1019, + "name": "The Whitest Boy Alive", + "storeLinks": [ + "https://play.google.com/music/mA5rrqj7u4fyprqja7ahmvvvlwty" + ], + "albumIds": [ + 1314 + ], + "tagIds": [], + "trackIds": [ + 1707, + 1883 + ] + }, + { + "mbApi_typename": "artist", + "id": 1020, + "name": "Oliver Mtukudzi", + "storeLinks": [ + "https://play.google.com/music/mAj4pnznfxi6p4izju3yzu5bozcu" + ], + "albumIds": [ + 1315 + ], + "tagIds": [], + "trackIds": [ + 1708 + ] + }, + { + "mbApi_typename": "artist", + "id": 1021, + "name": "Dusty Springfield", + "storeLinks": [ + "https://play.google.com/music/mAlyvuks7rfbnzqqmycmmfilg54e" + ], + "albumIds": [ + 1316 + ], + "tagIds": [], + "trackIds": [ + 1709 + ] + }, + { + "mbApi_typename": "artist", + "id": 1022, + "name": "The Stone Roses", + "storeLinks": [ + "https://play.google.com/music/mAx6wjhhvlbn2cpukq5nyoima7ny" + ], + "albumIds": [ + 1317, + 1360 + ], + "tagIds": [], + "trackIds": [ + 1710, + 1761 + ] + }, + { + "mbApi_typename": "artist", + "id": 1023, + "name": "The Coquette Jazz Band", + "storeLinks": [ + "https://play.google.com/music/mAuxn5jkepb5np7zveyv5pojrroa" + ], + "albumIds": [ + 1319 + ], + "tagIds": [], + "trackIds": [ + 1712, + 1880 + ] + }, + { + "mbApi_typename": "artist", + "id": 1024, + "name": "Crosby, Stills & Nash", + "storeLinks": [ + "https://play.google.com/music/mA5r3n5cbs3me4qahsr3xkcebboi" + ], + "albumIds": [ + 1320 + ], + "tagIds": [], + "trackIds": [ + 1714 + ] + }, + { + "mbApi_typename": "artist", + "id": 1025, + "name": "Manfred Mann's Earth Band", + "storeLinks": [ + "https://play.google.com/music/mAmpkgrlmkr2l2pineq67xer4b2a" + ], + "albumIds": [ + 1321, + 1334 + ], + "tagIds": [], + "trackIds": [ + 1715, + 1734 + ] + }, + { + "mbApi_typename": "artist", + "id": 1026, + "name": "Al Jarreau", + "storeLinks": [ + "https://play.google.com/music/mAfa6od5uumk7kpv22dida3qiqka" + ], + "albumIds": [ + 1322 + ], + "tagIds": [], + "trackIds": [ + 1716 + ] + }, + { + "mbApi_typename": "artist", + "id": 1027, + "name": "Leaf Rapids", + "storeLinks": [ + "https://play.google.com/music/mAn7qpfg25anblgyngu4gglhyfk4" + ], + "albumIds": [ + 1323 + ], + "tagIds": [], + "trackIds": [ + 1717 + ] + }, + { + "mbApi_typename": "artist", + "id": 1028, + "name": "Dawn Brothers", + "storeLinks": [ + "https://play.google.com/music/mAfhj7rqilzxa7eeflmoqbhgcnci" + ], + "albumIds": [ + 1324 + ], + "tagIds": [], + "trackIds": [ + 1718, + 1719 + ] + }, + { + "mbApi_typename": "artist", + "id": 1029, + "name": "Sergio Mendes", + "storeLinks": [ + "https://play.google.com/music/mAneuqz3op4uwtkwalmen2j4vyam" + ], + "albumIds": [ + 1325 + ], + "tagIds": [], + "trackIds": [ + 1723 + ] + }, + { + "mbApi_typename": "artist", + "id": 1030, + "name": "Blue Swede", + "storeLinks": [ + "https://play.google.com/music/mA25rnjus3iutxjdgm2xtwmyimju" + ], + "albumIds": [ + 1326 + ], + "tagIds": [], + "trackIds": [ + 1725 + ] + }, + { + "mbApi_typename": "artist", + "id": 1031, + "name": "Bobby McFerrin", + "storeLinks": [ + "https://play.google.com/music/mAhooqdruubnd4ee76yq7grr4ju4" + ], + "albumIds": [ + 1327 + ], + "tagIds": [], + "trackIds": [ + 1726 + ] + }, + { + "mbApi_typename": "artist", + "id": 1032, + "name": "Fleetwood Mac", + "storeLinks": [ + "https://play.google.com/music/mAud7adct4jwu5ohhgggtladc3ci" + ], + "albumIds": [ + 1328, + 1340 + ], + "tagIds": [], + "trackIds": [ + 1727, + 1740 + ] + }, + { + "mbApi_typename": "artist", + "id": 1033, + "name": "Donovan", + "storeLinks": [ + "https://play.google.com/music/mAcx6aigkrd6p6izktxhzgf2rehq" + ], + "albumIds": [ + 1330 + ], + "tagIds": [], + "trackIds": [ + 1729 + ] + }, + { + "mbApi_typename": "artist", + "id": 1034, + "name": "Rodrigo Y Gabriela", + "storeLinks": [ + "https://play.google.com/music/mAwntkffrlgnrjflqv4xyligydni" + ], + "albumIds": [ + 1331 + ], + "tagIds": [], + "trackIds": [ + 1730, + 1731 + ] + }, + { + "mbApi_typename": "artist", + "id": 1035, + "name": "Snow Patrol", + "storeLinks": [ + "https://play.google.com/music/mAni6nesenztctj7y4i3oyxtntqe" + ], + "albumIds": [ + 1332 + ], + "tagIds": [], + "trackIds": [ + 1732 + ] + }, + { + "mbApi_typename": "artist", + "id": 1036, + "name": "Nirvana", + "storeLinks": [ + "https://play.google.com/music/mApyli2ev5del3s42qsjpnmqwuue" + ], + "albumIds": [ + 1333 + ], + "tagIds": [], + "trackIds": [ + 1733 + ] + }, + { + "mbApi_typename": "artist", + "id": 1037, + "name": "Prefuse 73", + "storeLinks": [ + "https://play.google.com/music/mAw7sf5zdrnw6ofmtobmu33a4lke" + ], + "albumIds": [ + 1335 + ], + "tagIds": [], + "trackIds": [ + 1735 + ] + }, + { + "mbApi_typename": "artist", + "id": 1038, + "name": "Extreme", + "storeLinks": [ + "https://play.google.com/music/mAxaczq7fmjlvow35x6mchtk6lye" + ], + "albumIds": [ + 1336 + ], + "tagIds": [], + "trackIds": [ + 1736 + ] + }, + { + "mbApi_typename": "artist", + "id": 1039, + "name": "Old Man Luedecke", + "storeLinks": [ + "https://play.google.com/music/mAagwl4aot4eikqsukri7hjbmk6q" + ], + "albumIds": [ + 1337 + ], + "tagIds": [], + "trackIds": [ + 1737 + ] + }, + { + "mbApi_typename": "artist", + "id": 1040, + "name": "Nathan James & Ben Hernandez", + "storeLinks": [ + "https://play.google.com/music/mA3o7ylinbgqh52zooviw2vdo4zy" + ], + "albumIds": [ + 1338 + ], + "tagIds": [], + "trackIds": [ + 1738 + ] + }, + { + "mbApi_typename": "artist", + "id": 1041, + "name": "Shirley Horn", + "storeLinks": [ + "https://play.google.com/music/mA2i4kwybkq6tcqho7pmf4iihowq" + ], + "albumIds": [ + 1339 + ], + "tagIds": [], + "trackIds": [ + 1739 + ] + }, + { + "mbApi_typename": "artist", + "id": 1042, + "name": "Siouxsie And The Banshees", + "storeLinks": [ + "https://play.google.com/music/mAa2rm3th4yufgtxkfqadb3k7psy" + ], + "albumIds": [ + 1341 + ], + "tagIds": [], + "trackIds": [ + 1741 + ] + }, + { + "mbApi_typename": "artist", + "id": 1043, + "name": "Vanessa Da Mata", + "storeLinks": [ + "https://play.google.com/music/mAm5kh4jqfano6u5tgxss6br5dxm" + ], + "albumIds": [ + 1342 + ], + "tagIds": [], + "trackIds": [ + 1742 + ] + }, + { + "mbApi_typename": "artist", + "id": 1044, + "name": "Anouk", + "storeLinks": [ + "https://play.google.com/music/mAnca4v63qkutjpm6w2sxell5enu" + ], + "albumIds": [ + 1343 + ], + "tagIds": [], + "trackIds": [ + 1743 + ] + }, + { + "mbApi_typename": "artist", + "id": 1045, + "name": "Felix Jaehn", + "storeLinks": [ + "https://play.google.com/music/mAxtj4jro2cb2modkptmghni6h2y" + ], + "albumIds": [ + 1345 + ], + "tagIds": [], + "trackIds": [ + 1745 + ] + }, + { + "mbApi_typename": "artist", + "id": 1046, + "name": "Douwe Bob", + "storeLinks": [ + "https://play.google.com/music/mAxbtjwpbo6nhjdrh54yurzoxavq" + ], + "albumIds": [ + 1346 + ], + "tagIds": [], + "trackIds": [ + 1746 + ] + }, + { + "mbApi_typename": "artist", + "id": 1047, + "name": "Kovacs", + "storeLinks": [ + "https://play.google.com/music/mAu5zyjlknlrk2yfesmh2h3kavi4" + ], + "albumIds": [ + 1348 + ], + "tagIds": [], + "trackIds": [ + 1748 + ] + }, + { + "mbApi_typename": "artist", + "id": 1048, + "name": "The Maccabees", + "storeLinks": [ + "https://play.google.com/music/mAfodm23ujjt7apeeu7osvgdo7oq" + ], + "albumIds": [ + 1350 + ], + "tagIds": [], + "trackIds": [ + 1750 + ] + }, + { + "mbApi_typename": "artist", + "id": 1049, + "name": "Jamie Cullum", + "storeLinks": [ + "https://play.google.com/music/mAa2wvyjpqk4bqjuelakslyiddyi" + ], + "albumIds": [ + 1351, + 1456 + ], + "tagIds": [], + "trackIds": [ + 1751, + 1896, + 1897 + ] + }, + { + "mbApi_typename": "artist", + "id": 1050, + "name": "Smashing Pumpkins", + "storeLinks": [ + "https://play.google.com/music/mAhjpvl4cmvm3du7xicksxamgkce" + ], + "albumIds": [ + 1352 + ], + "tagIds": [], + "trackIds": [ + 1752 + ] + }, + { + "mbApi_typename": "artist", + "id": 1051, + "name": "Steely Dan", + "storeLinks": [ + "https://play.google.com/music/mAcyustn7gxyjgtpn5qdj5kxsn4q" + ], + "albumIds": [ + 1353 + ], + "tagIds": [], + "trackIds": [ + 1753 + ] + }, + { + "mbApi_typename": "artist", + "id": 1052, + "name": "BOY", + "storeLinks": [ + "https://play.google.com/music/mAujw3xtyas4osygjx76rpbzrz7e" + ], + "albumIds": [ + 1354 + ], + "tagIds": [], + "trackIds": [ + 1754 + ] + }, + { + "mbApi_typename": "artist", + "id": 1053, + "name": "Foals", + "storeLinks": [ + "https://play.google.com/music/mAmbnurbaw4zpmqcdfbvuhxsukzq" + ], + "albumIds": [ + 1355 + ], + "tagIds": [], + "trackIds": [ + 1755 + ] + }, + { + "mbApi_typename": "artist", + "id": 1054, + "name": "The Magician", + "storeLinks": [ + "https://play.google.com/music/mAisbor2nkullzkyoqf65xwwbkei" + ], + "albumIds": [ + 1358 + ], + "tagIds": [], + "trackIds": [ + 1758 + ] + }, + { + "mbApi_typename": "artist", + "id": 1055, + "name": "Aretha Franklin", + "storeLinks": [ + "https://play.google.com/music/mA5eetn3s74neelxsvezepxszm3a" + ], + "albumIds": [ + 1359 + ], + "tagIds": [], + "trackIds": [ + 1760 + ] + }, + { + "mbApi_typename": "artist", + "id": 1056, + "name": "Louis Prima & His New Orleans Gang", + "storeLinks": [ + "https://play.google.com/music/mAyg5r4lviwd3q4g3fickqiee7py" + ], + "albumIds": [ + 1361 + ], + "tagIds": [], + "trackIds": [ + 1762 + ] + }, + { + "mbApi_typename": "artist", + "id": 1057, + "name": "Johnny Hodges", + "storeLinks": [ + "https://play.google.com/music/mAbkyz37ihlh74vbx7c6v5yhxm2a" + ], + "albumIds": [ + 1364, + 1418 + ], + "tagIds": [], + "trackIds": [ + 1765, + 1849 + ] + }, + { + "mbApi_typename": "artist", + "id": 1058, + "name": "Jimmy Lunceford", + "storeLinks": [ + "https://play.google.com/music/mAwahbnk7s6flwmyzdej6aeuvptq" + ], + "albumIds": [ + 1365 + ], + "tagIds": [], + "trackIds": [ + 1768 + ] + }, + { + "mbApi_typename": "artist", + "id": 1059, + "name": "Johnny Moore's Three Blazers", + "storeLinks": [ + "https://play.google.com/music/mAw4ovqdtwtlwepk2bopeyqjlvaq" + ], + "albumIds": [ + 1369 + ], + "tagIds": [], + "trackIds": [ + 1773 + ] + }, + { + "mbApi_typename": "artist", + "id": 1060, + "name": "The Count Basie Orchestra", + "storeLinks": [ + "https://play.google.com/music/mAkwhxzfuqsc73x4wd52wvijv5am" + ], + "albumIds": [ + 1370 + ], + "tagIds": [], + "trackIds": [ + 1774 + ] + }, + { + "mbApi_typename": "artist", + "id": 1061, + "name": "Lucky Millinder", + "storeLinks": [ + "https://play.google.com/music/mAeuzw62rck7k3ltcpwo6aowis6i" + ], + "albumIds": [ + 1371, + 1429, + 1439 + ], + "tagIds": [], + "trackIds": [ + 1775, + 1860, + 1861, + 1872 + ] + }, + { + "mbApi_typename": "artist", + "id": 1062, + "name": "Glenn Crytzer and his Syncopators", + "storeLinks": [ + "https://play.google.com/music/mAyp4sjbvspwz6vwvvrehus2vnnu" + ], + "albumIds": [ + 1372 + ], + "tagIds": [], + "trackIds": [ + 1776 + ] + }, + { + "mbApi_typename": "artist", + "id": 1063, + "name": "Artie Shaw", + "storeLinks": [ + "https://play.google.com/music/mAlqqgsqqd2z64ms3xxgj3wunkkm" + ], + "albumIds": [ + 1373, + 1423, + 1432 + ], + "tagIds": [], + "trackIds": [ + 1777, + 1854, + 1865 + ] + }, + { + "mbApi_typename": "artist", + "id": 1064, + "name": "Michael Gamble & The Rhythm Serenaders", + "storeLinks": [ + "https://play.google.com/music/mAodq2yjq3uy3fjofc553l3acimi" + ], + "albumIds": [ + 1375 + ], + "tagIds": [], + "trackIds": [ + 1779 + ] + }, + { + "mbApi_typename": "artist", + "id": 1065, + "name": "The Shirt Tail Stompers", + "storeLinks": [ + "https://play.google.com/music/mAs5uzvypjpn73a6x7asdpfqr4c4" + ], + "albumIds": [ + 1381 + ], + "tagIds": [], + "trackIds": [ + 1805 + ] + }, + { + "mbApi_typename": "artist", + "id": 1066, + "name": "Julia Lee", + "storeLinks": [ + "https://play.google.com/music/mAa2akbbowuyapwp6bamdqdkqkpe" + ], + "albumIds": [ + 1382, + 1388, + 1390 + ], + "tagIds": [], + "trackIds": [ + 1806, + 1814, + 1816 + ] + }, + { + "mbApi_typename": "artist", + "id": 1067, + "name": "Helen Forrest", + "storeLinks": [ + "https://play.google.com/music/mAxhwwo6mbz43d2zhkgb6icx7ugu" + ], + "albumIds": [ + 1383 + ], + "tagIds": [], + "trackIds": [ + 1808 + ] + }, + { + "mbApi_typename": "artist", + "id": 1068, + "name": "Chick Webb", + "storeLinks": [ + "https://play.google.com/music/mAr3ejpdtegr6ujtk5weiffftjme" + ], + "albumIds": [ + 1389, + 1437, + 1440 + ], + "tagIds": [], + "trackIds": [ + 1815, + 1870, + 1873 + ] + }, + { + "mbApi_typename": "artist", + "id": 1069, + "name": "Ella Fitzgerald, Chick Webb", + "storeLinks": [ + "https://play.google.com/music/mA2uofeedy4kwhvcyp3ob5sz3wti" + ], + "albumIds": [ + 1391 + ], + "tagIds": [], + "trackIds": [ + 1817 + ] + }, + { + "mbApi_typename": "artist", + "id": 1070, + "name": "Erroll Garner", + "storeLinks": [ + "https://play.google.com/music/mAhritevgoauy4tgvtkymzw4a7zi" + ], + "albumIds": [ + 1392, + 1416 + ], + "tagIds": [], + "trackIds": [ + 1820, + 1847 + ] + }, + { + "mbApi_typename": "artist", + "id": 1071, + "name": "Count Basie & His Orchestra", + "storeLinks": [ + "https://play.google.com/music/mAkwhxzfuqsc73x4wd52wvijv5am" + ], + "albumIds": [ + 1393 + ], + "tagIds": [], + "trackIds": [ + 1821 + ] + }, + { + "mbApi_typename": "artist", + "id": 1072, + "name": "Cab Calloway", + "storeLinks": [ + "https://play.google.com/music/mAd2nxjvvbbyn2o5ivykkblnkzsq" + ], + "albumIds": [ + 1394 + ], + "tagIds": [], + "trackIds": [ + 1824 + ] + }, + { + "mbApi_typename": "artist", + "id": 1073, + "name": "Fletcher Henderson", + "storeLinks": [ + "https://play.google.com/music/mAdw256etebmngwx3mk4jz57uhem" + ], + "albumIds": [ + 1395 + ], + "tagIds": [], + "trackIds": [ + 1825 + ] + }, + { + "mbApi_typename": "artist", + "id": 1074, + "name": "Dizzy Gillespie", + "storeLinks": [ + "https://play.google.com/music/mAd426jfp2iu4tu2qrvnokd77gle" + ], + "albumIds": [ + 1396 + ], + "tagIds": [], + "trackIds": [ + 1826 + ] + }, + { + "mbApi_typename": "artist", + "id": 1075, + "name": "Earl Fatha Hines", + "storeLinks": [ + "https://play.google.com/music/mAotcpmses5ti3kqqnbs5dbp2o2m" + ], + "albumIds": [ + 1397 + ], + "tagIds": [], + "trackIds": [ + 1827 + ] + }, + { + "mbApi_typename": "artist", + "id": 1076, + "name": "Mel Tormé", + "storeLinks": [ + "https://play.google.com/music/mAias5t376eqazcssejw5o4sestq" + ], + "albumIds": [ + 1398 + ], + "tagIds": [], + "trackIds": [ + 1828 + ] + }, + { + "mbApi_typename": "artist", + "id": 1077, + "name": "Harry James", + "storeLinks": [ + "https://play.google.com/music/mA5w6yokftp6x34kqoelto4i3qgq" + ], + "albumIds": [ + 1399 + ], + "tagIds": [], + "trackIds": [ + 1829 + ] + }, + { + "mbApi_typename": "artist", + "id": 1078, + "name": "James Newton Howard", + "storeLinks": [ + "https://play.google.com/music/mAf63t4aa3xlqvkysz5znnablysy" + ], + "albumIds": [ + 1400 + ], + "tagIds": [], + "trackIds": [ + 1830 + ] + }, + { + "mbApi_typename": "artist", + "id": 1079, + "name": "Sarah Vaughan", + "storeLinks": [ + "https://play.google.com/music/mA5dv6solqznfirqu6hsulynv2aq" + ], + "albumIds": [ + 1401, + 1409 + ], + "tagIds": [], + "trackIds": [ + 1831, + 1839 + ] + }, + { + "mbApi_typename": "artist", + "id": 1080, + "name": "Red Garland", + "storeLinks": [ + "https://play.google.com/music/mAnjjfxvkwxdmcx7qmg5pchrd42i" + ], + "albumIds": [ + 1402 + ], + "tagIds": [], + "trackIds": [ + 1832 + ] + }, + { + "mbApi_typename": "artist", + "id": 1081, + "name": "Artie Shaw & His Orchestra", + "storeLinks": [ + "https://play.google.com/music/mAlqqgsqqd2z64ms3xxgj3wunkkm" + ], + "albumIds": [ + 1403 + ], + "tagIds": [], + "trackIds": [ + 1833 + ] + }, + { + "mbApi_typename": "artist", + "id": 1082, + "name": "Dinah Washington", + "storeLinks": [ + "https://play.google.com/music/mAnhojjzvip5icwvgvxnuwwpikte" + ], + "albumIds": [ + 1404 + ], + "tagIds": [], + "trackIds": [ + 1834 + ] + }, + { + "mbApi_typename": "artist", + "id": 1083, + "name": "Louis Armstrong", + "storeLinks": [ + "https://play.google.com/music/mAcpsnxzxb4locjn45zhqu3wp6ku" + ], + "albumIds": [ + 1406, + 1410 + ], + "tagIds": [], + "trackIds": [ + 1836, + 1840 + ] + }, + { + "mbApi_typename": "artist", + "id": 1084, + "name": "Betty Carter", + "storeLinks": [ + "https://play.google.com/music/mAsajtur6ni3jazjw6tgrcpoldvq" + ], + "albumIds": [ + 1407 + ], + "tagIds": [], + "trackIds": [ + 1837 + ] + }, + { + "mbApi_typename": "artist", + "id": 1085, + "name": "The Cats & the Fiddle", + "storeLinks": [ + "https://play.google.com/music/mAohbhxhwoij6c5nqyabtcovoko4" + ], + "albumIds": [ + 1408 + ], + "tagIds": [], + "trackIds": [ + 1838 + ] + }, + { + "mbApi_typename": "artist", + "id": 1086, + "name": "Charlie Parker", + "storeLinks": [ + "https://play.google.com/music/mAc6a5aogq5dtdj6lumuwfnywpre" + ], + "albumIds": [ + 1411 + ], + "tagIds": [], + "trackIds": [ + 1841 + ] + }, + { + "mbApi_typename": "artist", + "id": 1087, + "name": "The Schwings Band", + "storeLinks": [ + "https://play.google.com/music/mAcp4wg3arg74wvxpqcq7qfa74yy" + ], + "albumIds": [ + 1413 + ], + "tagIds": [], + "trackIds": [ + 1843, + 1844 + ] + }, + { + "mbApi_typename": "artist", + "id": 1088, + "name": "Duke Ellington & His Orchestra", + "storeLinks": [ + "https://play.google.com/music/mA4w3zue7olpdzfq2g4mafhmsfde" + ], + "albumIds": [ + 1414 + ], + "tagIds": [], + "trackIds": [ + 1845 + ] + }, + { + "mbApi_typename": "artist", + "id": 1089, + "name": "Oscar Peterson Trio", + "storeLinks": [ + "https://play.google.com/music/mAkoxmaxacveyqu7p7x5riohm3xy" + ], + "albumIds": [ + 1417 + ], + "tagIds": [], + "trackIds": [ + 1848 + ] + }, + { + "mbApi_typename": "artist", + "id": 1090, + "name": "Oscar Peterson", + "storeLinks": [ + "https://play.google.com/music/mAkoxmaxacveyqu7p7x5riohm3xy" + ], + "albumIds": [ + 1420 + ], + "tagIds": [], + "trackIds": [ + 1851 + ] + }, + { + "mbApi_typename": "artist", + "id": 1091, + "name": "Eyal Vilner Big Band", + "storeLinks": [ + "https://play.google.com/music/mA2z57zq2d2k2fhf6ns3fbvalwhu" + ], + "albumIds": [ + 1422 + ], + "tagIds": [], + "trackIds": [ + 1853 + ] + }, + { + "mbApi_typename": "artist", + "id": 1092, + "name": "The Mills Brothers", + "storeLinks": [ + "https://play.google.com/music/mArdejgup7fptmzj27tecls5zzii" + ], + "albumIds": [ + 1424 + ], + "tagIds": [], + "trackIds": [ + 1855 + ] + }, + { + "mbApi_typename": "artist", + "id": 1093, + "name": "Illinois Jacquet", + "storeLinks": [ + "https://play.google.com/music/mAyj4ijedoxoyj47nd4u6ml2fx4y" + ], + "albumIds": [ + 1425 + ], + "tagIds": [], + "trackIds": [ + 1856 + ] + }, + { + "mbApi_typename": "artist", + "id": 1094, + "name": "Trummy Young", + "storeLinks": [ + "https://play.google.com/music/mAe6a6iqzles5eyyxvat5vnrj3tu" + ], + "albumIds": [ + 1426 + ], + "tagIds": [], + "trackIds": [ + 1857 + ] + }, + { + "mbApi_typename": "artist", + "id": 1095, + "name": "Cab Calloway and His Orchestra", + "storeLinks": [ + "https://play.google.com/music/mAd2nxjvvbbyn2o5ivykkblnkzsq" + ], + "albumIds": [ + 1427 + ], + "tagIds": [], + "trackIds": [ + 1858 + ] + }, + { + "mbApi_typename": "artist", + "id": 1096, + "name": "Count Basie And The Kansas City 7", + "storeLinks": [ + "https://play.google.com/music/mAkwhxzfuqsc73x4wd52wvijv5am" + ], + "albumIds": [ + 1433 + ], + "tagIds": [], + "trackIds": [ + 1866, + 1875 + ] + }, + { + "mbApi_typename": "artist", + "id": 1097, + "name": "Buddy Johnson", + "storeLinks": [ + "https://play.google.com/music/mAxtbdm33uxaopada6qpqo3iywqu" + ], + "albumIds": [ + 1435 + ], + "tagIds": [], + "trackIds": [ + 1868 + ] + }, + { + "mbApi_typename": "artist", + "id": 1098, + "name": "Sam Cooke", + "storeLinks": [ + "https://play.google.com/music/mA3jlyjnqjz3jvltbedvxawqsuku" + ], + "albumIds": [ + 1436 + ], + "tagIds": [], + "trackIds": [ + 1869 + ] + }, + { + "mbApi_typename": "artist", + "id": 1099, + "name": "Wynonie Harris", + "storeLinks": [ + "https://play.google.com/music/mAnaoirriwixuzb4vyrjuq37a6pa" + ], + "albumIds": [ + 1443 + ], + "tagIds": [], + "trackIds": [ + 1877 + ] + }, + { + "mbApi_typename": "artist", + "id": 1100, + "name": "Cootie Williams", + "storeLinks": [ + "https://play.google.com/music/mAvi22llouspqwr5zy4iwddk37qa" + ], + "albumIds": [ + 1444 + ], + "tagIds": [], + "trackIds": [ + 1878 + ] + }, + { + "mbApi_typename": "artist", + "id": 1101, + "name": "Glenn Miller & His Orchestra", + "storeLinks": [ + "https://play.google.com/music/mAxd6rp3rkf2qclx2dj6di4bt65a" + ], + "albumIds": [ + 1445 + ], + "tagIds": [], + "trackIds": [ + 1879 + ] + }, + { + "mbApi_typename": "artist", + "id": 1102, + "name": "The Supermen Lovers", + "storeLinks": [ + "https://play.google.com/music/mAnbjyxqljympyygnbx2ucmmzlke" + ], + "albumIds": [ + 1447 + ], + "tagIds": [], + "trackIds": [ + 1882 + ] + }, + { + "mbApi_typename": "artist", + "id": 1103, + "name": "Detroit Soul Sensation", + "storeLinks": [ + "https://play.google.com/music/mAfdbuxykvo3d7hm4tkca4dmlpna" + ], + "albumIds": [ + 1448 + ], + "tagIds": [], + "trackIds": [ + 1885 + ] + }, + { + "mbApi_typename": "artist", + "id": 1104, + "name": "DeWolff", + "storeLinks": [ + "https://play.google.com/music/mAmxagndx6oqwpgh5zaivjkimsui" + ], + "albumIds": [ + 1451 + ], + "tagIds": [], + "trackIds": [ + 1891 + ] + }, + { + "mbApi_typename": "artist", + "id": 1105, + "name": "Walk Off The Earth", + "storeLinks": [ + "https://play.google.com/music/mAioawrmyt6urm5hlstgjoflqpru" + ], + "albumIds": [ + 1452 + ], + "tagIds": [], + "trackIds": [ + 1892 + ] + }, + { + "mbApi_typename": "artist", + "id": 1106, + "name": "Jo Goes Hunting", + "storeLinks": [ + "https://play.google.com/music/mAut2ljriggbtsx5ntrodyrrp7oi" + ], + "albumIds": [ + 1453 + ], + "tagIds": [], + "trackIds": [ + 1893 + ] + }, + { + "mbApi_typename": "artist", + "id": 1107, + "name": "Racoon", + "storeLinks": [ + "https://play.google.com/music/mAioxke54wufahr2vgaq4lfh7l5a" + ], + "albumIds": [ + 1454 + ], + "tagIds": [], + "trackIds": [ + 1894 + ] + }, + { + "mbApi_typename": "artist", + "id": 1108, + "name": "Wallace Vanborn", + "storeLinks": [ + "https://play.google.com/music/mAkfipquqk325ihbhl35urt2y6y4" + ], + "albumIds": [ + 1455 + ], + "tagIds": [], + "trackIds": [ + 1895 + ] + }, + { + "mbApi_typename": "artist", + "id": 1109, + "name": "Warren Zevon", + "storeLinks": [ + "https://play.google.com/music/mAymm2ao4mcsglcdbq24zaxksd3m" + ], + "albumIds": [ + 1457 + ], + "tagIds": [], + "trackIds": [ + 1898 + ] + }, + { + "mbApi_typename": "artist", + "id": 1110, + "name": "Soundgarden", + "storeLinks": [ + "https://play.google.com/music/mAu2ib7r5dv7vxdqikv2hxbzzxmi" + ], + "albumIds": [ + 1458 + ], + "tagIds": [], + "trackIds": [ + 1899 + ] + }, + { + "mbApi_typename": "artist", + "id": 1111, + "name": "Stevie Ray Vaughan And Double Trouble", + "storeLinks": [ + "https://play.google.com/music/mAupydvbzoddntgjykfimvd27rru" + ], + "albumIds": [ + 1459 + ], + "tagIds": [], + "trackIds": [ + 1900 + ] + }, + { + "mbApi_typename": "artist", + "id": 1112, + "name": "Joe Bonamassa", + "storeLinks": [ + "https://play.google.com/music/mA4vvgkjsufom5pnqpdmkyalflsi" + ], + "albumIds": [ + 1460 + ], + "tagIds": [], + "trackIds": [ + 1901 + ] + }, + { + "mbApi_typename": "artist", + "id": 1113, + "name": "Stevie Ann", + "storeLinks": [ + "https://play.google.com/music/mAnmzmslcigj7ggugehmckeqog5m" + ], + "albumIds": [ + 1461 + ], + "tagIds": [], + "trackIds": [ + 1902 + ] + }, + { + "mbApi_typename": "artist", + "id": 1114, + "name": "Heart", + "storeLinks": [ + "https://play.google.com/music/mApimofcb7jpdp4twm7cxtjtnqb4" + ], + "albumIds": [ + 1462 + ], + "tagIds": [], + "trackIds": [ + 1903 + ] + }, + { + "mbApi_typename": "artist", + "id": 1115, + "name": "ZZ Top", + "storeLinks": [ + "https://play.google.com/music/mAaddw3a2e55mfjtxutfiu3y7oo4" + ], + "albumIds": [ + 1463 + ], + "tagIds": [], + "trackIds": [ + 1904 + ] + }, + { + "mbApi_typename": "artist", + "id": 1116, + "name": "José James", + "storeLinks": [ + "https://play.google.com/music/mAehimmfbvcieoxyozadul5n3foq" + ], + "albumIds": [ + 1464 + ], + "tagIds": [], + "trackIds": [ + 1905 + ] + } + ], + "tags": [ + { + "mbApi_typename": "tag", + "id": 128, + "name": "Genre", + "parentId": null + }, + { + "mbApi_typename": "tag", + "id": 129, + "name": "Rock", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 130, + "name": "Jazz", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 131, + "name": "Vocal/Easy Listening", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 132, + "name": "Pop", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 133, + "name": "Psychedelic Rock", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 134, + "name": "Alternative/Indie", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 135, + "name": "Soundtracks", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 136, + "name": "South America", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 137, + "name": "Singer-Songwriter", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 138, + "name": "Swing", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 139, + "name": "North America", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 140, + "name": "'70s Pop", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 141, + "name": "Dance/Electronic", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 142, + "name": "Dutch Levenslied", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 143, + "name": "'00s Alternative", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 144, + "name": "Classic Soul", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 145, + "name": "Classic Rock", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 146, + "name": "French Pop", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 147, + "name": "World", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 148, + "name": "Electropop", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 149, + "name": "Indie", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 150, + "name": "'10s Alternative", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 151, + "name": "Hip-Hop Hitmakers", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 152, + "name": "Punk", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 153, + "name": "'10s Rock", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 154, + "name": "Adult Contemporary", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 155, + "name": "'10s Pop", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 156, + "name": "Contemporary R&B", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 157, + "name": "Neo-Folk", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 158, + "name": "Brit Pop/Brit Rock", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 159, + "name": "Disco", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 160, + "name": "Reggae", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 161, + "name": "Neo-Soul", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 162, + "name": "East Coast Hip-Hop", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 163, + "name": "'70s Rock", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 164, + "name": "Folk", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 165, + "name": "'00s Rock", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 166, + "name": "Country", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 167, + "name": "Hip-Hop/Rap", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 168, + "name": "'90s Alternative", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 169, + "name": "Vocals", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 170, + "name": "R&B/Soul", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 171, + "name": "'60s Rock", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 172, + "name": "Classical", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 173, + "name": "Western Europe", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 174, + "name": "Alt Metal", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 175, + "name": "Metal", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 176, + "name": "Fusion", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 177, + "name": "Doom Metal", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 178, + "name": "Modern Folk", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 179, + "name": "Blues", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 180, + "name": "Children's Music", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 181, + "name": "Breakbeat", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 182, + "name": "Electronica", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 183, + "name": "'60s Pop", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 184, + "name": "Progressive/Art Rock", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 185, + "name": "Country Blues", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 186, + "name": "Goth/Industrial", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 187, + "name": "New Age", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 188, + "name": "Classic R&B", + "parentId": 128 + }, + { + "mbApi_typename": "tag", + "id": 189, + "name": "Electric Blues", + "parentId": 128 + } + ] +} \ No newline at end of file diff --git a/server/app.ts b/server/app.ts index ddc3d2a..f9dab92 100644 --- a/server/app.ts +++ b/server/app.ts @@ -2,7 +2,7 @@ const bodyParser = require('body-parser'); import * as api from '../client/src/api/api'; import Knex from 'knex'; -import { importExportEndpoints } from './endpoints/ImportExport'; +import { DataEndpoints } from './endpoints/Data'; import { queryEndpoints } from './endpoints/Query'; import { artistEndpoints } from './endpoints/Artist'; import { albumEndpoints } from './endpoints/Album'; @@ -34,7 +34,7 @@ const invokeHandler = (handler: endpointTypes.EndpointHandler, knex: Knex) => { } const SetupApp = (app: any, knex: Knex, apiBaseUrl: string) => { - app.use(bodyParser.json()); + app.use(bodyParser.json({ limit: "10mb" })); app.use(bodyParser.urlencoded({ extended: true })); // Set up auth. See: https://github.com/passport/express-4.x-local-example.git @@ -121,7 +121,7 @@ const SetupApp = (app: any, knex: Knex, apiBaseUrl: string) => { integrationEndpoints, userEndpoints, queryEndpoints, - importExportEndpoints, + DataEndpoints, ].forEach((endpoints: [string, string, boolean, endpointTypes.EndpointHandler][]) => { endpoints.forEach((endpoint: [string, string, boolean, endpointTypes.EndpointHandler]) => { let [url, method, authenticated, handler] = endpoint; diff --git a/server/db/Album.ts b/server/db/Album.ts index 358f7b0..164bb3b 100644 --- a/server/db/Album.ts +++ b/server/db/Album.ts @@ -76,6 +76,8 @@ export async function getAlbum(id: number, userId: number, knex: Knex): // Returns the id of the created album. export async function createAlbum(userId: number, album: AlbumWithRefs, knex: Knex): Promise { return await knex.transaction(async (trx) => { + console.log("create album", album); + // Start retrieving artists. const artistIdsPromise: Promise = trx.select('id') @@ -103,6 +105,8 @@ export async function createAlbum(userId: number, album: AlbumWithRefs, knex: Kn // Wait for the requests to finish. var [artists, tags, tracks] = await Promise.all([artistIdsPromise, tagIdsPromise, trackIdsPromise]);; + console.log("Got refs") + // Check that we found all artists and tags we need. if ((!_.isEqual(artists.sort(), (album.artistIds || []).sort())) || (!_.isEqual(tags.sort(), (album.tagIds || []).sort())) || diff --git a/server/db/ImportExport.ts b/server/db/Data.ts similarity index 74% rename from server/db/ImportExport.ts rename to server/db/Data.ts index f9440f7..81afec7 100644 --- a/server/db/ImportExport.ts +++ b/server/db/Data.ts @@ -7,7 +7,7 @@ import { createTag } from "./Tag"; import { createAlbum } from "./Album"; import { createTrack } from "./Track"; -export async function exportDB(userId: number, knex: Knex): Promise { +export async function exportDB(userId: number, knex: Knex): Promise { // First, retrieve all the objects without taking linking tables into account. // Fetch the links separately. @@ -141,7 +141,7 @@ export async function exportDB(userId: number, knex: Knex): Promise t.id === albumId)?.tagIds.push(tagId); }) artistsAlbums.forEach((v: [number, number]) => { - let [artistId, albumId] = v; + let [albumId, artistId] = v; artists.find((t: ArtistWithRefsWithId) => t.id === artistId)?.albumIds.push(albumId); albums.find((t: AlbumWithRefsWithId) => t.id === albumId)?.artistIds.push(artistId); }) @@ -154,37 +154,53 @@ export async function exportDB(userId: number, knex: Knex): Promise { +export async function importDB(userId: number, db: api.DBDataFormat, knex: Knex): Promise { + // Store the ID mappings in this record. + let tagIdMaps: Record = {}; + let artistIdMaps: Record = {}; + let albumIdMaps: Record = {}; + let trackIdMaps: Record = {}; + // Insert items one by one, remapping the IDs as we go. + for(const tag of db.tags) { + let _tag = { + ...tag, + parentId: tag.parentId ? tagIdMaps[tag.parentId] : null, + } + tagIdMaps[tag.id] = await createTag(userId, _tag, knex); + } + for(const artist of db.artists) { + artistIdMaps[artist.id] = await createArtist(userId, { + ...artist, + tagIds: artist.tagIds.map((id: number) => tagIdMaps[id]), + trackIds: [], + albumIds: [], + }, knex); + } + for(const album of db.albums) { + albumIdMaps[album.id] = await createAlbum(userId, { + ...album, + tagIds: album.tagIds.map((id: number) => tagIdMaps[id]), + artistIds: album.artistIds.map((id: number) => artistIdMaps[id]), + trackIds: [], + }, knex); + } + for(const track of db.tracks) { + trackIdMaps[track.id] = await createTrack(userId, { + ...track, + tagIds: track.tagIds.map((id: number) => tagIdMaps[id]), + artistIds: track.artistIds.map((id: number) => artistIdMaps[id]), + albumId: track.albumId ? albumIdMaps[track.albumId] : null, + }, knex); + } +} + +export async function wipeDB(userId: number, knex: Knex) { return await knex.transaction(async (trx) => { - // Store the ID mappings in this record. - let tagIdMaps: Record = {}; - let artistIdMaps: Record = {}; - let albumIdMaps: Record = {}; - let trackIdMaps: Record = {}; - // Insert items one by one, remapping the IDs as we go. - await Promise.all(db.tags.map((tag: TagWithRefsWithId) => async () => { - tagIdMaps[tag.id] = await createTag(userId, tag, knex); - })); - await Promise.all(db.artists.map((artist: ArtistWithRefsWithId) => async () => { - artistIdMaps[artist.id] = await createArtist(userId, { - ...artist, - tagIds: artist.tagIds.map((id: number) => tagIdMaps[id]), - }, knex); - })) - await Promise.all(db.albums.map((album: AlbumWithRefsWithId) => async () => { - albumIdMaps[album.id] = await createAlbum(userId, { - ...album, - tagIds: album.tagIds.map((id: number) => tagIdMaps[id]), - artistIds: album.artistIds.map((id: number) => artistIdMaps[id]), - }, knex); - })) - await Promise.all(db.tracks.map((track: TrackWithRefsWithId) => async () => { - trackIdMaps[track.id] = await createTrack(userId, { - ...track, - tagIds: track.tagIds.map((id: number) => tagIdMaps[id]), - artistIds: track.artistIds.map((id: number) => artistIdMaps[id]), - albumId: track.albumId ? albumIdMaps[track.albumId] : null, - }, knex); - })) - }); + await Promise.all([ + trx('tracks').where({ 'user': userId }).del(), + trx('artists').where({ 'user': userId }).del(), + trx('albums').where({ 'user': userId }).del(), + trx('tags').where({ 'user': userId }).del(), + ]) + }) } \ No newline at end of file diff --git a/server/endpoints/ImportExport.ts b/server/endpoints/Data.ts similarity index 74% rename from server/endpoints/ImportExport.ts rename to server/endpoints/Data.ts index 5b29868..cd25669 100644 --- a/server/endpoints/ImportExport.ts +++ b/server/endpoints/Data.ts @@ -1,5 +1,5 @@ import Knex from "knex"; -import { exportDB, importDB } from "../db/ImportExport"; +import { exportDB, importDB, wipeDB } from "../db/Data"; import { EndpointError, EndpointHandler, handleErrorsInEndpoint } from "./types"; import * as api from '../../client/src/api/api'; import { DBExportEndpoint } from "../../client/src/api/api"; @@ -39,7 +39,18 @@ export const DBImport: EndpointHandler = async (req: any, res: any, knex: Knex) } } -export const importExportEndpoints: [ string, string, boolean, EndpointHandler ][] = [ +export const DBWipe: EndpointHandler = async (req: any, res: any, knex: Knex) => { + console.log("User ", req.user.id, ": Wipe DB"); + try { + await wipeDB(req.user.id, knex); + res.status(200).send(); + } catch (e) { + handleErrorsInEndpoint(e) + } +} + +export const DataEndpoints: [ string, string, boolean, EndpointHandler ][] = [ [ api.DBExportEndpoint, 'get', true, DBExport ], [ api.DBImportEndpoint, 'post', true, DBImport ], + [ api.DBWipeEndpoint, 'post', true, DBWipe ], ]; \ No newline at end of file diff --git a/server/migrations/20200828124218_init_db.ts b/server/migrations/20200828124218_init_db.ts index 6cc8d24..5080a7f 100644 --- a/server/migrations/20200828124218_init_db.ts +++ b/server/migrations/20200828124218_init_db.ts @@ -9,8 +9,19 @@ export async function up(knex: Knex): Promise { table.increments('id'); table.string('name'); table.string('storeLinks') - table.integer('user').unsigned().notNullable().defaultTo(1).references('users.id'); - table.integer('album').unsigned().defaultTo(null).references('albums.id'); + table.integer('user') + .unsigned() + .notNullable() + .defaultTo(1) + .references('users.id') + .onDelete('CASCADE') + .onUpdate('CASCADE') + table.integer('album') + .unsigned() + .defaultTo(null) + .references('albums.id') + .onDelete('SET NULL') + .onUpdate('CASCADE') } ) @@ -21,7 +32,13 @@ export async function up(knex: Knex): Promise { table.increments('id'); table.string('name'); table.string('storeLinks'); - table.integer('user').unsigned().notNullable().defaultTo(1).references('users.id'); + table.integer('user') + .unsigned() + .notNullable() + .defaultTo(1) + .references('users.id') + .onDelete('CASCADE') + .onUpdate('CASCADE') } ) @@ -32,7 +49,13 @@ export async function up(knex: Knex): Promise { table.increments('id'); table.string('name'); table.string('storeLinks'); - table.integer('user').unsigned().notNullable().defaultTo(1).references('users.id'); + table.integer('user') + .unsigned() + .notNullable() + .defaultTo(1) + .references('users.id') + .onDelete('CASCADE') + .onUpdate('CASCADE') } ) @@ -42,8 +65,17 @@ export async function up(knex: Knex): Promise { (table: any) => { table.increments('id'); table.string('name'); - table.integer('parentId'); - table.integer('user').unsigned().notNullable().defaultTo(1).references('users.id'); + table.integer('parentId') + .references('tags.id') + .onDelete('SET NULL') + .onUpdate('CASCADE') + table.integer('user') + .unsigned() + .notNullable() + .defaultTo(1) + .references('users.id') + .onDelete('CASCADE') + .onUpdate('CASCADE') } ) @@ -62,12 +94,20 @@ export async function up(knex: Knex): Promise { 'integrations', (table: any) => { table.increments('id'); - table.integer('user').unsigned().notNullable().defaultTo(1).references('users.id'); - table.string('name').notNullable(); // Uniquely identifies this integration configuration for the user. - table.string('type').notNullable(); // Enumerates different supported integration types (e.g. Spotify) + table.integer('user') + .unsigned() + .notNullable() + .defaultTo(1) + .references('users.id') + .onDelete('CASCADE') + .onUpdate('CASCADE') + table.string('name') + .notNullable(); // Uniquely identifies this integration configuration for the user. + table.string('type') + .notNullable(); // Enumerates different supported integration types (e.g. Spotify) table.string('details'); // Stores anything that might be needed for the integration to work. table.string('secretDetails'); // Stores anything that might be needed for the integration to work and which - // should never leave the server. + // should never leave the server. } ) @@ -76,8 +116,14 @@ export async function up(knex: Knex): Promise { 'tracks_artists', (table: any) => { table.increments('id'); - table.integer('trackId').references('tracks.id'); - table.integer('artistId').references('artists.id'); + table.integer('trackId') + .references('tracks.id') + .onDelete('CASCADE') + .onUpdate('CASCADE') + table.integer('artistId') + .references('artists.id') + .onDelete('CASCADE') + .onUpdate('CASCADE') table.unique(['trackId', 'artistId']) } ) @@ -87,8 +133,14 @@ export async function up(knex: Knex): Promise { 'tracks_tags', (table: any) => { table.increments('id'); - table.integer('trackId').references('tracks.id'); - table.integer('tagId').references('tags.id'); + table.integer('trackId') + .references('tracks.id') + .onDelete('CASCADE') + .onUpdate('CASCADE') + table.integer('tagId') + .references('tags.id') + .onDelete('CASCADE') + .onUpdate('CASCADE') table.unique(['trackId', 'tagId']) } ) @@ -98,8 +150,14 @@ export async function up(knex: Knex): Promise { 'artists_tags', (table: any) => { table.increments('id'); - table.integer('artistId').references('artists.id'); - table.integer('tagId').references('tags.id'); + table.integer('artistId') + .references('artists.id') + .onDelete('CASCADE') + .onUpdate('CASCADE') + table.integer('tagId') + .references('tags.id') + .onDelete('CASCADE') + .onUpdate('CASCADE') table.unique(['artistId', 'tagId']) } ) @@ -109,8 +167,14 @@ export async function up(knex: Knex): Promise { 'albums_tags', (table: any) => { table.increments('id'); - table.integer('tagId').references('tags.id'); - table.integer('albumId').references('albums.id'); + table.integer('tagId') + .references('tags.id') + .onDelete('CASCADE') + .onUpdate('CASCADE') + table.integer('albumId') + .references('albums.id') + .onDelete('CASCADE') + .onUpdate('CASCADE') table.unique(['albumId', 'tagId']) } ) @@ -120,8 +184,14 @@ export async function up(knex: Knex): Promise { 'artists_albums', (table: any) => { table.increments('id'); - table.integer('artistId').references('artists.id'); - table.integer('albumId').references('albums.id'); + table.integer('artistId') + .references('artists.id') + .onDelete('CASCADE') + .onUpdate('CASCADE') + table.integer('albumId') + .references('albums.id') + .onDelete('CASCADE') + .onUpdate('CASCADE') table.unique(['artistId', 'albumId']) } ) diff --git a/server/server.ts b/server/server.ts index dbc4667..53cdab9 100644 --- a/server/server.ts +++ b/server/server.ts @@ -6,7 +6,9 @@ import { SetupApp } from './app'; const app = express(); const knex = get_knex(); -knex.migrate.latest().then(() => { +(async () => { + await knex.raw('PRAGMA foreign_keys = ON'); + await knex.migrate.latest(); const port = process.env.PORT || 5000; const apiBase = process.env.API || ""; const frontEndPrefix = process.env.FRONTEND_PREFIX || undefined; @@ -20,6 +22,6 @@ knex.migrate.latest().then(() => { } app.listen(port, () => console.log(`Listening on port ${port}`)); -}) +})() export { } \ No newline at end of file