diff --git a/private_dot_local/bin/executable_music_convert b/private_dot_local/bin/executable_music_convert new file mode 100644 index 0000000..ce99288 --- /dev/null +++ b/private_dot_local/bin/executable_music_convert @@ -0,0 +1,19 @@ +#!/usr/bin/env bash + +target="$1" +shift + +set -e + +while [[ ! -z "$1" ]] +do + path="$1" + shift + + out="$(dirname "$path")/$(basename "$path" | sed -e 's/\.[^\.]*$//').$target" + if [[ -z "$(echo "$out" | grep "\.$target\$")" ]] + then + out="$path.$target" + fi + ffmpeg -i "$path" "$out" +done diff --git a/private_dot_local/bin/executable_music_gen_playlists b/private_dot_local/bin/executable_music_gen_playlists index d72d097..1b76a7f 100644 --- a/private_dot_local/bin/executable_music_gen_playlists +++ b/private_dot_local/bin/executable_music_gen_playlists @@ -1,160 +1,201 @@ #!/usr/bin/env bash -echo "[playlist]" >Playlists/all.pls -echo "[playlist]" >Playlists/le.pls -echo "[playlist]" >Playlists/lme.pls -echo "[playlist]" >Playlists/me.pls -echo "[playlist]" >Playlists/mhe.pls -echo "[playlist]" >Playlists/he.pls -echo "[playlist]" >Playlists/lofi.pls -echo "[playlist]" >Playlists/le_lofi.pls -echo "[playlist]" >Playlists/unkown.pls -echo "[playlist]" >Playlists/dnp.pls +set -e + +. "$HOME/.local/share/music/common.sh" + +function generate_pls() { + local name="$1" + local songs="$2" + + echo "$songs" >"$MUSIC_DIR/Playlists/$name.json" + + local pls="$MUSIC_DIR/Playlists/$name.pls" + + echo "[playlist]" >"$pls" + local song_count="$(echo "$songs" | jq -c '. | length' || error_here)" + echo -e "Version=2\nNumberOfEntries=$song_count\n" >>"$pls" + + local count=1 + for bliep in $(echo "$songs" | jq -c 'map(.) | .[]' | sed -e 's/ /%20;/g') + do + bliep="$(echo "$bliep" | sed -e 's/%20;/ /g')" + + echo "file$count=../$(echo "$bliep" | jq -rc '.path.mpd' || error_here)" >>"$pls" + count=$(( $count + 1 )) + done +} + +function generate_mucke_pls() { + local name="$1" + local id="$2" + local songs="$3" + + paths="[]" + local count=1 + for song in $(echo "$songs" | jq -c '.[]' | sed -e 's/ /%20;/g') + do + song="$(echo "$song" | sed -e 's/%20;/ /g')" + + path="/storage/emulated/0/Music/$(echo $song | jq -rc '.path.mpd' || error_here)" + paths="$(echo "$paths [\"$path\"]" | jq -c -s add || error_here)" + done + + echo "{\ + \"id\": $id,\ + \"name\": \"$name\",\ + \"iconString\": \"alarm_rounded\",\ + \"gradientString\": \"purplelake\",\ + \"timeCreated\": $(date +%s000),\ + \"timeChanged\": $(date +%s000),\ + \"timeLastPlayed\": $(date +%s000),\ + \"shuffleMode\": null,\ + \"SONGS\": $paths\ + }" +} . ~/.local/python-venv/bin/activate -files="$(find . -type f -name '*.mp3' -o -name '*.flac' | sed -e 's/ /%20/g')" +files="$(find $MUSIC_DIR -type f -iname '*.mp3' -o -iname '*.flac' | sed -e 's/ /%20;/g')" -list_artist="" -list_artist_i=1 -list_album="" -list_album_i=1 +list_artist="{}" +list_album="{}" list_songs="" -for file in $(echo $files) +pls_all="[]" +pls_he="[]" +pls_mhe="[]" +pls_me="[]" +pls_lme="[]" +pls_le="[]" +pls_lofi="[]" +pls_le_lofi="[]" +pls_lofi="[]" +pls_dnp="[]" +pls_unkown="[]" + +for file in $files do - path="$(echo $file | sed -e 's/%20/ /g')" - metadata="flac" - genre="$(ffmpeg -i "${path}" 2>&1 | grep GENRE | sed -e 's/^.*: //')" - artist="$(ffmpeg -i "${path}" 2>&1 | grep ARTIST | sed -e 's/^.*: //')" - album="$(ffmpeg -i "${path}" 2>&1 | grep ALBUM | sed -e 's/^.*: //')" - title="$(ffmpeg -i "${path}" 2>&1 | grep TITLE | sed -e 's/^.*: //')" - blockLevel="0" - likeLevel="3" - if [[ "$(echo "${path}" | sed -e 's/^.*\.\([^\.]*\)$/\1/')" == "mp3" ]] + path="$(echo $file | sed -e 's/%20;/ /g')" + song="$(music_get_song_info_from_file "$path")" + song="$(music_process_genre "$song")" + + # echo "$song" + + case "$(echo "$song" | jq -rc '.playlist' || error_here)" in + 'he') + pls_all="$(echo "$pls_all [$song]" | jq -c -s add || error_here)" + pls_he="$(echo "$pls_he [$song]" | jq -c -s add || error_here)" + pls_mhe="$(echo "$pls_mhe [$song]" | jq -c -s add || error_here)" + ;; + 'me') + pls_all="$(echo "$pls_all [$song]" | jq -c -s add || error_here)" + pls_mhe="$(echo "$pls_mhe [$song]" | jq -c -s add || error_here)" + pls_me="$(echo "$pls_me [$song]" | jq -c -s add || error_here)" + pls_lme="$(echo "$pls_lme [$song]" | jq -c -s add || error_here)" + ;; + 'le') + pls_all="$(echo "$pls_all [$song]" | jq -c -s add || error_here)" + pls_me="$(echo "$pls_me [$song]" | jq -c -s add || error_here)" + pls_lme="$(echo "$pls_lme [$song]" | jq -c -s add || error_here)" + pls_le="$(echo "$pls_le [$song]" | jq -c -s add || error_here)" + pls_le_lofi="$(echo "$pls_le_lofi [$song]" | jq -c -s add || error_here)" + ;; + 'lofi') + pls_lofi="$(echo "$pls_lofi [$song]" | jq -c -s add || error_here)" + pls_le_lofi="$(echo "$pls_le_lofi [$song]" | jq -c -s add || error_here)" + ;; + 'dnp') + pls_dnp="$(echo "$pls_dnp [$song]" | jq -c -s add || error_here)" + ;; + *) + pls_all="$(echo "$pls_all [$song]" | jq -c -s add || error_here)" + pls_unkown="$(echo "$pls_unkown [$song]" | jq -c -s add || error_here)" + ;; + esac + + echo -n "$(echo "$list_songs" | jq -c '. | length') " + + artist_name=$(echo "$song" | jq -c '.artist' || error_here) + if [[ "$(echo "$list_artist" | jq ". | has($artist_name)" || error_here)" == "false" ]] then - metadata="mp3" - genre="$(id3v2 -l "${path}" | grep '^TCON' | sed -e 's/^.*: //')" - artist="$(id3v2 -l "${path}" | grep '^TPE2' | sed -e 's/^.*: //')" - album="$(id3v2 -l "${path}" | grep '^TALB' | sed -e 's/^.*: //')" - title="$(id3v2 -l "${path}" | grep '^TIT2' | sed -e 's/^.*: //')" - fi - if [[ "$genre" == "" ]] - then - genre="Unkown" - fi - echo "$genre: ${path}" - if [[ "${genre,,}" == "lofi" ]] - then - echo "file$(cat Playlists/lofi.pls | wc -l)=.${path}" >>Playlists/lofi.pls - echo "file$(cat Playlists/le_lofi.pls | wc -l)=.${path}" >>Playlists/le_lofi.pls - elif [[ "$(echo ${genre} | grep --no-ignore-case LE)" != "" ]] - then - echo "file$(cat Playlists/all.pls | wc -l)=.${path}" >>Playlists/all.pls - echo "file$(cat Playlists/le.pls | wc -l)=.${path}" >>Playlists/le.pls - echo "file$(cat Playlists/lme.pls | wc -l)=.${path}" >>Playlists/lme.pls - echo "file$(cat Playlists/le_lofi.pls | wc -l)=.${path}" >>Playlists/le_lofi.pls - elif [[ "$(echo ${genre} | grep --no-ignore-case ME)" != "" ]] - then - echo "file$(cat Playlists/all.pls | wc -l)=.${path}" >>Playlists/all.pls - echo "file$(cat Playlists/me.pls | wc -l)=.${path}" >>Playlists/me.pls - echo "file$(cat Playlists/lme.pls | wc -l)=.${path}" >>Playlists/lme.pls - echo "file$(cat Playlists/mhe.pls | wc -l)=.${path}" >>Playlists/mhe.pls - elif [[ "$(echo ${genre} | grep --no-ignore-case HE)" != "" ]] - then - echo "file$(cat Playlists/all.pls | wc -l)=.${path}" >>Playlists/all.pls - echo "file$(cat Playlists/he.pls | wc -l)=.${path}" >>Playlists/he.pls - echo "file$(cat Playlists/mhe.pls | wc -l)=.${path}" >>Playlists/mhe.pls - elif [[ "$(echo ${genre} | grep --no-ignore-case DNP)" == "" ]] - then - echo "file$(cat Playlists/all.pls | wc -l)=.${path}" >>Playlists/all.pls - echo "file$(cat Playlists/unkown.pls | wc -l)=.${path}" >>Playlists/unkown.pls - else - echo "file$(cat Playlists/dnp.pls | wc -l)=.${path}" >>Playlists/dnp.pls - blockLevel="1" + artist_count=$(echo "$list_artist" | jq -c '. | length' || error_here) + list_artist="$(echo "$list_artist {$artist_name:{\"artist\":$artist_name,\"index\":$artist_count}}" | jq -c -s add || error_here)" fi - if [[ "$(echo ${genre} | grep --no-ignore-case 'L[0-3]')" != "" ]] + album_name=$(echo "$song" | jq -c '.album' || error_here) + if [[ "$(echo "$list_album" | jq ". | has($album_name)" || error_here)" == "false" ]] then - likeLevel="$(echo ${genre} | grep --no-ignore-case -o 'L[0-3]' | grep -o '[0-3]')" - fi - if [[ "$(echo ${genre} | grep --no-ignore-case 'B[0-3]')" != "" ]] - then - blockLevel="$(echo ${genre} | grep --no-ignore-case -o 'B[0-3]' | grep -o '[0-3]')" + album_count=$(echo "$list_album" | jq -c '. | length' || error_here) + list_album="$(echo "$list_album {$album_name:{\"album\":$album_name,\"artist\":$artist_name,\"index\":$album_count}}" | jq -c -s add || error_here)" fi - if [[ "$(echo $list_artist | grep ":$artist")" = "" ]] - then - list_artist="${list_artist};${list_artist_i}:$artist" - list_artist_i=$(( $list_artist_i + 1 )) - fi - - if [[ "$(echo $list_album | grep ":${album}:")" = "" ]] - then - list_album="${list_album};${list_album_i}:$album:$artist" - list_album_i=$(( $list_album_i + 1 )) - fi - - list_songs="$list_songs\ - \"/storage/emulated/0/Music/$(echo $path | sed -e 's/^..//')\": {\ - \"title\": \"$title\",\ - \"album\": \"$album\",\ - \"artist\": \"$artist\",\ - \"albumId\": $(echo $list_album | tr ';' '\n' | grep ":${album}:" | sed -e 's/^\([0-9]*\).*$/\1/'),\ - \"blockLevel\": $blockLevel,\ + list_songs="$list_songs {\ + \"/storage/emulated/0/Music/$(echo "$song" | jq -rc '.path.mpd' || error_here)\": {\ + \"title\": $(echo "$song" | jq -c '.title' || error_here),\ + \"album\": $(echo "$song" | jq -c '.album' || error_here),\ + \"artist\": $(echo "$song" | jq -c '.artist' || error_here),\ + \"albumId\": $(echo "$list_album" | jq -c ".$(echo "$song" | jq -c '.album' || error_here).index" || error_there),\ + \"blockLevel\": $(echo "$song" | jq -c '.blockLevel' || error_here),\ \"next\": false,\ \"previous\": false,\ - \"likeCount\": $likeLevel,\ + \"likeCount\": $(echo "$song" | jq -c '.likeLevel' || error_here),\ \"playCount\": 0,\ \"timeAdded\": $(date +%s)000\ - }," + }\ + }" + list_songs="$(echo "$list_songs" | jq -c -s add || error_here)" done -echo -e "NumberOfEntries=$(($(cat Playlists/all.pls | wc -l) - 1))\nVersion=2" >>Playlists/all.pls -echo -e "NumberOfEntries=$(($(cat Playlists/le.pls | wc -l) - 1))\nVersion=2" >>Playlists/le.pls -echo -e "NumberOfEntries=$(($(cat Playlists/lme.pls | wc -l) - 1))\nVersion=2" >>Playlists/lme.pls -echo -e "NumberOfEntries=$(($(cat Playlists/me.pls | wc -l) - 1))\nVersion=2" >>Playlists/me.pls -echo -e "NumberOfEntries=$(($(cat Playlists/mhe.pls | wc -l) - 1))\nVersion=2" >>Playlists/mhe.pls -echo -e "NumberOfEntries=$(($(cat Playlists/he.pls | wc -l) - 1))\nVersion=2" >>Playlists/he.pls -echo -e "NumberOfEntries=$(($(cat Playlists/le_lofi.pls | wc -l) - 1))\nVersion=2" >>Playlists/le_lofi.pls -echo -e "NumberOfEntries=$(($(cat Playlists/lofi.pls | wc -l) - 1))\nVersion=2" >>Playlists/lofi.pls -echo -e "NumberOfEntries=$(($(cat Playlists/unkown.pls | wc -l) - 1))\nVersion=2" >>Playlists/unkown.pls -echo -e "NumberOfEntries=$(($(cat Playlists/dnp.pls | wc -l) - 1))\nVersion=2" >>Playlists/dnp.pls +echo +generate_pls "all" "$pls_all" +generate_pls "he" "$pls_he" +generate_pls "mhe" "$pls_mhe" +generate_pls "me" "$pls_me" +generate_pls "lme" "$pls_lme" +generate_pls "le" "$pls_le" +generate_pls "lofi" "$pls_lofi" +generate_pls "le_lofi" "$pls_le_lofi" +generate_pls "lofi" "$pls_lofi" +generate_pls "unkown" "$pls_unkown" +generate_pls "dnp" "$pls_dnp" - pls_all="{\"id\": 1, \"name\":\"all\", \"songs\":[$(grep '^file[0-9]' 'Playlists/all.pls' | sed -e 's/^.*=..\(.*\)$/"\/storage\/emulated\/0\/Music\1",/' | tr -d '\n\r' | sed -e 's/,$//')]}" - pls_le="{\"id\": 2, \"name\":\"le\", \"songs\":[$(grep '^file[0-9]' 'Playlists/le.pls' | sed -e 's/^.*=..\(.*\)$/"\/storage\/emulated\/0\/Music\1",/' | tr -d '\n\r' | sed -e 's/,$//')]}" - pls_lme="{\"id\": 3, \"name\":\"lme\", \"songs\":[$(grep '^file[0-9]' 'Playlists/lme.pls' | sed -e 's/^.*=..\(.*\)$/"\/storage\/emulated\/0\/Music\1",/' | tr -d '\n\r' | sed -e 's/,$//')]}" - pls_me="{\"id\": 4, \"name\":\"me\", \"songs\":[$(grep '^file[0-9]' 'Playlists/me.pls' | sed -e 's/^.*=..\(.*\)$/"\/storage\/emulated\/0\/Music\1",/' | tr -d '\n\r' | sed -e 's/,$//')]}" - pls_mhe="{\"id\": 5, \"name\":\"mhe\", \"songs\":[$(grep '^file[0-9]' 'Playlists/mhe.pls' | sed -e 's/^.*=..\(.*\)$/"\/storage\/emulated\/0\/Music\1",/' | tr -d '\n\r' | sed -e 's/,$//')]}" - pls_he="{\"id\": 6, \"name\":\"he\", \"songs\":[$(grep '^file[0-9]' 'Playlists/he.pls' | sed -e 's/^.*=..\(.*\)$/"\/storage\/emulated\/0\/Music\1",/' | tr -d '\n\r' | sed -e 's/,$//')]}" -pls_le_lofi="{\"id\": 7, \"name\":\"le_lofi\",\"songs\":[$(grep '^file[0-9]' 'Playlists/le_lofi.pls' | sed -e 's/^.*=..\(.*\)$/"\/storage\/emulated\/0\/Music\1",/' | tr -d '\n\r' | sed -e 's/,$//')]}" - pls_lofi="{\"id\": 8, \"name\":\"lofi\", \"songs\":[$(grep '^file[0-9]' 'Playlists/lofi.pls' | sed -e 's/^.*=..\(.*\)$/"\/storage\/emulated\/0\/Music\1",/' | tr -d '\n\r' | sed -e 's/,$//')]}" - pls_unkown="{\"id\": 9, \"name\":\"unkown\", \"songs\":[$(grep '^file[0-9]' 'Playlists/unkown.pls' | sed -e 's/^.*=..\(.*\)$/"\/storage\/emulated\/0\/Music\1",/' | tr -d '\n\r' | sed -e 's/,$//')]}" - pls_dnp="{\"id\": 10,\"name\":\"dnp\", \"songs\":[$(grep '^file[0-9]' 'Playlists/dnp.pls' | sed -e 's/^.*=..\(.*\)$/"\/storage\/emulated\/0\/Music\1",/' | tr -d '\n\r' | sed -e 's/,$//')]}" +pls_all="$(generate_mucke_pls "all" 1 "$pls_all")" +pls_he="$(generate_mucke_pls "he" 6 "$pls_he")" +pls_mhe="$(generate_mucke_pls "mhe" 5 "$pls_mhe")" +pls_me="$(generate_mucke_pls "me" 4 "$pls_me")" +pls_lme="$(generate_mucke_pls "lme" 3 "$pls_lme")" +pls_le="$(generate_mucke_pls "le" 2 "$pls_le")" +pls_le_lofi="$(generate_mucke_pls "le_lofi" 7 "$pls_le_lofi")" +pls_lofi="$(generate_mucke_pls "lofi" 8 "$pls_lofi")" +pls_unkown="$(generate_mucke_pls "unkown" 9 "$pls_unkown")" +pls_dnp="$(generate_mucke_pls "dnp" 10 "$pls_dnp")" all_pls="[$pls_all,$pls_le,$pls_lme,$pls_me,$pls_mhe,$pls_he,$pls_le_lofi,$pls_lofi,$pls_unkown,$pls_dnp]" echo "{\"epoch\":$(date +%s000),\"playlists\":$all_pls}" \ - >Playlists/mucke.json.jinja2.data + >"$HOME/.local/share/music/mucke.json.jinja2.data" # echo $list_album -albums="$(echo $list_album | tr ';' '\n' | sed -e 's/^\(.*\):\(.*\):\(.*\)$/\\"\1\\":{\\"title\\":\\"\2\\",\\"artist\\":\\"\3\\"},/' | tr -d '\n' | sed -e 's/,$//')" -artists="$(echo $list_artist | tr ';' '\n' | sed -e 's/^\(.*\):\(.*\)$/\\"\1\\":{\\"name\\":\\"\2\\"},/' | tr -d '\n' | sed -e 's/,$//')" +list_album="$(echo "$list_album" | jq -c '. | with_entries(.key = (.value.index | tostring)) | map_values(del(.index))' || error_here)" +list_artist="$(echo "$list_artist" | jq -c '. | with_entries(.key = (.value.index | tostring)) | map_values(del(.index))' || error_here)" -echo "{\"epoch\":$(date +%s000),\"songs\":\"$(echo $list_songs | sed -e 's/,$//' -e 's/"/\\"/g')\",\"albums\":\"$albums\",\"artists\":\"$artists\",\"playlists\":$all_pls}" \ - >Playlists/mucke2.json.jinja2.data - -jinja \ - --data Playlists/mucke.json.jinja2.data \ - --format json \ - --output Playlists/mucke.json \ - Playlists/mucke.json.jinja2 - -jinja \ - --data Playlists/mucke2.json.jinja2.data \ - --format json \ - --output Playlists/mucke2.json \ - Playlists/mucke2.json.jinja2 +echo "{\ + \"APP_VERSION\": \"1.5.1\",\ + \"BUILD_NUMBER\": \"123\",\ + \"DB_VERSION\": 18,\ + \"SETTING_ALLOWED_EXTENSIONS\": \"mp3,flac,wav,ogg,opus\",\ + \"BLOCKED_FILES\": [],\ + \"LIBRARY_FOLDERS\": [\ + \"/storage/emulated/0/Music\"\ + ],\ + \"SONGS\": $list_songs,\ + \"ALBUMS\": $list_album,\ + \"ARTISTS\": $list_artist,\ + \"SMARTLISTS\": [],\ + \"PLAYLISTS\": $all_pls\ +}" >"$MUSIC_DIR/Playlists/mucke.json" +# cat "$MUSIC_DIR/Playlists/mucke.json" | jq >"$MUSIC_DIR/Playlists/mucke.json" || error_here diff --git a/private_dot_local/bin/executable_music_import_mucke b/private_dot_local/bin/executable_music_import_mucke index dbce3ed..44e6fc6 100644 --- a/private_dot_local/bin/executable_music_import_mucke +++ b/private_dot_local/bin/executable_music_import_mucke @@ -14,13 +14,12 @@ function get_songs_from_playlists() { do playlist="$(echo "$playlist" | sed -e 's/%20;/ /g')" - for song_path in $(echo "$playlist" | jq -c '.SONGS[]' | sed -e 's/ /%20;/g') + for song_path in $(echo "$playlist" | jq -rc '.SONGS[]' | sed -e 's/ /%20;/g') do - local song_path="$(echo "$song_path" | sed -e 's/%20;/ /g' -e 's/^"//' -e 's/"$//' )" + local song_path="$(echo "$song_path" | sed -e 's/%20;/ /g' )" if [[ -f "$song_path" ]] then - song_paths="$song_paths -$song_path" + song_paths="$(echo -e "$song_paths\n$song_path")" fi done done diff --git a/private_dot_local/share/music/common.sh b/private_dot_local/share/music/common.sh index 85e583f..6dc242d 100644 --- a/private_dot_local/share/music/common.sh +++ b/private_dot_local/share/music/common.sh @@ -1,5 +1,5 @@ -MUSIC_DIR="$HOME/Music" +export MUSIC_DIR="$HOME/Music" function music_get_song_info_from_file() { local path="$1" diff --git a/private_dot_local/share/music/mucke.json.jinja2 b/private_dot_local/share/music/mucke.json.jinja2 deleted file mode 100644 index c184786..0000000 --- a/private_dot_local/share/music/mucke.json.jinja2 +++ /dev/null @@ -1,9034 +0,0 @@ -{ - "APP_VERSION": "1.5.1", - "BUILD_NUMBER": "123", - "DB_VERSION": 18, - "SETTING_ALLOWED_EXTENSIONS": "mp3,flac,wav,ogg,opus", - "BLOCKED_FILES": [], - "LIBRARY_FOLDERS": [ - "/storage/emulated/0/Music" - ], - "SONGS": { - "/storage/emulated/0/Music/Janne Schra/Ponzo/100 Pictures.mp3": { - "title": "100 Pictures", - "album": "Ponzo", - "artist": "Janne Schra", - "albumId": 20, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 25, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Circa Waves/Young Chasers (Deluxe)/100 Strangers.mp3": { - "title": "100 Strangers", - "album": "Young Chasers (Deluxe)", - "artist": "Circa Waves", - "albumId": 13, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 11, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The 1975/The 1975/12.mp3": { - "title": "12", - "album": "The 1975", - "artist": "The 1975", - "albumId": 55, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Good Habits/Quater Live/11 - 2 Minutes More.flac": { - "title": "2 Minutes More", - "album": "Quater Live", - "artist": "Good Habits", - "albumId": 22, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 18, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Good Habits/Quater Live/07 - 360 degree (ft. Angeline Morrison).flac": { - "title": "360 degree (ft. Angeline Morrison)", - "album": "Quater Live", - "artist": "Good Habits", - "albumId": 22, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 16, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Dotan/7 Layers/7 Layers.mp3": { - "title": "7 Layers", - "album": "7 Layers", - "artist": "Dotan", - "albumId": 16, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Handsome Poets/2015/A Hero.mp3": { - "title": "A Hero", - "album": "2015", - "artist": "Handsome Poets", - "albumId": 14, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pitou/I Fall Asleep So Fast/A Moment Alone.mp3": { - "title": "A Moment Alone", - "album": "I Fall Asleep So Fast", - "artist": "Pitou", - "albumId": 38, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 13, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 20 A New Beginning.flac": { - "title": "A New Beginning", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Milkbar/Monday Club/A Sailor.mp3": { - "title": "A Sailor", - "album": "Monday Club", - "artist": "Milkbar", - "albumId": 32, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/speelklok/17 Aalster Gaviola Dance Organ - -Sous Le Ciel de Paris-.flac": { - "title": "Aalster Gaviola Dance Organ - -Sous Le Ciel de Paris-", - "album": "Speelklok", - "artist": "Wintergatan", - "albumId": 68, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pyrolysis/A Different Dream/12 - About Time.flac": { - "title": "About Time", - "album": "A Different Dream", - "artist": "Pyrolysis", - "albumId": 42, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 16, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/10 - Acceleration.mp3": { - "title": "Acceleration", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Milkbar/Monday Club/Accident.mp3": { - "title": "Accident", - "album": "Monday Club", - "artist": "Milkbar", - "albumId": 32, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/08 - Adjacency.mp3": { - "title": "Adjacency", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/29 - Adjacency [menu].mp3": { - "title": "Adjacency [menu]", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Incredible/Adrift.mp3": { - "title": "Adrift", - "album": "Incredible", - "artist": "Ilse DeLange", - "albumId": 25, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 27 After the Rain.flac": { - "title": "After the Rain", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Russkaja/Energia/Russkaja - Energia! - 10 Ajajaj.flac": { - "title": "Ajajaj", - "album": "Energia!", - "artist": "Russkaja", - "albumId": 46, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 10, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Tim McMorris/Alive/Alive in the Summer Time (feat. Khaili McMorris).mp3": { - "title": "Alive in the Summer Time (feat. Khaili McMorris)", - "album": "Alive", - "artist": "Tim McMorris", - "albumId": 61, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Chef'Special/Amigo/All My Life.mp3": { - "title": "All My Life", - "album": "Amigo", - "artist": "Chef'Special", - "albumId": 10, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Crystal Fighters/Everything Is My Family/All Night.mp3": { - "title": "All Night", - "album": "Everything Is My Family", - "artist": "Crystal Fighters", - "albumId": 8, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/MIKA/No Place In Heaven (Special Edition)/All She Wants.mp3": { - "title": "All She Wants", - "album": "No Place In Heaven (Special Edition)", - "artist": "MIKA", - "albumId": 31, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Good Habits/Quater Live/09 - All That She Wanted.flac": { - "title": "All That She Wanted", - "album": "Quater Live", - "artist": "Good Habits", - "albumId": 22, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 18, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/DI-RECT/Rolling With The Punches/All The Way.mp3": { - "title": "All The Way", - "album": "Rolling With The Punches", - "artist": "DI-RECT", - "albumId": 11, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Wintergatan/08 All Was Well.flac": { - "title": "All Was Well", - "album": "Wintergatan", - "artist": "Wintergatan", - "albumId": 66, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 18, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Build Songs/All Was Well - Music Box & Modulin Version.flac": { - "title": "All Was Well - Music Box & Modulin Version", - "album": "Build Tracks", - "artist": "Wintergatan", - "albumId": 67, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 23, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/speelklok/16 Allin Walker Musical Clock - -Allemande-.flac": { - "title": "Allin Walker Musical Clock - -Allemande-", - "album": "Speelklok", - "artist": "Wintergatan", - "albumId": 68, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/DNCE/DNCE/Almost.mp3": { - "title": "Almost", - "album": "DNCE", - "artist": "DNCE", - "albumId": 9, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Handsome Poets/Sky on Fire/Alright.mp3": { - "title": "Alright", - "album": "Sky on Fire", - "artist": "Handsome Poets", - "albumId": 15, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 24 Ambulo x mell-ø - Youth.flac": { - "title": "Ambulo x mell-ø - Youth", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Chef'Special/Amigo/Amigo.mp3": { - "title": "Amigo", - "album": "Amigo", - "artist": "Chef'Special", - "albumId": 10, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The 1975/The 1975/An Encounter.mp3": { - "title": "An Encounter", - "album": "The 1975", - "artist": "The 1975", - "albumId": 55, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/An Innocent Warrior.mp3": { - "title": "An Innocent Warrior", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/speelklok/13 Andersson Pianoharp - Swedish Table.flac": { - "title": "Andersson Pianoharp - Swedish Table", - "album": "Speelklok", - "artist": "Wintergatan", - "albumId": 68, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Milkbar/Monday Club/Animal.mp3": { - "title": "Animal", - "album": "Monday Club", - "artist": "Milkbar", - "albumId": 32, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/03 - Aperture Central.mp3": { - "title": "Aperture Central", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Arctic Monkeys/AM/Arabella.mp3": { - "title": "Arabella", - "album": "AM", - "artist": "Arctic Monkeys", - "albumId": 5, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Wanderer 4 Love/Life Will Find A Way/Aren't you meant to fly.flac": { - "title": "Aren't you meant to fly (live)", - "album": "Life Will Find A Way", - "artist": "The Wanderer", - "albumId": 62, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 1, - "timeAdded": 1738134000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Ilse DeLange/Around Again.mp3": { - "title": "Around Again", - "album": "Ilse DeLange", - "artist": "Ilse DeLange", - "albumId": 24, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/02 - Arrival.mp3": { - "title": "Arrival", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pat Razket/Hymns From The Abys/07 - Articles_of_Agreement.flac": { - "title": "Articles of Agreement", - "album": "Hymns from the Abyss", - "artist": "Pat Razket", - "albumId": 33, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 28, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Russkaja/Energia/Russkaja - Energia! - 04 Autodrom.flac": { - "title": "Autodrom", - "album": "Energia!", - "artist": "Russkaja", - "albumId": 46, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Good Habits/Quater Live/03 - Baba O' Riley (fr. Lunatraktors).flac": { - "title": "Baba O' Riley (fr. Lunatraktors)", - "album": "Quater Live", - "artist": "Good Habits", - "albumId": 22, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 15, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 27 Banks x Bcalm x Loafy Building - Figures.flac": { - "title": "Banks x Bcalm x Loafy Building - Figures", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Russkaja/Energia/Russkaja - Energia! - 02 Barada.flac": { - "title": "Barada", - "album": "Energia!", - "artist": "Russkaja", - "albumId": 46, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Battle of Wills.mp3": { - "title": "Battle of Wills", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pitou/I Fall Asleep So Fast/Be Delicate.mp3": { - "title": "Be Delicate", - "album": "I Fall Asleep So Fast", - "artist": "Pitou", - "albumId": 38, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 14, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/DNCE/DNCE/Be Mean.mp3": { - "title": "Be Mean", - "album": "DNCE", - "artist": "DNCE", - "albumId": 9, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Tim McMorris/I'd Choose You Again/Be My Valentine.mp3": { - "title": "Be My Valentine", - "album": "I'd Choose You Again", - "artist": "Tim McMorris", - "albumId": 60, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/MIKA/No Place In Heaven (Special Edition)/Beautiful Disaster.mp3": { - "title": "Beautiful Disaster", - "album": "No Place In Heaven (Special Edition)", - "artist": "MIKA", - "albumId": 31, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Chef'Special/Amigo/Because I Love You.mp3": { - "title": "Because I Love You", - "album": "Amigo", - "artist": "Chef'Special", - "albumId": 10, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Madcon/So Dark The Con Of Man/Beggin.mp3": { - "title": "Beggin", - "album": "So Dark The Con Of Man", - "artist": "Madcon", - "albumId": 29, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 9, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pat Razket/Hymns From The Abys/08 - Behind_Broken_Bars.flac": { - "title": "Behind Broken Bars", - "album": "Hymns from the Abyss", - "artist": "Pat Razket", - "albumId": 33, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 14, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Score/ATLAS/Believe.mp3": { - "title": "Believe", - "album": "ATLAS", - "artist": "The Score", - "albumId": 57, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Circa Waves/Young Chasers (Deluxe)/Best Years.mp3": { - "title": "Best Years", - "album": "Young Chasers (Deluxe)", - "artist": "Circa Waves", - "albumId": 13, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Edward Sharpe and the Magnetic Zeros/Edward Sharpe & The Magnetic Zeros/Better Days.mp3": { - "title": "Better Days", - "album": "Edward Sharpe & The Magnetic Zeros", - "artist": "Edward Sharpe and the Magnetic Zeros", - "albumId": 21, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pyrolysis/Alotsle/05 Bettle Cry.flac": { - "title": "Bettle Cry", - "album": "Alotsle", - "artist": "Pyrolysis", - "albumId": 43, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 20, - "timeAdded": 1726000 - }, - "/storage/emulated/0/Music/Tim McMorris/Alive/Big Dreams to Take over the World.mp3": { - "title": "Big Dreams to Take over the World", - "album": "Alive", - "artist": "Tim McMorris", - "albumId": 61, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Wintergatan/05 Biking Is Better.flac": { - "title": "Biking Is Better", - "album": "Wintergatan", - "artist": "Wintergatan", - "albumId": 66, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 21, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Trolska Polska/Moss/06 - Bjergtolden.flac": { - "title": "Bjergtolden", - "album": "Moss", - "artist": "Trolska Polska", - "albumId": 63, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 14, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pyrolysis/Alotsle/01 Black Grouse Noise.flac": { - "title": "Black Grouse Noise", - "album": "Alotsle", - "artist": "Pyrolysis", - "albumId": 43, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 23, - "timeAdded": 1726000 - }, - "/storage/emulated/0/Music/Casey Abrams/Casey Abrams/Blame It On Me.mp3": { - "title": "Blame It On Me", - "album": "Casey Abrams", - "artist": "Casey Abrams", - "albumId": 7, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 9, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pyrolysis/A Different Dream/13 - Blood On My Hands.flac": { - "title": "Blood On My Hands", - "album": "A Different Dream", - "artist": "Pyrolysis", - "albumId": 42, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 23, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 14 Bloodletting.flac": { - "title": "Bloodletting", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/DNCE/DNCE/Blown (feat. Kent Jones).mp3": { - "title": "Blown (feat. Kent Jones)", - "album": "DNCE", - "artist": "DNCE", - "albumId": 9, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 03 Blue Fox - Fairy Forest.flac": { - "title": "Blue Fox - Fairy Forest", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 35 Blue Wednesday - Morning Dew.flac": { - "title": "Blue Wednesday - Morning Dew", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/DNCE/DNCE/Body Moves.mp3": { - "title": "Body Moves", - "album": "DNCE", - "artist": "DNCE", - "albumId": 9, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Xavier Rudd/Spirit Bird/Bow Down.mp3": { - "title": "Bow Down", - "album": "Spirit Bird", - "artist": "Xavier Rudd", - "albumId": 72, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Casey Abrams/Casey Abrams/Boy Can Dream.mp3": { - "title": "Boy Can Dream", - "album": "Casey Abrams", - "artist": "Casey Abrams", - "albumId": 7, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Incredible/Broken girl.mp3": { - "title": "Broken girl", - "album": "Incredible", - "artist": "Ilse DeLange", - "albumId": 25, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/speelklok/06 Bruder Barrel Automata Organ.flac": { - "title": "Bruder Barrel Automata Organ", - "album": "Speelklok", - "artist": "Wintergatan", - "albumId": 68, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Build Songs/BrДnnФ.flac": { - "title": "BrДnnФ", - "album": "Build Tracks", - "artist": "Wintergatan", - "albumId": 67, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 19, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Among the Saints/When We Were Young!/07 Bugger Off.flac": { - "title": "Bugger Off!", - "album": "When We Were Young!", - "artist": "Among the Saints", - "albumId": 4, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 12, - "timeAdded": 1726000 - }, - "/storage/emulated/0/Music/Sugaroot/Burn/Burn.mp3": { - "title": "Burn", - "album": "Burn", - "artist": "Sugaroot", - "albumId": 47, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Wanderer 4 Love/Life Will Find A Way/Butterfly.flac": { - "title": "Butterfly", - "album": "Life Will Find A Way", - "artist": "The Wanderer", - "albumId": 62, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 2, - "timeAdded": 1738134000 - }, - "/storage/emulated/0/Music/Pitou/I Fall Asleep So Fast/Cabin.mp3": { - "title": "Cabin", - "album": "I Fall Asleep So Fast", - "artist": "Pitou", - "albumId": 38, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 19, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/DNCE/DNCE/Cake By The Ocean.mp3": { - "title": "Cake By The Ocean", - "album": "DNCE", - "artist": "DNCE", - "albumId": 9, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Milkbar/Monday Club/Calendar Girls.mp3": { - "title": "Calendar Girls", - "album": "Monday Club", - "artist": "Milkbar", - "albumId": 32, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 13, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pyrolysis/A Different Dream/10 - Calloused Hands.flac": { - "title": "Calloused Hands", - "album": "A Different Dream", - "artist": "Pyrolysis", - "albumId": 42, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 16, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Go Back To The Zoo/Shake A Wave/Can't Stop My Feet.mp3": { - "title": "Can't Stop My Feet", - "album": "Shake A Wave", - "artist": "Go Back To The Zoo", - "albumId": 18, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/speelklok/19 Carillion - -Aria from die ZauberflФte-.flac": { - "title": "Carillion - -Aria from die ZauberflФte-", - "album": "Speelklok", - "artist": "Wintergatan", - "albumId": 68, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/speelklok/02 Carillion - -Improvisation-.flac": { - "title": "Carillion - -Improvisation-", - "album": "Speelklok", - "artist": "Wintergatan", - "albumId": 68, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Janne Schra/Ponzo/Carry On.mp3": { - "title": "Carry On", - "album": "Ponzo", - "artist": "Janne Schra", - "albumId": 20, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 9, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 18 Casiio x Tah. - Play Well.flac": { - "title": "Casiio x Tah. - Play Well", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 03 Cassiopeia.flac": { - "title": "Cassiopeia", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Circa Waves/Young Chasers (Deluxe)/Catch My Breath.mp3": { - "title": "Catch My Breath", - "album": "Young Chasers (Deluxe)", - "artist": "Circa Waves", - "albumId": 13, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 11, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Cavern.mp3": { - "title": "Cavern", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Two Door Cinema Club/Beacon (Special Edition)/Changing Of The Seasons.mp3": { - "title": "Changing Of The Seasons", - "album": "Beacon (Special Edition)", - "artist": "Two Door Cinema Club", - "albumId": 69, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Leaf/Life's A Beach/Charm On Request.mp3": { - "title": "Charm On Request", - "album": "Life's A Beach", - "artist": "Leaf", - "albumId": 28, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Trouble Notes/Liberty Awaits/The Trouble Notes - Liberty Awaits - 08 Chips y Salsa.flac": { - "title": "Chips y Salsa", - "album": "Liberty Awaits", - "artist": "The Trouble Notes", - "albumId": 59, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 8, - "timeAdded": 1735000 - }, - "/storage/emulated/0/Music/The 1975/The 1975/Chocolate.mp3": { - "title": "Chocolate", - "album": "The 1975", - "artist": "The 1975", - "albumId": 55, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 23 Circuit Whispers.flac": { - "title": "Circuit Whispers", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Climbing.mp3": { - "title": "Climbing", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Among the Saints/When We Were Young!/05 Cockles and Mussels.flac": { - "title": "Cockles and Mussels", - "album": "When We Were Young!", - "artist": "Among the Saints", - "albumId": 4, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 11, - "timeAdded": 1726000 - }, - "/storage/emulated/0/Music/DI-RECT/Rolling With The Punches/Come Into The World.mp3": { - "title": "Come Into The World", - "album": "Rolling With The Punches", - "artist": "DI-RECT", - "albumId": 11, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Conceal, Don't Feel.mp3": { - "title": "Conceal, Don't Feel", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Sugaroot/Constellation/Constellation.mp3": { - "title": "Constellation", - "album": "Constellation", - "artist": "Sugaroot", - "albumId": 48, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Coronation Day.mp3": { - "title": "Coronation Day", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Edward Sharpe and the Magnetic Zeros/Edward Sharpe & The Magnetic Zeros/Country Calling.mp3": { - "title": "Country Calling", - "album": "Edward Sharpe & The Magnetic Zeros", - "artist": "Edward Sharpe and the Magnetic Zeros", - "albumId": 21, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/DI-RECT/Rolling With The Punches/Crazy Madonna.mp3": { - "title": "Crazy Madonna", - "album": "Rolling With The Punches", - "artist": "DI-RECT", - "albumId": 11, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Will and The People/Whistleblower/Cry Baby.mp3": { - "title": "Cry Baby", - "album": "Whistleblower", - "artist": "Will and The People", - "albumId": 70, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Build Songs/Cyberbass Song.flac": { - "title": "Cyberbass Song", - "album": "Build Tracks", - "artist": "Wintergatan", - "albumId": 67, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 10, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/speelklok/20 Cylinder Music Box - -Two Per Turn-.flac": { - "title": "Cylinder Music Box - -Two Per Turn-", - "album": "Speelklok", - "artist": "Wintergatan", - "albumId": 68, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/DNCE/DNCE/DNCE.mp3": { - "title": "DNCE", - "album": "DNCE", - "artist": "DNCE", - "albumId": 9, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 16 DaniSogen - Iris.flac": { - "title": "DaniSogen - Iris", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Red Hot Chili Peppers/The Getaway/Dark Necessities.mp3": { - "title": "Dark Necessities", - "album": "The Getaway", - "artist": "Red Hot Chili Peppers", - "albumId": 39, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 11, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/24 - Decades Of Science.mp3": { - "title": "Decades Of Science", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/05 - Deep Sleep.mp3": { - "title": "Deep Sleep", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Sugaroot/Defy/Defy.mp3": { - "title": "Defy", - "album": "Defy", - "artist": "Sugaroot", - "albumId": 49, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Circa Waves/Young Chasers (Deluxe)/Deserve This.mp3": { - "title": "Deserve This", - "album": "Young Chasers (Deluxe)", - "artist": "Circa Waves", - "albumId": 13, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 10, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Red Hot Chili Peppers/The Getaway/Detroit.mp3": { - "title": "Detroit", - "album": "The Getaway", - "artist": "Red Hot Chili Peppers", - "albumId": 39, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Jazz Emu/Digital Spool/Jazz Emu - Digital Spool - 13 Digital Spool.flac": { - "title": "Digital Spool", - "album": "Digital Spool", - "artist": "Jazz Emu", - "albumId": 26, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Russkaja/Energia/Russkaja - Energia! - 09 Dikije Deti.flac": { - "title": "Dikije Deti", - "album": "Energia!", - "artist": "Russkaja", - "albumId": 46, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 9, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 11 Dimension 32 - Millennium.flac": { - "title": "Dimension 32 - Millennium", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Do You Want to Build a Snowman_.mp3": { - "title": "Do You Want to Build a Snowman?", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 10, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/DNCE/DNCE/Doctor You.mp3": { - "title": "Doctor You", - "album": "DNCE", - "artist": "DNCE", - "albumId": 9, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Good Habits/Quater Live/06 - Does Anybody.flac": { - "title": "Does Anybody?", - "album": "Quater Live", - "artist": "Good Habits", - "albumId": 22, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 25, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Florence + The Machine/A Lot of Love. a Lot of Blood/Dog Days Are Over.mp3": { - "title": "Dog Days Are Over", - "album": "A Lot of Love. a Lot of Blood", - "artist": "Florence + The Machine", - "albumId": 12, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 10, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/speelklok/09 Dom Toren Clock Tower - -Marble Machine-.flac": { - "title": "Dom Toren Clock Tower - -Marble Machine-", - "album": "Speelklok", - "artist": "Wintergatan", - "albumId": 68, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pyrolysis/A Different Dream/01 - Don't Do Me Wrong.flac": { - "title": "Don't Do Me Wrong", - "album": "A Different Dream", - "artist": "Pyrolysis", - "albumId": 42, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 29, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 34 Dontcry x Allem Iversom - Mosaic.flac": { - "title": "Dontcry x Allem Iversom - Mosaic", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Red Hot Chili Peppers/The Getaway/Dreams of a Samurai.mp3": { - "title": "Dreams of a Samurai", - "album": "The Getaway", - "artist": "Red Hot Chili Peppers", - "albumId": 39, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/speelklok/11 Drie Pruiken Street Organ - -Adiвs Nonino-.flac": { - "title": "Drie Pruiken Street Organ - -Adiвs Nonino-", - "album": "Speelklok", - "artist": "Wintergatan", - "albumId": 68, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 11 Drift By (Co-Produced by Outlet).flac": { - "title": "Drift By (Co-Produced by Outlet)", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Casey Abrams/Casey Abrams/Dry Spell.mp3": { - "title": "Dry Spell", - "album": "Casey Abrams", - "artist": "Casey Abrams", - "albumId": 7, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 10, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Kooks/Inside In/Eddie's Gun.mp3": { - "title": "Eddie's Gun", - "album": "Inside In / Inside Out (Deluxe)", - "artist": "The Kooks", - "albumId": 58, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 30 Elijah Lee - Gentle.flac": { - "title": "Elijah Lee - Gentle", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Elsa and Anna.mp3": { - "title": "Elsa and Anna", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 3, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Build Songs/Emerson.flac": { - "title": "Emerson", - "album": "Build Tracks", - "artist": "Wintergatan", - "albumId": 67, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 10, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Red Hot Chili Peppers/The Getaway/Encore.mp3": { - "title": "Encore", - "album": "The Getaway", - "artist": "Red Hot Chili Peppers", - "albumId": 39, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Russkaja/Energia/Russkaja - Energia! - 01 Energia.flac": { - "title": "Energia", - "album": "Energia!", - "artist": "Russkaja", - "albumId": 46, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 13, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Jazz Emu/Digital Spool/Jazz Emu - Digital Spool - 07 English Language.flac": { - "title": "English Language", - "album": "Digital Spool", - "artist": "Jazz Emu", - "albumId": 26, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Jazz Emu/Digital Spool/Jazz Emu - Digital Spool - 14 Epilogue.flac": { - "title": "Epilogue", - "album": "Digital Spool", - "artist": "Jazz Emu", - "albumId": 26, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Epilogue.mp3": { - "title": "Epilogue", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 13 Epona x Timeless - Interlude.flac": { - "title": "Epona x Timeless - Interlude", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Janne Schra/Ponzo/Everything I Do Ooh Ooh.mp3": { - "title": "Everything I Do Ooh Ooh", - "album": "Ponzo", - "artist": "Janne Schra", - "albumId": 20, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 15, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Elle King/Love Stuff/Ex's & Oh's.mp3": { - "title": "Ex's & Oh's", - "album": "Love Stuff", - "artist": "Elle King", - "albumId": 6, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 15 Exodus.flac": { - "title": "Exodus", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Survivor/Eye Of The Tiger/Eye of the Tiger.mp3": { - "title": "Eye of the Tiger", - "album": "Eye Of The Tiger", - "artist": "Survivor", - "albumId": 45, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 16, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Jazz Emu/Digital Spool/Jazz Emu - Digital Spool - 09 Fabergé Egg.flac": { - "title": "Fabergé Egg", - "album": "Digital Spool", - "artist": "Jazz Emu", - "albumId": 26, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Chef'Special/Amigo/Face Of A Stranger.mp3": { - "title": "Face Of A Stranger", - "album": "Amigo", - "artist": "Chef'Special", - "albumId": 10, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 13, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Dotan/7 Layers/Fall.mp3": { - "title": "Fall", - "album": "7 Layers", - "artist": "Dotan", - "albumId": 16, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Incredible/Fall.mp3": { - "title": "Fall", - "album": "Incredible", - "artist": "Ilse DeLange", - "albumId": 25, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Tim McMorris/Alive/Fall in Love Again.mp3": { - "title": "Fall in Love Again", - "album": "Alive", - "artist": "Tim McMorris", - "albumId": 61, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pat Razket/Hymns From The Abys/03 - Far_From_Home.flac": { - "title": "Far From Home", - "album": "Hymns from the Abyss", - "artist": "Pat Razket", - "albumId": 33, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 28, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Wanderer 4 Love/Life Will Find A Way/Father.flac": { - "title": "Father", - "album": "Life Will Find A Way", - "artist": "The Wanderer", - "albumId": 62, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 0, - "timeAdded": 1738134000 - }, - "/storage/emulated/0/Music/Red Hot Chili Peppers/The Getaway/Feasting on the Flowers.mp3": { - "title": "Feasting on the Flowers", - "album": "The Getaway", - "artist": "Red Hot Chili Peppers", - "albumId": 39, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/MIKA/No Place In Heaven (Special Edition)/Feels Like Love.mp3": { - "title": "Feels Like Love", - "album": "No Place In Heaven (Special Edition)", - "artist": "MIKA", - "albumId": 31, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pat Razket/Hymns From The Abys/05 - Fiddler’s_Green.flac": { - "title": "Fiddler’s Green", - "album": "Hymns from the Abyss", - "artist": "Pat Razket", - "albumId": 33, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 21, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pyrolysis/A Different Dream/06 - Fight or Survive.flac": { - "title": "Fight or Survive", - "album": "A Different Dream", - "artist": "Pyrolysis", - "albumId": 42, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 16, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Janne Schra/Ponzo/Filthy Rich.mp3": { - "title": "Filthy Rich", - "album": "Ponzo", - "artist": "Janne Schra", - "albumId": 20, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Sugaroot/Finish Me/Finish Me.mp3": { - "title": "Finish Me", - "album": "Finish Me", - "artist": "Sugaroot", - "albumId": 50, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Go Back To The Zoo/Shake A Wave/Fire In The Streets.mp3": { - "title": "Fire In The Streets", - "album": "Shake A Wave", - "artist": "Go Back To The Zoo", - "albumId": 18, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Arctic Monkeys/AM/Fireside.mp3": { - "title": "Fireside", - "album": "AM", - "artist": "Arctic Monkeys", - "albumId": 5, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/11 - Firestorm.mp3": { - "title": "Firestorm", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/KYGO/Kids in Love/11 - First Time.flac": { - "title": "First Time", - "album": "Kids In Love", - "artist": "KYGO", - "albumId": 27, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 21, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Beth McCarthy/IDK How To Talk To Girls/First, Best, Hottest… - Beth Mccarthy.mp3": { - "title": "First, Best, Hottest…", - "album": "IDK How To Talk To Girls", - "artist": "Beth Mccarthy", - "albumId": 2, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Fixer Upper.mp3": { - "title": "Fixer Upper", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Go Back To The Zoo/Shake A Wave/Flashlight.mp3": { - "title": "Flashlight", - "album": "Shake A Wave", - "artist": "Go Back To The Zoo", - "albumId": 18, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Crystal Fighters/Everything Is My Family/Fly East.mp3": { - "title": "Fly East", - "album": "Everything Is My Family", - "artist": "Crystal Fighters", - "albumId": 8, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Handsome Poets/Sky on Fire/Follow Me.mp3": { - "title": "Follow Me", - "album": "Sky on Fire", - "artist": "Handsome Poets", - "albumId": 15, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Xavier Rudd/Spirit Bird/Follow the Sun.mp3": { - "title": "Follow the Sun", - "album": "Spirit Bird", - "artist": "Xavier Rudd", - "albumId": 72, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/For the First Time in Forever.mp3": { - "title": "For the First Time in Forever", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/For the First Time in Forever (Reprise).mp3": { - "title": "For the First Time in Forever (Reprise)", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 3, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Trouble Notes/Liberty Awaits/The Trouble Notes - Liberty Awaits - 09 Forbidden Love.flac": { - "title": "Forbidden Love", - "album": "Liberty Awaits", - "artist": "The Trouble Notes", - "albumId": 59, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 5, - "timeAdded": 1735000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 25 Forget.flac": { - "title": "Forget", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Circa Waves/Young Chasers (Deluxe)/Fossils.mp3": { - "title": "Fossils", - "album": "Young Chasers (Deluxe)", - "artist": "Circa Waves", - "albumId": 13, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 10, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Trolska Polska/Moss/09 - Friergang__Forårsrus.flac": { - "title": "Friergang / Forårsrus", - "album": "Moss", - "artist": "Trolska Polska", - "albumId": 63, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 17, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Frozen Heart.mp3": { - "title": "Frozen Heart", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Good Habits/Quater Live/10 - Fryday I'm in Love.flac": { - "title": "Fryday I'm in Love", - "album": "Quater Live", - "artist": "Good Habits", - "albumId": 22, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 20, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Walk Off The Earth/R.E.V.O/Gang of Rhythm.mp3": { - "title": "Gang of Rhythm", - "album": "R.E.V.O.", - "artist": "Walk Off The Earth", - "albumId": 71, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Jazz Emu/Digital Spool/Jazz Emu - Digital Spool - 08 Generic Response No. 327.flac": { - "title": "Generic Response No. 327", - "album": "Digital Spool", - "artist": "Jazz Emu", - "albumId": 26, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Circa Waves/Young Chasers (Deluxe)/Get Away.mp3": { - "title": "Get Away", - "album": "Young Chasers (Deluxe)", - "artist": "Circa Waves", - "albumId": 13, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 11, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Casey Abrams/Casey Abrams/Get Out.mp3": { - "title": "Get Out", - "album": "Casey Abrams", - "artist": "Casey Abrams", - "albumId": 7, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Dotan/7 Layers/Ghost.mp3": { - "title": "Ghost", - "album": "7 Layers", - "artist": "Dotan", - "albumId": 16, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Casey Abrams/Casey Abrams/Ghosts.mp3": { - "title": "Ghosts", - "album": "Casey Abrams", - "artist": "Casey Abrams", - "albumId": 7, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 9, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The 1975/The 1975/Girls.mp3": { - "title": "Girls", - "album": "The 1975", - "artist": "The 1975", - "albumId": 55, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pitou/I Fall Asleep So Fast/Give Me a Glass.mp3": { - "title": "Give Me a Glass", - "album": "I Fall Asleep So Fast", - "artist": "Pitou", - "albumId": 38, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 15, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Tim McMorris/Alive/Give Our Dreams Their Wings to Fly.mp3": { - "title": "Give Our Dreams Their Wings to Fly", - "album": "Alive", - "artist": "Tim McMorris", - "albumId": 61, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Trolska Polska/Moss/11 - Gnomen_&_Sylfiden.flac": { - "title": "Gnomen & Sylfiden", - "album": "Moss", - "artist": "Trolska Polska", - "albumId": 63, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 12, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Red Hot Chili Peppers/The Getaway/Go Robot.mp3": { - "title": "Go Robot", - "album": "The Getaway", - "artist": "Red Hot Chili Peppers", - "albumId": 39, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Beth McCarthy/Good Bi/Good Bi - Beth Mccarthy.mp3": { - "title": "Good Bi", - "album": "Good Bi", - "artist": "Beth Mccarthy", - "albumId": 1, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 18, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/DNCE/DNCE/Good Day.mp3": { - "title": "Good Day", - "album": "DNCE", - "artist": "DNCE", - "albumId": 9, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Circa Waves/Young Chasers (Deluxe)/Good For Me.mp3": { - "title": "Good For Me", - "album": "Young Chasers (Deluxe)", - "artist": "Circa Waves", - "albumId": 13, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 12, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Crystal Fighters/Everything Is My Family/Good Girls.mp3": { - "title": "Good Girls", - "album": "Everything Is My Family", - "artist": "Crystal Fighters", - "albumId": 8, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Chef'Special/Amigo/Good Life.mp3": { - "title": "Good Life", - "album": "Amigo", - "artist": "Chef'Special", - "albumId": 10, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 9, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Janne Schra/Ponzo/Good Now.mp3": { - "title": "Good Now", - "album": "Ponzo", - "artist": "Janne Schra", - "albumId": 20, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 12, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/MIKA/No Place In Heaven (Special Edition)/Good Wife.mp3": { - "title": "Good Wife", - "album": "No Place In Heaven (Special Edition)", - "artist": "MIKA", - "albumId": 31, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Red Hot Chili Peppers/The Getaway/Goodbye Angels.mp3": { - "title": "Goodbye Angels", - "album": "The Getaway", - "artist": "Red Hot Chili Peppers", - "albumId": 39, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 23 Goson - Between Pages.flac": { - "title": "Goson - Between Pages", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Kooks/Inside In/Got No Love.mp3": { - "title": "Got No Love", - "album": "Inside In / Inside Out (Deluxe)", - "artist": "The Kooks", - "albumId": 58, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/speelklok/08 Grandiola Pedaled Player Piano.flac": { - "title": "Grandiola Pedaled Player Piano", - "album": "Speelklok", - "artist": "Wintergatan", - "albumId": 68, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Casey Abrams/Casey Abrams/Great Bright Morning.mp3": { - "title": "Great Bright Morning", - "album": "Casey Abrams", - "artist": "Casey Abrams", - "albumId": 7, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Great Escape.mp3": { - "title": "Great Escape", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Leaf/Life's A Beach/Growing Up.mp3": { - "title": "Growing Up", - "album": "Life's A Beach", - "artist": "Leaf", - "albumId": 28, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Trolska Polska/Moss/05 - Grøffelvalsen.flac": { - "title": "Grøffelvalsen", - "album": "Moss", - "artist": "Trolska Polska", - "albumId": 63, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 19, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 36 HM surf - merhaba.flac": { - "title": "HM surf - merhaba", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Ilse DeLange/Half The Love.mp3": { - "title": "Half The Love", - "album": "Ilse DeLange", - "artist": "Ilse DeLange", - "albumId": 24, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/21 - Halted Production.mp3": { - "title": "Halted Production", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Hand of a God.mp3": { - "title": "Hand of a God", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Two Door Cinema Club/Beacon (Special Edition)/Handshake.mp3": { - "title": "Handshake", - "album": "Beacon (Special Edition)", - "artist": "Two Door Cinema Club", - "albumId": 69, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 9, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pyrolysis/A Different Dream/07 - Harbour for the Lost.flac": { - "title": "Harbour for the Lost", - "album": "A Different Dream", - "artist": "Pyrolysis", - "albumId": 42, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 18, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pyrolysis/A Different Dream/02 - Harlequin.flac": { - "title": "Harlequin", - "album": "A Different Dream", - "artist": "Pyrolysis", - "albumId": 42, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 26, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/speelklok/18 Haydn Niemcz Organ.flac": { - "title": "Haydn Niemcz Organ", - "album": "Speelklok", - "artist": "Wintergatan", - "albumId": 68, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/He Was You.mp3": { - "title": "He Was You", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 17 Heart Chase Summer.flac": { - "title": "Heart Chase Summer", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The 1975/The 1975/Heart Out.mp3": { - "title": "Heart Out", - "album": "The 1975", - "artist": "The 1975", - "albumId": 55, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Heartache.mp3": { - "title": "Heartache", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Ilse DeLange/Heartbeat.mp3": { - "title": "Heartbeat", - "album": "Ilse DeLange", - "artist": "Ilse DeLange", - "albumId": 24, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 9, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Heimr Arnadalr.mp3": { - "title": "Heimr Àrnadalr", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 01 Hi.flac": { - "title": "Hi", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Leaf/Life's A Beach/Hide & Seek.mp3": { - "title": "Hide & Seek", - "album": "Life's A Beach", - "artist": "Leaf", - "albumId": 28, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Score/ATLAS/Higher.mp3": { - "title": "Higher", - "album": "ATLAS", - "artist": "The Score", - "albumId": 57, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Casey Abrams/Casey Abrams/Hit The Road Jack (feat. Haley Reinhart).mp3": { - "title": "Hit The Road Jack (feat. Haley Reinhart)", - "album": "Casey Abrams", - "artist": "Casey Abrams", - "albumId": 7, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 10, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Go Back To The Zoo/Shake A Wave/Hold Forever.mp3": { - "title": "Hold Forever", - "album": "Shake A Wave", - "artist": "Go Back To The Zoo", - "albumId": 18, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Dotan/7 Layers/Home.mp3": { - "title": "Home", - "album": "7 Layers", - "artist": "Dotan", - "albumId": 16, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Chef'Special/Amigo/Homesick.mp3": { - "title": "Homesick", - "album": "Amigo", - "artist": "Chef'Special", - "albumId": 10, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 12 Hoogway - Playing All Night.flac": { - "title": "Hoogway - Playing All Night", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wolves Dressed in Sheep/Varykino/Hot Rod.mp3": { - "title": "Hot Rod", - "album": "Varykino", - "artist": "Wolves Dressed in Sheep", - "albumId": 73, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 20, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Leaf/Life's A Beach/How About This Life.mp3": { - "title": "How About This Life", - "album": "Life's A Beach", - "artist": "Leaf", - "albumId": 28, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/How Far I'll Go.mp3": { - "title": "How Far I'll Go", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 11, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/How Far I'll Go (Alessia Cara Version).mp3": { - "title": "How Far I'll Go (Alessia Cara Version)", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/How Far I'll Go (Reprise).mp3": { - "title": "How Far I'll Go (Reprise)", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Jazz Emu/Digital Spool/Jazz Emu - Digital Spool - 12 Hummingbird.flac": { - "title": "Hummingbird", - "album": "Digital Spool", - "artist": "Jazz Emu", - "albumId": 26, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Dotan/7 Layers/Hungry.mp3": { - "title": "Hungry", - "album": "7 Layers", - "artist": "Dotan", - "albumId": 16, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/speelklok/01 Hupfeld Phonolizt Violina Orchestrion - Pasadena.flac": { - "title": "Hupfeld Phonolizt Violina Orchestrion - Pasadena", - "album": "Speelklok", - "artist": "Wintergatan", - "albumId": 68, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/DI-RECT/Rolling With The Punches/Hurricane.mp3": { - "title": "Hurricane", - "album": "Rolling With The Punches", - "artist": "DI-RECT", - "albumId": 11, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 11, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/MIKA/No Place In Heaven (Special Edition)/Hurts.mp3": { - "title": "Hurts", - "album": "No Place In Heaven (Special Edition)", - "artist": "MIKA", - "albumId": 31, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/MIKA/No Place In Heaven (Special Edition)/Hurts (Remix).mp3": { - "title": "Hurts (Remix)", - "album": "No Place In Heaven (Special Edition)", - "artist": "MIKA", - "albumId": 31, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Dotan/7 Layers/Hush.mp3": { - "title": "Hush", - "album": "7 Layers", - "artist": "Dotan", - "albumId": 16, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/I Am Vaiana (Song of the Ancestors).mp3": { - "title": "I Am Vaiana (Song of the Ancestors)", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 9, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Circa Waves/Young Chasers (Deluxe)/I Can Sleep Tonight.mp3": { - "title": "I Can Sleep Tonight", - "album": "Young Chasers (Deluxe)", - "artist": "Circa Waves", - "albumId": 13, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Sting/57TH & 9TH/I Can't Stop Thinking About You.mp3": { - "title": "I Can't Stop Thinking About You", - "album": "57TH & 9TH", - "artist": "Sting", - "albumId": 44, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pyrolysis/A Different Dream/09 - I Count My Steps.flac": { - "title": "I Count My Steps", - "album": "A Different Dream", - "artist": "Pyrolysis", - "albumId": 42, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 21, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pitou/I Fall Asleep So Fast/I Fall Asleep So Fast.mp3": { - "title": "I Fall Asleep So Fast", - "album": "I Fall Asleep So Fast", - "artist": "Pitou", - "albumId": 38, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 16, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Go Back To The Zoo/Shake A Wave/I Get Up.mp3": { - "title": "I Get Up", - "album": "Shake A Wave", - "artist": "Go Back To The Zoo", - "albumId": 18, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/KYGO/Kids in Love/08 - I See You.flac": { - "title": "I See You", - "album": "Kids In Love", - "artist": "KYGO", - "albumId": 27, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 15, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Arctic Monkeys/AM/I Wanna Be Yours.mp3": { - "title": "I Wanna Be Yours", - "album": "AM", - "artist": "Arctic Monkeys", - "albumId": 5, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 12, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Arctic Monkeys/AM/I Want It All.mp3": { - "title": "I Want It All", - "album": "AM", - "artist": "Arctic Monkeys", - "albumId": 5, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Kooks/Inside In/I Want You.mp3": { - "title": "I Want You", - "album": "Inside In / Inside Out (Deluxe)", - "artist": "The Kooks", - "albumId": 58, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Wanderer 4 Love/Life Will Find A Way/I will overcome.flac": { - "title": "I will overcome (live)", - "album": "Life Will Find A Way", - "artist": "The Wanderer", - "albumId": 62, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 0, - "timeAdded": 1738134000 - }, - "/storage/emulated/0/Music/Will and The People/Whistleblower/I'll Always Be There (Trust Yourself).mp3": { - "title": "I'll Always Be There (Trust Yourself)", - "album": "Whistleblower", - "artist": "Will and The People", - "albumId": 70, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Milkbar/Monday Club/I'm A Soldier.mp3": { - "title": "I'm A Soldier", - "album": "Monday Club", - "artist": "Milkbar", - "albumId": 32, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Beth McCarthy/IDK How To Talk To Girls/IDK How To Talk To Girls - Beth Mccarthy.mp3": { - "title": "IDK How To Talk To Girls", - "album": "IDK How To Talk To Girls", - "artist": "Beth Mccarthy", - "albumId": 2, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 18, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Edward Sharpe and the Magnetic Zeros/Edward Sharpe & The Magnetic Zeros/If I Were Free.mp3": { - "title": "If I Were Free", - "album": "Edward Sharpe & The Magnetic Zeros", - "artist": "Edward Sharpe and the Magnetic Zeros", - "albumId": 21, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/If I Were the Ocean.mp3": { - "title": "If I Were the Ocean", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Kooks/Inside In/If Only.mp3": { - "title": "If Only", - "album": "Inside In / Inside Out (Deluxe)", - "artist": "The Kooks", - "albumId": 58, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/In Summer.mp3": { - "title": "In Summer", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Edward Sharpe and the Magnetic Zeros/Edward Sharpe & The Magnetic Zeros/In The Lion.mp3": { - "title": "In The Lion", - "album": "Edward Sharpe & The Magnetic Zeros", - "artist": "Edward Sharpe and the Magnetic Zeros", - "albumId": 21, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Edward Sharpe and the Magnetic Zeros/Edward Sharpe & The Magnetic Zeros/In The Summer.mp3": { - "title": "In The Summer", - "album": "Edward Sharpe & The Magnetic Zeros", - "artist": "Edward Sharpe and the Magnetic Zeros", - "albumId": 21, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Crystal Fighters/Everything Is My Family/In Your Arms.mp3": { - "title": "In Your Arms", - "album": "Everything Is My Family", - "artist": "Crystal Fighters", - "albumId": 8, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 07 In the Clouds.flac": { - "title": "In the Clouds", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/01 - Interfacing.mp3": { - "title": "Interfacing", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Chef'Special/Amigo/Into The Future.mp3": { - "title": "Into The Future", - "album": "Amigo", - "artist": "Chef'Special", - "albumId": 10, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The 1975/The 1975/Is There Somebody Who Can Watch You.mp3": { - "title": "Is There Somebody Who Can Watch You", - "album": "The 1975", - "artist": "The 1975", - "albumId": 55, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 0, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Russkaja/Energia/Russkaja - Energia! - 05 Istanbul.flac": { - "title": "Istanbul", - "album": "Energia!", - "artist": "Russkaja", - "albumId": 46, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/KYGO/Kids in Love/10 - It Ain't Me.flac": { - "title": "It Ain't Me", - "album": "Kids In Love", - "artist": "KYGO", - "albumId": 27, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 16, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Dotan/7 Layers/It Gets Better.mp3": { - "title": "It Gets Better", - "album": "7 Layers", - "artist": "Dotan", - "albumId": 16, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Tim McMorris/Alive/It's a Beautiful Day.mp3": { - "title": "It's a Beautiful Day", - "album": "Alive", - "artist": "Tim McMorris", - "albumId": 61, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Build Songs/It's been a journey but we're now on our Way.flac": { - "title": "It's been a journey but we're now on our Way", - "album": "Build Tracks", - "artist": "Wintergatan", - "albumId": 67, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 13, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Good Habits/Quater Live/01 - Itchy Feet.flac": { - "title": "Itchy Feet", - "album": "Quater Live", - "artist": "Good Habits", - "albumId": 22, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 29, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/MIKA/No Place In Heaven (Special Edition)/J’ai pas envie.mp3": { - "title": "J'ai pas envie", - "album": "No Place In Heaven (Special Edition)", - "artist": "MIKA", - "albumId": 31, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1738134000 - }, - "/storage/emulated/0/Music/The Kooks/Inside In/Jackie Big Tits.mp3": { - "title": "Jackie Big Tits", - "album": "Inside In / Inside Out (Deluxe)", - "artist": "The Kooks", - "albumId": 58, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/MIKA/No Place In Heaven (Special Edition)/Je Chante.mp3": { - "title": "Je Chante", - "album": "No Place In Heaven (Special Edition)", - "artist": "MIKA", - "albumId": 31, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Will and The People/Whistleblower/Jekyll & Hyde.mp3": { - "title": "Jekyll & Hyde", - "album": "Whistleblower", - "artist": "Will and The People", - "albumId": 70, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 12, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Milkbar/Monday Club/Julia.mp3": { - "title": "Julia", - "album": "Monday Club", - "artist": "Milkbar", - "albumId": 32, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Leaf/Life's A Beach/July.mp3": { - "title": "July", - "album": "Life's A Beach", - "artist": "Leaf", - "albumId": 28, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Chef'Special/Amigo/Jungle Bookie.mp3": { - "title": "Jungle Bookie", - "album": "Amigo", - "artist": "Chef'Special", - "albumId": 10, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Handsome Poets/Sky on Fire/Jupiter.mp3": { - "title": "Jupiter", - "album": "Sky on Fire", - "artist": "Handsome Poets", - "albumId": 15, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 9, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Trolska Polska/Moss/13 - Jættepolka.flac": { - "title": "Jættepolka", - "album": "Moss", - "artist": "Trolska Polska", - "albumId": 63, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 15, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 32 Kainbeats - Staying Free.flac": { - "title": "Kainbeats - Staying Free", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Kakamora.mp3": { - "title": "Kakamora", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/speelklok/12 Kalliope Panorama Disc Music Box.flac": { - "title": "Kalliope Panorama Disc Music Box", - "album": "Speelklok", - "artist": "Wintergatan", - "albumId": 68, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 10 Kanisan - LILY.flac": { - "title": "Kanisan - LILY", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Trolska Polska/Moss/01 - Kanutten.flac": { - "title": "Kanutten", - "album": "Moss", - "artist": "Trolska Polska", - "albumId": 63, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 21, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Russkaja/Energia/Russkaja - Energia! - 07 Kartuli Vino.flac": { - "title": "Kartuli Vino", - "album": "Energia!", - "artist": "Russkaja", - "albumId": 46, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ofenbach vs. Nick Waterhouse/Katchi (Ofenbach vs. Nick Waterhouse)/Katchi (Ofenbach vs. Nick Waterhouse).mp3": { - "title": "Katchi (Ofenbach vs. Nick Waterhouse)", - "album": "Katchi (Ofenbach vs. Nick Waterhouse)", - "artist": "Ofenbach vs. Nick Waterhouse", - "albumId": 30, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 9, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Go Back To The Zoo/Shake A Wave/Keep On Running.mp3": { - "title": "Keep On Running", - "album": "Shake A Wave", - "artist": "Go Back To The Zoo", - "albumId": 18, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Florence + The Machine/A Lot of Love. a Lot of Blood/Kiss With a Fist.mp3": { - "title": "Kiss With a Fist", - "album": "A Lot of Love. a Lot of Blood", - "artist": "Florence + The Machine", - "albumId": 12, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 18, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/KYGO/Kids in Love/06 - Kits in Love.flac": { - "title": "Kits in Love", - "album": "Kids In Love", - "artist": "KYGO", - "albumId": 27, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 17, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Trolska Polska/Moss/10 - Klumfod.flac": { - "title": "Klumfod", - "album": "Moss", - "artist": "Trolska Polska", - "albumId": 63, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Arctic Monkeys/AM/Knee Socks.mp3": { - "title": "Knee Socks", - "album": "AM", - "artist": "Arctic Monkeys", - "albumId": 5, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Know Who You Are.mp3": { - "title": "Know Who You Are", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pat Razket/Hymns From The Abys/02 - Kraken’s_Dance.flac": { - "title": "Kraken’s Dance", - "album": "Hymns from the Abyss", - "artist": "Pat Razket", - "albumId": 33, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 20, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 02 Kupla - Long Distance.flac": { - "title": "Kupla - Long Distance", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/MIKA/No Place In Heaven (Special Edition)/L’amour Fait Ce Qu’il Veut.mp3": { - "title": "L'amour Fait Ce Qu'il Veut", - "album": "No Place In Heaven (Special Edition)", - "artist": "MIKA", - "albumId": 31, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1738134000 - }, - "/storage/emulated/0/Music/Juanes/Mi Sangre (International Version)/La Camisa Negra.mp3": { - "title": "La Camisa Negra", - "album": "Mi Sangre (International Version)", - "artist": "Juanes", - "albumId": 19, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 29 Laffey - A Kid At Heart.flac": { - "title": "Laffey - A Kid At Heart", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/MIKA/No Place In Heaven (Special Edition)/Last Party.mp3": { - "title": "Last Party", - "album": "No Place In Heaven (Special Edition)", - "artist": "MIKA", - "albumId": 31, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Crystal Fighters/Everything Is My Family/Lay Low.mp3": { - "title": "Lay Low", - "album": "Everything Is My Family", - "artist": "Crystal Fighters", - "albumId": 8, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Will and The People/Whistleblower/Lay Me Down.mp3": { - "title": "Lay Me Down", - "album": "Whistleblower", - "artist": "Will and The People", - "albumId": 70, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Ilse DeLange/Lay Your Weapons Down.mp3": { - "title": "Lay Your Weapons Down", - "album": "Ilse DeLange", - "artist": "Ilse DeLange", - "albumId": 24, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Score/ATLAS/Legend.mp3": { - "title": "Legend", - "album": "ATLAS", - "artist": "The Score", - "albumId": 57, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pyrolysis/Alotsle/04 Less Annoying Place.flac": { - "title": "Less Annoying Place", - "album": "Alotsle", - "artist": "Pyrolysis", - "albumId": 43, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 19, - "timeAdded": 1726000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Let It Go.mp3": { - "title": "Let It Go", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Let It Go_1.mp3": { - "title": "Let It Go", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pyrolysis/A Different Dream/05 - Let Me Finish.flac": { - "title": "Let Me Finish", - "album": "A Different Dream", - "artist": "Pyrolysis", - "albumId": 42, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 21, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Dotan/7 Layers/Let The River In.mp3": { - "title": "Let The River In", - "album": "7 Layers", - "artist": "Dotan", - "albumId": 16, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Edward Sharpe and the Magnetic Zeros/Edward Sharpe & The Magnetic Zeros/Let's Get High.mp3": { - "title": "Let's Get High", - "album": "Edward Sharpe & The Magnetic Zeros", - "artist": "Edward Sharpe and the Magnetic Zeros", - "albumId": 21, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Trouble Notes/Liberty Awaits/The Trouble Notes - Liberty Awaits - 01 Liberty Awaits.flac": { - "title": "Liberty Awaits", - "album": "Liberty Awaits", - "artist": "The Trouble Notes", - "albumId": 59, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 6, - "timeAdded": 1735000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Libre Soy.mp3": { - "title": "Libre Soy", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Tim McMorris/Alive/Life Is Beautiful.mp3": { - "title": "Life Is Beautiful", - "album": "Alive", - "artist": "Tim McMorris", - "albumId": 61, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Edward Sharpe and the Magnetic Zeros/Edward Sharpe & The Magnetic Zeros/Life Is Hard.mp3": { - "title": "Life Is Hard", - "album": "Edward Sharpe & The Magnetic Zeros", - "artist": "Edward Sharpe and the Magnetic Zeros", - "albumId": 21, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Wanderer 4 Love/Life Will Find A Way/Life will find a way.flac": { - "title": "Life will find a way", - "album": "Life Will Find A Way", - "artist": "The Wanderer", - "albumId": 62, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 0, - "timeAdded": 1738134000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/22a - Live Fire Exercise.mp3": { - "title": "Live Fire Exercise", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/22b - Live Fire Exercise [funnel].mp3": { - "title": "Live Fire Exercise [funnel]", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Crystal Fighters/Everything Is My Family/Live For You.mp3": { - "title": "Live For You", - "album": "Everything Is My Family", - "artist": "Crystal Fighters", - "albumId": 8, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Crystal Fighters/Everything Is My Family/Living The Dream.mp3": { - "title": "Living The Dream", - "album": "Everything Is My Family", - "artist": "Crystal Fighters", - "albumId": 8, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Build Songs/Local Cluster.flac": { - "title": "Local Cluster", - "album": "Build Tracks", - "artist": "Wintergatan", - "albumId": 67, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 16, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Among the Saints/When We Were Young!/01 Loch Lomond.flac": { - "title": "Loch Lomond", - "album": "When We Were Young!", - "artist": "Among the Saints", - "albumId": 4, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 10, - "timeAdded": 1726000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Logo Te Pate.mp3": { - "title": "Logo Te Pate", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/14a - Long Way Down.mp3": { - "title": "Long Way Down", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/14b - Long Way Down [funnel].mp3": { - "title": "Long Way Down [funnel]", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Circa Waves/Young Chasers (Deluxe)/Lost It.mp3": { - "title": "Lost It", - "album": "Young Chasers (Deluxe)", - "artist": "Circa Waves", - "albumId": 13, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 10, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/DI-RECT/Rolling With The Punches/Love In Kind.mp3": { - "title": "Love In Kind", - "album": "Rolling With The Punches", - "artist": "DI-RECT", - "albumId": 11, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Love Is an Open Door.mp3": { - "title": "Love Is an Open Door", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Tim McMorris/Alive/Love on Fire.mp3": { - "title": "Love on Fire", - "album": "Alive", - "artist": "Tim McMorris", - "albumId": 61, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Incredible/Love won't hide.mp3": { - "title": "Love won't hide", - "album": "Incredible", - "artist": "Ilse DeLange", - "albumId": 25, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/DI-RECT/Rolling With The Punches/Lovin´ The City.mp3": { - "title": "Lovin´ The City", - "album": "Rolling With The Punches", - "artist": "DI-RECT", - "albumId": 11, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Handsome Poets/Sky on Fire/Lucky One.mp3": { - "title": "Lucky One", - "album": "Sky on Fire", - "artist": "Handsome Poets", - "albumId": 15, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Milkbar/Monday Club/Luxuries Of Life.mp3": { - "title": "Luxuries Of Life", - "album": "Monday Club", - "artist": "Milkbar", - "albumId": 32, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The 1975/The 1975/M.O.N.E.Y..mp3": { - "title": "M.O.N.E.Y.", - "album": "The 1975", - "artist": "The 1975", - "albumId": 55, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Arctic Monkeys/AM/Mad Sounds.mp3": { - "title": "Mad Sounds", - "album": "AM", - "artist": "Arctic Monkeys", - "albumId": 5, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Among the Saints/When We Were Young!/03 Maggie.flac": { - "title": "Maggie", - "album": "When We Were Young!", - "artist": "Among the Saints", - "albumId": 4, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 8, - "timeAdded": 1726000 - }, - "/storage/emulated/0/Music/The Trouble Notes/Liberty Awaits/The Trouble Notes - Liberty Awaits - 03 Magnolias.flac": { - "title": "Magnolias", - "album": "Liberty Awaits", - "artist": "The Trouble Notes", - "albumId": 59, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 6, - "timeAdded": 1735000 - }, - "/storage/emulated/0/Music/Tim McMorris/I'd Choose You Again/Make It Last.mp3": { - "title": "Make It Last", - "album": "I'd Choose You Again", - "artist": "Tim McMorris", - "albumId": 60, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Jonas Blue/Mama/Mama (feat. William Singe).mp3": { - "title": "Mama (feat. William Singe)", - "album": "Mama", - "artist": "Jonas Blue", - "albumId": 17, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 9, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Marble Machine/Marble Machine.mp3": { - "title": "Marble Machine", - "album": "Marble Machine", - "artist": "Wintergatan", - "albumId": 64, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 17, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Singles/Marble Machine.flac": { - "title": "Marble Machine", - "album": "Singles", - "artist": "Wintergatan", - "albumId": 65, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 18, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Singles/Marble Machine Piano Version.flac": { - "title": "Marble Machine Piano Version", - "album": "Singles", - "artist": "Wintergatan", - "albumId": 65, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 19, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Marshmallow Attack!.mp3": { - "title": "Marshmallow Attack!", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Kooks/Inside In/Matchbox.mp3": { - "title": "Matchbox", - "album": "Inside In / Inside Out (Deluxe)", - "artist": "The Kooks", - "albumId": 58, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Maui Leaves.mp3": { - "title": "Maui Leaves", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Trouble Notes/Liberty Awaits/The Trouble Notes - Liberty Awaits - 05 Mayahuel.flac": { - "title": "Mayahuel", - "album": "Liberty Awaits", - "artist": "The Trouble Notes", - "albumId": 59, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 6, - "timeAdded": 1735000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/26 - Mel's Story.mp3": { - "title": "Mel's Story", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Milkbar/Monday Club/Memories.mp3": { - "title": "Memories", - "album": "Monday Club", - "artist": "Milkbar", - "albumId": 32, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The 1975/The 1975/Menswear.mp3": { - "title": "Menswear", - "album": "The 1975", - "artist": "The 1975", - "albumId": 55, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Casey Abrams/Casey Abrams/Midnight Girl.mp3": { - "title": "Midnight Girl", - "album": "Casey Abrams", - "artist": "Casey Abrams", - "albumId": 7, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 9, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/speelklok/14 Miniature Music Box In A Snuff Box.flac": { - "title": "Miniature Music Box In A Snuff Box", - "album": "Speelklok", - "artist": "Wintergatan", - "albumId": 68, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Incredible/Miracle.mp3": { - "title": "Miracle", - "album": "Incredible", - "artist": "Ilse DeLange", - "albumId": 25, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Score/ATLAS/Miracle.mp3": { - "title": "Miracle", - "album": "ATLAS", - "artist": "The Score", - "albumId": 57, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 08 Mondo Loops - One Piece At A Time.flac": { - "title": "Mondo Loops - One Piece At A Time", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Chef'Special/Amigo/Money.mp3": { - "title": "Money", - "album": "Amigo", - "artist": "Chef'Special", - "albumId": 10, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Walk Off The Earth/R.E.V.O/Money Tree.mp3": { - "title": "Money Tree", - "album": "R.E.V.O.", - "artist": "Walk Off The Earth", - "albumId": 71, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Jazz Emu/Digital Spool/Jazz Emu - Digital Spool - 10 Monster Incorporated.flac": { - "title": "Monster Incorporated", - "album": "Digital Spool", - "artist": "Jazz Emu", - "albumId": 26, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 10, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Build Songs/Moon And Star.flac": { - "title": "Moon And Star", - "album": "Build Tracks", - "artist": "Wintergatan", - "albumId": 67, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Sugaroot/More/More.mp3": { - "title": "More", - "album": "More", - "artist": "Sugaroot", - "albumId": 51, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Handsome Poets/Sky on Fire/More Heart.mp3": { - "title": "More Heart", - "album": "Sky on Fire", - "artist": "Handsome Poets", - "albumId": 15, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 12, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Will and The People/Whistleblower/Mother Nature Kicks.mp3": { - "title": "Mother Nature Kicks", - "album": "Whistleblower", - "artist": "Will and The People", - "albumId": 70, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pyrolysis/Alotsle/06 Mother of the World.flac": { - "title": "Mother of the World", - "album": "Alotsle", - "artist": "Pyrolysis", - "albumId": 43, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 12, - "timeAdded": 1726000 - }, - "/storage/emulated/0/Music/Leaf/Life's A Beach/Motherfucker.mp3": { - "title": "Motherfucker", - "album": "Life's A Beach", - "artist": "Leaf", - "albumId": 28, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Build Songs/Multiverse.flac": { - "title": "Multiverse", - "album": "Build Tracks", - "artist": "Wintergatan", - "albumId": 67, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 11, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Leaf/Life's A Beach/Music.mp3": { - "title": "Music", - "album": "Life's A Beach", - "artist": "Leaf", - "albumId": 28, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Build Songs/Music Box, Harp & Hammered Dulcimer.flac": { - "title": "Music Box, Harp & Hammered Dulcimer", - "album": "Build Tracks", - "artist": "Wintergatan", - "albumId": 67, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 10, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Build Songs/Music Machine Mondays Theme Song.flac": { - "title": "Music Machine Mondays Theme Song", - "album": "Build Tracks", - "artist": "Wintergatan", - "albumId": 67, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Circa Waves/Young Chasers (Deluxe)/My Love.mp3": { - "title": "My Love", - "album": "Young Chasers (Deluxe)", - "artist": "Circa Waves", - "albumId": 13, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Saint Motel/My Type/My Type.mp3": { - "title": "My Type", - "album": "My Type", - "artist": "Saint Motel", - "albumId": 41, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 15, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Trolska Polska/Moss/15 - Mæt_af_dage.flac": { - "title": "Mæt af dage", - "album": "Moss", - "artist": "Trolska Polska", - "albumId": 63, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 10, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 33 Nadav Cohen - Floating with you.flac": { - "title": "Nadav Cohen - Floating with you", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Kooks/Inside In/Naive.mp3": { - "title": "Naive", - "album": "Inside In / Inside Out (Deluxe)", - "artist": "The Kooks", - "albumId": 58, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/DNCE/DNCE/Naked.mp3": { - "title": "Naked", - "album": "DNCE", - "artist": "DNCE", - "albumId": 9, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/17a - Natural Light.mp3": { - "title": "Natural Light", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/17b - Natural Light [funnel].mp3": { - "title": "Natural Light [funnel]", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Navigating Home.mp3": { - "title": "Navigating Home", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Trouble Notes/Liberty Awaits/The Trouble Notes - Liberty Awaits - 02 Never Dream Alone.flac": { - "title": "Never Dream Alone", - "album": "Liberty Awaits", - "artist": "The Trouble Notes", - "albumId": 59, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 7, - "timeAdded": 1735000 - }, - "/storage/emulated/0/Music/The Trouble Notes/Liberty Awaits/The Trouble Notes - Liberty Awaits - 12 Never Dream Alone feat. La Zerega.flac": { - "title": "Never Dream Alone feat. La Zerega", - "album": "Liberty Awaits", - "artist": "The Trouble Notes", - "albumId": 59, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 8, - "timeAdded": 1735000 - }, - "/storage/emulated/0/Music/The Score/ATLAS/Never Going Back.mp3": { - "title": "Never Going Back", - "album": "ATLAS", - "artist": "The Score", - "albumId": 57, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/KYGO/Kids in Love/01 - Never Let You Go.flac": { - "title": "Never Let You Go", - "album": "Kids In Love", - "artist": "KYGO", - "albumId": 27, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 18, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pat Razket/Hymns From The Abys/11 - Never_Look_Back.flac": { - "title": "Never Look Back", - "album": "Hymns from the Abyss", - "artist": "Pat Razket", - "albumId": 33, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 20, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 26 New Heights.flac": { - "title": "New Heights", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Handsome Poets/Sky on Fire/New Life.mp3": { - "title": "New Life", - "album": "Sky on Fire", - "artist": "Handsome Poets", - "albumId": 15, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Leaf/Life's A Beach/New Song.mp3": { - "title": "New Song", - "album": "Life's A Beach", - "artist": "Leaf", - "albumId": 28, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Chef'Special/Amigo/New Start.mp3": { - "title": "New Start", - "album": "Amigo", - "artist": "Chef'Special", - "albumId": 10, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 10, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Tim McMorris/Alive/New Year's Song.mp3": { - "title": "New Year's Song", - "album": "Alive", - "artist": "Tim McMorris", - "albumId": 61, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Two Door Cinema Club/Beacon (Special Edition)/Next Year.mp3": { - "title": "Next Year", - "album": "Beacon (Special Edition)", - "artist": "Two Door Cinema Club", - "albumId": 69, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Chef'Special/Amigo/Nicotine.mp3": { - "title": "Nicotine", - "album": "Amigo", - "artist": "Chef'Special", - "albumId": 10, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pat Razket/Hymns From The Abys/10 - Night_of_O’Malley.flac": { - "title": "Night of O’Malley", - "album": "Hymns from the Abyss", - "artist": "Pat Razket", - "albumId": 33, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 16, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 25 Nitewalk - Prismatic Waves.flac": { - "title": "Nitewalk - Prismatic Waves", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/MIKA/No Place In Heaven (Special Edition)/No Place In Heaven.mp3": { - "title": "No Place In Heaven", - "album": "No Place In Heaven (Special Edition)", - "artist": "MIKA", - "albumId": 31, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 01 No Spirit x Casiio - hide and seek.flac": { - "title": "No Spirit x Casiio - hide and seek", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Walk Off The Earth/R.E.V.O/No Ulterior Motives.mp3": { - "title": "No Ulterior Motives", - "album": "R.E.V.O.", - "artist": "Walk Off The Earth", - "albumId": 71, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 10, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Arctic Monkeys/AM/No. 1 Party Anthem.mp3": { - "title": "No. 1 Party Anthem", - "album": "AM", - "artist": "Arctic Monkeys", - "albumId": 5, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Beth McCarthy/IDK How To Talk To Girls/Not That Deep - Beth Mccarthy.mp3": { - "title": "Not That Deep", - "album": "IDK How To Talk To Girls", - "artist": "Beth Mccarthy", - "albumId": 2, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 9, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Milkbar/Monday Club/Not Today.mp3": { - "title": "Not Today", - "album": "Monday Club", - "artist": "Milkbar", - "albumId": 32, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Incredible/Nothing left to break.mp3": { - "title": "Nothing left to break", - "album": "Incredible", - "artist": "Ilse DeLange", - "albumId": 25, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 9, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Trolska Polska/Moss/08 - Nyføding.flac": { - "title": "Nyføding", - "album": "Moss", - "artist": "Trolska Polska", - "albumId": 63, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 17, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Ilse DeLange/OK.mp3": { - "title": "OK", - "album": "Ilse DeLange", - "artist": "Ilse DeLange", - "albumId": 24, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Ilse DeLange/OK (Acoustic).mp3": { - "title": "OK (Acoustic)", - "album": "Ilse DeLange", - "artist": "Ilse DeLange", - "albumId": 24, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/15a - Obscuration.mp3": { - "title": "Obscuration", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 3, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/15b - Obscuration [funnel].mp3": { - "title": "Obscuration [funnel]", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/MIKA/No Place In Heaven (Special Edition)/Oh Girl You’re The Devil.mp3": { - "title": "Oh Girl You're The Devil", - "album": "No Place In Heaven (Special Edition)", - "artist": "MIKA", - "albumId": 31, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1738134000 - }, - "/storage/emulated/0/Music/Leaf/Life's A Beach/Oh No No No.mp3": { - "title": "Oh No No No", - "album": "Life's A Beach", - "artist": "Leaf", - "albumId": 28, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Build Songs/Olivier.flac": { - "title": "Olivier", - "album": "Build Tracks", - "artist": "Wintergatan", - "albumId": 67, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 10, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pat Razket/Hymns From The Abys/04 - Ol’_Samwell.flac": { - "title": "Ol’ Samwell", - "album": "Hymns from the Abyss", - "artist": "Pat Razket", - "albumId": 33, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 16, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Build Songs/Ondophone Halloween Song.flac": { - "title": "Ondophone Halloween Song", - "album": "Build Tracks", - "artist": "Wintergatan", - "albumId": 67, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 12, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Arctic Monkeys/AM/One For The Road.mp3": { - "title": "One For The Road", - "album": "AM", - "artist": "Arctic Monkeys", - "albumId": 5, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Jazz Emu/Digital Spool/Jazz Emu - Digital Spool - 11 One Of The Good Ones.flac": { - "title": "One Of The Good Ones", - "album": "Digital Spool", - "artist": "Jazz Emu", - "albumId": 26, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Score/ATLAS/Only One.mp3": { - "title": "Only One", - "album": "ATLAS", - "artist": "The Score", - "albumId": 57, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Only an Act of True Love.mp3": { - "title": "Only an Act of True Love", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Onward and Upward.mp3": { - "title": "Onward and Upward", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 3, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 0, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Kooks/Inside In/Ooh La.mp3": { - "title": "Ooh La", - "album": "Inside In / Inside Out (Deluxe)", - "artist": "The Kooks", - "albumId": 58, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/09 - Out Of Order.mp3": { - "title": "Out Of Order", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 06 Out of This World (Co-Produced by SuperVision).flac": { - "title": "Out of This World (Co-Produced by SuperVision)", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Samsung/Over_the_Horizon.mp3": { - "title": "Over the Horizon", - "album": "Brand Music 2021", - "artist": "Samsung", - "albumId": 34, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Tim McMorris/I'd Choose You Again/Overwhelmed.mp3": { - "title": "Overwhelmed", - "album": "I'd Choose You Again", - "artist": "Tim McMorris", - "albumId": 60, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Wintergatan/09 Paradis.flac": { - "title": "Paradis", - "album": "Wintergatan", - "artist": "Wintergatan", - "albumId": 66, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 19, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/DNCE/DNCE/Pay My Rent.mp3": { - "title": "Pay My Rent", - "album": "DNCE", - "artist": "DNCE", - "albumId": 9, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Trouble Notes/Liberty Awaits/The Trouble Notes - Liberty Awaits - 04 Pearl d'Alsace.flac": { - "title": "Pearl d'Alsace", - "album": "Liberty Awaits", - "artist": "The Trouble Notes", - "albumId": 59, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 5, - "timeAdded": 1735000 - }, - "/storage/emulated/0/Music/Will and The People/Whistleblower/Penny Eyes.mp3": { - "title": "Penny Eyes", - "album": "Whistleblower", - "artist": "Will and The People", - "albumId": 70, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/speelklok/07 Perlee Demonstration Organ.flac": { - "title": "Perlee Demonstration Organ", - "album": "Speelklok", - "artist": "Wintergatan", - "albumId": 68, - "blockLevel": 1, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/KYGO/Kids in Love/07 - Permanent.flac": { - "title": "Permanent", - "album": "Kids In Love", - "artist": "KYGO", - "albumId": 27, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 16, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/speelklok/05 Philipps Paganini Orchestrion - -Slavonic Dance Nr 6-.flac": { - "title": "Philipps Paganini Orchestrion - -Slavonic Dance Nr 6-", - "album": "Speelklok", - "artist": "Wintergatan", - "albumId": 68, - "blockLevel": 2, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Billy Joel/Piano Man/Piano Man.mp3": { - "title": "Piano Man", - "album": "Piano Man", - "artist": "Billy Joel", - "albumId": 0, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Will and The People/Whistleblower/Plasters.mp3": { - "title": "Plasters", - "album": "Whistleblower", - "artist": "Will and The People", - "albumId": 70, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 13 Please.flac": { - "title": "Please", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Go Back To The Zoo/Shake A Wave/Please Don’t Leave Me.mp3": { - "title": "Please Don't Leave Me", - "album": "Shake A Wave", - "artist": "Go Back To The Zoo", - "albumId": 18, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1738134000 - }, - "/storage/emulated/0/Music/Edward Sharpe and the Magnetic Zeros/Edward Sharpe & The Magnetic Zeros/Please!.mp3": { - "title": "Please!", - "album": "Edward Sharpe & The Magnetic Zeros", - "artist": "Edward Sharpe and the Magnetic Zeros", - "albumId": 21, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Good Habits/Quater Live/12 - Pointlessly.flac": { - "title": "Pointlessly", - "album": "Quater Live", - "artist": "Good Habits", - "albumId": 22, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/speelklok/03 Polyphon Disc Changing Music Box - -Washington Post-.flac": { - "title": "Polyphon Disc Changing Music Box - -Washington Post-", - "album": "Speelklok", - "artist": "Wintergatan", - "albumId": 68, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/speelklok/15 Porter Music Box - -Radetzkymars-.flac": { - "title": "Porter Music Box - -Radetzkymars-", - "album": "Speelklok", - "artist": "Wintergatan", - "albumId": 68, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The 1975/The 1975/Pressure.mp3": { - "title": "Pressure", - "album": "The 1975", - "artist": "The 1975", - "albumId": 55, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pitou/I Fall Asleep So Fast/Problems.mp3": { - "title": "Problems", - "album": "I Fall Asleep So Fast", - "artist": "Pitou", - "albumId": 38, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 10, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Jazz Emu/Digital Spool/Jazz Emu - Digital Spool - 01 Prologue.flac": { - "title": "Prologue", - "album": "Digital Spool", - "artist": "Jazz Emu", - "albumId": 26, - "blockLevel": 3, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Prologue.mp3": { - "title": "Prologue", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wolves Dressed in Sheep/Varykino/Protagonist.mp3": { - "title": "Protagonist", - "album": "Varykino", - "artist": "Wolves Dressed in Sheep", - "albumId": 73, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 12, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Build Songs/Prototype.flac": { - "title": "Prototype", - "album": "Build Tracks", - "artist": "Wintergatan", - "albumId": 67, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 11, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Build Songs/Provence No Intro.flac": { - "title": "Provence No Intro", - "album": "Build Tracks", - "artist": "Wintergatan", - "albumId": 67, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 11, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Build Songs/Provence With Intro.flac": { - "title": "Provence With Intro", - "album": "Build Tracks", - "artist": "Wintergatan", - "albumId": 67, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 14, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 14 Purrple Cat - Building Dreams.flac": { - "title": "Purrple Cat - Building Dreams", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Incredible/Puzzle Me.mp3": { - "title": "Puzzle Me", - "album": "Incredible", - "artist": "Ilse DeLange", - "albumId": 25, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Two Door Cinema Club/Beacon (Special Edition)/Pyramid.mp3": { - "title": "Pyramid", - "album": "Beacon (Special Edition)", - "artist": "Two Door Cinema Club", - "albumId": 69, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Walk Off The Earth/R.E.V.O/REVO.mp3": { - "title": "REVO", - "album": "R.E.V.O.", - "artist": "Walk Off The Earth", - "albumId": 71, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Russkaja/Energia/Russkaja - Energia! - 03 Radost Moja.flac": { - "title": "Radost Moja", - "album": "Energia!", - "artist": "Russkaja", - "albumId": 46, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 07 Raimu - Opening the Box.flac": { - "title": "Raimu - Opening the Box", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Walk Off The Earth/R.E.V.O/Red Hands.mp3": { - "title": "Red Hands", - "album": "R.E.V.O.", - "artist": "Walk Off The Earth", - "albumId": 71, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Reindeer(s) Are Better Than People.mp3": { - "title": "Reindeer(s) Are Better Than People", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 9, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 22 Remember (Co-Produced by Derek VanScoten).flac": { - "title": "Remember (Co-Produced by Derek VanScoten)", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Edward Sharpe and the Magnetic Zeros/Edward Sharpe & The Magnetic Zeros/Remember To Remember.mp3": { - "title": "Remember To Remember", - "album": "Edward Sharpe & The Magnetic Zeros", - "artist": "Edward Sharpe and the Magnetic Zeros", - "albumId": 21, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Return to Arendelle.mp3": { - "title": "Return to Arendelle", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Score/ATLAS/Revolution.mp3": { - "title": "Revolution", - "album": "ATLAS", - "artist": "The Score", - "albumId": 57, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/DI-RECT/Rolling With The Punches/Ricochet.mp3": { - "title": "Ricochet", - "album": "Rolling With The Punches", - "artist": "DI-RECT", - "albumId": 11, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Ilse DeLange/Right With You.mp3": { - "title": "Right With You", - "album": "Ilse DeLange", - "artist": "Ilse DeLange", - "albumId": 24, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The 1975/The 1975/Robbers.mp3": { - "title": "Robbers", - "album": "The 1975", - "artist": "The 1975", - "albumId": 55, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/DI-RECT/Rolling With The Punches/Rockstar.mp3": { - "title": "Rockstar", - "album": "Rolling With The Punches", - "artist": "DI-RECT", - "albumId": 11, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Royal Pursuit.mp3": { - "title": "Royal Pursuit", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Trolska Polska/Moss/03 - Rumpenisserne.flac": { - "title": "Rumpenisserne", - "album": "Moss", - "artist": "Trolska Polska", - "albumId": 63, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 21, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Ilse DeLange/Runaway.mp3": { - "title": "Runaway", - "album": "Ilse DeLange", - "artist": "Ilse DeLange", - "albumId": 24, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Ilse DeLange/Runaway (Acoustic).mp3": { - "title": "Runaway (Acoustic)", - "album": "Ilse DeLange", - "artist": "Ilse DeLange", - "albumId": 24, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Good Habits/Rinning up that hill/Running Up That Hill (Cover; original Kate Bush).flac": { - "title": "Running Up That Hill (Cover; original Kate Bush)", - "album": "Running Up That Hill", - "artist": "Good Habits", - "albumId": 23, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 23, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 31 S N U G - Layers.flac": { - "title": "S N U G - Layers", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Sails to Te Fiti.mp3": { - "title": "Sails to Te Fiti", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Trouble Notes/Liberty Awaits/The Trouble Notes - Liberty Awaits - 06 Sands of Time.flac": { - "title": "Sands of Time", - "album": "Liberty Awaits", - "artist": "The Trouble Notes", - "albumId": 59, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 10, - "timeAdded": 1735000 - }, - "/storage/emulated/0/Music/Wintergatan/Build Songs/Sandviken Stradivarius.flac": { - "title": "Sandviken Stradivarius", - "album": "Build Tracks", - "artist": "Wintergatan", - "albumId": 67, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 15, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Janne Schra/Ponzo/Scare Me.mp3": { - "title": "Scare Me", - "album": "Ponzo", - "artist": "Janne Schra", - "albumId": 20, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 15, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Handsome Poets/Sky on Fire/Scheveningen.mp3": { - "title": "Scheveningen", - "album": "Sky on Fire", - "artist": "Handsome Poets", - "albumId": 15, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/speelklok/04 Schuyt Dance Organ - -Marble Machine-.flac": { - "title": "Schuyt Dance Organ - -Marble Machine-", - "album": "Speelklok", - "artist": "Wintergatan", - "albumId": 68, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Kooks/Inside In/Seaside.mp3": { - "title": "Seaside", - "album": "Inside In / Inside Out (Deluxe)", - "artist": "The Kooks", - "albumId": 58, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Go Back To The Zoo/Shake A Wave/Secret.mp3": { - "title": "Secret", - "album": "Shake A Wave", - "artist": "Go Back To The Zoo", - "albumId": 18, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Kooks/Inside In/See The World.mp3": { - "title": "See The World", - "album": "Inside In / Inside Out (Deluxe)", - "artist": "The Kooks", - "albumId": 58, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Two Door Cinema Club/Beacon (Special Edition)/Settle.mp3": { - "title": "Settle", - "album": "Beacon (Special Edition)", - "artist": "Two Door Cinema Club", - "albumId": 69, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The 1975/The 1975/Settle Down.mp3": { - "title": "Settle Down", - "album": "The 1975", - "artist": "The 1975", - "albumId": 55, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 0, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The 1975/The 1975/Sex.mp3": { - "title": "Sex", - "album": "The 1975", - "artist": "The 1975", - "albumId": 55, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Walk Off The Earth/R.E.V.O/Shake.mp3": { - "title": "Shake", - "album": "R.E.V.O.", - "artist": "Walk Off The Earth", - "albumId": 71, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 15, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Score/ATLAS/Shakedown.mp3": { - "title": "Shakedown", - "album": "ATLAS", - "artist": "The Score", - "albumId": 57, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Will and The People/Whistleblower/Shaky Ground.mp3": { - "title": "Shaky Ground", - "album": "Whistleblower", - "artist": "Will and The People", - "albumId": 70, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Tim McMorris/Alive/Shape the World.mp3": { - "title": "Shape the World", - "album": "Alive", - "artist": "Tim McMorris", - "albumId": 61, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Kooks/Inside In/She Moves In Her Own Way.mp3": { - "title": "She Moves In Her Own Way", - "album": "Inside In / Inside Out (Deluxe)", - "artist": "The Kooks", - "albumId": 58, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The 1975/The 1975/She Way Out.mp3": { - "title": "She Way Out", - "album": "The 1975", - "artist": "The 1975", - "albumId": 55, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Tim McMorris/Alive/She's Fire Walking.mp3": { - "title": "She's Fire Walking", - "album": "Alive", - "artist": "Tim McMorris", - "albumId": 61, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Beth McCarthy/IDK How To Talk To Girls/She’s Pretty - Beth Mccarthy.mp3": { - "title": "She's Pretty", - "album": "IDK How To Talk To Girls", - "artist": "Beth Mccarthy", - "albumId": 2, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 8, - "timeAdded": 1738134000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Shiny.mp3": { - "title": "Shiny", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Shiny Heart.mp3": { - "title": "Shiny Heart", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 3, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Janne Schra/Ponzo/Ship.mp3": { - "title": "Ship", - "album": "Ponzo", - "artist": "Janne Schra", - "albumId": 20, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 9, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pat Razket/Hymns From The Abys/06 - Ship_of_the_Free.flac": { - "title": "Ship of the Free", - "album": "Hymns from the Abyss", - "artist": "Pat Razket", - "albumId": 33, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 16, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Jazz Emu/Digital Spool/Jazz Emu - Digital Spool - 03 Shneeky Phase.flac": { - "title": "Shneeky Phase", - "album": "Digital Spool", - "artist": "Jazz Emu", - "albumId": 26, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Circa Waves/Young Chasers (Deluxe)/Shoot The Sky.mp3": { - "title": "Shoot The Sky", - "album": "Young Chasers (Deluxe)", - "artist": "Circa Waves", - "albumId": 13, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 9, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Red Hot Chili Peppers/The Getaway/Sick Love.mp3": { - "title": "Sick Love", - "album": "The Getaway", - "artist": "Red Hot Chili Peppers", - "albumId": 39, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Casey Abrams/Casey Abrams/Simple Life.mp3": { - "title": "Simple Life", - "album": "Casey Abrams", - "artist": "Casey Abrams", - "albumId": 7, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Handsome Poets/Sky on Fire/Sing for You.mp3": { - "title": "Sing for You", - "album": "Sky on Fire", - "artist": "Handsome Poets", - "albumId": 15, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Trolska Polska/Moss/02 - Sinkadusen.flac": { - "title": "Sinkadusen", - "album": "Moss", - "artist": "Trolska Polska", - "albumId": 63, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 19, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Milkbar/Monday Club/Skinny Jeans.mp3": { - "title": "Skinny Jeans", - "album": "Monday Club", - "artist": "Milkbar", - "albumId": 32, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/20a - Skototropism.mp3": { - "title": "Skototropism", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/20b - Skototropism [funnel].mp3": { - "title": "Skototropism [funnel]", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 18 Sky City.flac": { - "title": "Sky City", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Handsome Poets/Sky on Fire/Sky on Fire.mp3": { - "title": "Sky on Fire", - "album": "Sky on Fire", - "artist": "Handsome Poets", - "albumId": 15, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Two Door Cinema Club/Beacon (Special Edition)/Sleep Alone.mp3": { - "title": "Sleep Alone", - "album": "Beacon (Special Edition)", - "artist": "Two Door Cinema Club", - "albumId": 69, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Wintergatan/04 Slottskogen Disc Golf Club.flac": { - "title": "Slottskogen Disc Golf Club", - "album": "Wintergatan", - "artist": "Wintergatan", - "albumId": 66, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 16, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Arctic Monkeys/AM/Snap Out Of It.mp3": { - "title": "Snap Out Of It", - "album": "AM", - "artist": "Arctic Monkeys", - "albumId": 5, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Tim McMorris/I'd Choose You Again/So Alive.mp3": { - "title": "So Alive", - "album": "I'd Choose You Again", - "artist": "Tim McMorris", - "albumId": 60, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Incredible/So Incredible.mp3": { - "title": "So Incredible", - "album": "Incredible", - "artist": "Ilse DeLange", - "albumId": 25, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Circa Waves/Young Chasers (Deluxe)/So Long.mp3": { - "title": "So Long", - "album": "Young Chasers (Deluxe)", - "artist": "Circa Waves", - "albumId": 13, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 9, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Kooks/Inside In/Sofa Song.mp3": { - "title": "Sofa Song", - "album": "Inside In / Inside Out (Deluxe)", - "artist": "The Kooks", - "albumId": 58, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 08 Solar Overdrive (Co-Produced by Derek VanScoten).flac": { - "title": "Solar Overdrive (Co-Produced by Derek VanScoten)", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Some People Are Worth Melting For.mp3": { - "title": "Some People Are Worth Melting For", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Go Back To The Zoo/Shake A Wave/Somebody Else.mp3": { - "title": "Somebody Else", - "album": "Shake A Wave", - "artist": "Go Back To The Zoo", - "albumId": 18, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Walk Off The Earth/R.E.V.O/Somebody That I Used to Know.mp3": { - "title": "Somebody That I Used to Know", - "album": "R.E.V.O.", - "artist": "Walk Off The Earth", - "albumId": 71, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Two Door Cinema Club/Beacon (Special Edition)/Someday.mp3": { - "title": "Someday", - "album": "Beacon (Special Edition)", - "artist": "Two Door Cinema Club", - "albumId": 69, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Incredible/Something amazing.mp3": { - "title": "Something amazing", - "album": "Incredible", - "artist": "Ilse DeLange", - "albumId": 25, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Walk Off The Earth/R.E.V.O/Sometimes.mp3": { - "title": "Sometimes", - "album": "R.E.V.O.", - "artist": "Walk Off The Earth", - "albumId": 71, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Wintergatan/01 SommarfЖgel.flac": { - "title": "SommarfЖgel", - "album": "Wintergatan", - "artist": "Wintergatan", - "albumId": 66, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 21, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Singles/SommarfЖgel Music Box Version.flac": { - "title": "SommarfЖgel Music Box Version", - "album": "Singles", - "artist": "Wintergatan", - "albumId": 65, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 23, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Leaf/Life's A Beach/Song For The Restless.mp3": { - "title": "Song For The Restless", - "album": "Life's A Beach", - "artist": "Leaf", - "albumId": 28, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Sorcery.mp3": { - "title": "Sorcery", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Russkaja/Energia/Russkaja - Energia! - 12 Sorry.flac": { - "title": "Sorry", - "album": "Energia!", - "artist": "Russkaja", - "albumId": 46, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Good Habits/Quater Live/05 - Space Buns, Hiccups (fr. Alex Garden).flac": { - "title": "Space Buns / Hiccups (fr. Alex Garden)", - "album": "Quater Live", - "artist": "Good Habits", - "albumId": 22, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 24, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Walk Off The Earth/R.E.V.O/Speeches.mp3": { - "title": "Speeches", - "album": "R.E.V.O.", - "artist": "Walk Off The Earth", - "albumId": 71, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Trolska Polska/Moss/07 - Spirrevippen_&_Grimlingen.flac": { - "title": "Spirrevippen & Grimlingen", - "album": "Moss", - "artist": "Trolska Polska", - "albumId": 63, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 21, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Two Door Cinema Club/Beacon (Special Edition)/Spring.mp3": { - "title": "Spring", - "album": "Beacon (Special Edition)", - "artist": "Two Door Cinema Club", - "albumId": 69, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Handsome Poets/2015/Stardust.mp3": { - "title": "Stardust", - "album": "2015", - "artist": "Handsome Poets", - "albumId": 14, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/KYGO/Kids in Love/09 - Stargazing.flac": { - "title": "Stargazing", - "album": "Kids In Love", - "artist": "KYGO", - "albumId": 27, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 22, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/MIKA/No Place In Heaven (Special Edition)/Staring At The Sun.mp3": { - "title": "Staring At The Sun", - "album": "No Place In Heaven (Special Edition)", - "artist": "MIKA", - "albumId": 31, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Wintergatan/07 Starmachine2000.flac": { - "title": "Starmachine2000", - "album": "Wintergatan", - "artist": "Wintergatan", - "albumId": 66, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 18, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pitou/I Fall Asleep So Fast/Stay.mp3": { - "title": "Stay", - "album": "I Fall Asleep So Fast", - "artist": "Pitou", - "albumId": 38, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 10, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Incredible/Stay with me.mp3": { - "title": "Stay with me", - "album": "Incredible", - "artist": "Ilse DeLange", - "albumId": 25, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Elemental/Steal the Show - LoFi.flac": { - "title": "Steal the Show", - "album": "Elemental", - "artist": "Pixar", - "albumId": 35, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 0, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/speelklok/10 Steinway Duo-Art Self Playing Piano -.flac": { - "title": "Steinway Duo-Art Self Playing Piano -", - "album": "Speelklok", - "artist": "Wintergatan", - "albumId": 68, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Ilse DeLange/Still.mp3": { - "title": "Still", - "album": "Ilse DeLange", - "artist": "Ilse DeLange", - "albumId": 24, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 19 Still Dreaming.flac": { - "title": "Still Dreaming", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 0, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Jazz Emu/Digital Spool/Jazz Emu - Digital Spool - 02 Still Waiting.flac": { - "title": "Still Waiting", - "album": "Digital Spool", - "artist": "Jazz Emu", - "albumId": 26, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Score/ATLAS/Strange.mp3": { - "title": "Strange", - "album": "ATLAS", - "artist": "The Score", - "albumId": 57, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/KYGO/Kids in Love/04 - Stranger Things.flac": { - "title": "Stranger Things", - "album": "Kids In Love", - "artist": "KYGO", - "albumId": 27, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 20, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Handsome Poets/Sky on Fire/Strangers.mp3": { - "title": "Strangers", - "album": "Sky on Fire", - "artist": "Handsome Poets", - "albumId": 15, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Casey Abrams/Casey Abrams/Stuck In London.mp3": { - "title": "Stuck In London", - "album": "Casey Abrams", - "artist": "Casey Abrams", - "albumId": 7, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Circa Waves/Young Chasers (Deluxe)/Stuck In My Teeth.mp3": { - "title": "Stuck In My Teeth", - "album": "Young Chasers (Deluxe)", - "artist": "Circa Waves", - "albumId": 13, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 12, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Go Back To The Zoo/Shake A Wave/Summer Ends.mp3": { - "title": "Summer Ends", - "album": "Shake A Wave", - "artist": "Go Back To The Zoo", - "albumId": 18, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Walk Off The Earth/R.E.V.O/Summer Vibe.mp3": { - "title": "Summer Vibe", - "album": "R.E.V.O.", - "artist": "Walk Off The Earth", - "albumId": 71, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Summit Siege.mp3": { - "title": "Summit Siege", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 3, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 0, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Two Door Cinema Club/Beacon (Special Edition)/Sun.mp3": { - "title": "Sun", - "album": "Beacon (Special Edition)", - "artist": "Two Door Cinema Club", - "albumId": 69, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Ilse DeLange/Sun & Shadow.mp3": { - "title": "Sun & Shadow", - "album": "Ilse DeLange", - "artist": "Ilse DeLange", - "albumId": 24, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Good Habits/Quater Live/02 - Sunday (ft. Kate Griffin).flac": { - "title": "Sunday (ft. Kate Griffin)", - "album": "Quater Live", - "artist": "Good Habits", - "albumId": 22, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 26, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/KYGO/Kids in Love/02 - Sunrise.flac": { - "title": "Sunrise", - "album": "Kids In Love", - "artist": "KYGO", - "albumId": 27, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 13, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Tim McMorris/Alive/Superhero.mp3": { - "title": "Superhero", - "album": "Alive", - "artist": "Tim McMorris", - "albumId": 61, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Tim McMorris/Alive/Superhero (Comic Con- Cosplay Music video).mp3": { - "title": "Superhero (Comic Con- Cosplay Music video)", - "album": "Alive", - "artist": "Tim McMorris", - "albumId": 61, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Russkaja/Energia/Russkaja - Energia! - 08 Surrealnaja.flac": { - "title": "Surrealnaja", - "album": "Energia!", - "artist": "Russkaja", - "albumId": 46, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Wanderer 4 Love/Life Will Find A Way/Sweet surrender.flac": { - "title": "Sweet surrender", - "album": "Life Will Find A Way", - "artist": "The Wanderer", - "albumId": 62, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 0, - "timeAdded": 1738134000 - }, - "/storage/emulated/0/Music/Dotan/7 Layers/Swim To You.mp3": { - "title": "Swim To You", - "album": "7 Layers", - "artist": "Dotan", - "albumId": 16, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/23 - System Corruption.mp3": { - "title": "System Corruption", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/30 - System Corruption [alternate].mp3": { - "title": "System Corruption [alternate]", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Circa Waves/Young Chasers (Deluxe)/T-Shirt Weather.mp3": { - "title": "T-Shirt Weather", - "album": "Young Chasers (Deluxe)", - "artist": "Circa Waves", - "albumId": 13, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 14, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Milkbar/Monday Club/TV Show.mp3": { - "title": "TV Show", - "album": "Monday Club", - "artist": "Milkbar", - "albumId": 32, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 9, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 05 Take All You Want To.flac": { - "title": "Take All You Want To", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Tala Returns.mp3": { - "title": "Tala Returns", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Tala's Deathbed.mp3": { - "title": "Tala's Deathbed", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/MIKA/No Place In Heaven (Special Edition)/Talk About You.mp3": { - "title": "Talk About You", - "album": "No Place In Heaven (Special Edition)", - "artist": "MIKA", - "albumId": 31, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The 1975/The 1975/Talk!.mp3": { - "title": "Talk!", - "album": "The 1975", - "artist": "The 1975", - "albumId": 55, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Circa Waves/Young Chasers (Deluxe)/Talking Out Loud.mp3": { - "title": "Talking Out Loud", - "album": "Young Chasers (Deluxe)", - "artist": "Circa Waves", - "albumId": 13, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 15, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Tamatoa's Lair.mp3": { - "title": "Tamatoa's Lair", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 2, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/MIKA/No Place In Heaven (Special Edition)/Tant Que J'ai Le Soleil.mp3": { - "title": "Tant Que J'ai Le Soleil", - "album": "No Place In Heaven (Special Edition)", - "artist": "MIKA", - "albumId": 31, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Russkaja/Energia/Russkaja - Energia! - 11 Tanzi Tanzi.flac": { - "title": "Tanzi Tanzi", - "album": "Energia!", - "artist": "Russkaja", - "albumId": 46, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Among the Saints/When We Were Young!/04 Tarantella.flac": { - "title": "Tarantella", - "album": "When We Were Young!", - "artist": "Among the Saints", - "albumId": 4, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 11, - "timeAdded": 1726000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Te Fiti Restored.mp3": { - "title": "Te Fiti Restored", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Te Ka Attacks.mp3": { - "title": "Te Ka Attacks", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 05 Team Astro - Nostalgia.flac": { - "title": "Team Astro - Nostalgia", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Among the Saints/When We Were Young!/02 Tell me Ma.flac": { - "title": "Tell me Ma", - "album": "When We Were Young!", - "artist": "Among the Saints", - "albumId": 4, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 9, - "timeAdded": 1726000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 04 Tenno - Bonsai Tree.flac": { - "title": "Tenno - Bonsai Tree", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/07 - Testing Begins.mp3": { - "title": "Testing Begins", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/19a - Testing With Nature.mp3": { - "title": "Testing With Nature", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/19b - Testing With Nature [funnel].mp3": { - "title": "Testing With Nature [funnel]", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The 1975/The 1975/The 1975.mp3": { - "title": "The 1975", - "album": "The 1975", - "artist": "The 1975", - "albumId": 55, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Trouble Notes/Liberty Awaits/The Trouble Notes - Liberty Awaits - 11 The Banjolorian.flac": { - "title": "The Banjolorian", - "album": "Liberty Awaits", - "artist": "The Trouble Notes", - "albumId": 59, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 5, - "timeAdded": 1735000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/25 - The Best The World Had To Offer.mp3": { - "title": "The Best The World Had To Offer", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pyrolysis/Alotsle/03 The Blue Tit.flac": { - "title": "The Blue Tit", - "album": "Alotsle", - "artist": "Pyrolysis", - "albumId": 43, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 25, - "timeAdded": 1726000 - }, - "/storage/emulated/0/Music/The 1975/The 1975/The City.mp3": { - "title": "The City", - "album": "The 1975", - "artist": "The 1975", - "albumId": 55, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pyrolysis/A Different Dream/08 - The Dead Will Never Die.flac": { - "title": "The Dead Will Never Die", - "album": "A Different Dream", - "artist": "Pyrolysis", - "albumId": 42, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 20, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Jazz Emu/Digital Spool/Jazz Emu - Digital Spool - 05 The Duality Of Man.flac": { - "title": "The Duality Of Man", - "album": "Digital Spool", - "artist": "Jazz Emu", - "albumId": 26, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wolves Dressed in Sheep/Varykino/The Duel.mp3": { - "title": "The Duel", - "album": "Varykino", - "artist": "Wolves Dressed in Sheep", - "albumId": 73, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 22, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Good Habits/Quater Live/04 - The Earth Has Moved (ft. Vulva Voce).flac": { - "title": "The Earth Has Moved (ft. Vulva Voce)", - "album": "Quater Live", - "artist": "Good Habits", - "albumId": 22, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 28, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wolves Dressed in Sheep/Varykino/The Future.mp3": { - "title": "The Future", - "album": "Varykino", - "artist": "Wolves Dressed in Sheep", - "albumId": 73, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 20, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Red Hot Chili Peppers/The Getaway/The Getaway.mp3": { - "title": "The Getaway", - "album": "The Getaway", - "artist": "Red Hot Chili Peppers", - "albumId": 39, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 04 The Golden Rule.flac": { - "title": "The Golden Rule", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/The Great Thaw (Vuelie Reprise).mp3": { - "title": "The Great Thaw (Vuelie Reprise)", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 3, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 0, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pat Razket/Hymns From The Abys/12 - The_Hills_of_Ubinu.flac": { - "title": "The Hills of Ubinu", - "album": "Hymns from the Abyss", - "artist": "Pat Razket", - "albumId": 33, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 17, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/The Hook.mp3": { - "title": "The Hook", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Red Hot Chili Peppers/The Getaway/The Hunter.mp3": { - "title": "The Hunter", - "album": "The Getaway", - "artist": "Red Hot Chili Peppers", - "albumId": 39, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/12b - The Junkyard Offices.mp3": { - "title": "The Junkyard Offices", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/12a - The Junkyards.mp3": { - "title": "The Junkyards", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 09 The Keep On (Co-Produced by Paul Basic).flac": { - "title": "The Keep On (Co-Produced by Paul Basic)", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Red Hot Chili Peppers/The Getaway/The Longest Wave.mp3": { - "title": "The Longest Wave", - "album": "The Getaway", - "artist": "Red Hot Chili Peppers", - "albumId": 39, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Circa Waves/Young Chasers (Deluxe)/The Luck Has Gone.mp3": { - "title": "The Luck Has Gone", - "album": "Young Chasers (Deluxe)", - "artist": "Circa Waves", - "albumId": 13, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 10, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Crystal Fighters/Everything Is My Family/The Moondog.mp3": { - "title": "The Moondog", - "album": "Everything Is My Family", - "artist": "Crystal Fighters", - "albumId": 8, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/The North Mountain.mp3": { - "title": "The North Mountain", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 3, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/The Ocean Chose You.mp3": { - "title": "The Ocean Chose You", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 9, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pat Razket/Hymns From The Abys/01 - The_Only_One_Alive.flac": { - "title": "The Only One Alive", - "album": "Hymns from the Abyss", - "artist": "Pat Razket", - "albumId": 33, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 16, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/The Return to Voyaging.mp3": { - "title": "The Return to Voyaging", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 16 The Ride.flac": { - "title": "The Ride", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Wintergatan/02 The Rocket.flac": { - "title": "The Rocket", - "album": "Wintergatan", - "artist": "Wintergatan", - "albumId": 66, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 17, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 02 The Same Disease.flac": { - "title": "The Same Disease", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/04 - The Spheres.mp3": { - "title": "The Spheres", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/The Trolls.mp3": { - "title": "The Trolls", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 12 The Wind and the Walls.flac": { - "title": "The Wind and the Walls", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Two Door Cinema Club/Beacon (Special Edition)/The World Is Watching.mp3": { - "title": "The World Is Watching", - "album": "Beacon (Special Edition)", - "artist": "Two Door Cinema Club", - "albumId": 69, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pat Razket/Hymns From The Abys/09 - The_Wreck.flac": { - "title": "The Wreck", - "album": "Hymns from the Abyss", - "artist": "Pat Razket", - "albumId": 33, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 23, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Incredible/The other side.mp3": { - "title": "The other side", - "album": "Incredible", - "artist": "Ilse DeLange", - "albumId": 25, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 11, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Among the Saints/When We Were Young!/06 Theres a Man.flac": { - "title": "There's a Man", - "album": "When We Were Young!", - "artist": "Among the Saints", - "albumId": 4, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 9, - "timeAdded": 1726000 - }, - "/storage/emulated/0/Music/Walk Off The Earth/R.E.V.O/These Times.mp3": { - "title": "These Times", - "album": "R.E.V.O.", - "artist": "Walk Off The Earth", - "albumId": 71, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 10, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Edward Sharpe and the Magnetic Zeros/Edward Sharpe & The Magnetic Zeros/They Were Wrong.mp3": { - "title": "They Were Wrong", - "album": "Edward Sharpe & The Magnetic Zeros", - "artist": "Edward Sharpe and the Magnetic Zeros", - "albumId": 21, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Edward Sharpe and the Magnetic Zeros/Edward Sharpe & The Magnetic Zeros/This Life.mp3": { - "title": "This Life", - "album": "Edward Sharpe & The Magnetic Zeros", - "artist": "Edward Sharpe and the Magnetic Zeros", - "albumId": 21, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Red Hot Chili Peppers/The Getaway/This Ticonderoga.mp3": { - "title": "This Ticonderoga", - "album": "The Getaway", - "artist": "Red Hot Chili Peppers", - "albumId": 39, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/KYGO/Kids in Love/12 - This Town.flac": { - "title": "This Town", - "album": "Kids In Love", - "artist": "KYGO", - "albumId": 27, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 22, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 26 Tibeauthetraveler - Fearless Love.flac": { - "title": "Tibeauthetraveler - Fearless Love", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Score/ATLAS/Tightrope.mp3": { - "title": "Tightrope", - "album": "ATLAS", - "artist": "The Score", - "albumId": 57, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Trouble Notes/Liberty Awaits/The Trouble Notes - Liberty Awaits - 10 Tihany Tanc.flac": { - "title": "Tihany Tanc", - "album": "Liberty Awaits", - "artist": "The Trouble Notes", - "albumId": 59, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 8, - "timeAdded": 1735000 - }, - "/storage/emulated/0/Music/The Wanderer 4 Love/Life Will Find A Way/Time.flac": { - "title": "Time (acoustic)", - "album": "Life Will Find A Way", - "artist": "The Wanderer", - "albumId": 62, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 0, - "timeAdded": 1738134000 - }, - "/storage/emulated/0/Music/The Kooks/Inside In/Time Awaits.mp3": { - "title": "Time Awaits", - "album": "Inside In / Inside Out (Deluxe)", - "artist": "The Kooks", - "albumId": 58, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/31 - Time and Time Again.mp3": { - "title": "Time and Time Again", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Ian Wiese", - "albumId": 54, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/speelklok/21 Tivoli Organ.flac": { - "title": "Tivoli Organ", - "album": "Speelklok", - "artist": "Wintergatan", - "albumId": 68, - "blockLevel": 3, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pyrolysis/A Different Dream/04 - To Find Home.flac": { - "title": "To Find Home", - "album": "A Different Dream", - "artist": "Pyrolysis", - "albumId": 42, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 18, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Toe Feiloa'i.mp3": { - "title": "Toe Feiloa'i", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Jazz Emu/Digital Spool/Jazz Emu - Digital Spool - 06 Tonally Inconsistent-!.flac": { - "title": "Tonally Inconsistent?!", - "album": "Digital Spool", - "artist": "Jazz Emu", - "albumId": 26, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Dotan/7 Layers/Tonight (Interlude).mp3": { - "title": "Tonight (Interlude)", - "album": "7 Layers", - "artist": "Dotan", - "albumId": 16, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 22 Tonion x Hoffy Beats - Pastel Memories.flac": { - "title": "Tonion x Hoffy Beats - Pastel Memories", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/DNCE/DNCE/Toothbrush.mp3": { - "title": "Toothbrush", - "album": "DNCE", - "artist": "DNCE", - "albumId": 9, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Singles/Tornado.flac": { - "title": "Tornado", - "album": "Singles", - "artist": "Wintergatan", - "albumId": 65, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 14, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/16a - Transitional Period.mp3": { - "title": "Transitional Period", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/16b - Transitional Period [funnel].mp3": { - "title": "Transitional Period [funnel]", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Treason.mp3": { - "title": "Treason", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Trolska Polska/Moss/04 - Trimletrold.flac": { - "title": "Trimletrold", - "album": "Moss", - "artist": "Trolska Polska", - "albumId": 63, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 23, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pyrolysis/A Different Dream/03 - Triplet Bay.flac": { - "title": "Triplet Bay", - "album": "A Different Dream", - "artist": "Pyrolysis", - "albumId": 42, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 22, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Trolska Polska/Moss/14 - Trollflickan.flac": { - "title": "Trollflickan", - "album": "Moss", - "artist": "Trolska Polska", - "albumId": 63, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 19, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Trolska Polska/Moss/12 - Trolls_United.flac": { - "title": "Trolls United", - "album": "Moss", - "artist": "Trolska Polska", - "albumId": 63, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 22, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/18a - Troubled Water.mp3": { - "title": "Troubled Water", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/27 - Troubled Water [Trailer Theme].mp3": { - "title": "Troubled Water [Trailer Theme]", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/18b - Troubled Water [funnel].mp3": { - "title": "Troubled Water [funnel]", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/DNCE/DNCE/Truthfully.mp3": { - "title": "Truthfully", - "album": "DNCE", - "artist": "DNCE", - "albumId": 9, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Chef'Special/Amigo/Try Again.mp3": { - "title": "Try Again", - "album": "Amigo", - "artist": "Chef'Special", - "albumId": 10, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Trouble Notes/Liberty Awaits/The Trouble Notes - Liberty Awaits - 07 Tukish Delight.flac": { - "title": "Tukish Delight", - "album": "Liberty Awaits", - "artist": "The Trouble Notes", - "albumId": 59, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 11, - "timeAdded": 1735000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Tulou Tagaloa.mp3": { - "title": "Tulou Tagaloa", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Edward Sharpe and the Magnetic Zeros/Edward Sharpe & The Magnetic Zeros/Two.mp3": { - "title": "Two", - "album": "Edward Sharpe & The Magnetic Zeros", - "artist": "Edward Sharpe and the Magnetic Zeros", - "albumId": 21, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Score/ATLAS/Unstoppable.mp3": { - "title": "Unstoppable", - "album": "ATLAS", - "artist": "The Score", - "albumId": 57, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/DNCE/DNCE/Unsweet.mp3": { - "title": "Unsweet", - "album": "DNCE", - "artist": "DNCE", - "albumId": 9, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 24 Until I'm Found.flac": { - "title": "Until I'm Found", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Wintergatan/03 Valentine.flac": { - "title": "Valentine", - "album": "Wintergatan", - "artist": "Wintergatan", - "albumId": 66, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 24, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Village Crazy Lady.mp3": { - "title": "Village Crazy Lady", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Good Habits/Quater Live/08 - Vineger (ft. Vulva Voce).flac": { - "title": "Vineger (ft. Vulva Voce)", - "album": "Quater Live", - "artist": "Good Habits", - "albumId": 22, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 13, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Ilse DeLange/Violet & Blue.mp3": { - "title": "Violet & Blue", - "album": "Ilse DeLange", - "artist": "Ilse DeLange", - "albumId": 24, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Ilse DeLange/Violet & Blue (Acoustic).mp3": { - "title": "Violet & Blue (Acoustic)", - "album": "Ilse DeLange", - "artist": "Ilse DeLange", - "albumId": 24, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 15, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Russkaja/Energia/Russkaja - Energia! - 06 Violina Mia.flac": { - "title": "Violina Mia", - "album": "Energia!", - "artist": "Russkaja", - "albumId": 46, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 10, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Voyager Tagaloa.mp3": { - "title": "Voyager Tagaloa", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Vuelie (feat_ Cantus).mp3": { - "title": "Vuelie (feat. Cantus)", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Wintergatan/06 VДstanberg.flac": { - "title": "VДstanberg", - "album": "Wintergatan", - "artist": "Wintergatan", - "albumId": 66, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 21, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 28 WYS - Build me a Shed.flac": { - "title": "WYS - Build me a Shed", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Two Door Cinema Club/Beacon (Special Edition)/Wake Up.mp3": { - "title": "Wake Up", - "album": "Beacon (Special Edition)", - "artist": "Two Door Cinema Club", - "albumId": 69, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/06 - Waking Up To Science.mp3": { - "title": "Waking Up To Science", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/28 - Waking Up To Science [menu].mp3": { - "title": "Waking Up To Science [menu]", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Wanderer 4 Love/Life Will Find A Way/Walls.flac": { - "title": "Walls", - "album": "Life Will Find A Way", - "artist": "The Wanderer", - "albumId": 62, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 0, - "timeAdded": 1738134000 - }, - "/storage/emulated/0/Music/Pyrolysis/A Different Dream/11 - Wandering Joker.flac": { - "title": "Wandering Joker", - "album": "A Different Dream", - "artist": "Pyrolysis", - "albumId": 42, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 29, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Dotan/7 Layers/Waves.mp3": { - "title": "Waves", - "album": "7 Layers", - "artist": "Dotan", - "albumId": 16, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Wayfinding.mp3": { - "title": "Wayfinding", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Crystal Fighters/Everything Is My Family/Ways I Can't Tell.mp3": { - "title": "Ways I Can't Tell", - "album": "Everything Is My Family", - "artist": "Crystal Fighters", - "albumId": 8, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/We Know the Way.mp3": { - "title": "We Know the Way", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/We Know the Way (Finale).mp3": { - "title": "We Know the Way (Finale)", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Red Hot Chili Peppers/The Getaway/We Turn Red.mp3": { - "title": "We Turn Red", - "album": "The Getaway", - "artist": "Red Hot Chili Peppers", - "albumId": 39, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/We Were So Close.mp3": { - "title": "We Were So Close", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Queen/News Of The World/We Will Rock You (Remastered).mp3": { - "title": "We Will Rock You (Remastered)", - "album": "News Of The World", - "artist": "Queen", - "albumId": 40, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 15, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Incredible/We're Alright.mp3": { - "title": "We're Alright", - "album": "Incredible", - "artist": "Ilse DeLange", - "albumId": 25, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Tim McMorris/Alive/We're Going Up.mp3": { - "title": "We're Going Up", - "album": "Alive", - "artist": "Tim McMorris", - "albumId": 61, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Wanderer 4 Love/Life Will Find A Way/We'Re all going home.flac": { - "title": "We're all going home (live)", - "album": "Life Will Find A Way", - "artist": "The Wanderer", - "albumId": 62, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 1, - "timeAdded": 1738134000 - }, - "/storage/emulated/0/Music/Go Back To The Zoo/Shake A Wave/Weekend America.mp3": { - "title": "Weekend America", - "album": "Shake A Wave", - "artist": "Go Back To The Zoo", - "albumId": 18, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/13a - Welcome To The Future.mp3": { - "title": "Welcome To The Future", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Protal Stories Mel/13b - Welcome To The Future [funnel].mp3": { - "title": "Welcome To The Future [funnel]", - "album": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan", - "albumId": 53, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Wintergatan/Build Songs/Welding The Steel Frame.flac": { - "title": "Welding The Steel Frame", - "album": "Build Tracks", - "artist": "Wintergatan", - "albumId": 67, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Beth McCarthy/IDK How To Talk To Girls/What Do You Call It_ - Beth Mccarthy.mp3": { - "title": "What Do You Call It?", - "album": "IDK How To Talk To Girls", - "artist": "Beth Mccarthy", - "albumId": 2, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 21, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Go Back To The Zoo/Shake A Wave/What If.mp3": { - "title": "What If", - "album": "Shake A Wave", - "artist": "Go Back To The Zoo", - "albumId": 18, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Edward Sharpe and the Magnetic Zeros/Edward Sharpe & The Magnetic Zeros/When You're Young.mp3": { - "title": "When You're Young", - "album": "Edward Sharpe & The Magnetic Zeros", - "artist": "Edward Sharpe and the Magnetic Zeros", - "albumId": 21, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Where You Are.mp3": { - "title": "Where You Are", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Will and The People/Whistleblower/Whistleblower.mp3": { - "title": "Whistleblower", - "album": "Whistleblower", - "artist": "Will and The People", - "albumId": 70, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Whiteout.mp3": { - "title": "Whiteout", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 1, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Score/ATLAS/Who I Am.mp3": { - "title": "Who I Am", - "album": "ATLAS", - "artist": "The Score", - "albumId": 57, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 21 Winter's End.flac": { - "title": "Winter's End", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Winter's Waltz.mp3": { - "title": "Winter's Waltz", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/DI-RECT/Rolling With The Punches/With A Little Help.mp3": { - "title": "With A Little Help", - "album": "Rolling With The Punches", - "artist": "DI-RECT", - "albumId": 11, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/KYGO/Kids in Love/05 - With You.flac": { - "title": "With You", - "album": "Kids In Love", - "artist": "KYGO", - "albumId": 27, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 19, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Frozen/Wolves.mp3": { - "title": "Wolves", - "album": "Frozen", - "artist": "Pixar", - "albumId": 36, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Leaf/Life's A Beach/Wonder Woman.mp3": { - "title": "Wonder Woman", - "album": "Life's A Beach", - "artist": "Leaf", - "albumId": 28, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Tim McMorris/Alive/Wonderful.mp3": { - "title": "Wonderful", - "album": "Alive", - "artist": "Tim McMorris", - "albumId": 61, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Michal Menert/Even If It Isn't Right/Michal Menert - Even If It Isn't Right - 10 Words Unspoken.flac": { - "title": "Words Unspoken", - "album": "Even If It Isn't Right", - "artist": "Michal Menert", - "albumId": 52, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 1, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Casey Abrams/Casey Abrams/Wore Out My Soul.mp3": { - "title": "Wore Out My Soul", - "album": "Casey Abrams", - "artist": "Casey Abrams", - "albumId": 7, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 9, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/DI-RECT/Rolling With The Punches/Wouldn't Understand It.mp3": { - "title": "Wouldn't Understand It", - "album": "Rolling With The Punches", - "artist": "DI-RECT", - "albumId": 11, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pyrolysis/Alotsle/02 Yarr.flac": { - "title": "Yarr", - "album": "Alotsle", - "artist": "Pyrolysis", - "albumId": 43, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 19, - "timeAdded": 1726000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 09 Yasumu - Cascades.flac": { - "title": "Yasumu - Cascades", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Crystal Fighters/Everything Is My Family/Yellow Sun.mp3": { - "title": "Yellow Sun", - "album": "Everything Is My Family", - "artist": "Crystal Fighters", - "albumId": 8, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Leaf/Life's A Beach/You & Her.mp3": { - "title": "You & Her", - "album": "Life's A Beach", - "artist": "Leaf", - "albumId": 28, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 4, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Janne Schra/Ponzo/You Are Still New.mp3": { - "title": "You Are Still New", - "album": "Ponzo", - "artist": "Janne Schra", - "albumId": 20, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 8, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Ilse DeLange/Ilse DeLange/You Are The Reason (Bonus Track).mp3": { - "title": "You Are The Reason (Bonus Track)", - "album": "Ilse DeLange", - "artist": "Ilse DeLange", - "albumId": 24, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/The Kooks/Inside In/You Don't Love Me.mp3": { - "title": "You Don't Love Me", - "album": "Inside In / Inside Out (Deluxe)", - "artist": "The Kooks", - "albumId": 58, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Jazz Emu/Digital Spool/Jazz Emu - Digital Spool - 04 You Would Never.flac": { - "title": "You Would Never", - "album": "Digital Spool", - "artist": "Jazz Emu", - "albumId": 26, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 9, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/You're Welcome.mp3": { - "title": "You're Welcome", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Pixar/Moana/Lin-Manuel Miranda Version].mp3": { - "title": "You're Welcome (feat. Lin-Manuel Miranda) [Jordan Fisher/Lin-Manuel Miranda Version]", - "album": "Moana", - "artist": "Pixar", - "albumId": 37, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Tim McMorris/I'd Choose You Again/You've Got My Heart.mp3": { - "title": "You've Got My Heart", - "album": "I'd Choose You Again", - "artist": "Tim McMorris", - "albumId": 60, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 1, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Florence + The Machine/A Lot of Love. a Lot of Blood/You've Got the Love.mp3": { - "title": "You've Got the Love", - "album": "A Lot of Love. a Lot of Blood", - "artist": "Florence + The Machine", - "albumId": 12, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 7, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Circa Waves/Young Chasers (Deluxe)/Young Chasers.mp3": { - "title": "Young Chasers", - "album": "Young Chasers (Deluxe)", - "artist": "Circa Waves", - "albumId": 13, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 11, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/DNCE/DNCE/Zoom.mp3": { - "title": "Zoom", - "album": "DNCE", - "artist": "DNCE", - "albumId": 9, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 2, - "playCount": 2, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 19 amies - Dreams of Dusk.flac": { - "title": "amies - Dreams of Dusk", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Bad Apple/Enhanced/bad_apple_enhanced.flac": { - "title": "bad_apple_enhanced", - "album": "Unknown Album", - "artist": "Unknown Artist", - "albumId": 3, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 6, - "timeAdded": 1732000 - }, - "/storage/emulated/0/Music/Bad Apple/Enhanced/bad_apple_enhanced_bass.mp3": { - "title": "bad_apple_enhanced_bass", - "album": "Unknown Album", - "artist": "Unknown Artist", - "albumId": 3, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1732000 - }, - "/storage/emulated/0/Music/Bad Apple/Enhanced/bad_apple_enhanced_bass.flac": { - "title": "bad_apple_enhanced_bass", - "album": "Unknown Album", - "artist": "Unknown Artist", - "albumId": 3, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1732000 - }, - "/storage/emulated/0/Music/Bad Apple/Enhanced/bad_apple_enhanced_drums.flac": { - "title": "bad_apple_enhanced_drums", - "album": "Unknown Album", - "artist": "Unknown Artist", - "albumId": 3, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1732000 - }, - "/storage/emulated/0/Music/Bad Apple/Enhanced/bad_apple_enhanced_others.flac": { - "title": "bad_apple_enhanced_others", - "album": "Unknown Album", - "artist": "Unknown Artist", - "albumId": 3, - "blockLevel": 3, - "next": false, - "previous": false, - "likeCount": 0, - "playCount": 0, - "timeAdded": 1732000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 20 brillion. x Slo Loris - Imagine.flac": { - "title": "brillion. x Slo Loris - Imagine", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 6, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 15 cxlt. - Another Daydream.flac": { - "title": "cxlt. - Another Daydream", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 21 kyu - building memories.flac": { - "title": "kyu - building memories", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 5, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 17 sleepermane x sling dilly - epsilon.flac": { - "title": "sleepermane x sling dilly - epsilon", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 3, - "timeAdded": 1722000 - }, - "/storage/emulated/0/Music/Lofi Girl/Chill beats for Lego building/Various Artists - Lofi Girl – chill beats for LEGO building - 06 xander. - Life is Short.flac": { - "title": "xander. - Life is Short", - "album": "chill beats for LEGO building", - "artist": "Lofi Girl", - "albumId": 56, - "blockLevel": 0, - "next": false, - "previous": false, - "likeCount": 3, - "playCount": 2, - "timeAdded": 1722000 - } - }, - "ALBUMS": { - "14": { - "title": "2015", - "artist": "Handsome Poets" - }, - "44": { - "title": "57TH & 9TH", - "artist": "Sting" - }, - "16": { - "title": "7 Layers", - "artist": "Dotan" - }, - "42": { - "title": "A Different Dream", - "artist": "Pyrolysis" - }, - "12": { - "title": "A Lot of Love. a Lot of Blood", - "artist": "Florence + The Machine" - }, - "5": { - "title": "AM", - "artist": "Arctic Monkeys" - }, - "57": { - "title": "ATLAS", - "artist": "The Score" - }, - "61": { - "title": "Alive", - "artist": "Tim McMorris" - }, - "43": { - "title": "Alotsle", - "artist": "Pyrolysis" - }, - "10": { - "title": "Amigo", - "artist": "Chef'Special" - }, - "69": { - "title": "Beacon (Special Edition)", - "artist": "Two Door Cinema Club" - }, - "34": { - "title": "Brand Music 2021", - "artist": "Samsung" - }, - "67": { - "title": "Build Tracks", - "artist": "Wintergatan" - }, - "47": { - "title": "Burn", - "artist": "Sugaroot" - }, - "7": { - "title": "Casey Abrams", - "artist": "Casey Abrams" - }, - "48": { - "title": "Constellation", - "artist": "Sugaroot" - }, - "9": { - "title": "DNCE", - "artist": "DNCE" - }, - "49": { - "title": "Defy", - "artist": "Sugaroot" - }, - "26": { - "title": "Digital Spool", - "artist": "Jazz Emu" - }, - "21": { - "title": "Edward Sharpe & The Magnetic Zeros", - "artist": "Edward Sharpe and the Magnetic Zeros" - }, - "35": { - "title": "Elemental", - "artist": "Pixar" - }, - "46": { - "title": "Energia!", - "artist": "Russkaja" - }, - "52": { - "title": "Even If It Isn't Right", - "artist": "Michal Menert" - }, - "8": { - "title": "Everything Is My Family", - "artist": "Crystal Fighters" - }, - "45": { - "title": "Eye Of The Tiger", - "artist": "Survivor" - }, - "50": { - "title": "Finish Me", - "artist": "Sugaroot" - }, - "36": { - "title": "Frozen", - "artist": "Pixar" - }, - "1": { - "title": "Good Bi", - "artist": "Beth Mccarthy" - }, - "33": { - "title": "Hymns from the Abyss", - "artist": "Pat Razket" - }, - "38": { - "title": "I Fall Asleep So Fast", - "artist": "Pitou" - }, - "60": { - "title": "I'd Choose You Again", - "artist": "Tim McMorris" - }, - "2": { - "title": "IDK How To Talk To Girls", - "artist": "Beth Mccarthy" - }, - "24": { - "title": "Ilse DeLange", - "artist": "Ilse DeLange" - }, - "25": { - "title": "Incredible", - "artist": "Ilse DeLange" - }, - "58": { - "title": "Inside In / Inside Out (Deluxe)", - "artist": "The Kooks" - }, - "30": { - "title": "Katchi (Ofenbach vs. Nick Waterhouse)", - "artist": "Ofenbach vs. Nick Waterhouse" - }, - "27": { - "title": "Kids In Love", - "artist": "KYGO" - }, - "59": { - "title": "Liberty Awaits", - "artist": "The Trouble Notes" - }, - "62": { - "title": "Life Will Find A Way", - "artist": "The Wanderer" - }, - "28": { - "title": "Life's A Beach", - "artist": "Leaf" - }, - "6": { - "title": "Love Stuff", - "artist": "Elle King" - }, - "17": { - "title": "Mama", - "artist": "Jonas Blue" - }, - "64": { - "title": "Marble Machine", - "artist": "Wintergatan" - }, - "19": { - "title": "Mi Sangre (International Version)", - "artist": "Juanes" - }, - "37": { - "title": "Moana", - "artist": "Pixar" - }, - "32": { - "title": "Monday Club", - "artist": "Milkbar" - }, - "51": { - "title": "More", - "artist": "Sugaroot" - }, - "63": { - "title": "Moss", - "artist": "Trolska Polska" - }, - "41": { - "title": "My Type", - "artist": "Saint Motel" - }, - "40": { - "title": "News Of The World", - "artist": "Queen" - }, - "31": { - "title": "No Place In Heaven (Special Edition)", - "artist": "MIKA" - }, - "0": { - "title": "Piano Man", - "artist": "Billy Joel" - }, - "20": { - "title": "Ponzo", - "artist": "Janne Schra" - }, - "53": { - "title": "Portal Stories: Mel Soundtrack", - "artist": "Harry Callaghan" - }, - "54": { - "title": "Portal Stories: Mel Soundtrack", - "artist": "Ian Wiese" - }, - "22": { - "title": "Quater Live", - "artist": "Good Habits" - }, - "71": { - "title": "R.E.V.O.", - "artist": "Walk Off The Earth" - }, - "11": { - "title": "Rolling With The Punches", - "artist": "DI-RECT" - }, - "23": { - "title": "Running Up That Hill", - "artist": "Good Habits" - }, - "18": { - "title": "Shake A Wave", - "artist": "Go Back To The Zoo" - }, - "65": { - "title": "Singles", - "artist": "Wintergatan" - }, - "15": { - "title": "Sky on Fire", - "artist": "Handsome Poets" - }, - "29": { - "title": "So Dark The Con Of Man", - "artist": "Madcon" - }, - "68": { - "title": "Speelklok", - "artist": "Wintergatan" - }, - "72": { - "title": "Spirit Bird", - "artist": "Xavier Rudd" - }, - "55": { - "title": "The 1975", - "artist": "The 1975" - }, - "39": { - "title": "The Getaway", - "artist": "Red Hot Chili Peppers" - }, - "3": { - "title": "Unknown Album", - "artist": "Unknown Artist" - }, - "73": { - "title": "Varykino", - "artist": "Wolves Dressed in Sheep" - }, - "4": { - "title": "When We Were Young!", - "artist": "Among the Saints" - }, - "70": { - "title": "Whistleblower", - "artist": "Will and The People" - }, - "66": { - "title": "Wintergatan", - "artist": "Wintergatan" - }, - "13": { - "title": "Young Chasers (Deluxe)", - "artist": "Circa Waves" - }, - "56": { - "title": "chill beats for LEGO building", - "artist": "Lofi Girl" - } - }, - "ARTISTS": { - "3": { - "name": "Among the Saints" - }, - "4": { - "name": "Arctic Monkeys" - }, - "1": { - "name": "Beth Mccarthy" - }, - "0": { - "name": "Billy Joel" - }, - "6": { - "name": "Casey Abrams" - }, - "9": { - "name": "Chef'Special" - }, - "12": { - "name": "Circa Waves" - }, - "7": { - "name": "Crystal Fighters" - }, - "10": { - "name": "DI-RECT" - }, - "8": { - "name": "DNCE" - }, - "14": { - "name": "Dotan" - }, - "19": { - "name": "Edward Sharpe and the Magnetic Zeros" - }, - "5": { - "name": "Elle King" - }, - "11": { - "name": "Florence + The Machine" - }, - "16": { - "name": "Go Back To The Zoo" - }, - "20": { - "name": "Good Habits" - }, - "13": { - "name": "Handsome Poets" - }, - "42": { - "name": "Harry Callaghan" - }, - "43": { - "name": "Ian Wiese" - }, - "21": { - "name": "Ilse DeLange" - }, - "18": { - "name": "Janne Schra" - }, - "22": { - "name": "Jazz Emu" - }, - "15": { - "name": "Jonas Blue" - }, - "17": { - "name": "Juanes" - }, - "23": { - "name": "KYGO" - }, - "24": { - "name": "Leaf" - }, - "45": { - "name": "Lofi Girl" - }, - "27": { - "name": "MIKA" - }, - "25": { - "name": "Madcon" - }, - "41": { - "name": "Michal Menert" - }, - "28": { - "name": "Milkbar" - }, - "26": { - "name": "Ofenbach vs. Nick Waterhouse" - }, - "29": { - "name": "Pat Razket" - }, - "32": { - "name": "Pitou" - }, - "31": { - "name": "Pixar" - }, - "36": { - "name": "Pyrolysis" - }, - "34": { - "name": "Queen" - }, - "33": { - "name": "Red Hot Chili Peppers" - }, - "39": { - "name": "Russkaja" - }, - "35": { - "name": "Saint Motel" - }, - "30": { - "name": "Samsung" - }, - "37": { - "name": "Sting" - }, - "40": { - "name": "Sugaroot" - }, - "38": { - "name": "Survivor" - }, - "44": { - "name": "The 1975" - }, - "47": { - "name": "The Kooks" - }, - "46": { - "name": "The Score" - }, - "48": { - "name": "The Trouble Notes" - }, - "50": { - "name": "The Wanderer" - }, - "49": { - "name": "Tim McMorris" - }, - "51": { - "name": "Trolska Polska" - }, - "53": { - "name": "Two Door Cinema Club" - }, - "2": { - "name": "Unknown Artist" - }, - "55": { - "name": "Walk Off The Earth" - }, - "54": { - "name": "Will and The People" - }, - "52": { - "name": "Wintergatan" - }, - "57": { - "name": "Wolves Dressed in Sheep" - }, - "56": { - "name": "Xavier Rudd" - } - }, - "SMARTLISTS": [ - { - "id": 1, - "name": "donr like", - "iconString": "favorite_rounded", - "gradientString": "sanguine", - "timeCreated": 1740914902000, - "timeChanged": 1740914902000, - "timeLastPlayed": 0, - "shuffleMode": null, - "filter": { - "artists": [], - "excludeArtists": false, - "minPlayCount": null, - "maxPlayCount": null, - "minLikeCount": 0, - "maxLikeCount": 0, - "minYear": null, - "maxYear": null, - "blockLevel": 0, - "limit": null - }, - "orderBy": { - "orderCriteria": [], - "orderDirections": [] - } - }, - { - "id": 2, - "name": "jammi", - "iconString": "favorite_rounded", - "gradientString": "sanguine", - "timeCreated": 1742206569000, - "timeChanged": 1743239201000, - "timeLastPlayed": 1752299178000, - "shuffleMode": null, - "filter": { - "artists": [ - 3, - 1, - 20, - 11, - 18, - 23, - 29, - 36, - 35, - 51, - 52, - 57, - 12 - ], - "excludeArtists": false, - "minPlayCount": null, - "maxPlayCount": null, - "minLikeCount": 2, - "maxLikeCount": 3, - "minYear": null, - "maxYear": null, - "blockLevel": 0, - "limit": null - }, - "orderBy": { - "orderCriteria": [], - "orderDirections": [] - } - } - ], - "SMARTLISTS": [], - "PLAYLISTS": [ - {% for item in playlists -%} - { - "id": {{ item.id }}, - "name": "{{ item.name }}", - "iconString": "alarm_rounded", - "gradientString": "purplelake", - "timeCreated": {{ epoch }}, - "timeChanged": {{ epoch }}, - "timeLastPlayed": {{ epoch }}, - "shuffleMode": null, - "SONGS": [ - {% for song in item.songs -%} - "{{ song }}"{{ "," if not loop.last }} - {%- endfor %} - ] - }{{ "," if not loop.last }} - {%- endfor %} - ] -} \ No newline at end of file diff --git a/private_dot_local/share/music/mucke2.json.jinja2 b/private_dot_local/share/music/mucke2.json.jinja2 deleted file mode 100644 index 2a3bc56..0000000 --- a/private_dot_local/share/music/mucke2.json.jinja2 +++ /dev/null @@ -1,39 +0,0 @@ -{ - "APP_VERSION": "1.5.1", - "BUILD_NUMBER": "123", - "DB_VERSION": 18, - "SETTING_ALLOWED_EXTENSIONS": "mp3,flac,wav,ogg,opus", - "BLOCKED_FILES": [], - "LIBRARY_FOLDERS": [ - "/storage/emulated/0/Music" - ], - "SONGS": { - {{ songs }} - }, - "ALBUMS": { - {{ albums }} - }, - "ARTISTS": { - {{ artists }} - }, - "SMARTLISTS": [], - "PLAYLISTS": [ - {% for item in playlists -%} - { - "id": {{ item.id }}, - "name": "{{ item.name }}", - "iconString": "alarm_rounded", - "gradientString": "purplelake", - "timeCreated": {{ epoch }}, - "timeChanged": {{ epoch }}, - "timeLastPlayed": {{ epoch }}, - "shuffleMode": null, - "SONGS": [ - {% for song in item.songs -%} - "{{ song }}"{{ "," if not loop.last }} - {%- endfor %} - ] - }{{ "," if not loop.last }} - {%- endfor %} - ] -} \ No newline at end of file