-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathalbum_track.json
More file actions
1735 lines (1734 loc) · 76.3 KB
/
Copy pathalbum_track.json
File metadata and controls
1735 lines (1734 loc) · 76.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"version": "2026.0820",
"100 gecs": {
"ringtone (Remix) [feat. Charli XCX, Rico Nasty, Kero Kero Bonito]": "ringtone (Remix) [feat. Charli xcx, Rico Nasty, Kero Kero Bonito]"
},
"21 savage": {
"Pop Ur Shit": "pop ur shit",
"Savage Mode II": "SAVAGE MODE II",
"American Dream": "american dream"
},
"2hollis": {
"Afraid (feat. Nate Sib)": "afraid (feat. nate sib)",
"IM PLAYIN MINECRAFT ITS 2AM": "im playin minecraft its 2am",
"TEENAGE SOLDIER": "teenage soldier"
},
"621 gecs": {
"Femboifoxxx": "femboifoxxx"
},
"afi": {
"Decemberunderground": "DECEMBERUNDERGROUND",
"Silver Bleeds The Black Sun...": "Silver Bleeds the Black Sun..."
},
"against me!": {
"Fuckmylife666": "FUCKMYLIFE666"
},
"against the current": {
"legends never die": "Legends Never Die"
},
"against the grain": {
"Against The Grain": "Against the Grain",
"dead weight": "Dead Weight",
"doubted": "Doubted",
"force to reckon": "Force to Reckon",
"instinct of survival": "Instinct of Survival",
"it's about you": "It's About You",
"last word": "Last Word",
"one on one": "One on One",
"social suicide": "Social Suicide"
},
"agnostic front": {
"Black And Blue": "Black and Blue",
"Casualty Of The Times": "Casualty of the Times",
"Conquer And Divide": "Conquer and Divide",
"Dead To Me": "Dead to Me",
"Fall Of The Parasite": "Fall of the Parasite",
"It's For Life": "It's for Life",
"Liberty & Justice For...": "Liberty & Justice for...",
"More Than A Memory": "More Than a Memory",
"Now And Forever": "Now and Forever",
"Only In America": "Only in America",
"Pull The Trigger": "Pull the Trigger",
"Reasonable DOubt": "Reasonable Doubt",
"So Pure To Me": "So Pure to Me",
"Test Of Time": "Test of Time",
"Until The Day I Die": "Until the Day I Die",
"Us Against The World": "Us Against the World",
"We Walk The Line": "We Walk the Line",
"We Want The Truth": "We Want the Truth"
},
"anthrax": {
"Any Place But Here": "Any Place but Here",
"Music Of Mass Destruction": "Music of Mass Destruction",
"Refuse To Be Denied": "Refuse to Be Denied",
"Taking The Music Back": "Taking the Music Back",
"The Greater Of Two Evils": "The Greater of Two Evils",
"Think About An End": "Think About an End",
"We've Come For You All": "We've Come for You All"
},
"ariana grande": {
"Kiss Me": "kiss me",
"Like I Do": "like i do",
"NeVeR gEt OvEr Me": "never get over me",
"Nowhere, Nobody": "nowhere, nobody",
"Petal": "petal",
"Stay": "stay"
},
"artms": {
"<BORN STUNNER>": "<Born Stunner>"
},
"a$ap rocky": {
"Interrogation (Skit)": "INTERROGATION (SKIT)",
"Order of Protection": "ORDER OF PROTECTION",
"Helicopter": "HELICOPTER",
"Playa": "PLAYA",
"Punk Rocky": "PUNK ROCKY",
"Stop Snitching": "STOP SNITCHING",
"Stop Snitching (feat. Bossman Dlow & Sauce Walka)": "STOP SNITCHING (feat. Bossman Dlow & Sauce Walka)",
"Stfu": "STFU",
"Swat Team": "SWAT TEAM",
"The End": "THE END",
"Whiskey (Release Me)": "WHISKEY (RELEASE ME)"
},
"astrid": {
"Back To the Pound!!!": "back to the pound!!!",
"Clicker Training": "clicker training",
"did I Come In At a Bad Time?": "did i come in at a bad time?",
"Doggirl Anthem": "doggirl anthem",
"Pup Cup (Run!)": "pup cup (run!)"
},
"atena": {
"Dreammode": "DREAMMODE"
},
"atmosphere": {
"Godlovesugly": "GodLovesUgly",
"They All Get Mad At You": "They All Get Mad at You",
"Until The Nipples Gone": "Until the Nipples Gone"
},
"avenged sevenfold": {
"A Little Piece Of Heaven - Live": "A Little Piece of Heaven - Live",
"Almost Easy - LIVE": "Almost Easy - Live",
"Bat Country - Live At Hammerstein Ballroom": "Bat Country - Live at Hammerstein Ballroom",
"Hail To The King": "Hail to the King",
"Hail To The King: Deathbat (Original Video Game Soundtrack)": "Hail to the King: Deathbat (Original Video Game Soundtrack)",
"Life Is But A Dream...": "Life Is But a Dream...",
"Shepherd Of Fire": "Shepherd of Fire",
"Waking The Fallen": "Waking the Fallen",
"Waking The Fallen: Resurrected": "Waking the Fallen: Resurrected",
"Welcome To The Family": "Welcome to the Family"
},
"ayase": {
"Last Resort": "last resort"
},
"bad brains": {
"I Against I": "i against i"
},
"bad religion": {
"New Maps Of Hell (Deluxe Edition)": "New Maps of Hell (Deluxe Edition)"
},
"beabadoobee": {
"A CRUEL AFFAIR": "A Cruel Affair",
"ever seen": "Ever Seen",
"everything i want": "Everything I Want",
"post": "Post",
"real man": "Real Man",
"take a bite": "Take A Bite",
"the man who left too soon": "The Man Who Left Too Soon",
"this is how it went": "This Is How It Went",
"tie my shoes": "Tie My Shoes"
},
"ben folds five": {
"Steven's Last Night In Town": "Steven's Last Night in Town"
},
"beyoncé": {
"Beyoncé": "BEYONCÉ"
},
"billie eilish": {
"Hit Me Hard and Soft": "HIT ME HARD AND SOFT",
"My Future": "my future",
"When I Was Older (Music Inspired by the Movie Roma)": "WHEN I WAS OLDER (Music Inspired by the Movie ROMA)"
},
"bladee": {
"COLD VISIONS": "Cold Visions",
"Drama (feat. Charli XCX)": "Drama (feat. Charli xcx)",
"Don't Do Drugz": "DON'T DO DRUGZ",
"OTHERSIDE (FeaT. SICKBOYRARI)": "OTHERSIDE (feat. Sickboyrari)"
},
"bloodclot": {
"Asleep At The Wheel": "Asleep at the Wheel",
"Seeds Of Destruction": "Seeds of Destruction",
"Stirring In The Hearts And Minds": "Stirring in the Hearts and Minds"
},
"blues brothers": {
"Briefcase Full Of Blues": "Briefcase Full of Blues"
},
"body count": {
"COMFORTABLY NUMB": "Comfortably Numb",
"FUCK WHAT YOU HEARD": "Fuck What You Heard",
"Killin' floor": "Killin' Floor",
"Last breath": "Last Breath",
"Masters of revenge": "Masters Of Revenge",
"Shallow graves": "Shallow Graves",
"Street lobotomy": "Street Lobotomy",
"Surviving the game": "Surviving The Game",
"Who are you": "Who Are You"
},
"boy hits car": {
"waves of sound across oceans of time": "Waves of Sound Across Oceans of Time"
},
"brakence": {
"Cut You Off": "cut you off",
"Death Roll": "death rolL",
"Drank 3 of My Parents' Craft Beers To Make Eye Contact With You (feat. Login)": "drank 3 of my parents' craft beers to make eye contact with you (feat. login)",
"Hypochondriac (Demo)": "hypochondriac (demo)",
"hypochondriac (sessions)": "hypochondriac (Sessions)",
"Introvert": "introvert",
"tonight's no good how about wednesday oh you're in dallas on wednesday oh ok well then let's just not see each other for 8 months and It doesn't matter at all": "tonight's no good how about wednesday oh you're in dallas on wednesday oh ok well then let's just not see each other for 8 months and it doesn't matter at all"
},
"bts": {
"Normal": "NORMAL",
"Swim": "SWIM"
},
"camila cabello": {
"C,XOXO (MAGIC CITY EDITION)": "C,XOXO (Magic City Edition)"
},
"cardiacs": {
"a Bus For a Bus on the Bus": "A Bus For A Bus On The Bus",
"faster than snakes with a ball and a chain": "Faster Than Snakes with a Ball and a Chain"
},
"carly rae jepsen": {
"Don’t Leave Me On The Dance Floor": "Don’t Leave Me on the Dance Floor",
"I Didn't Just Come Here to Dance": "I Didn't Just Come Here To Dance",
"Making the Most of the Night": "Making The Most Of The Night",
"Never Get to Hold You": "Never Get To Hold You",
"Never Get to Hold You - Bonus Track": "Never Get To Hold You - Bonus Track",
"Run Away with Me": "Run Away With Me"
},
"charli xcx": {
"guess featuring billie eilish": "Guess featuring billie eilish",
"talk talk featuring troye sivan": "Talk talk featuring Troye Sivan"
},
"che": {
"marceline": "MARCELINE",
"diE yoUNg": "DIE YOUNG",
"Doe Deer": "DOE DEER"
},
"chicago": {
"25 Or 6 To 4": "25 or 6 to 4"
},
"chivas": {
"deathcore": "Deathcore"
},
"chuu": {
"heart tea bag": "Heart Tea Bag",
"limoncello": "Limoncello"
},
"cky": {
"Attached At The Hip": "Attached at the Hip",
"Disengage The Simulator": "Disengage the Simulator",
"Flesh Into Gear": "Flesh into Gear",
"Lost In A Contraption": "Lost in a Contraption",
"Shock And Terror": "Shock and Terror",
"Sink Into The Underground": "Sink into the Underground",
"the phoenix": "The Phoenix",
"To All Of You": "To All of You"
},
"cokie the clown": {
"Down With the Ship": "Down with the Ship"
},
"collapsed lung": {
"cooler": "Cooler"
},
"confidence man": {
"Gossip": "gossip",
"GOSSIP": "gossip"
},
"cozmez": {
"Where They At": "Where they at"
},
"cro-mags": {
"Death In The Womb": "Death In the Womb",
"Down but not Out": "Down but Not Out",
"Eyes Of Tomorrow": "Eyes of Tomorrow",
"In The Beginning": "In the Beginning",
"Say Good-Bye To Mother Earth": "Say Good-Bye to Mother Earth",
"Say Goodbye To Mother Earth": "Say Goodbye to Mother Earth",
"See The Signs": "See the Signs",
"The Age Of Quarrel": "the Age of Quarrel",
"The Other Side Of Madness": "The Other Side of Madness",
"The Other Side of Madness (rat soup version '93)": "The Other Side of Madness (Rat Soup Version '93)",
"War On The Streets": "War On the Streets"
},
"crystal fairy": {
"Drugs On The Bus": "Drugs on the Bus"
},
"cupsize": {
"Заставь меня плакать": "заставь меня плакать"
},
"custard": {
"Ringo (I feel like...)": "Ringo (I Feel Like...)"
},
"cynthoni": {
"theme of cynthoni": "Theme Of Cynthoni"
},
"dag nasty": {
"Wig Out At Denko's": "Wig Out at Denko's"
},
"dan salvato": {
"Dreams Of Love and Literature": "Dreams of Love and Literature"
},
"daryl hall & john oates": {
"Art Of Heartbreak": "Art of Heartbreak",
"Fall In Philadelphia": "Fall in Philadelphia",
"I Can't Go For That (No Can Do)": "I Can't Go for That (No Can Do)",
"I'm Just A Kid (Don't Make Me Feel Like A Man)" : "I'm Just a Kid (Don't Make Me Feel Like a Man)",
"Method Of Modern Love": "Method of Modern Love",
"Out Of Touch - Single Version": "Out of Touch - Single Version",
"Wait For Me": "Wait for Me"
},
"dave blunts": {
"BIGGER": "Bigger"
},
"david lee roth": {
"Crazy From the Heat": "Crazy from the Heat",
"Just A Gigolo / I Ain't Got Nobody": "Just a Gigolo / I Ain't Got Nobody"
},
"dc the don": {
"ReBIRTH": "REBIRTH"
},
"death spells": {
"Choke on One Another": "choke on one another",
"Diluted": "diluted",
"End Of Life": "end of life",
"Fantastic Bastards": "fantastic bastards",
"Hate Unconditional": "hate unconditional",
"Hell All-American": "hell all-american",
"Hypnotic Spells": "hypnotic spells",
"I don't know much, but I know I loathe you": "i don't know much, but i know i loathe you",
"Quaainterlude": "quaainterlude",
"Underneath It All": "underneath it all",
"Where are my fucking pills?": "where are my fucking pills?",
"Why Is Love So Disastrous?": "why is love so disastrous?"
},
"deftones": {
"Cut Hands": "cut hands",
"CXz": "cXz",
"Departing The Body": "departing the body",
"Ecdysis": "ecdysis",
"Infinite Source": "infinite source",
"I Think About You All The Time": "i think about you all the time",
"Locked Club": "locked club",
"Milk Of The Madonna": "milk of the madonna",
"My Mind Is A Mountain": "my mind is a mountain",
"Private Music": "private music",
"Souvenir": "souvenir",
"~Metal Dream": "~metal dream"
},
"denzel curry": {
"black FlAG freestyle (with that mexican ot)": "BLACK FLAG FREESTYLE (with That Mexican OT)",
"cole pImp (with ty dolla $ign & juicy J)": "COLE PIMP (with Ty Dolla $ign & Juicy J)",
"King of the Mischievous South": "KING OF THE MISCHIEVOUS SOUTH",
"sked (with kenny Mason & project pat)": "SKED (with Kenny Mason & Project Pat)"
},
"descendents": {
"All": "ALL",
"All-O-Gistics": "ALL-O-Gistics"
},
"don toliver": {
"Octane": "OCTANE"
},
"donald fagen": {
"Mary Shut The Garden Door": "Mary Shut the Garden Door",
"Morph The Cat": "Morph the Cat",
"Morph The Cat - Reprise": "Morph the Cat - Reprise",
"The Great Pagoda Of Funn": "The Great Pagoda of Funn",
"The Night Belongs To Mona": "The Night Belongs to Mona"
},
"doppo": {
"fastな俺の毎日を笑え": "fASTな俺の毎日を笑え"
},
"double virgo": {
"Greatest Hits": "greatest hits"
},
"efterklang": {
"Between The Walls": "Between the Walls",
"Told To Be Fine": "Told to Be Fine"
},
"eli": {
"All At Once": "All at Once",
"girl of your dreams": "Girl of Your Dreams",
"Like A Girl": "Like a Girl"
},
"eminem": {
"trouble": "Trouble"
},
"ericdoa": {
"agoraphobia": "Agoraphobia",
"BACKDOOR": "Backdoor",
"Search & Destroy": "search & destroy",
"Song for when the bar closes": "song for when the bar closes",
"Throw it up": "throw it up"
},
"erra": {
"Gore of Being": "gore of being",
"Silence Outlives the Earth": "silence outlives the earth",
"Echo Sonata": "echo sonata"
},
"esbbat": {
"DENTRO DEL ESBBAT": "Dentro del Esbat"
},
"falling in reverse": {
"god is a weapon": "God Is a Weapon",
"God Is A Weapon": "God Is a Weapon",
"GOD is a weapon (feat. MARILYN MANSON)": "God Is a Weapon (feat. Marilyn Manson)",
"Guillotine IV (the Final Chapter)": "Guillotine IV (The Final Chapter)",
"I'm Not A Vampire": "I'm Not a Vampire",
"No Fear": "NO FEAR",
"Raised By Wolves": "Raised by Wolves",
"The Drug In Me Is You": "The Drug in Me Is You",
"Zombified": "ZOMBIFIED"
},
"femtanyl": {
"body the pistol": "BODY THE PISTOL",
"magfest": "MAGFEST",
"Weightless!": "WEIGHTLESS!",
"Worldwid3": "WORLDWID3"
},
"fennesz": {
"liminality": "Liminality",
"paroles": "Paroles"
},
"fetty wap": {
"tRaP luV": "Trap Luv"
},
"fex": {
"Subways of your Mind": "Subways of Your Mind"
},
"fifty fifty": {
"LOVE TUNE": "Love Tune"
},
"filth of mankind": {
"obłędna rzeczywistość": "Obłędna rzeczywistość",
"poszanowanie różnorodności": "Poszanowanie różnorodności"
},
"flo": {
"ACCESS ALL AREAS": "Access All Areas"
},
"fog lake": {
"catacombs": "Catacombs"
},
"food house": {
"Food House": "food house",
"Two House": "two house"
},
"franz ferdinand": {
"This Fffire": "This fffire",
"This fffire - new version": "This fffire - New Version"
},
"fred nevché & french 79": {
"THE UNREAL STORY OF LOU REED (Instrumental)": "The Unreal Story of Lou Reed (Instrumental)"
},
"friko": {
"Where We've Been, Where We Go from Here": "Where we've been, Where we go from here"
},
"frontierer": {
"The molten larva": "The Molten Larva"
},
"future": {
"AIN'T NO LOVE": "Ain't No Love",
"BEAT IT": "Beat It",
"CLAUSTROPHOBIC": "Claustrophobic",
"EVERYDAY HUSTLE": "Everyday Hustle",
"FRIED (SHE A VIBE)": "Fried (She a Vibe)",
"ICE ATTACK": "Ice Attack",
"MAGIC DON JUAN (PRINCESS DIANA)": "Magic Don Juan (Princess Diana)",
"NIGHTS LIKE THIS": "Nights Like This",
"ONE BIG FAMILY": "One Big Family",
"OUT OF MY HANDS": "Out Of My Hands",
"RADIO": "Radio",
"RUNNIN OUTTA TIME": "Runnin Outta Time",
"SEEN IT ALL": "Seen it All",
"SLIMED IN": "Slimed In",
"TYPE SHIT": "Type Shit",
"YOUNG METRO": "Young Metro"
},
"gary numan": {
"intruder": "Intruder"
},
"georg friedrich händel": {
"HANDEL: Messiah": "Handel: Messiah"
},
"glaive": {
"17250 (V2)": "17250 (v2)",
"A Date w Karma (V1)": "a date w karma (v1)",
"ASHEVILLE": "Asheville",
"Bastard (V2)": "bastard (v2)",
"by birthright": "By Birthright",
"count it up": "Count It Up",
"everydog has its day": "EVERYDOG HAS ITS DAY",
"for god and country": "For God and Country",
"fuck": "Fuck",
"Hate 2 See U Cry": "hate 2 see u cry",
"Huh": "huh",
"knock, draw, release": "Knock, Draw, Release",
"Living Proof (That It Hurts)": "living proof (that it hurts)",
"may it never falter": "May It Never Falter",
"may it never falter (sessions)": "May It Never Falter (Sessions)",
"Minnesota is a place that exists (V2)": "minnesota is a place that exists (v2)",
"Nobodys fault / Accept my own": "Nobodys Fault / Accept My Own",
"Prick (feat. Midwxst)": "prick (feat. midwxst)",
"Que Onda": "que onda",
"Shoreditch (Bsun N Thr6x Remix)": "shoreditch (bsun n thr6x remix)",
"Stay + Love Story (Cover)": "stay + love story (cover)",
"SYNOPSIS (demo)": "synopsis (demo)",
"the band": "The Band",
"veni vidi vici": "Veni Vidi Vici",
"we don't leave the house": "We Don't Leave the House",
"y’all": "Y’all"
},
"glaive, kurtains": {
"God save the Three": "God Save The Three"
},
"glass beach": {
"Rare Animal": "rare animal"
},
"glume & phossa": {
"banshee": "Banshee"
},
"god forbid": {
"Anti-hero": "Anti-Hero",
"A Reflection Of The Past": "A Reflection of the Past",
"Bat The Angels": "Bat the Angels",
"Beneath The Scars Of Glory And Progression": "Beneath the Scars of Glory and Progression",
"chains of humanity - live": "Chains of Humanity - Live",
"Dawn Of The Millenia": "Dawn of the Millenia",
"Empire Of The Gun": "Empire of the Gun",
"Force-fed": "Force-Fed",
"force fed - live": "Force Fed - Live",
"Judge The Blood": "Judge the Blood",
"Reject The Sickness": "Reject the Sickness",
"Reject The Sickness (Live)": "Reject the Sickness (Live)",
"War Of Attrition": "War of Attrition",
"Welcome to the Apocalypse (preamble)": "Welcome to the Apocalypse (Preamble)"
},
"goreshit": {
"Glitch obsessional": "glitch obsessional"
},
"grace abrams": {
"bRoKe My hEArt": "Broke My Heart"
},
"h2o": {
"Cats And Dogs": "Cats and Dogs",
"Don't forget your Roots": "Don't Forget Your Roots",
"From The Heart": "From the Heart",
"Journey To The End Of The East Bay": "Journey to the End of the East Bay",
"Nothing To Prove": "Nothing to Prove",
"Out Of Debt": "Out of Debt",
"Ripe Or Rotting?": "Ripe or Rotting?",
"Shine The Light Down": "Shine the Light Down",
"Thick And Thin": "Thick and Thin",
"Underneath The Flames": "Underneath the Flames"
},
"hande yener": {
"Apayri": "Apayrı",
"Aşkin Gücü": "Aşkın Gücü",
"Bunun Adi Ayrilik": "Bunun Adı Ayrılık",
"Haykırdım seni": "Haykırdım Seni",
"Kibir (Yanmam Lazim)": "Kibir (Yanmam Lazım)",
"Yalanin Batsin": "Yalanın Batsın"
},
"hans gruber and the die hards": {
"Hans Gruber and The Die Hards": "Hans Gruber and the Die Hards",
"With A Vengeance": "With a Vengeance"
},
"harley flanagan": {
"Fighting The Urge To Kill": "Fighting the Urge to Kill",
"I Come In Peace": "I Come in Peace",
"Mess With The Bull": "Mess With the Bull"
},
"harry styles" : {
"Are you listening yet?": "Are You Listening Yet?",
"POP": "Pop",
"carla's song": "Carla's Song"
},
"hayley williams": {
"glum": "Glum",
"WHIM": "Whim"
},
"hereisaropegoodluck": {
"DOWN WITH THE SNAKES": "Down With The Snakes",
"I’M THE ONLY HELL MY MAMA EVER RAISED": "I’m The Only Hell My Mama Ever Raised",
"STARTING A FIGHT IN AN EMPTY HOUSE": "Starting A Fight In An Empty House",
"WE’VE HOWDIED, BUT HAVEN’T SHOOK": "We’ve Howdied, But Haven’t Shook"
},
"hoba hoba spirit": {
"trabando": "Trabando"
},
"hod": {
"Beneath The Mountains Of The Scorpion": "Beneath the Mountains of the Scorpion",
"Den Of Wolves": "Den of Wolves",
"Through The Gates (They Come For Me)": "Through the Gates (They Come for Me)",
"When The Ghouls Feed": "When the Ghouls Feed",
"Where Are The Demons": "Where Are the Demons"
},
"i-dle": {
"crow": "Crow"
},
"idolish7": {
"RESTART POINTER": "RESTART POiNTER"
},
"ifeye": {
"SWEET TANG": "sweet tang"
},
"illit": {
"IT'S ME": "It's Me"
},
"immenence": {
"heaven shall burn": "Heaven Shall Burn"
},
"invent animate": {
"BLOOM IN HEAVEN": "Bloom In Heaven"
},
"in vision": {
"Black art": "Black Art",
"Immortal shadows": "Immortal Shadows",
"Rotten sun": "Rotten Sun",
"Save up all your tears": "Save Up All Your Tears"
},
"ison": {
"A Golden Force": "A GOLDEN FORCE",
"Andromeda Skyline": "ANDROMEDA SKYLINE",
"Aquarian": "AQUARIAN",
"Aurora": "AURORA",
"Beings Of Light": "BEINGS OF LIGHT",
"Celestial": "CELESTIAL",
"Cosmic Drone": "COSMIC DRONE",
"Helios": "HELIOS",
"Inner-Space": "INNER-SPACE",
"Jupiter": "JUPITER",
"Meridian": "MERIDIAN",
"Penumbra": "PENUMBRA",
"Peregrination": "PEREGRINATION",
"Radiance": "RADIANCE",
"Radiant Void": "RADIANT VOID",
"Retrograde": "RETROGRADE",
"Shipwrecks": "SHIPWRECKS",
"The Fifth World": "THE FIFTH WORLD",
"waves": "WAVES"
},
"iyowa": {
"Take You to an Alien (feat. Sekai)": "Take you to an alien (feat. SEKAI)"
},
"izna": {
"n/A - eP": "N/a - EP"
},
"jade": {
"Angel of My Dreams": "Angel Of My Dreams",
"cHuRcH": "Church",
"Natural At Disaster": "Natural at Disaster",
"tHaT'S sHOWbIZ BabY! THE eNCorE": "THAT'S SHOWBIZ BABY! THE ENCORE",
"tHiS iS wHaT wE dAnCe FoR": "This Is What We Dance For"
},
"jae stephens": {
"Total Sellout": "TOTAL SELLOUT"
},
"jay-z": {
"Dirt off Your Shoulder": "Dirt Off Your Shoulder"
},
"jesu": {
"friends are evil (clean mix)": "Friends Are Evil (Clean Mix)",
"guardian angel (clean mix)": "Guardian Angel (Clean Mix)",
"sun day (clean mix)": "Sun Day (Clean Mix)",
"tired of me (clean mix)": "Tired of Me (Clean Mix)",
"walk on water (clean mix)": "Walk on Water (Clean Mix)",
"we all faulter (clean mix)": "We All Faulter (Clean Mix)"
},
"jpegmafia": {
"Are you happy?": "ARE YOU HAPPY?",
"I SCREAM THIS IN THE MIRROR BEFORE I INTERACT WITH ANYONE": "i scream this in the mirror before i interact with anyone"
},
"jid": {
"glOry": "Glory"
},
"jigitz": {
"50 Ballerinas": "50 ballerinas"
},
"jim noir": {
"Tower Of Love": "Tower of Love"
},
"jhariah": {
"Fire4Fun": "FIRE4FUN"
},
"juice wrld": {
"Armed and Dangerous": "Armed And Dangerous",
"Blood on My Jeans": "Blood On My Jeans",
"empty out your pockets": "Empty Out Your Pockets",
"Hemotions (Feat. Ty Dolla $ign)": "HeMotions (feat. Ty Dolla $ign)",
"lace it (with eminem & benny blanco)": "Lace It (with Eminem & benny blanco)",
"Life's a Dungeon": "Life's A Dungeon",
"Life's a Mess (feat. Halsey)": "Life's A Mess (feat. Halsey)",
"Man of the Year": "Man Of The Year",
"My Life in a Nutshell": "My Life In A Nutshell",
"Off the rip": "Off The Rip",
"Rich and Blind": "Rich And Blind",
"Rockstar in His Prime": "Rockstar In His Prime",
"Run": "RUN",
"Until the Plug Comes Back Around": "Until The Plug Comes Back Around",
"Wandered to LA (with Justin Bieber)": "Wandered To LA (with Justin Bieber)"
},
"julie": {
"April’s-Bloom": "april’s-bloom",
"Pushing Daises": "pushing daises",
"Starjump / Kit": "starjump/kit"
},
"kairikibear": {
"Anatasama": "ANATASAMA",
"Mental Chainsaw": "MENTAL CHAINSAW"
},
"kanaria": {
"Envy Baby": "ENVY BABY"
},
"kanye west": {
"All Of The Lights (feat. Rihanna, KiD CuDi, Fergie, Alicia Keys & Elton John)": "All of the Lights (feat. Rihanna, Kid Cudi, Fergie, Alicia Keys & Elton John)",
"Beauty and the beast": "BEAUTY AND THE BEAST",
"Bully": "BULLY",
"Circles": "CIRCLES",
"Highs and Lows": "HIGHS AND LOWS",
"Melrose": "MELROSE",
"White Lines": "WHITE LINES",
"Facts (Charlie Heat version)": "Facts (Charlie Heat Version)",
"No More Parties in LA": "No More Parties In LA",
"The Life of Pablo": "The Life Of Pablo",
"Punch Drunk": "PUNCH DRUNK"
},
"kardashev": {
"Snow-sleep": "Snow-Sleep"
},
"kemetic just": {
"Highways and Mindwaves": "Highways And Mindwaves",
"another swing": "Another Swing",
"romance with you": "Romance With You",
"one love": "One Love",
"alright": "Alright",
"answers": "Answers",
"Highways and Mindwaves (Ian Pooley Remix)": "Highways And Mindwaves (Ian Pooley Remix)"
},
"ken carson": {
"Delusional": "delusional",
"Leather Jacket": "leather jacket",
"Mewtwo": "mewtwo",
"MORE CHAOS": "more chaos",
"Overseas": "overseas",
"Xperiment": "xperiment"
},
"Kevin Atwater": {
"achilles": "Achilles"
},
"kevinkempt": {
"Keep Going": "KEEP GOING"
},
"kichi": {
"My addiction": "My Addiction"
},
"king crimson": {
"Epitaph - Including \"March For No Reason\" And \"Tomorrow And Tomorrow\"": "Epitaph - Including \"March for No Reason\" and \"Tomorrow and Tomorrow\"",
"Moonchild - Including \"The Dream\" And \"The Illusion\"": "Moonchild - Including \"The Dream\" and \"The Illusion\""
},
"king glizzard & the lizard wizard": {
"Alien metal": "Alien Metal"
},
"kittydog": {
"A World": "a world",
"Broken Dream": "broken dream",
"Chasing The Stars, Living The Dream": "chasing the stars, living the dream",
"Crystal Spray": "crystal spray",
"Damn Beautiful": "damn beautiful",
"Double Hue": "double hue",
"Fantasy World": "fantasy world",
"I'm Done Wasting My Time": "i'm done wasting my time",
"Kittydog Music Album": "kittydog music album",
"Max LVL Fixated!!": "MAX LVL FIXATED!!",
"Never Die": "never die",
"Only Wonders Now.": "only wonders now.",
"World Full Of Strings": "world full of strings"
},
"lady gaga": {
"A‐Yo": "A‐YO",
"ArtPop: Unreleased": "ARTPOP: Unreleased",
"Blade of Grass": "Blade Of Grass",
"Can’t Stop The High": "Can’t Stop the High",
"Come to Mama": "Come To Mama",
"Dance in the Dark": "Dance In The Dark",
"Dancin' in Circles": "Dancin' In Circles",
"Dancin’ in Circles": "Dancin’ In Circles",
"Dawn of Chromatica": "Dawn Of Chromatica",
"Die with a Smile": "Die With A Smile",
"Fashion of His Love": "Fashion Of His Love",
"Garden of Eden": "Garden Of Eden",
"Highway Unicorn (Road to Love)": "Highway Unicorn (Road To Love)",
"Marry the Night": "Marry The Night",
"Partynauseous (with Kendrick Lamar)": "PARTYNAUSEOUS (with Kendrick Lamar)",
"Rain on Me (with Ariana Grande)": "Rain On Me (with Ariana Grande)",
"Shadow of a Man": "Shadow Of A Man",
"Sine from Above": "Sine From Above",
"Sine from Above (with Elton John)": "Sine From Above (with Elton John)",
"The Edge of Glory": "The Edge Of Glory",
"Top Gun: Maverick (Music from the Motion Picture)": "Top Gun: Maverick (Music From The Motion Picture)",
"Yoü and I": "Yoü And I"
},
"lady gaga, ariana grande": {
"Rain on Me": "Rain On Me"
},
"leroy": {
"dariacore": "Dariacore"
},
"les claypool and the holy mackerel": {
"Highball With The Devil": "Highball with the Devil",
"Me And Chuck": "Me and Chuck",
"Running The Gauntlet": "Running the Gauntlet"
},
"le sserafim": {
"'pureflow', pt. 1": "'PUREFLOW', Pt. 1"
},
"liam gallagher": {
"Doesn't Have To Be That Way": "Doesn't Have to Be That Way",
"Wall Of Glass": "Wall of Glass",
"When I'm In Need": "When I'm in Need"
},
"linkin park": {
"Burn It Down": "BURN IT DOWN",
"Castle of Glass": "CASTLE OF GLASS",
"I'll Be Gone": "I'LL BE GONE",
"In My Remains": "IN MY REMAINS",
"Lies Greed Misery": "LIES GREED MISERY",
"Living Things": "LIVING THINGS",
"Lost in the Echo": "LOST IN THE ECHO",
"Powerless": "POWERLESS",
"Roads Untraveled": "ROADS UNTRAVELED",
"Skin to Bone": "SKIN TO BONE",
"Tinfoil": "TINFOIL",
"Until It Breaks": "UNTIL IT BREAKS",
"Victimized": "VICTIMIZED"
},
"little dragon": {
"After The Rain": "After the Rain",
"Place To Belong": "Place to Belong"
},
"logic": {
"catch me if you can": "Catch Me If You Can"
},
"los delinqüentes": {
"De Los MatoRRaLeS": "De los Matorrales",
"Los delinqüentes y la banda del ratón": "Los Delinqüentes y la Banda del Ratón",
"Telescopio cósmico": "Telescopio Cósmico"
},
"lucy bedroque": {
"unmusique": "Unmusique"
},
"m1v": {
"revolution revolution": "revolution Revolution"
},
"mac miller": {
"MANAKINS": "Manakins",
"RICK'S PIANO": "Rick's Piano",
"STONED": "Stoned"
},
"madball": {
"Beacon Of Light": "Beacon of Light",
"Face To Face": "Face to Face",
"For The Cause": "For the Cause",
"For The Judged": "For the Judged",
"Infiltrate The System": "Infiltrate the System",
"Lesson Of Life": "Lesson of Life",
"Liberty Or Death": "Liberty or Death",
"Live Or Die": "Live or Die",
"Moment Of Truth": "Moment of Truth",
"Nothing To Me": "Nothing to Me",
"Smell The Bacon (What's With You?)": "Smell the Bacon (What's with You?)",
"Temptation Or Restraint": "Temptation or Restraint",
"Waste Of Time": "Waste of Time"
},
"madison beer": {
"cOmPlExIty": "complexity",
"hEAlThy haBIt": "healthy habit",
"Locket": "locket",
"lOVergIrl": "lovergirl",
"Make You Mine": "make you mine",
"nOthIng at All": "nothing at all"
},
"man with a mission": {
"Don't lose yourself": "DON'T LOSE YOURSELF"
},
"manarem": {
"Movmënt": "MOVMËNT"
},
"marina": {
"Love + Fear": "LOVE + FEAR"
},
"marina & the diamonds": {
"Froot": "FROOT"
},
"mf doom": {
"that’s that": "That’s That"
},
"midwxst": {
"Cheetah Print": "CHEETAH PRINT",
"come & go": "COME & GO",
"Don't Trust": "DON'T TRUST",
"For Real": "FOR REAL",
"hate ur face": "HATE UR FACE",
"know it all": "KNOW IT ALL",
"Nauseous": "NAUSEOUS",
"Profile": "PROFILE",
"Solitude In Silence": "SOLITUDE IN SILENCE",
"your soul": "YOUR SOUL"
},
"mild high club": {
"Note To Self": "Note to Self",
"TIMELINE": "Timeline"
},
"mitski": {
"I'll Change For You": "I'll Change for You",
"In A Lake": "In a Lake",
"Instead Of Here": "Instead of Here"
},
"moodring": {
"Death Fetish": "death fetish",
"masochist machine": "Masochist Machine"
},
"morrissey": {
"amaZoNa": "Amazona",
"bouLevARd": "Boulevard",
"headAcHe": "Headache",
"KercHing KercHiNg": "Kerching Kerching",
"lester baNgS": "Lester Bangs",
"many icebeRgs aGo": "Many Icebergs Ago",
"make-uP is a liE": "Make-up is a Lie",
"you're right, it's tiME": "You're Right, It's Time",
"zoom zoOM tHE little bOy": "Zoom Zoom the Little Boy"
},
"muddy waters": {
"I'M Ready": "I'm Ready"
},
"my bloody valentine": {
"Blown a Wish": "blown a wish",
"Come in Alone": "come in alone",
"I Only Said": "i only said",
"Loomer": "loomer",
"Loveless": "loveless",
"Only Shallow": "only shallow",
"Sometimes": "sometimes",
"Soon": "soon",
"To Here Knows When": "to here knows when",
"Touched": "touched",
"What You Want": "what you want",
"When You Sleep": "when you sleep"
},
"my chemical romance": {
"It's Not A Fashion Statement, It's A Deathwish - 2025 Mix": "It's Not a Fashion Statement, It's a Deathwish - 2025 Mix",
"Thank You For The Venom - 2025 Mix": "Thank You for the Venom - 2025 Mix",
"The Ghost Of You - 2025 Mix": "The Ghost of You - 2025 Mix",
"To The End - 2025 Mix": "To the End - 2025 Mix",
"You Know What They Do To Guys Like Us In Prison - 2025 Mix": "You Know What They Do to Guys Like Us in Prison - 2025 Mix"
},
"nævis": {
"sEnSiTiVe - sInGlE": "Sensitive - Single"
},
"nathalie cardone": {
"Working class": "Working Class"
},
"nelly furtado": {
"Loose (expanded edition)": "Loose (Expanded Edition)"
},
"nettspend": {
"BAD ASS F*CKING KID (SESSIONS)": "BAD ASS F*CKING KID (Sessions)",
"We Not Like You": "We not like you"
},
"ninajirachi": {
"Girl EDM": "girl EDM",
"Hand On My Heart": "Hand on my Heart",
"WANNACRY": "WannaCry"
},
"ninajirachi & porter robinson": {
"wannacry": "WannaCry"
},
"nirvana": {
"about a girl - live": "About A Girl - Live",
"about a girl - live in los angeles, great western forum - december 30, 1993": "About A Girl - Live in Los Angeles, Great Western Forum - December 30, 1993",
"all apologies - live": "All Apologies - Live",
"all apologies - 2023 remaster": "All Apologies - 2023 Remaster",
"breed - live in los angeles, great western forum - december 30, 1993": "Breed - Live in Los Angeles, Great Western Forum - December 30, 1993",
"Come as You Are": "Come As You Are",
"come as you are - live": "Come As You Are - Live",
"come as you are - live in los angeles, great western forum - december 30, 1993": "Come As You Are - Live in Los Angeles, Great Western Forum - December 30, 1993",
"drain you - live in los angeles, great western forum - december 30, 1993": "Drain You - Live in Los Angeles, Great Western Forum - December 30, 1993",
"drain you - live in seattle, seattle center arena - january 7, 1994": "Drain You - Live in Seattle, Seattle Center Arena - January 7, 1994",
"dumb - live": "Dumb - Live",
"dumb - live in los angeles, great western forum - december 30, 1993": "Dumb - Live in Los Angeles, Great Western Forum - December 30, 1993",
"dumb - 2023 remaster": "Dumb - 2023 Remaster",
"Frances Farmer Will Have Her Revenge on Seattle": "Frances Farmer Will Have Her Revenge On Seattle",
"frances farmer will have her revenge on seattle - live in los angeles, great western forum - december 30, 1993": "Frances Farmer Will Have Her Revenge On Seattle - Live in Los Angeles, Great Western Forum - December 30, 1993",
"Frances Farmer Will Have Her Revenge on Seattle - 2023 remaster": "Frances Farmer Will Have Her Revenge On Seattle - 2023 Remaster",
"gallons of rubbing alcohol flow through the strip - 2023 remaster": "Gallons of Rubbing Alcohol Flow Through the Strip - 2023 Remaster",
"heart-shaped box - 2023 remaster": "Heart-Shaped Box - 2023 Remaster",
"i hate myself and want to die - 2023 remaster": "I Hate Myself And Want To Die - 2023 Remaster",
"in bloom - live in los angeles, great western forum - december 30, 1993": "In Bloom - Live in Los Angeles, Great Western Forum - December 30, 1993",
"jesus doesn't want me for a sunbeam - live": "Jesus Doesn't Want Me For A Sunbeam - Live",
"jesus doesn't want me for a sunbeam - live in los angeles, great western forum - december 30, 1993": "Jesus Doesn't Want Me For A Sunbean - Live in Los Angeles, Great Western Forum - December 30, 1993",
"lake of fire - live": "Lake Of Fire - Live",
"Lake of fire - live acoustic": "Lake Of Fire - Live Acoustic",
"lithium - live in los angeles, great western forum - december 30, 1993": "Lithium - Live in Los Angeles, Great Western Forum - December 30, 1993",
"marigold - 2023 remaster": "Marigold - 2023 Remaster",
"milk it - 2023 remaster": "Milk It - 2023 Remaster",
"moist vagina - 2023 remaster": "Moist Vagina - 2023 Remaster",
"MTV Unplugged in New York": "MTV Unplugged In New York",
"Old Age - Nevermind outtake": "Old Age - Nevermind Outtake",
"On a Plain": "On A Plain",
"on a plain - live": "On A Plain - Live",
"on a plain - live in los angeles, great western forum - december 30, 1993": "On A Plain - Live in Los Angeles, Great Western Forum - December 30, 1993",
"pennyroyal tea - live": "Pennyroyal Tea - Live",
"pennyroyal tea - 2023 remaster": "Pennyroyal Tea - 2023 Remaster",
"plateau - live": "Plateau - Live",
"polly - live": "Polly - Live",
"radio friendly unit shifter - live in los angeles, great western forum - december 30, 1993": "Radio Friendly Unit Shifter - Live in Los Angeles, Great Western Forum - December 30, 1993",
"radio friendly unit shifter - 2023 remaster": "Radio Friendly Unit Shifter - 2023 Remaster",
"rape me - live in los angeles, great western forum - december 30, 1993": "Rape Me - Live in Los Angeles, Great Western Forum - December 30, 1993",
"rape me - 2023 remaster": "Rape Me - 2023 Remaster",
"sappy - 2023 remaster": "Sappy - 2023 Remaster",
"scentless apprentice - 2023 remaster": "Scentless Apprentice - 2023 Remaster",
"school - live in los angeles, great western forum - december 30, 1993": "School - Live in Los Angeles, Great Western Forum - December 30, 1993",
"Serve the Servants": "Serve The Servants",