-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetallica.json
2653 lines (2653 loc) · 283 KB
/
metallica.json
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
{
"members": [
{
"id": 1,
"name": "James Alan Hetfield",
"artisticName": "James Hetfield",
"birthDate": "1963/08/03",
"deathDate": null,
"memberSince": "1982/03/14",
"bandDepartureDate": null,
"instagram": "https://www.instagram.com/papa.het_/",
"photo-horizontal": "https://raw.githubusercontent.com/Filipe-Bacof/metallica-api/main/public/members/james-w.jpg",
"photo-vertical": "https://raw.githubusercontent.com/Filipe-Bacof/metallica-api/main/public/members/james-h.jpg"
},
{
"id": 2,
"name": "Sir Lars Ulrich",
"artisticName": "Lars Ulrich",
"birthDate": "1963/12/26",
"deathDate": null,
"memberSince": "1982/03/14",
"bandDepartureDate": null,
"instagram": "https://www.instagram.com/larsulrich/",
"photo-horizontal": "https://raw.githubusercontent.com/Filipe-Bacof/metallica-api/main/public/members/lars-w.jpg",
"photo-vertical": "https://raw.githubusercontent.com/Filipe-Bacof/metallica-api/main/public/members/lars-h.jpg"
},
{
"id": 3,
"name": "Kirk Lee Hammett",
"artisticName": "Kirk Hammett",
"birthDate": "1962/11/18",
"deathDate": null,
"memberSince": "1983/04/16",
"bandDepartureDate": null,
"instagram": "https://www.instagram.com/kirkhammett/",
"photo-horizontal": "https://raw.githubusercontent.com/Filipe-Bacof/metallica-api/main/public/members/kirk-w.jpg",
"photo-vertical": "https://raw.githubusercontent.com/Filipe-Bacof/metallica-api/main/public/members/kirk-h.jpg"
},
{
"id": 4,
"name": "Roberto Agustín Miguel Santiago Samuel Trujillo Veracruz",
"artisticName": "Robert Trujillo",
"birthDate": "1964/10/23",
"deathDate": null,
"memberSince": "2003/06/05",
"bandDepartureDate": null,
"instagram": "https://www.instagram.com/robtrujillo/",
"photo-horizontal": "https://raw.githubusercontent.com/Filipe-Bacof/metallica-api/main/public/members/trujillo-w.jpg",
"photo-vertical": "https://raw.githubusercontent.com/Filipe-Bacof/metallica-api/main/public/members/trujillo-h.jpg"
},
{
"id": 5,
"name": "Jason Curtis Newsted",
"artisticName": "Jason Newsted",
"birthDate": "1963/03/04",
"deathDate": null,
"memberSince": "1986/11/08",
"bandDepartureDate": "2001/01/17",
"instagram": "https://www.instagram.com/newsted21/",
"photo-horizontal": "https://raw.githubusercontent.com/Filipe-Bacof/metallica-api/main/public/members/jason-w.jpg",
"photo-vertical": "https://raw.githubusercontent.com/Filipe-Bacof/metallica-api/main/public/members/jason-h.jpg"
},
{
"id": 6,
"name": "Clifford Lee Burton",
"artisticName": "Cliff Burton",
"birthDate": "1962/02/10",
"deathDate": "1986/09/27",
"memberSince": "1984/12/14",
"bandDepartureDate": "1986/09/26",
"instagram": "https://www.instagram.com/explore/locations/257546413/cliff-burton-memorial/",
"photo-horizontal": "https://raw.githubusercontent.com/Filipe-Bacof/metallica-api/main/public/members/cliff-w.jpg",
"photo-vertical": "https://raw.githubusercontent.com/Filipe-Bacof/metallica-api/main/public/members/cliff-h.jpg"
},
{
"id": 7,
"name": "Ronald McGovney",
"artisticName": "Ron McGovney",
"birthDate": "1962/11/02",
"deathDate": null,
"memberSince": "1982/03/14",
"bandDepartureDate": "1982/11/30",
"instagram": "https://www.instagram.com/explore/tags/ronmcgovney/",
"photo-horizontal": "https://raw.githubusercontent.com/Filipe-Bacof/metallica-api/main/public/members/mcgovney-w.jpg",
"photo-vertical": "https://raw.githubusercontent.com/Filipe-Bacof/metallica-api/main/public/members/mcgovney-h.jpg"
},
{
"id": 8,
"name": "David Scott Mustaine",
"artisticName": "Dave Mustaine",
"birthDate": "1961/09/13",
"deathDate": null,
"memberSince": "1982/03/14",
"bandDepartureDate": "1983/04/11",
"instagram": "https://www.instagram.com/davemustaine/",
"photo-horizontal": "https://raw.githubusercontent.com/Filipe-Bacof/metallica-api/main/public/members/mustaine-w.jpg",
"photo-vertical": "https://raw.githubusercontent.com/Filipe-Bacof/metallica-api/main/public/members/mustaine-h.jpg"
},
{
"id": 9,
"name": "Lewis Allen Lou Reed",
"artisticName": "Lou Reed",
"birthDate": "1942/03/02",
"deathDate": "2013/10/27",
"memberSince": "2009/10/30",
"bandDepartureDate": "2011/11/01",
"instagram": "https://www.instagram.com/loureedofficial/",
"photo-horizontal": "https://raw.githubusercontent.com/Filipe-Bacof/metallica-api/main/public/members/reed-w.jpg",
"photo-vertical": "https://raw.githubusercontent.com/Filipe-Bacof/metallica-api/main/public/members/reed-h.jpg"
}
],
"albuns": [
{
"id": 1,
"title": "Kill 'Em All",
"albumCover": "https://raw.githubusercontent.com/Filipe-Bacof/metallica-api/main/public/albuns/killemall.jpg",
"spotifyURL": "https://open.spotify.com/intl-pt/album/1aGapZGHBovnmhwqVNI6JZ",
"releaseDate": "1983/07/25",
"duration": 3078,
"composers": [
1,
2,
3,
6,
7,
8
],
"tracks": [
{
"id": 1,
"discTrack": "Track 1",
"title": "Hit the Lights",
"duration": 255,
"lyrics": "Wow!\n\nNo life 'til leather\nWe're gonna kick some ass tonight\nWe got the metal madness\nWhen our fans start screaming, it's right\nWell, alright, yeah\n\nWhen we start to rock, we never wanna\nStop again\n\nHit the lights\nHit the lights\nHit the lights\n\nYou know our fans are insane\nWe're gonna blow this place away\nWith volume higher\nThan anything today\nThe only way, yeah\n\nWhen we start to rock, we never\nWanna stop again\n\nHit the lights\nHit the lights\nHit the lights\n\nWith all-out screaming\nWe're gonna rip right through your brain\nWe got the lethal power\nIt is causing you sweet pain\nOh, sweet pain, yeah\n\nWhen we start to rock, we never\nWanna stop again\n\nHit the lights\nHit the lights\nHit the lights\nHit the lights",
"spotifyURL": "https://open.spotify.com/intl-pt/track/4hh0IO5OHTigfnPTpDleL7",
"officialMusicVideo": "https://www.youtube.com/watch?v=uFSN39nS9qA",
"composers": [
1,
2
]
},
{
"id": 2,
"discTrack": "Track 2",
"title": "The Four Horsemen",
"duration": 432,
"lyrics": "By the last breath of the fourth winds blow\nBetter raise your ears\nThe sound of hooves knocks at your door\nLock up your wife and children now\nIt's time to wield the blade\nFor now you have got some company\n\nThe Horsemen are drawing nearer\nOn the leather steeds they ride\nThey have come to take your life\nOn through the dead of night\nWith the four Horsemen ride\nOr choose your fate and die\n\nYou have been dying since the day you were born\nYou know it has all been planned\nThe quartet of deliverance rides\nA sinner once a sinner twice\nNo need for confession now\nCause now you have got the fight of your life\n\nThe Horsemen are drawing nearer\nOn the leather steeds they ride\nThey have come to take your life\nOn through the dead of night\nWith the four Horsemen ride\nOr choose your fate and die\n\nTime\nHas taken its toll on you\nThe lines that crack your face\nFamine\nYour body it has torn through\nWithered in every place\nPestilence\nFor what you have had to endure\nAnd what you have put others through\nDeath\nDeliverance for you for sure\nThere is nothing you can do\n\nSo gather round young warriors now\nAnd saddle up your steeds\nKilling scores with demon swords\nNow is the death of doers of wrong\nSwing the judgment hammer down\nSafely inside armor blood guts and sweat\n\nThe Horsemen are drawing nearer\nOn the leather steeds they ride\nThey have come to take your life\nOn through the dead of night\nWith the four Horsemen ride\nOr choose your fate and die",
"spotifyURL": "https://open.spotify.com/intl-pt/track/5RrnDgjoFxDINI5aFQPZXt",
"officialMusicVideo": "https://www.youtube.com/watch?v=bNK6dm_rb1Q",
"composers": [
1,
2,
3,
8
]
},
{
"id": 3,
"discTrack": "Track 3",
"title": "Motorbreath",
"duration": 187,
"lyrics": "Living and dying laughing and crying\nOnce you have seen it you will never be the same\nLife in the fast lane is just how it seems\nHard and it is heavy and dirty and mean\n\nMotorbreath\nIt's how I live my life\nI can't take it any other way\nMotorbreath\nThe sign of living fast\nIt is going\nTo take our breath away\n\nDon't stop for nothing it's full speed or nothing\nI am taking down you know whatever is in my way\nGetting your kicks as you are shooting the line\nSending the shivers up and down my spine\n\nMotorbreath\nIt's how I live my life\nI can't take it any other way\nMotorbreath\nThe sign of living fast\nIt is going\nTo take our breath away\n\nThose people who tell you not to take chances\nThey are all missing on what life is about\nYou only live once so take hold of the chance\nDon't end up like others the same song and dance\n\nMotorbreath\nIt's how I live my life\nI can't take it any other way\nMotorbreath\nThe sign of living fast\nIt is going\nTo take our breath away",
"spotifyURL": "https://open.spotify.com/intl-pt/track/6RqEJvpEzzlwj8g0wKG1ln",
"officialMusicVideo": "https://www.youtube.com/watch?v=7jJAgSc769Q",
"composers": [
1
]
},
{
"id": 4,
"discTrack": "Track 4",
"title": "Jump in the Fire",
"duration": 281,
"lyrics": "Down in the depths of my fiery home\nThe summons bell will chime\nTempting you and all the earth\nto join our sinful kind\nThere is a job to be done and I'm the one\nYou people make me do it\nNow it is time for your fate and I won't hesitate\nto pull you down into this pit\n\nSo come on\nJump in the Fire\nSo come on\nJump in the Fire\n\nWith hell in my eyes and with death in my veins\nThe end is closing in\nFeeding on the minds of man\nand from their souls within\nMy disciples all shout to search out\nAnd they always shall obey\nFollow me now my child not the meek or the mild\nBut do just as I say\n\nSo come on\nJump in the Fire\nSo come on\nJump in the Fire\n\nJump by your will or be taken by force\nI'll get you either way\nTrying to keep the hellfire lit\nI am stalking you as prey\nLiving your life as me I am you you see\nThere is part of me in everyone\nSo reach down grab my hand walk with me through\nthe land\nCome home where you belong\n\nSo come on\nJump in the Fire\nSo come on\nJump in the Fire",
"spotifyURL": "https://open.spotify.com/intl-pt/track/4fVBFyglBhMf0erfF7pBJp",
"officialMusicVideo": "https://www.youtube.com/watch?v=Bw8W0Ztpe18",
"composers": [
1,
2,
8
]
},
{
"id": 5,
"discTrack": "Track 5",
"title": "(Anesthesia) Pulling Teeth (Instrumental)",
"duration": 254,
"lyrics": "Bass solo, take one",
"spotifyURL": "https://open.spotify.com/intl-pt/track/4hsJQXAXPbni5QyChVzVsD",
"officialMusicVideo": "https://www.youtube.com/watch?v=2kdUJ5NAnTc",
"composers": [
6
]
},
{
"id": 6,
"discTrack": "Track 6",
"title": "Whiplash",
"duration": 248,
"lyrics": "Late at night, all systems go\nYou've come to see the show\nWe do our best, you're the rest\nYou make it real, you know\n\nThere's a feeling deep inside that drives you fucking mad\nA feeling of a hammerhead\nYou need it, oh, so bad\n\nAdrenaline starts to flow\nYou're thrashing all around\nActing like a maniac\nWhiplash\n\nBang your head against the stage\nLike you never did before\nMake it ring, make it bleed\nMake it really sore\n\nIn a frenzied madness, with your leathers and your spikes\nHeads are bobbing all around\nIt's hot as hell tonight\n\nAdrenaline starts to flow\nYou're thrashing all around\nActing like a maniac\nWhiplash\n\nHere on stage\nThe Marshall Noise is piercing through your ears\nIt kicks your ass, kicks your face\nExploding feeling nears\n\nNow's the time to let it rip, to let it fucking loose\nWe're gathered here to maim and kill\n'Cause this is what we choose\n\nAdrenaline starts to flow\nYou're thrashing all around\nActing like a maniac\n\nHere we go!\n\nWhiplash\n\nThe show is through, the metal's gone\nIt's time to hit the road\nAnother town, another gig\nAgain we will explode\n\nHotel rooms and motorways, life out here is raw\nBut we'll never stop, we'll never quit\n'Cause we're Metallica\n\nAdrenaline starts to flow\nYou're thrashing all around\nActing like a maniac\n\nWhoa, whoa",
"spotifyURL": "https://open.spotify.com/intl-pt/track/38fIaph07Kd8ZIN6l17ZJs",
"officialMusicVideo": "https://www.youtube.com/watch?v=oJhR7nex47w",
"composers": [
1,
2
]
},
{
"id": 7,
"discTrack": "Track 7",
"title": "Phantom Lord",
"duration": 301,
"lyrics": "Sound is ripping through your ears\nThe deafening sound of metal nears\nYour bodies waiting for his whips\nThe taste of leather on your lips\n\nHear the cry of War\nLouder than before\nWith his sword in hand\nTo control the land\nCrushing metal strikes\nOn this frightening night\nFall onto your knees\nFor the Phantom Lord\n\nVictims falling under chains\nYou hear them crying death pains\nThe fists of terrors breaking through\nNow there's nothing you can do\n\nHear the cry of War\nLouder than before\nWith his sword in hand\nTo control the land\nCrushing metal strikes\nOn this frightening night\nFall onto your knees\nFor the Phantom Lord\n\nThe leather armies have prevailed\nThe Phantom Lord has never failed\nSmoke is lifting from the ground\nThe rising volume metal sound\n\nHear the cry of War\nLouder than before\nWith his sword in hand\nTo control the land\nCrushing metal strikes\nOn this frightening night\nFall onto your knees\nFor the Phantom Lord\n\nFall to your knees\nAnd bow to the Phantom Lord",
"spotifyURL": "https://open.spotify.com/intl-pt/track/5R5b3EZkGsYsZz2XdUNrXI",
"officialMusicVideo": "https://www.youtube.com/watch?v=PoaGf7Bb5E4",
"composers": [
1,
2,
8
]
},
{
"id": 8,
"discTrack": "Track 8",
"title": "No Remorse",
"duration": 386,
"lyrics": "No mercy for what we are doing\nNo thought to even what we have done\nWe don't need to feel the sorrow\nNo remorse for the helpless one\n\nWar without end\n\nNo remorse, no repent\nWe don't care what it meant\nAnother day, another death\nAnother sorrow, another breath\nNo remorse, no repent\nWe don't care what it meant\nAnother day, another death\nAnother sorrow, another breath\n\nBlood feeds the war machine\nas it eats its way across the land\nWe don't need the feel the sorrow\nNo remorse is the one command\n\nWar without end\nNo remorse, no repent\nWe don't care what it meant\nAnother day, another death\nAnother sorrow, another breath\nNo remorse, no repent\nWe don't care what it meant\nAnother day, another death\nAnother sorrow, another breath\n\nOnly the strong survive\nNo one to save the weaker race\nWe are ready to kill all comers\nLike a loaded gun right at your face\n\nWar without end\nNo remorse, no repent\nWe don't care what it meant\nAnother day, another death\nAnother sorrow, another breath\nNo remorse, no repent\nWe don't care what it meant\nAnother day, another death\nAnother sorrow, another breath\n\nAttack\nBullets are flying\nPeople are dying\nWith madness surrounding all hell's breaking loose\nSoldiers are hounding\nBodies are mounting\ncannons are shouting to take their abuse\nWith war machines going\nBlood starts to flowing\nNo mercy given to anyone hear\nThe furious fighting\nSwords are like lighting\nIt all becomes frightening to you\nKnow death is near\nNo remorse",
"spotifyURL": "https://open.spotify.com/intl-pt/track/2uQBTkujGFuwUnA0fi5Qnb",
"officialMusicVideo": "https://www.youtube.com/watch?v=H-Ac77vCWMA",
"composers": [
1,
2
]
},
{
"id": 9,
"discTrack": "Track 9",
"title": "Seek & Destroy",
"duration": 414,
"lyrics": "Alright!\n\nWe're scanning the scene in the city tonight\nWe're looking for you, to start up a fight\nThere is an evil feeling in our brains\nBut it's nothing new, you know it drives us insane\n\nRunning, on our way\nHiding, you will pay\nDying, one thousand deaths\nRunning, on our way\nHiding, you will pay\nDying, one thousand deaths\n\nSearching, seek and destroy\nSearching, seek and destroy\nSearching, seek and destroy\nSearching, seek and destroy\n\nThere is no escape and that is for sure\nThis is the end, we won't take any more\nSay goodbye to the world you live in\nYou have always been taking, but now you're giving\n\nRunning, on our way\nHiding, you will pay\nDying, one thousand deaths\nRunning, on our way\nHiding, you will pay\nDying, one thousand deaths\n\nSearching, seek and destroy\nSearching, seek and destroy\nSearching, seek and destroy\nSearching, seek and destroy\n\nOur brains are on fire with the feeling to kill\nAnd it won't go away until our dreams are fulfilled\nThere is only one thing on our minds\nDon't try running away, 'cause you're the one we will find\n\nRunning, on our way\nHiding, you will pay\nDying, one thousand deaths\nRunning, on our way\nHiding, you will pay\nDying, one thousand deaths\n\nSearching, seek and destroy\nSearching, seek and destroy\nSearching, seek and destroy\nSearching, seek and destroy",
"spotifyURL": "https://open.spotify.com/intl-pt/track/28WmNsclKsrVmdv3tDmoYU",
"officialMusicVideo": "https://www.youtube.com/watch?v=NJzoBmVPeYw",
"composers": [
1,
2
]
},
{
"id": 10,
"discTrack": "Track 10",
"title": "Metal Militia",
"duration": 311,
"lyrics": "Thunder and lightning the gods take revenge\nSenseless destruction\nVictims of fury are cowardly now\nRunning for safety\nStabbing the harlot to pay for her sins\nLeaving the virgin\nSuicide running as if it were free\nRipping and tearing\n\nOn through the mist and the madness\nWe are trying to get the message to you\nMetal Militia\nMetal Militia\nMetal Militia\n\nChained and shadowed to be left behind\nNine and one thousand\nMetal militia for your sacrifice\nIron clad soldiers\nJoin or be conquered the law of the land\nWhat will be fall you\nThe metallization of your inner soul\nTwisting and turning\n\nOn through the mist and the madness\nWe are trying to get the message to you\nMetal Militia\nMetal Militia\n\nWe are as one as we all are the same\nFighting for one cause\nLeather and metal are our uniforms\nProtecting what we are\nJoining together to take on the world\nWith our heavy metal\nSpreading the message to everyone here\nCome let yourself go\n\nOn through the mist and the madness\nWe are trying to get the message to you\nMetal Militia\nMetal Militia\nMetal Militia",
"spotifyURL": "https://open.spotify.com/intl-pt/track/2TBRfDnfwsOIaGxkkXFBN2",
"officialMusicVideo": "https://www.youtube.com/watch?v=Tche1TWh0mQ",
"composers": [
1,
2,
8
]
}
]
},
{
"id": 2,
"title": "Ride the Lightning",
"albumCover": "https://raw.githubusercontent.com/Filipe-Bacof/metallica-api/main/public/albuns/ridethelightning.jpg",
"spotifyURL": "https://open.spotify.com/intl-pt/album/05DePtm7oQMdL3Uzw2Jmsc",
"releaseDate": "1984/07/27",
"duration": 2845,
"composers": [
1,
2,
3,
6,
8
],
"tracks": [
{
"id": 11,
"discTrack": "Track 1",
"title": "Fight Fire With Fire",
"duration": 284,
"lyrics": "Do unto others\nAs they've done to you\nBut what the hell is\nThis world coming to?\n\nBlow the universe\nInto nothingness\nNuclear warfare\nShall lay us to rest\n\nFight fire with fire\nEnding is near\nFight fire with fire\nBursting with fear\n\nWe all shall die\n\nTime is like a fuse\nShort and burning fast\nArmageddon's here\nLike said in the past\n\nFight fire with fire\nEnding is near\nFight fire with fire\nBursting with fear\n\nSoon to fill our lungs\nThe hot winds of death\nThe gods are laughing\nSo take your last breath\n\nFight fire with fire\nEnding is near\nFight fire with fire\nBursting with fear\n\nFight fire with fire\nFight fire with fire\nFight fire with fire\nFight fire with fire\n\nFight fire with fire\nFight fire with fire\nFight fire with fire\nFight fire with fire\n\nFight",
"spotifyURL": "https://open.spotify.com/intl-pt/track/6ckozbGmOusAnLT2LEbERy",
"officialMusicVideo": "https://www.youtube.com/watch?v=YkPhka2m_D0",
"composers": [
1,
2,
6
]
},
{
"id": 12,
"discTrack": "Track 2",
"title": "Ride the Lightning",
"duration": 396,
"lyrics": "Guilty as charged\nBut damn it, it ain't right\nThere's someone else controlling me\n\nDeath in the air\nStrapped in the electric chair\nThis can't be happening to me\n\nWho made you god to say\nI'll take your life from you\n\nFlash before my eyes\nNow it's time to die\nBurning in my brain\nI can feel the flame\n\nWait for the sign\nTo flick the switch of death\nIt's the beginning of the end\n\nSweat, chilling cold\nAs I watch death unfold\nConsiousness is my only friend\n\nMy fingers grip with fear\nWhat am I doing here?\n\nFlash before my eyes\nNow it's time to die\nBurning in my brain\nI can feel the flame\n\nSomeone help me\nOh, please, God, help me\nThey are trying to take it all away\nI don't want to die\n\nTime moving slow\nThe minutes seem like hours\nThe final curtain all I see\n\nHow true is this?\nJust get it over with\nIf this is true, just let it be\n\nWakened by horrid scream\nFreed from this frightening dream\n\nFlash before my eyes\nNow it's time to die\nBurning in my brain\nI can feel the flame",
"spotifyURL": "https://open.spotify.com/intl-pt/track/4d50VgYqfw1Rd0knRRL3qv",
"officialMusicVideo": "https://www.youtube.com/watch?v=Z8CHD4KB1Mk",
"composers": [
1,
2,
6,
8
]
},
{
"id": 13,
"discTrack": "Track 3",
"title": "For Whom the Bell Tolls",
"duration": 309,
"lyrics": "Make his fight on the hill in the early day\nConstant chill deep inside\nShouting gun, on they run through the endless grey\nOn they fight, for they are right, yes, but who's to say?\nFor a hill, men would kill, why? They do not know\nStiffened wounds test their pride\nMen of five, still alive through the raging glow\nGone insane from the pain that they surely know\n\nFor whom the bell tolls\nTime marches on\nFor whom the bell tolls\n\nTake a look to the sky just before you die\nIt's the last time you will\nBlackened roar, massive roar fills the crumbling sky\nShattered goal fills his soul with a ruthless cry\nStranger now are his eyes to this mystery\nHe hears the silence so loud\nCrack of dawn, all is gone except the will to be\nNow they see what will be, blinded eyes to see\n\nFor whom the bell tolls\nTime marches on\nFor whom the bell tolls",
"spotifyURL": "https://open.spotify.com/intl-pt/track/2dXsILW8gzkosqleHAvl0v",
"officialMusicVideo": "https://www.youtube.com/watch?v=qdlQyNe_9tE",
"composers": [
1,
2,
6
]
},
{
"id": 14,
"discTrack": "Track 4",
"title": "Fade to Black",
"duration": 417,
"lyrics": "Life, it seems, will fade away\nDrifting further every day\nGetting lost within myself\nNothing matters, no one else\n\nI have lost the will to live\nSimply nothing more to give\nThere is nothing more for me\nNeed the end to set me free\n\nThings are not what they used to be\nMissing one inside of me\nDeathly lost, this can't be real\nCannot stand this hell I feel\n\nEmptiness is filling me\nTo the point of agony\nGrowing darkness taking dawn\nI was me, but now he's gone\n\nNo one but me can save myself\nBut it's too late\nNow I can't think\nThink why I should even try\n\nYesterday seems as though it never existed\nDeath greets me warm\nNow I will just say goodbye\nGoodbye",
"spotifyURL": "https://open.spotify.com/intl-pt/track/7866E49sLyI938dEqxi8a4",
"officialMusicVideo": "https://www.youtube.com/watch?v=FcoUvu0mGog",
"composers": [
1,
2,
6,
3
]
},
{
"id": 15,
"discTrack": "Track 5",
"title": "Trapped Under Ice",
"duration": 244,
"lyrics": "I don't know how to live trough this hell\nWoken up, I'm still locked in this shell\nFrozen soul, frozen down to the core\nBreak the ice, I can't take anymore\n\nFreezing\nCan't move at all\nScreaming\nCan't hear my call\nI am dying to live\nCry out\nI'm trapped under the ice\n\nCrystallized, as I lay here and rest\nEyes of glass stare directly at death\nFrom deep sleep I have broken away\nNo one knows, no one hears what I say\n\nFreezing\nCan't move at all\nScreaming\nCan't hear my call\nI am dying to live\nCry out\nI'm trapped under the ice\n\nScream from my soul\nFate, mystified\nHell, forever more\nScream from my soul\nFate, mystified\nHell, forever more\n\nNo release from my cryonic state\nWhat is this? I've been stricken by fate\nWrapped up tight, cannot move, can't break free\nHand of doom has a tight grip on me\n\nFreezing\nCan't move at all\nScreaming\nCan't hear my call\nI am dying to live\nCry out\nI'm trapped under the ice",
"spotifyURL": "https://open.spotify.com/intl-pt/track/3J8jTThxk8GtxyoupHtyrb",
"officialMusicVideo": "https://www.youtube.com/watch?v=X61Jofq9OPg",
"composers": [
1,
2,
3
]
},
{
"id": 16,
"discTrack": "Track 6",
"title": "Escape",
"duration": 263,
"lyrics": "Feel no pain, but my life ain't easy\nI know I'm my best friend\nNo one cares, but I'm so much stronger\nI'll fight until the end\nTo escape from the true false world\nUndamaged destiny\nCan't get caught in the endless circle\nRing of stupidity\n\nOut for my own, out to be free\nOne with my mind, they just can't see\nNo need to hear things that they say\nLife is for my own to live my own way\n\nRape my mind and destroy my feelings\nDon't tell me what to do\nI don't care now, 'cause I'm on my side\nAnd I can see through you\nFeed my brain with your so called standards\nWho says that I ain't right\nBreak away from your common fashion\nSee through your blurry sight\n\nOut for my own, out to be free\nOne with my mind, they just can't see\nNo need to hear things that they say\nLife is for my own to live my own way\n\nSee them try to bring the hammer down\nNo damn chains can hold me to the ground\nLife is for my own to live my own way",
"spotifyURL": "https://open.spotify.com/intl-pt/track/6Kjwg4dmlA5UUqOvWXbiar",
"officialMusicVideo": "https://www.youtube.com/watch?v=rUyzqq4wbJk",
"composers": [
1,
2,
3
]
},
{
"id": 17,
"discTrack": "Track 7",
"title": "Creeping Death",
"duration": 395,
"lyrics": "Slaves, Hebrews born to serve\nTo the Pharaoh\nHeed to his every word\nLive in fear\nFaith, of the unknown one\nThe deliverer\nWait, something must be done\nFour hundred years\n\nSo let it be written, so let it be done\nI'm sent here by the chosen one\nSo let it be written, so let it be done\nTo kill the first born pharaoh son\nI'm creeping death\n\nNow, let my people go\nLand of Goshen\nGo, I will be with thee\nBush of fire\nBlood, running red and strong\nDown the Nile\nPlague, darkness three days long\nHail to fire\n\nSo let it be written, so let it be done\nI'm sent here by the chosen one\nSo let it be written, so let it be done\nTo kill the first born pharaoh son\nI'm creeping death\n\nDie by my hand\nI creep across the land\nKilling first born man\n\nDie by my hand\nI creep across the land\nKilling first born man\n\nI rule the midnight air\nThe destroyer\nBorn, I shall soon be there\nDeadly mass\nI creep the steps and floor\nFinal darkness\nBlood, lambs blood painted door\nI shall pass\n\nSo let it be written, so let it be done\nI'm sent here by the chosen one\nSo let it be written, so let it be done\nTo kill the first born pharaoh son\nI'm creeping death",
"spotifyURL": "https://open.spotify.com/intl-pt/track/4CLRLdxUDPNeO1xCW0U2zC",
"officialMusicVideo": "https://www.youtube.com/watch?v=VJuAquSX4FE",
"composers": [
1,
2,
6,
3
]
},
{
"id": 18,
"discTrack": "Track 8",
"title": "The Call of Ktulu",
"duration": 533,
"lyrics": "Instrumental",
"spotifyURL": "https://open.spotify.com/intl-pt/track/53aVMHWjpz7gB2wGtAv3lD",
"officialMusicVideo": "https://www.youtube.com/watch?v=GHaAsolqvX4",
"composers": [
1,
2,
6,
8
]
}
]
},
{
"id": 3,
"title": "Master of Puppets",
"albumCover": "https://raw.githubusercontent.com/Filipe-Bacof/metallica-api/main/public/albuns/masterofpuppets.jpg",
"spotifyURL": "https://open.spotify.com/intl-pt/album/2Lq2qX3hYhiuPckC8Flj21",
"releaseDate": "1986/03/03",
"duration": 3286,
"composers": [
1,
2,
3,
6
],
"tracks": [
{
"id": 19,
"discTrack": "Track 1",
"title": "Battery",
"duration": 313,
"lyrics": "Lashing out the action, returning the reaction\nWeak are ripped and torn away\nHypnotizing power, crushing all that cower\nBattery is here to stay\n\nSmashing through the boundaries\nLunacy has found me\nCannot stop the battery\nPounding out aggression\nTurns into obsession\nCannot kill the battery\nCannot kill the family\nBattery has found in me\nBattery\nBattery\n\nCrushing all deceivers, mashing non-believers\nNever ending potency\nHungry violence seeker, feeding off the weaker\nBreeding on insanity\n\nSmashing through the boundaries\nLunacy has found me\nCannot stop the battery\nPounding out aggression\nTurns into obsession\nCannot kill the battery\nCannot kill the family\nBattery has found in me\nBattery\nBattery\n\nCircle of destruction, hammer comes crushing\nPowerhouse of energy\nWhipping up a fury, dominating flurry\nWe create the battery\n\nSmashing through the boundaries\nLunacy has found me\nCannot stop the battery\nPounding out aggression\nTurns into obsession\nCannot kill the battery\nCannot kill the family\nBattery has found in me\nBattery\nBattery\nBattery\nBattery",
"spotifyURL": "https://open.spotify.com/intl-pt/track/6UB9mShVLbMm0W4e6vud4C",
"officialMusicVideo": "https://www.youtube.com/watch?v=_efOnc3onfQ",
"composers": [
1,
2
]
},
{
"id": 20,
"discTrack": "Track 2",
"title": "Master of Puppets",
"duration": 516,
"lyrics": "End of passion play\nCrumbling away\nI'm your source of self-destruction\nVeins that pump with fear\nSucking darkest clear\nLeading on your death's construction\n\nTaste me, you will see\nMore is all you need\nDedicated to\nHow I'm killing you\n\nCome crawling faster (faster)\nObey your master (master)\nYour life burns faster (faster)\nObey your master, master\n\nMaster of puppets, I'm pulling your strings\nTwisting your mind and smashing your dreams\nBlinded by me, you can't see a thing\nJust call my name 'cause I'll hear you scream\n\nMaster, master\nJust call my name 'cause I'll hear you scream\nMaster, master\n\nNeedlework the way\nNever you betray\nLife of death becoming clearer\nPain monopoly\nRitual misery\nChop your breakfast on a mirror\n\nTaste me, you will see\nMore is all you need\nDedicated to\nHow I'm killing you\n\nCome crawling faster (faster)\nObey your master (master)\nYour life burns faster (faster)\nObey your master, master\n\nMaster of puppets, I'm pulling your strings\nTwisting your mind and smashing your dreams\nBlinded by me, you can't see a thing\nJust call my name 'cause I'll hear you scream\n\nMaster, master\nJust call my name 'cause I'll hear you scream\nMaster, master\n\n(Master, master, master, master)\n\nMaster, master\nWhere's the dreams that I've been after?\nMaster, master\nYou promised only lies\n\nLaughter, laughter\nAll I hear or see is laughter\nLaughter, laughter\nLaughing at my cries\n\nFix me\n\nHell is worth all that\nNatural habitat\nJust a rhyme without a reason\nNever-ending maze\nDrift on numbered days\nNow your life is out of season\n\nI will occupy\nI will help you die\nI will run through you\nNow I rule you too\n\nCome crawling faster (faster)\nObey your master (master)\nYour life burns faster (faster)\nObey your master, master\n\nMaster of puppets, I'm pulling your strings\nTwisting your mind and smashing your dreams\nBlinded by me, you can't see a thing\nJust call my name 'cause I'll hear you scream\n\nMaster, master\nJust call my name 'cause I'll hear you scream\nMaster, master",
"spotifyURL": "https://open.spotify.com/intl-pt/track/2MuWTIM3b0YEAskbeeFE1i",
"officialMusicVideo": "https://www.youtube.com/watch?v=Mt5MCfJ5tZQ",
"composers": [
1,
2,
3,
6
]
},
{
"id": 21,
"discTrack": "Track 3",
"title": "The Thing That Should Not Be",
"duration": 397,
"lyrics": "Messenger of fear in sight\nDark deception kills the light\nHybrid children watch the sea\nPray for Father, roaming free\n\nFearless wretch\nInsanity\nHe watches, lurking beneath the sea\nGreat Old One, forbidden site\nHe searches, hunter of the shadows is rising\nImmortal\nIn madness, you dwell\n\nCrawling chaos, underground\nCult has summoned, twisted sound\nOut from ruins once possessed\nFallen city, living death\n\nFearless wretch, insanity\nHe watches, lurking beneath the sea\nTimeless sleep, has been upset\nHe awakens, hunter of the shadows is rising\nImmortal\nIn madness you dwell\nIn madness you dwell\n\nNot dead, which eternal lie\nStranger eons death may die\nDrain you of your sanity\nFace the thing that should not be\n\nFearless wretch, insanity\nHe watches, lurking beneath the sea\nGreat Old One, forbidden site\nHe searches, hunter of the shadows is rising\nImmortal\nIn madness you dwell",
"spotifyURL": "https://open.spotify.com/intl-pt/track/7vFC68CBMKu99p4tIz6yzx",
"officialMusicVideo": "https://www.youtube.com/watch?v=qgeSScjSU7U",
"composers": [
1,
2,
3
]
},
{
"id": 22,
"discTrack": "Track 4",
"title": "Welcome Home (Sanitarium)",
"duration": 388,
"lyrics": "Welcome to where time stands still\nNo one leaves and no one will\nMoon is full, never seems to change\nJust labeled mentally deranged\nDream the same thing every night\nI see our freedom in my sight\nNo locked doors, no windows barred\nNo things to make my brain seem scarred\n\nSleep, my friend, and you will see\nThat dream is my reality\nThey keep me locked up in this cage\nCan't they see it's why my brain says: Rage\n\nSanitarium, leave me be\nSanitarium, just leave me alone\n\nBuild my fear of what's out there\nCannot breathe the open air\nWhisper things into my brain\nAssuring me that I'm insane\nThey think our heads are in their hands\nBut violent use brings violent plans\nKeep him tied, it makes him well\nHe's getting better, can't you tell?\n\nNo more can they keep us in\nListen, damn it, we will win\nThey see it right, they see it well\nBut they think this saves us from our hell\n\nSanitarium, leave me be\nSanitarium, just leave me alone\nSanitarium, just leave me alone\n\nFear of living on\nNatives getting restless now\nMutiny in the air\nGot some death to do\nMirror stares back hard\nKill, it's such a friendly word\nSeems the only way\nFor reaching out again",
"spotifyURL": "https://open.spotify.com/intl-pt/track/4TktvZTsMoFukiim1otMtr",
"officialMusicVideo": "https://www.youtube.com/watch?v=3YjIQTcs7lM",
"composers": [
1,
2,
3
]
},
{
"id": 23,
"discTrack": "Track 5",
"title": "Disposable Heroes",
"duration": 497,
"lyrics": "Bodies fill the fields I see, hungry heroes end\nNo one to play soldier now, no one to pretend\nRunning blind through killing fields, bred to kill them all\nVictim of what said should be\nA servant 'til I fall\n\nSoldier boy, made of clay\nNow an empty shell\nTwenty one, only son\nBut he served us well\nBred to kill, not to care\nDo just as we say\nFinished here, greetings Death\nHe's yours to take away\n\nBack to the front\nYou will do what I say, when I say\nBack to the front\nYou will die when I say, you must die\nBack to the front\nYou coward\nYou servant\nYou blindman\n\nBarking of machinegun fire, does nothing to me now\nSounding of the clock that ticks, get used to it somehow\nMore a man, more stripes you bare, glory seeker trends\nBodies fill the fields I see\nThe slaughter never ends\n\nSoldier boy, made of clay\nNow an empty shell\nTwenty one, only son\nBut he served us well\nBred to kill, not to care\nDo just as we say\nFinished here, greetings Death\nHe's yours to take away\n\nBack to the front\nYou will do what I say, when I say\nBack to the front\nYou will die when I say, you must die\nBack to the front\nYou coward\nYou servant\nYou blindman\n\nWhy, am I dying?\nKill, have no fear\nLie, live off lying\nHell, Hell is here\n\nI was born for dying\n\nLife planned out before my birth, nothing could I say\nHad no chance to see myself, molded day by day\nLooking back I realize, nothing have I done\nLeft to die with only friend\nAlone I clench my gun\n\nSoldier boy, made of clay\nNow an empty shell\nTwenty one, only son\nBut he served us well\nBred to kill, not to care\nDo just as we say\nFinished here, greetings Death\nHe's yours to take away\n\nBack to the front\nYou will do what I say, when I say\nBack to the front\nYou will die when I say, you must die\nBack to the front\nYou coward\nYou servant\nYou blindman\n\nBack to the front",
"spotifyURL": "https://open.spotify.com/intl-pt/track/4tPHBRIPsB55nssjvKDbjj",
"officialMusicVideo": "https://www.youtube.com/watch?v=qJqHjDsfKP0",
"composers": [
1,
2,
3
]
},
{
"id": 24,
"discTrack": "Track 6",
"title": "Leper Messiah",
"duration": 341,
"lyrics": "Spineless from the start\nSucked into the part\nCircus comes to town\nYou play the lead clown\nPlease, please\nSpreading his disease\nLiving by his story\nKnees, knees\nFalling to your knees\nSuffer for his glory\nYou will\n\nTime for lust\nTime for lie\nTime to kiss your life goodbye\nSend me money, send me green, heaven you will meet\nMake a contribution and you'll get a better seat\nBow to Leper Messiah\n\nMarvel at his tricks\nNeed your Sunday fix\nBlind devotion came\nRotting your brain\nChain, chain\nJoin the endless chain\nTaken by his glamour\nFame, fame\nInfection is the game\nStinking drunk with power\nWe see\n\nTime for lust\nTime for lie\nTime to kiss your life goodbye\nSend me money, send me green, heaven you will meet\nMake a contribution and you'll get a better seat\nBow to Leper Messiah\n\nWitchery\nWeakening\nSees the sheep are gathering\nSet the trap\nHypnotize\nNow you follow\n\nTime for lust\nTime for lie\nTime to kiss your life goodbye\n\nSend me money, send me green, heaven you will meet\nMake a contribution and you'll get a better seat\n\nLie\nLie\nLie\nLie\nLie\nLie\nLie\nLie",
"spotifyURL": "https://open.spotify.com/intl-pt/track/6XN00D9ejjEt1cW1sY44Gu",
"officialMusicVideo": "https://www.youtube.com/watch?v=4s853XIQ6Ng",
"composers": [
1,
2
]
},
{
"id": 25,
"discTrack": "Track 7",
"title": "Orion",
"duration": 508,
"lyrics": "Instrumental",
"spotifyURL": "https://open.spotify.com/intl-pt/track/2HD5BWFthrNf2uFyEhi53d",
"officialMusicVideo": "https://www.youtube.com/watch?v=iL42fwM5muE",
"composers": [
1,
2,
6
]
},
{
"id": 26,
"discTrack": "Track 8",
"title": "Damage, Inc.",
"duration": 330,
"lyrics": "Dealing out the agony within\nCharging hard and no one's gonna give in\nLiving on your knees, conformity\nOr dying on your feet for honesty\nInbred, our bodies work as one\nBloody, but never cry submission\nFollowing our instinct not a trend\nGo against the grain until the end\n\nBlood will follow blood\nDying time is here\nDamage Incorporated\n\nSlamming through, don't fuck with razorback\nStepping out? You'll feel our hell on your back\nBlood follows blood and we make sure\nLife ain't for you and we're the cure\nHonesty is my only excuse\nTry to rob us of it, but it's no use\nSteamroller action crushing all\nVictim is your name and you shall fall\n\nBlood will follow blood\nDying time is here\nDamage Incorporated\n\nWe chew and spit you out\nWe laugh, you scream and shout\nAll flee, with fear you run\nYou'll know just where we come from\n\nDamage Incorporated\nGo\n\nDamage jackals ripping right through you\nSight and smell of this, it gets me goin'\nKnow just how to get just what we want\nTear it from your soul in nightly hunt\nFuck it all and fuckin' no regrets\nNever happy ending on these dark sets\nAll's fair for Damage Inc. You see\nStep a little closer if you please\n\nBlood will follow blood\nDying time is here\nDamage Incorporated",
"spotifyURL": "https://open.spotify.com/intl-pt/track/3n7b078PcVbHhUaYhBWIgZ",
"officialMusicVideo": "https://www.youtube.com/watch?v=dSydFyi4jtQ",
"composers": [
1,
2,
3,
6
]
}
]
},
{
"id": 4,
"title": "...And Justice for All",
"albumCover": "https://raw.githubusercontent.com/Filipe-Bacof/metallica-api/main/public/albuns/andjusticeforall.jpg",
"spotifyURL": "https://open.spotify.com/intl-pt/album/6jZ1z25PyF4Yd3kHxt9rl1",
"releaseDate": "1988/09/07",
"duration": 3934,
"composers": [
1,
2,
3,
5
],
"tracks": [
{
"id": 27,
"discTrack": "Track 1",
"title": "Blackened",
"duration": 401,
"lyrics": "Blackened is the end\nWinter it will send\nThrowing all you see\nInto obscurity\n\nDeath of mother earth\nNever a rebirth\nEvolution's end\nNever will it mend\n\nNever\n\nFire\nTo begin whipping dance of the dead\nBlackened is the end\nTo begin whipping dance of the dead\nColor our world blackened\n\nBlistering of earth\nTerminate its worth\nDeadly nicotine\nKill what might have been\n\nCallous frigid chill\nNothing left to kill\nNever seen before\nBreathing nevermore\n\nNever\n\nFire\nTo begin whipping dance of the dead\nBlackened is the end\nTo begin whipping dance of the dead\nColor our world blackened\nBlackened\n\nOpposition, contradiction, premonition, compromise\nAgitation, violation, mutilation, planet dies\nDarkest color\nBlistered earth\nTrue death of life\nTermination, expiration, cancellation, human race\nExpectation, liberation, population, lay to waste\nSee our mother\nPut to death\nSee our mother die\n\nSmoldering decay\nTake her breath away\nMillions of our years\nIn minutes disappears\n\nDarkening in vain\nDecadence remains\nAll is said and done\nNever is the Sun\n\nNever\n\nFire\nTo begin whipping dance of the dead\nBlackened is the end\nTo begin whipping dance of the dead\n\nFire\nIs the outcome of hypocrisy\nDarkest potency\nIn the exit of humanity\nColor our world blackened\nBlackened",
"spotifyURL": "https://open.spotify.com/intl-pt/track/1odk70HBNbdk4wU0Ja9JR7",
"officialMusicVideo": "https://www.youtube.com/watch?v=kt8rOBrV1nM",
"composers": [
1,
2,
5
]
},
{
"id": 28,
"discTrack": "Track 2",
"title": "...And Justice for All",
"duration": 587,
"lyrics": "Halls of justice painted green, money talking\nPower wolves beset your door, hear them stalking\nSoon you'll please their appetite, they devour\nHammer of justice crushes you, overpower\n\nThe ultimate in vanity\nExploiting their supremacy\nI can't believe the things you say\nI can't believe, I can't believe the price you pay\nNothing can save you\n\nJustice is lost, justice is raped, justice is gone\nPulling your strings, justice is done\nSeeking no truth, winning is all\nFind it so grim, so true, so real\n\nApathy their stepping stone, so unfeeling\nHidden deep animosity, so deceiving\nThrough your eyes their light burns, hoping to find\nInquisition sinking you with prying minds\n\nThe ultimate in vanity\nExploiting their supremacy\nI can't believe the things you say\nI can't believe, I can't believe the price you pay\nNothing can save you\n\nJustice is lost, justice is raped, justice is gone\nPulling your strings, justice is done\nSeeking no truth, winning is all\nFind it so grim, so true, so real\n\nLady Justice has been raped, truth assassin\nRolls of red tape seal your lips, now you're done in\nTheir money tips her scales again, make your deal\nJust what is truth? I cannot tell, cannot feel\n\nThe ultimate in vanity\nExploiting their supremacy\nI can't believe the things you say\nI can't believe, I can't believe the price we pay\nNothing can save us\n\nJustice is lost, justice is raped, justice is gone\nPulling your strings, justice is done\nSeeking no truth, winning is all\nFind it so grim, so true, so real\n\nSeeking no truth, winning is all\nFind it so grim, so true, so real",
"spotifyURL": "https://open.spotify.com/intl-pt/track/4a47TNOfJ9vbpbmU31wpgT",
"officialMusicVideo": "https://www.youtube.com/watch?v=HbokBTEBEOE",
"composers": [
1,
2,
3
]
},
{
"id": 29,
"discTrack": "Track 3",
"title": "Eye of the Beholder",
"duration": 390,
"lyrics": "Do you see what I see?\nTruth is an offence\nYou silence for your confidence\nDo you hear what I hear?\nDoors are slamming shut\nLimit your imagination, keep you where they must\nDo you feel what I feel?\nBittering distress\nWho decides what you express?\nDo you take what I take?\nEndurance is the word\nMoving back instead of forward seems to me absurd\n\nDoesn't matter what you see\nOr into it what you read\nYou can do it your own way\nIf it's done just how I say\n\nIndependence limited\nFreedom of choice\nChoice is made for you my friend\nFreedom of speech\nSpeech is words that they will bend\nFreedom with their exception\n\nDo you fear what I fear?\nLiving properly\nTruths to you are lies to me\nDo you choose what I choose?\nMore alternatives\nEnergy derives from both the plus and negative\nDo you need what I need?\nBoundaries overthrown\nLook inside, to each his own\nDo you trust what I trust?\nMe, myself, and I\nPenetrate the smoke screen, I see through the Selfish lie\n\nDoesn't matter what you see\nOr into it what you read\nYou can do it your own way\nIf it's done just how I say\n\nIndependence limited\nFreedom of choice\nChoice is made for you my friend\nFreedom of speech\nSpeech is words that they will bend\nFreedom with their exception\n\nDo you know what I know?\nYour money and your wealth\nYou silence just to hear yourself\nDo you want what I want?\nDesire not a thing\nI hunger after independence, lengthen freedom's ring\n\nDoesn't matter what you see\nOr into it what you read\nYou can do it your own way\nIf it's done just how I say\n\nIndependence limited\nFreedom of choice\nChoice is made for you my friend\nFreedom of speech\nSpeech is words that they will bend\nFreedom no longer frees you\n\nDoesn't matter what you see\nOr into it what you read\nYou can do it your own way\nIf it's done just how I say",
"spotifyURL": "https://open.spotify.com/intl-pt/track/4oNXsQxJS726q1CALwlIzc",
"officialMusicVideo": "https://www.youtube.com/watch?v=N-wemX7jbUs",
"composers": [
1,
2,
3
]
},
{
"id": 30,
"discTrack": "Track 4",
"title": "One",
"duration": 444,
"lyrics": "I can't remember anything\nCan't tell if this is true or dream\nDeep down inside I feel the scream\nThis terrible silence stops me\n\nNow that the war is through with me\nI'm waking up, I cannot see\nThat there's not much left of me\nNothing is real but pain now\n\nHold my breath as I wish for death\nOh, please, God, wake me\n\nBack in the womb, it's much too real\nIn pumps life that I must feel\nBut can't look forward to reveal\nLook to the time when I'll live\n\nFed through the tube that sticks in me\nJust like a wartime novelty\nTied to machines that make me be\nCut this life off from me\n\nHold my breath as I wish for death\nOh, please, God, wake me\n\nNow the world is gone, I'm just one\nOh, God, help me\nHold my breath as I wish for death\nOh, please, God, help me\n\nDarkness\nImprisoning me\nAll that I see\nAbsolute horror\nI cannot live\nI cannot die\nTrapped in myself\nBody, my holding cell\n\nLandmine\nHas taken my sight\nTaken my speech\nTaken my hearing\nTaken my arms\nTaken my legs\nTaken my soul\nLeft me with life in hell",
"spotifyURL": "https://open.spotify.com/intl-pt/track/02xhLoVqpGmOqvolgrwM8w",
"officialMusicVideo": "https://www.youtube.com/watch?v=WM8bTdBs-cw",
"composers": [
1,
2
]
},
{
"id": 31,
"discTrack": "Track 5",
"title": "The Shortest Straw",
"duration": 396,
"lyrics": "Suspicion is your name\nYour honesty to blame\nPut dignity to shame\nDishonor\nWitchhunt modern day\nDetermining decay\nThe blatant disarray\nDisfigure\nThe public eye's disgrace\nDefying common place\nUnending paper chase\nUnending\n\nDeafening\nPainstaking\nReckoning\nThis vertigo it doth bring\n\nShortest straw\nChallenge liberty\nDowned by law\nLive in infamy\nRub you raw\nWitchhunt riding through\nShortest straw\nThe shortest straw has been pulled for you\n\nPulled for you\nShortest straw\nPulled for you\nShortest straw\nPulled for you\nShortest straw\nThe shortest straw has been pulled for you\n\nThe accusations fly\nDiscrimination, why?\nYour inner self to die\nIntruding\nDoubt sunk itself in you\nIt's teeth and talons through\nYou're living Catch-22\nDeluding\nA mass hysteria\nA megalomania\nReveal dementia\nReveal\n\nSecretly\nSilently\nCertainly\nIn vertigo you will be\n\nShortest straw\nChallenge liberty\nDowned by law\nLive in infamy\nRub you raw\nWitchhunt riding through\nShortest straw\nThis shortest straw has been pulled for you\n\nPulled for you\nShortest straw\nPulled for you\nShortest straw\nPulled for you\nShortest straw\nShortest straw has been pulled for you\n\nShortest straw\nPulled for you\nShortest straw\nPulled for you\nShortest straw\nPulled for you\nShortest straw\nShortest straw has been pulled for you\n\nBehind you, hands are tied\nYou're being ostracized\nYour hell is multiplied\nUpending\nThe fallout has begun\nOppressive damage done\nYour many turned to none\nTo nothing\nYou're reaching your nadir\nYour will has disappeared\nThe lie is crystal clear\nDefending\n\nChannels red\nOne word said\nBlacklisted\nWith vertigo make you dead\n\nShortest straw\nChallenge liberty\nDowned by law\nLive in infamy\nRub you raw\nWitchhunt riding through\nShortest straw\nThe shortest straw has been pulled for you\nPulled for you",
"spotifyURL": "https://open.spotify.com/intl-pt/track/4hvo7eCLfhs7dFr0mpk3zi",
"officialMusicVideo": "https://www.youtube.com/watch?v=UIvahSJGEYQ",
"composers": [
1,
2
]
},
{
"id": 32,
"discTrack": "Track 6",
"title": "Harvester of Sorrow",
"duration": 346,
"lyrics": "My life suffocates\nPlanting seeds of hate\nI've loved, turned to hate\nTrapped far beyond my fate\n\nI give, you take\nThis life that I forsake\nBeen cheated of my youth\nYou turned this lie to truth\n\nAnger, misery\nYou'll suffer unto me\n\nHarvester of sorrow\n(Language of the mad)\nHarvester of sorrow\n\nPure black looking clear\nMy work is done soon here\nTry getting back to me\nGet back which used to be\n\nDrink up, shoot in\nLet the beatings begin\nDistributor of pain\nYour loss becomes my gain\n\nAnger, misery\nYou'll suffer unto me\n\nHarvester of sorrow\n(Language of the mad)\nHarvester of sorrow\n\nAll have said their prayers\nInvade their nightmares\nTo see into my eyes\nYou'll find where murder lies\n\n(Infanticide)\n\nHarvester of sorrow\n(Language of the mad)\nHarvester of sorrow\n(Language of the mad)\nHarvester of sorrow\nHarvester of sorrow\nHarvester of sorrow\nHarvester of sorrow\nHarvester of sorrow\nHarvester of sorrow",
"spotifyURL": "https://open.spotify.com/intl-pt/track/6qgYe6noMKsElSoPg9yS91",
"officialMusicVideo": "https://www.youtube.com/watch?v=biomxj559Lo",
"composers": [
1,
2
]
},
{
"id": 33,
"discTrack": "Track 7",
"title": "The Frayed Ends of Sanity",
"duration": 464,
"lyrics": "Never hunger\nNever prosper\nI haven fallen prey to failure\nStruggle within\nTriggered again\nNow the candle burns at both ends\n\nTwisting under schizophrenia\nFalling deep into dementia\n\nOld habits reappear\nFighting the fear of fear\nGrowing conspiracy\nEveryone's after me\nFrayed ends of sanity\nHear them calling\nHear them calling me\n\nBirth of terror\nDeath of much more\nI'm the slave of fear, my captor\nNever warnings\nSpreading its wings\nAs I wait for the horror she brings\n\nLoss of interest, question, wonder\nWaves of fear they pull me under\n\nOld habits reappear\nFighting the fear of fear\nGrowing conspiracy\nEveryone's after me\nFrayed ends of sanity\nHear them calling\nHear them calling me\n\nInto ruin\nI am sinking\nHostage of this nameless feeling\nHell is set free\nFlooded I'll be\nFeel the undertow inside me\n\nHeight, Hell, Time, Haste, Terror, Tension\nLife, Death, Want, Waste, Mass Depression\n\nOld habits reappear\nFighting the fear of fear\nGrowing conspiracy\nMyself is after me\nFrayed ends of sanity\nHear them calling\nFrayed ends of sanity\nHear them calling\nHear them calling me",
"spotifyURL": "https://open.spotify.com/intl-pt/track/4p4VJmajEO6rh8yVibTRCS",
"officialMusicVideo": "https://www.youtube.com/watch?v=eF5OHUXamFQ",
"composers": [
1,
2,
3
]
},
{
"id": 34,
"discTrack": "Track 8",
"title": "To Live Is to Die",
"duration": 589,
"lyrics": "When a man lies he murders\nSome part of the world\nThese are the pale deaths which\nMen miscall their lives\nAll this I cannot bear\nTo witness any longer\nCannot the kingdom of salvation\nTake me home",
"spotifyURL": "https://open.spotify.com/intl-pt/track/0MNwV4sXm2AljohIXBRgpj",
"officialMusicVideo": "https://www.youtube.com/watch?v=n3jGfseuASo",
"composers": [
1,
2,
6
]
},
{
"id": 35,
"discTrack": "Track 9",
"title": "Dyers Eve",
"duration": 313,
"lyrics": "Dear mother, dear father\nWhat is this hell you have put me through\nBeliever, deceiver\nDay in day out live my life through you\nPushed onto me what's wrong or right\nHidden from this thing that they call life\n\nDear mother, dear father\nEvery thought I'd think you'd disapprove\nCurator, dictator\nAlways censoring my every move\nChildren are seen but are not heard\nTear out everything inspired\n\nInnocence\nTorn from me without your shelter\nBarred reality\nI'm living blindly\n\nDear mother, dear father\nTime has frozen still what's left to be\nHear nothing, say nothing\nCannot face the fact I think for me\nNo guarantee, it's life as is\nBut damn you for not giving me my chance\n\nDear mother, dear father\nYou've clipped my wings before I learned to fly\nUnspoiled, unspoken\nI've outgrown that fucking lullaby\nSame thing I've always heard from you\nDo as I say not as I do\n\nInnocence\nTorn from me without your shelter\nBarred reality\nI'm living blindly\n\nI'm in hell without you\nCannot cope without you two\nShocked at the world that I see\nInnocent victim please rescue me\n\nDear mother, dear father\nHidden in your world you've made for me\nI'm seething, I'm bleeding\nRipping wounds in me that never heal\nUndying spite I feel for you\nLiving out this hell you always knew",
"spotifyURL": "https://open.spotify.com/intl-pt/track/3V3brSzPO4pr4ioNqK61mw",
"officialMusicVideo": "https://www.youtube.com/watch?v=rqAGHsZomn8",
"composers": [
1,
2,
3
]
}
]
},
{
"id": 5,
"title": "Metallica Black Album",
"albumCover": "https://raw.githubusercontent.com/Filipe-Bacof/metallica-api/main/public/albuns/blackalbum.jpg",
"spotifyURL": "https://open.spotify.com/intl-pt/album/3dck2tBxGfxj9m3CguDgjb",
"releaseDate": "1991/08/12",
"duration": 3751,
"composers": [
1,
2,
3,
5
],
"tracks": [
{
"id": 36,
"discTrack": "Track 1",
"title": "Enter Sandman",
"duration": 331,
"lyrics": "Say your prayers, little one, don't forget, my son\nTo include everyone\nI tuck you in, warm within, keep you free from sin\n'Til the Sandman, he comes, ah\n\nSleep with one eye open\nGripping your pillow tight\n\nExit light\nEnter night\nTake my hand\nWe're off to Never-Neverland\n\nSomething's wrong, shut the light, heavy thoughts tonight\nAnd they aren't of Snow White\nDreams of war, dreams of liars, dreams of dragons' fire\nAnd of things that will bite, yeah\n\nSleep with one eye open\nGripping your pillow tight\n\nExit light\nEnter night\nTake my hand\nWe're off to Never-Neverland\nYeah\n\nNow, I lay me down to sleep (now, I lay me down to sleep)\nPray the Lord my soul to keep (pray the Lord my soul to keep)\nIf I die before I wake (if I die before I wake)\nPray the Lord my soul to take (pray the Lord my soul to take)\n\nHush, little baby, don't say a word\nAnd never mind that noise you heard\nIt's just the beasts under your bed\nIn your closet, in your head\n\nExit light\nEnter night\nGrain of sand\n\nExit light\nEnter night\nTake my hand\nWe're off to Never-Neverland\nYeah\n\nOh\nYeah, yeah\nWhoa, oh\n\n(We're off to Never-Neverland) take my hand\n(We're off to Never-Neverland) take my hand\n\n(We're off to Never-Neverland)\n(We're off to Never-Neverland)\n(We're off to Never-Neverland)\n(We're off to Never-Neverland)",
"spotifyURL": "https://open.spotify.com/intl-pt/track/2T5q7qhJVN4m2hMSIAsOlC",
"officialMusicVideo": "https://www.youtube.com/watch?v=CD-E-LDc384",
"composers": [
1,
2,
3
]
},
{
"id": 37,
"discTrack": "Track 2",
"title": "Sad but True",
"duration": 323,
"lyrics": "Hey\nI'm your life\nI'm the one who takes you there\nHey\nI'm your life\nI'm the one who cares\nThey\nThey betray\nI'm your only true friend now\nThey\nThey'll betray\nI'm forever there\n\nI'm your dream, make you real\nI'm your eyes when you must steal\nI'm your pain when you can't feel\nSad, but true\n\nI'm your dream, mind astray\nI'm your eyes while you're away\nI'm your pain while you repay\nYou know it's sad, but true\n\nSad, but true\n\nYou\nYou're my mask\nYou're my cover, my shelter\nYou\nYou're my mask\nYou're the one who's blamed\nDo\nDo my work\nDo my dirty work, scapegoat\nDo\nDo my deeds\nFor you're the one who's shamed\n\nI'm your dream, make you real\nI'm your eyes when you must steal\nI'm your pain when you can't feel\nSad, but true\n\nI'm your dream, mind astray\nI'm your eyes while you're away\nI'm your pain while you repay\nYou know it's sad, but true\n\nSad, but true\n\nI'm your dream\nI'm your eyes\nI'm your pain\n\nI'm your dream (I'm your dream)\nI'm your eyes (I'm your eyes)\nI'm your pain (I'm your pain)\nYou know it's sad, but true\n\nHate\nI'm your hate\nI'm your hate when you want love\nPay\nPay the price\nPay, for nothing's fair\nHey\nI'm your life\nI'm the one who took you there\nHey\nI'm your life\nAnd I no longer care\n\nI'm your dream, make you real\nI'm your eyes when you must steal\nI'm your pain when you can't feel\nSad, but true\n\nI'm your truth, telling lies\nI'm your reasoned alibis\nI'm inside, open your eyes\nI'm you\n\nSad, but true",
"spotifyURL": "https://open.spotify.com/intl-pt/track/6WJFcaTxTP1Z95rLE6lk7s",
"officialMusicVideo": "https://www.youtube.com/watch?v=A8MO7fkZc5o",
"composers": [
1,
2
]
},
{
"id": 38,
"discTrack": "Track 3",
"title": "Holier Than Thou",
"duration": 228,
"lyrics": "No more\nThe crap rolls out your mouth again\nHaven't changed, your brain is still gelatin\nLittle whispers circle around your head\nWhy don't you worry about yourself instead?\n\nWho are you? Where ya been? Where ya from?\nGossip burning on the tip of your tongue\nYou lie so much you believe yourself\nJudge not lest ye be judged yourself\n\nHolier than thou\nYou are\nHolier than thou\nYou are\n\nYou know not\n\nBefore you judge me, take a look at you\nCan't you find something better to do?\nPoint the finger, slow to understand\nArrogance and ignorance go hand in hand\n\nIt's not who you are, it's who you know\nOthers' lives are the basis of your own\nBurn your bridges and build them back with wealth\nJudge not lest ye be judged yourself\n\nHolier than thou\nYou are\nHolier than thou\nYou are\n\nYou know not\n\nWho the hell are you?",
"spotifyURL": "https://open.spotify.com/intl-pt/track/6c5Ft6sEfLjVxL2wkgxBtv",
"officialMusicVideo": "https://www.youtube.com/watch?v=wUtwZs1yISo",
"composers": [
1,
2
]
},
{
"id": 39,
"discTrack": "Track 4",
"title": "The Unforgiven",
"duration": 387,
"lyrics": "New blood joins this Earth\nAnd quickly he's subdued\nThrough constant pained disgrace\nThe young boy learns their rules\n\nWith time, the child draws in\nThis whipping boy done wrong\nDeprived of all his thoughts\nThe young man struggles on and on, he's known\n\nOoh, a vow unto his own\nThat never from this day\nHis will they'll take away, yeah\n\nWhat I've felt, what I've known\nNever shined through in what I've shown\nNever be, never see\nWon't see what might have been\n\nWhat I've felt, what I've known\nNever shined through in what I've shown\nNever free, never me\nSo I dub thee Unforgiven\n\nThey dedicate their lives\nTo running all of his\nHe tries to please them all\nThis bitter man he is\n\nThroughout his life the same\nHe's battled constantly\nThis fight he cannot win\nA tired man they see no longer cares\n\nThe old man then prepares\nTo die regretfully\nThat old man here is me, yeah\n\nWhat I've felt, what I've known\nNever shined through in what I've shown\nNever be, never see\nWon't see what might have been\n\nWhat I've felt, what I've known\nNever shined through in what I've shown\nNever free, never me\nSo I dub thee Unforgiven\n\nWhat I've felt, what I've known\nNever shined through in what I've shown\nNever be, never see\nWon't see what might have been\n\nWhat I've felt, what I've known\nNever shined through in what I've shown\nNever free, never me\nSo I dub thee Unforgiven, oh, oh\n\nNever free, never me\nSo I dub thee Unforgiven\nYou labeled me, I'll label you\nSo I dub thee Unforgiven\n\nNever free, never me\nSo I dub thee Unforgiven\nYou labeled me, I'll label you\nSo I dub thee Unforgiven\n\nNever free, never me\nSo I dub thee Unforgiven",
"spotifyURL": "https://open.spotify.com/intl-pt/track/5lqyqPU3JkpCbUbLmTVQPW",
"officialMusicVideo": "https://www.youtube.com/watch?v=Q6dGQ_FmjxE",
"composers": [
1,
2,
3
]
},
{
"id": 40,
"discTrack": "Track 5",
"title": "Wherever I May Roam",
"duration": 406,
"lyrics": "(And the road becomes my bride)\nAnd the road becomes my bride\nI have stripped of all but pride\nSo in her I do confide\nAnd she keeps me satisfied\nGives me all I need\n\nAnd with dust in throat I crave\nOnly knowledge will I save\nTo the game you stay a slave\nRover, wanderer\nNomad, vagabond\nCall me what you will, yeah\n\nOh!\nBut I'll take my time anywhere\nFree to speak my mind anywhere\nAnd I'll redefine anywhere\n\nAnywhere I roam\nWhere I lay my head is home, yeah\n\n(And the Earth becomes my throne)\nAnd the Earth becomes my throne\nI adapt to the unknown\nUnder wandering stars I've grown\nBy myself, but not alone\nI ask no one\n\nAnd my ties are severed clean\nLess I have, the more I gain\nOff the beaten path I reign\nRover, wanderer\nNomad, vagabond\nCall me what you will\nAnd you will!\n\nBut I'll take my time anywhere\nI'm free to speak my mind anywhere\nAnd I'll never mind anywhere\n\nAnywhere I roam\nWhere I lay my head is home, yeah, yeah\n\nBut I'll take my time anywhere\nI'm free to speak my mind\nAnd I'll take my find anywhere\n\nAnywhere I roam\nWhere I lay my head is home, that's where\n\nBut I'll take my time anywhere\nI'm free to speak my mind anywhere\nAnd I'll redefine anywhere\n\nAnywhere I roam\nWhere I lay my head is home\nCarved upon my stone\nMy body lie, but still I roam, yeah yeah\n\nWherever I may roam\nWherever I may roam, oh\nWherever I may roam\nWherever I may roam, yeah\n\nWherever I may wander\nWander, wander\nWherever I may roam\nYeah, yeah, wherever I may roam\nYeah, yeah, wherever I may roam",
"spotifyURL": "https://open.spotify.com/intl-pt/track/3quYoE7KgIIaqVXPd7MpX0",
"officialMusicVideo": "https://www.youtube.com/watch?v=4U7aF6h_iwA",
"composers": [
1,
2
]
},
{
"id": 41,
"discTrack": "Track 6",
"title": "Don't Tread on Me",
"duration": 241,
"lyrics": "Don't tread on me\nSo don't tread on me\n\nLiberty or death, what we so proudly hail\nOnce you provoke her, rattling of her tail\nNever begins it, never, but once engaged\nNever surrenders, showing the fangs of rage\n\nSo don't tread on me\n\nSo be it\nThreaten no more\nTo secure peace is to prepare for war\nSo be it\nSettle the score\nTouch me again for the words\nThat you'll hear evermore\n\nDon't tread on me\n\nLove it or leave it, she with the deadly bite\nQuick is the blue tongue, forked as lighting strike\nShining with brightness, always on surveillance\nThe eyes, they never close, emblem of vigilance\n\nNo, no, no\nDon't tread on me\n\nSo be it\nThreaten no more\nTo secure peace is to prepare for war\nSo be it\nSettle the score\nTouch me again for the words\nThat you'll hear evermore\n\nDon't tread on me\n\nSo be it\nThreaten no more\nTo secure peace is to prepare for war\n\nLiberty or death, what we so proudly hail\nOnce you provoke her, rattling of her tail\n\nSo be it\nThreaten no more\nTo secure peace is to prepare for war\nSo be it\nSettle the score\nTouch me again for the words\nThat you'll hear evermore\n\nDon't tread on me",
"spotifyURL": "https://open.spotify.com/intl-pt/track/3zbLtkeCoU5LutGs8728c6",
"officialMusicVideo": "https://www.youtube.com/watch?v=B8HD81XbOQQ",
"composers": [
1,
2
]
},
{
"id": 42,
"discTrack": "Track 7",
"title": "Through the Never",
"duration": 243,
"lyrics": "All that is, was and will be\nUniverse much too big to see\n\nTime and space never ending\nDisturbing thoughts, questions pending\nLimitations of human understanding\nToo quick to criticize\nObligation to survive\nWe hunger to be alive\n\nAll that is, ever\nEver was\nWill be ever\nTwisting\nTurning\nThrough the never\n\nIn the dark, see past our eyes\nPursuit of truth no matter where it lies\n\nGazing up to the breeze of the heavens\nOn a quest, meaning, reason\nCame to be, how it begun\nAll alone in the family of the sun\nCuriosity teasing everyone\nOn our home, third stone from the sun\n\nAll that is, ever\nEver was\nWill be ever\nTwisting\nTurning\nThrough the never\n\nOn through the never\nWe must go\nOn through the never\nOut to the\nEdge of forever\nWe must go\nOn through the never\nThen never comes\n\nAll that is, ever\nEver was\nWill be ever\nTwisting\nTurning\nWho we are\nAsk forever\nTwisting\nTurning\nThrough the never\n\nNever",
"spotifyURL": "https://open.spotify.com/intl-pt/track/5pPYLYTIBVJAz7iZRPufqw",
"officialMusicVideo": "https://www.youtube.com/watch?v=M-KhEk0TAK8",
"composers": [
1,
2,
3
]
},
{
"id": 43,
"discTrack": "Track 8",
"title": "Nothing Else Matters",
"duration": 389,
"lyrics": "So close, no matter how far\nCouldn't be much more from the heart\nForever trusting who we are\nAnd nothing else matters\n\nNever opened myself this way\nLife is ours, we live it our way\nAll these words I don't just say\nAnd nothing else matters\n\nTrust I seek and I find in you\nEvery day for us, something new\nOpen mind for a different view\nAnd nothing else matters\n\nNever cared for what they do\nNever cared for what they know\nBut I know\n\nSo close, no matter how far\nIt couldn't be much more from the heart\nForever trusting who we are\nAnd nothing else matters\n\nNever cared for what they do\nNever cared for what they know\nBut I know\n\nI never opened myself this way\nLife is ours, we live it our way\nAll these words I don't just say\nAnd nothing else matters\n\nTrust I seek and I find in you\nEvery day for us, something new\nOpen mind for a different view\nAnd nothing else matters\n\nNever cared for what they say\nNever cared for games they play\nNever cared for what they do\nNever cared for what they know\nAnd I know\n\nSo close, no matter how far\nCouldn't be much more from the heart\nForever trusting who we are\nNo, nothing else matters",
"spotifyURL": "https://open.spotify.com/intl-pt/track/7s1xIVKnVj4hhsO607RC8k",
"officialMusicVideo": "https://www.youtube.com/watch?v=tAGnKpE4NCI",
"composers": [
1,
2
]
},
{
"id": 44,
"discTrack": "Track 9",
"title": "Of Wolf and Man",
"duration": 257,
"lyrics": "Off through the new day's mist I run\nOut from the new day's mist I have come\nI hunt, therefore I am\nHarvest the land\nTaking of the fallen lamb\n\nOff through the new day's mist I run\nOut from the new day's mist I have come\nWe shift pulsing with the earth\nCompany we keep\nRoaming the land while you sleep\n\nShape shift, nose to the wind\nShape shift, feeding I've been\nMove swift, all senses clean\nEarth's gift, back to the meaning\nBack to the meaning of life\n\nBright is the moon high in starlight\nChill in the air cold as steel tonight\nWe shift, call of the wild\nFear in your eyes\nIt's later than you realized\n\nShape shift, nose to the wind\nShape shift, feeding I've been\nMove swift, all senses clean\nEarth's gift, back to the meaning\nBack to the meaning of life\n\nI feel the change, back to a better day\nShape shift, hair stands on the back of my neck\nShape shift, in wildness is the preservation of the world\nSo seek the wolf in thyself\n\nShape shift, nose to the wind\nShape shift, feeding I have been\nMove swift, all senses clean\nEarth's gift, back to the meaning\nBack to the meaning of wolf and man",
"spotifyURL": "https://open.spotify.com/intl-pt/track/3bxHy4sUXEWjI9kXG1DH5K",
"officialMusicVideo": "https://www.youtube.com/watch?v=FKMXdc_BZiA",
"composers": [
1,
2,
3
]
},
{
"id": 45,
"discTrack": "Track 10",
"title": "The God That Failed",
"duration": 305,
"lyrics": "Pride you took\nPride you feel\nPride that you felt when you'd kneel\n\nNot the word\nNot the love\nNot what you thought from above\n\nIt feeds\nIt grows\nIt clouds all that you will know\nDeceit\nDeceive\nDecide just what you believe\n\nI see faith in your eyes\nNever you hear the discouraging lies\nI hear faith in your cries\nBroken is the promise, betrayal\nThe healing hand held back by the deepened nail\nFollow the god that failed\n\nFind your peace\nFind your say\nFind the smooth road on your way\n\nTrust you gave\nA child to save\nLeft you cold and him in grave\n\nIt feeds\nIt grows\nIt clouds all that you will know\nDeceit\nDeceive\nDecide just what you believe\nI see faith in your eyes\nNever you hear the discouraging lies\nI hear faith in your cries\nBroken is the promise, betrayal\nThe healing hand held back by the deepened nail\nFollow the god that failed\n\nI see faith in your eyes\nBroken is the promise, betrayal\nThe healing hand held back by the deepened nail\nFollow the god that failed\n\nPride you took\nPride you feel\nPride that you felt when you'd kneel\n\nTrust you gave\nA child to save\nLeft you cold and him in grave\n\nI see faith in your eyes\nNever you hear the discouraging lies\nI hear faith in your cries\nBroken is the promise, betrayal\nThe healing hand held back by the deepened nail\nFollow the god that failed\nFollow the god that failed\nBroken is the promise, betrayed\nBetrayal",
"spotifyURL": "https://open.spotify.com/intl-pt/track/6SUS59EDam0USXk05d9ZAH",
"officialMusicVideo": "https://www.youtube.com/watch?v=gbxaUyvIkEg",
"composers": [
1,
2
]
},
{
"id": 46,
"discTrack": "Track 11",
"title": "My Friend of Misery",
"duration": 410,
"lyrics": "You just stood there screaming\nFearing no one was listening to you\nThey say the empty can rattles the most\nThe sound of your own voice must soothe you\nHearing only what you want to hear\nAnd knowing only what you've heard\nYou, you're smothered in tragedy\nAnd you're out to save the world\n\nMisery\nYou insist that the weight of the world\nShould be on your shoulders\nMisery\nThere's much more to life than what you see\nMy friend of misery\n\nYou still stood there screaming\nNo one caring about these words you tell\nMy friend, before your voice is gone\nOne man's fun is another's hell\nThese times are sent to try men's souls\nBut something's wrong with all you see\nYou, you'll take it on all yourself\nRemember, misery loves company\n\nMisery\nYou insist that the weight of the world\nShould be on your shoulders\nMisery\nThere's much more to life than what you see\nMy friend of misery\n\nYou just stood there screaming\nMy friend of misery",
"spotifyURL": "https://open.spotify.com/intl-pt/track/1EcFqCwlaXfg5E5uhrrlZy",
"officialMusicVideo": "https://www.youtube.com/watch?v=5X9CQrKoMaM",
"composers": [
1,
2,
5
]
},
{
"id": 47,
"discTrack": "Track 12",
"title": "The Struggle Within",
"duration": 234,
"lyrics": "Reaching out for something you've got to feel\nWhile clutching to what you had thought was real\n\nKicking at a dead horse pleases you\nNo way of showing your gratitude\nSo many things you don't want to do\nWhat is it? What have you got to lose?\n\nWhat the hell?\nWhat is it you think you're gonna find?\nHypocrite\nBoredom sets into the boring mind\n\nStruggle within, it suits you fine\nStruggle within, your ruin\nStruggle within, you seal your own coffin\nStruggle within, the struggling within\n\nHome is not a home, it becomes a hell\nTurning it into your prison cell\nAdvantages are taken, not handed out\nWhile you struggle inside your hell\n\nReaching out\nGrabbing for something you've got to feel\nClosing in\nThe pressure upon you is so unreal\n\nStruggle within, it suits you fine\nStruggle within, your ruin\nStruggle within, you seal your own coffin\nStruggle within, struggling within\n\nStruggle\n\nReaching out for something you've got to feel\nWhile clutching to what you had thought was real\n\nWhat the hell?\nWhat is it you think you're gonna find?\nHypocrite\nBoredom sets into the boring mind\n\nStruggle within, it suits you fine\nStruggle within, your ruin\nStruggle within, you seal your own coffin\nStruggle within, struggling within",
"spotifyURL": "https://open.spotify.com/intl-pt/track/6lxHGwegGl7E49p2pqVHe2",
"officialMusicVideo": "https://www.youtube.com/watch?v=hQMUEYahBy8",
"composers": [
1,
2
]
}
]
},
{
"id": 6,
"title": "Load",
"albumCover": "https://raw.githubusercontent.com/Filipe-Bacof/metallica-api/main/public/albuns/load.jpg",
"spotifyURL": "https://open.spotify.com/intl-pt/album/6ndH0UlQbyCOVqByMXXhdV",
"releaseDate": "1996/06/04",
"duration": 4739,
"composers": [
1,
2,
3,
5
],
"tracks": [
{
"id": 48,
"discTrack": "Track 1",
"title": "Ain't My Bitch",
"duration": 304,
"lyrics": "Out of my way\nOut of my day\nOut of your mind and into mine\nInto no one\nInto not one\nInto your step but out of time\n\nHead strong\nWhat's wrong\nI've already heard this song before\nYou've arrived, but now it's time to kiss your ass goodbye\n\nDragging me down\nWhy you around?\nSo useless\nIt ain't my fault\nIt ain't my call\nIt ain't my bitch\nAin't my bitch\n\nDown on the sun\nDown and no fun\nDown and out where the hell you've been\n\nDamn it all down\nDamn it unbound\nDamn it all down to hell again\n\nStand tall\nCan't fall\nNever even meant it all before\nYou've arrived, but now it's time to kiss your ass good-bye\n\nDragging me down\nWhy you around\nSo useless\n\nIt ain't my fault\nIt ain't my call\nIt ain't my bitch\n\nOutta my way\nOutta my day\nOut of your mind and into mine\n\nInto no one\nInto not one\nInto your step but out of time\n\nHeadstrong\nWhat's wrong?\nI've already heard this song before\nYou arrived, but now it's time to kiss your ass goodbye\nAnd now it's time to kiss your ass goodbye\n\nDragging me down\nWhy you around?\nSo useless\n\nIt ain't my fall\nIt ain't my call\nIt ain't my bitch\n\nNo way but down\nWhy you around?\nNo fooling\n\nIt ain't my smile\nIt ain't my style\nIt ain't my bitch\nOh, it ain't mine\n\nAin't mine\nYour kind\nYou're stepping out of time\n\nAin't mine\nYour kind\nYou're stepping out of time\n\nTaking me down\nWhy you around\nNo fooling\n\nIt ain't my fall\nIt ain't my call\nIt ain't my bitch\nYou ain't mine",
"spotifyURL": "https://open.spotify.com/intl-pt/track/3QWzxUE2WA5WoSi82KCODk",
"officialMusicVideo": "https://www.youtube.com/watch?v=TkXq9SGWO38",
"composers": [
1,
2
]
},
{
"id": 49,
"discTrack": "Track 2",
"title": "2 X 4",
"duration": 328,
"lyrics": "Yeah\nI'm gonna make you, shake you, take you\nI'm gonna be the one who breaks you\nPut the screws into ya, my way\nYeah, c'mon, c'mon come and make my day\nMake my day\n\nYeah\nGot some hell to pay you, steal your thunder\nThe joy of violent movement, pulls you under\nOoh bite the bullet, well hard\nYea, but I bite harder, so go to far\nTo far\n\nFriction, fusion, retribution\nI can't hear ya... talk to me\nI can't hear ya... so talk to me\nI can't hear ya are you talking to me\nI can't hear ya are you talking to me\nI can't hear ya time to meet my lord\nI can't hear ya talking 2 by 4\n\nYeah\nI'm gonna make you, shake you, take you\nI'm gonna be that one who breaks you\nPut the screws into ya, my way\nHey c'mon, c'mon, come and make my day\nMake my day\n\nFriction, fusion, retribution\nI can't hear ya... talk to me\nI can't hear ya... talk to me\nI can't hear ya are you talking to me\nI can't hear ya while your talking to me\nI can't hear ya trying to be my lord\nI can't hear ya talking 2 by 4\n\nFriction, fusion, retribution\nI'm going to make you... talk to me\nI'm going to trick you... so talk to me\nI can't hear ya are you talking to me\nI can't hear ya are you talking to me\nI can't hear ya time to meet my lord\nI can't hear ya talking 2 by 4",
"spotifyURL": "https://open.spotify.com/intl-pt/track/0SwHR5lvAfgI8Z2D6YgvMd",
"officialMusicVideo": "https://www.youtube.com/watch?v=9NvehWiVZPs",
"composers": [
1,
2,
3
]
},
{
"id": 50,
"discTrack": "Track 3",
"title": "The House Jack Built",
"duration": 399,
"lyrics": "Open doors so I walk inside\nClose my eyes find my place to hide\nAnd I shake as I take it in\nLet the show begin\n\nOpen my eyes\nJust to have them close again\nWell on my way\nBut on my way to where I've been\nIt swallows me\nAs it takes me in it's fog\nI twist away\nAs I give this world a nod\n\nOpen doors so I walk inside\nClose my eyes find my place to hide\nAnd I shake as I take it in\nLet the show begin\n\nOpen my eyes\nJust to have them close once again\nDon't want control\nAs It takes me down and down and down again\nIs that the moon\nOr just a light that lights this dead end street?\nIs that you there\nOr just another demon that I meet?\n\nThe higher you are\nThe farther you fall\nThe longer the walk\nThe farther you crawl\nMy body my temple\nThis temple it tilts\nStep into the house that Jack built\n\nThe higher you are\nThe farther you fall\nThe longer the walk\nThe farther you crawl\nMy body my temple\nThis temple it tilts\nYes this is the house that Jack built\n\nOpen doors as I walk inside\nSwallow me so the pain subsides\nAnd I shake as I take this in\nLet the show begin\n\nThe higher you are\nThe farther you fall\nThe longer the walk\nThe farther you crawl\nMy body my temple\nThis temple it tilts\nYes this is the house that Jack built\n\nThe higher you are\nThe farther you fall\nThe longer the walk\nThe farther you crawl\nMy body my temple\nThis temple it tilts\nYes I am I am I am\n\nOpen my eyes\nIt swallows me\nIs that you there?\nI twist away\nAway\nAway\nAway",
"spotifyURL": "https://open.spotify.com/intl-pt/track/2UmXstEJ8nkpUUfQRYieC6",
"officialMusicVideo": "https://www.youtube.com/watch?v=BVSeOFnHdQ8",
"composers": [
1,
2,
3
]
},
{
"id": 51,
"discTrack": "Track 4",
"title": "Until It Sleeps",
"duration": 270,
"lyrics": "Where do I take this pain of mine?\nI run but it stays right by my side\n\nSo tear me open, pour me out\nThere's things inside that scream and shout\nAnd the pain still hates me\nSo hold me until it sleeps\n\nJust like the curse\nJust like the stray\nYou feed it once and now it stays\nNow it stays\n\nSo tear me open, but beware\nThere's things inside without a care\nAnd the dirt still stains me\nSo wash me, until I'm clean\n\nIt grips you, so hold me\nIt stains you, so hold me\nIt hates you, so hold me\nIt holds you, so hold me\nUntil it sleeps (until it sleeps)\n\nSo tell me why you've chosen me\nDon't want your grip\nDon't want your greed\nDon't want it\n\nI'll tear me open, make you gone\nNo more can you hurt anyone\nAnd the fear still shakes me\nSo hold me until it sleeps\n\nIt grips you, so hold me\nIt stains you, so hold me\nIt hates you, so hold me\nIt holds you, holds you, holds you\nUntil it sleeps (until it sleeps)\n\nI don't want it\nWant it, want it\nWant it, want it, no\n\nSo tear me open, but beware\nThere's things inside without a care\nAnd the dirt still stains me\nSo wash me, till clean\n\nI'll tear me open, make you gone\nNo longer will you hurt anyone\nAnd the hate still shapes me\nSo hold me until it sleeps\nUntil it sleeps (until it sleeps)\nUntil it sleeps (until it sleeps)",
"spotifyURL": "https://open.spotify.com/intl-pt/track/2Iv4HSoMX2fDeXFcOJWyWX",
"officialMusicVideo": "https://www.youtube.com/watch?v=eRV9uPr4Dz4",
"composers": [
1,
2
]
},
{
"id": 52,
"discTrack": "Track 5",
"title": "King Nothing",
"duration": 328,
"lyrics": "Wish I may\nWish I might\nHave this I wish tonight\nAre you satisfied?\nDig for gold\nDig for fame\nYou dig to make your name\nAre you pacified?\n\nAll the wants you waste\nAll the things you've chased\n\nThen it all crashes down\nAnd you break your crown\nAnd you point your finger\nBut there's no one around\n\nJust want one thing\nJust to play the king\nBut the castle's crumbled\nAnd you're left with just a name\n\nWhere's your crown, King Nothing?\nWhere's your crown?\n\nHot and cold\nBought and Sold\nA heart as hard as gold\nYeah! Are you satisfied?\n\nWish I might\nWish I may\nYou waste your life away\nAre you pacified?\n\nAll the wants you waste\nAll the things you've chased\n\nThen it all crashes down\nAnd you break your crown\nAnd you point your finger\nBut there's no one around\n\nJust want one thing\nJust to play the king\nBut the castle's crumbled\nAnd you're left with just a name\n\nWhere's your crown, King Nothing?\nWhere's your crown?\n\nHuh!\nI wish I may\nI wish I might\nHave this wish I wish tonight\nI want that star\nI want it now\nI want it all and I don't care how\n\nCareful what you wish\nCareful what you say\nCareful what you wish\nYou may regret it\nCareful what you wish\nYou just might get it\n\nThen it all crashes down\nAnd you break your crown\nAnd you point your finger\nBut there's no one around\n\nJust want one thing\nJust to play the king\nBut the castle's crumbled\nAnd you're left with just a name\nWhere's your crown, King Nothing?\nNothing\n\nNo you're just nothing\nWhere's your crown, King Nothing?\nNo you're just nothing\nNothing\nOff to never never land",
"spotifyURL": "https://open.spotify.com/intl-pt/track/30RKGpKHqr7ytcTljw436k",
"officialMusicVideo": "https://www.youtube.com/watch?v=jSAQ0-IThaI",
"composers": [
1,
2,
3
]
},
{
"id": 53,
"discTrack": "Track 6",
"title": "Hero of the Day",
"duration": 262,
"lyrics": "Mama they try and break me\n\nThe window burns to light the way back home\nA light that warms no matter where they go\nThey're off to find the hero of the day\nBut what if they should fall by someone's wicked way\n\nStill the window burns\nTime so slowly turns\nAnd someone there is sighing\nKeepers of the flames\nDo ya feel your name?\nCan't you hear your babies crying?\n\nMama they try and break me\nStill they try and break me\n\nExcuse me while I tend to how I feel\nThese things return to me that still seem real\nNow deservingly this easy chair\nBut the rocking stopped by wheels of despair\n\nDon't want your aid\nBut the fist I've made\nFor years\nCan't hold or feel\nNo I'm not all me\nSo please excuse me while I tend to how I feel\n\nBut now the dreams\nAnd waking screams\nThat everlast the night\nSo build a wall\nBehind it crawl\nAnd hide until it's light\nSo can you hear your babies crying now?\n\nStill the window burns\nTime so slowly turns\nAnd someone there is sighing\nKeepers of the flames\nCan't you feel your name?\nCan you hear your babies crying?\n\nBut now the dreams\nAnd waking screams\nThat everlast the night\nSo build a wall\nBehind it crawl\nAnd hide until it's light\nSo can't you hear your babies crying now?\n\nMama they try and break me\nMama they try and break me\nMama they try and break me\nMama they try\nMama they try\nMama they try and break me\nMama they try and break me\nMama they try and break me\nMama they try\nMama they try",
"spotifyURL": "https://open.spotify.com/intl-pt/track/0rDPQzWWmLTv9deHn4ulG7",
"officialMusicVideo": "https://www.youtube.com/watch?v=CBJey2dkiAI",
"composers": [
1,
2,
3
]
},
{
"id": 54,
"discTrack": "Track 7",
"title": "Bleeding Me",
"duration": 498,
"lyrics": "I'm digging my way\nI'm digging my way to something\nI'm digging my way to something better\n\nI'm pushing to stay\nI'm pushing to stay with something\nI'm pushing to stay with something better\n\nI'm sowing the seeds\nI'm sowing the seeds I've taken\nI'm sowing the seeds I take for granted\n\nThis thorn in my side\nThis thorn in my side is from the tree\nThis thorn in my side is from the tree I've planted\n\nIt tears me and I bleed\nAnd I bleed\n\nCaught under wheels' roll\nI take the leech, I'm bleeding me\nCan't stop to save my soul\nI take the leash that's leading me\nI'm bleeding me\n\nI can't take it\nCaught under wheels' roll\nThe bleeding of me, of me\nThe bleeding of me\n\nCaught under wheels' roll\nI take the leech, I'm bleeding me\nCan't stop to save my soul\nI take the leash that's leading me\nI'm bleeding me\n\nI can't take it\nCaught under wheels' roll\nThe bleeding of me\nThe bleeding of me\n\nI am the beast that feeds the feast\nI am the blood, I am release\n\nCome make me pure\nBleed me a cure\nI'm caught, I'm caught, I'm caught under\n\nCaught under wheels' roll\nI take that leech, I'm bleeding me\nCan't stop to save my soul\nI take the leash that's leading me\n\nI'm bleeding me\nI can't take it\nI can't take it\nI can't take it\nThe bleeding of me\n\nI'm digging my way\nI'm digging my way to something\nI'm digging my way to something better\n\nI'm pushing to stay\nI'm pushing to stay with something\nI'm pushing to stay with something better\nWith something better",
"spotifyURL": "https://open.spotify.com/intl-pt/track/7FLm43IriB4jxAposCv9Ji",
"officialMusicVideo": "https://www.youtube.com/watch?v=_7GDn7NmGIs",
"composers": [
1,
2,
3
]
},
{
"id": 55,
"discTrack": "Track 8",
"title": "Cure",
"duration": 294,
"lyrics": "The man takes another bullet\nHe keeps them all within\nHe must seek, no matter how it hurts\nSo don't fool again\nHe thinks the answer is cold and in his hand\nHe takes his medicine\nThe man takes another bullet\nHe's been fooled again\nUncross your arms\nTake and throw them to the cure, say\n"I do believe"\nUncross your arms now\nTake 'em to it, say\n"I do believe"\nThe lies tempt her and she follows\nAgain she lets him in\nShe must believe to fill the hollow\nShe's been fooled again\nUncross your arms\nTake and throw them to the cure, say\n"I do believe"\nUncross your arms now\nTake 'em to it, say\n"I do believe"\nBetting on the cure\n'cause it must get better than this\nBetting on the cure\nYeah everyone got to have the sickness\n'cause everyone seems to need the cure\nPrecious cure.....\n"I do believe"\nBetting on the cure\nYeah, it must be better than this\nBetting on the cure\nYeah everyone got to have the sickness\n'cause everyone seems to need the cure\n"I do believe"",
"spotifyURL": "https://open.spotify.com/intl-pt/track/3SLjisy5GM8Wx3oOz7Nfs3",
"officialMusicVideo": "https://www.youtube.com/watch?v=7Y5AaWR_1Vg",
"composers": [
1,
2
]
},
{
"id": 56,
"discTrack": "Track 9",
"title": "Poor Twisted Me",
"duration": 240,
"lyrics": "Oh poor twisted me\nOh poor twisted me\nI feast on sympathy\nI chew on suffer\nI chew on agony\nAnd swallow whole the pain\nOh it's too good to be\nAll this misery\nIs just for oh poor twisted me\nPoor twisted me\n\nPoor mistreated me\nPoor mistreated me\nI drown without a sea\nI'm filled with sorrow\nOnce filled with misery\nAnd hated the deep dark blue\nSuch a burden to bear\nPoor mistreated me\n\nFinally reached the shore\nSurvival's gone\nNow your feeling cold ever since he was born\nYour pain is so over you\n\nFinally reached the shore\nSurvival's gone\nNow your feeling cold ever since he was born\nYour pain is so over you\nCould ya be my friend\nSuch a pain to see\nOh poor twisted me",
"spotifyURL": "https://open.spotify.com/intl-pt/track/2lOP1kfyJHY6palBs5QuLU",
"officialMusicVideo": "https://www.youtube.com/watch?v=htitm1X9_wg",
"composers": [
1,
2
]
},
{
"id": 57,
"discTrack": "Track 10",
"title": "Wasting My Hate",
"duration": 237,
"lyrics": "Good day. How do?\nAnd I send a smile to you\nDon't waste, waste your breath\nAnd I won't waste my hate on you\n\nAin't gonna waste my hate\nAin't gonna waste my hate on you\nI think I'll keep it for myself\n\nAin't gonna give no more\nAin't got the time to help you score\nI think it's time you pleased yourself\nYourself\n\nGood day. How do?\nAnd I send a smile to you\nDon't waste, waste your breath\nAnd I won't waste my hate on you\nWaste my hate on you\nHate\n\nYou think you're worthy now?\nYou think enough to even raise the brow\nAnd to laugh and tip that two-pronged crown?\n\nWell I see my hands, I see my feet\nI feel that blood that pumps in beat\nBut where the hell's my mind going now?\nDead gone now\n\nGood day. How do?\nAnd I send a smile to you\nDon't waste, waste your breath\nAnd I won't waste my hate on you\nWaste my hate on you\n\nThink I'll keep it for myself\n\nHate\n\nAin't gonna waste my hate\nBut I'm so greedy when they say\nBetter to give than to receive\n\nAin't gonna waste my hate\nAin't got time to waste my hate on you\nI think I'll keep it all for myself\nFor myself\n\nGood day. How do?\nAnd I send a smile to you\nDon't waste, waste your breath\nAnd I won't waste my hate on you\nWaste my hate on you\n\nThink I'll keep it for myself\n\nHate",
"spotifyURL": "https://open.spotify.com/intl-pt/track/3FkyxKotYLTeM2LJu1x2gU",
"officialMusicVideo": "https://www.youtube.com/watch?v=68IWGiuk2Ro",
"composers": [
1,
2,
3
]
},
{
"id": 58,
"discTrack": "Track 11",
"title": "Mama Said",
"duration": 319,
"lyrics": "Mama, she has taught me well\nTold me when I was young\nSon, your life's an open book\nDon't close it 'fore it's done\nThe brightest flame burns quickest\nThat's what I heard her say\nA son's heart's owned to mother\nBut I must find my way\n\nLet my heart go\nLet your son grow\nMama, let my heart go\nOr let this heart be still (be still)\n\nRebel, my new last name\nWild blood in my veins\nApron strings around my neck\nThe mark that still remains\nLeft home at an early age\nOf what I heard was wrong\nI never asked forgiveness\nBut what I said is done\n\nLet my heart go\nLet your son grow\nMama, let my heart go\nOr let this heart be still\n\nNever I ask of you\nBut never I gave\nBut you gave me your emptiness\nI now take to my grave\nNever I ask of you\nBut never I gave\nBut you gave me your emptiness\nI now take to my grave\nSo let this heart be still\n\nMama, now I'm coming home\nI'm not all you wished of me\nBut a mother's love for her son\nUnspoken, help me be\nYeah, I took your love for granted\nAnd all the things you said to me\nI need your arms to welcome me\nBut a cold stone's all I see\n\nLet my heart go\nLet your son grow\nMama, let my heart go\nOr let this heart be still\n\nLet my heart go\nMama, let my heart go\nYou never let my heart go\nSo let this heart be still, ooh\n\nNever I ask of you\nBut never I gave\nBut you gave me your emptiness\nI now take to my grave\nSo let this heart be still",
"spotifyURL": "https://open.spotify.com/intl-pt/track/3dWNUqrgkQakv9fj5epwPK",
"officialMusicVideo": "https://www.youtube.com/watch?v=4FKYsUEuvIo",
"composers": [
1,