-
Notifications
You must be signed in to change notification settings - Fork 2
/
model.js
1210 lines (1037 loc) · 33.8 KB
/
model.js
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
/*
{
'text': '',
'track': '',
'album': '',
'year': ''
},
*/
var model = [
{
'text': 'The chase is better than the catch.',
'track': 'How much is the fish',
'album': 'No time to chill',
'year': '1998'
},
{
'text': 'I want you back for the rhythm attack. Coming down on the floor like a maniac. I want you back for the rhythm-attack. Get down in full effect!',
'track': 'How much is the fish',
'album': 'No time to chill',
'year': '1998'
},
{
'text': 'I want to see you sweat!',
'track': 'Hyper Hyper',
'album': 'And the beat goes on!',
'year': '1995'
},
{
'text': 'Is everybody on the floor?',
'track': 'Hyper Hyper',
'album': 'And the beat goes on!',
'year': '1995'
},
{
'text': 'Excuse me! Where is the bass drum? We need the bass drum!',
'track': 'Hyper Hyper',
'album': 'And the beat goes on!',
'year': '1995'
},
{
'text': 'It\'s so beautiful to see your hands in the air!',
'track': 'Hyper Hyper',
'album': 'And the beat goes on!',
'year': '1995'
},
{
'text': 'I\'ll have to ask it again: do you like it hardcore? Do you like it hardcore? We need the hardcore!',
'track': 'Hyper Hyper',
'album': 'And the beat goes on!',
'year': '1995'
},
{
'text': 'Party people! The sky has changed. Can you smell the sun?',
'track': 'Endless Summer',
'album': 'And the beat goes on!',
'year': '1995'
},
{
'text': 'Scooter! Back in the house! Yeah!',
'track': 'Move your ass!',
'album': 'And the beat goes on!',
'year': '1995'
},
{
'text': 'Starting the microphone business, I\'ve got one message for the next decade: move your ass!',
'track': 'Move your ass!',
'album': 'And the beat goes on!',
'year': '1995'
},
{
'text': 'Maximum respect for the whole European posse!',
'track': 'Move your ass!',
'album': 'And the beat goes on!',
'year': '1995'
},
{
'text': 'Ravers of the universe, you keep the spirit alive!',
'track': 'Move your ass!',
'album': 'And the beat goes on!',
'year': '1995'
},
{
'text': 'It\'s nice to be important, but it\'s more important to be nice.',
'track': 'Move your ass!',
'album': 'And the beat goes on!',
'year': '1995'
},
{
'text': 'Kickin\' it, kickin\' it, kickin\' it. Yeah!',
'track': 'Move your ass!',
'album': 'And the beat goes on!',
'year': '1995'
},
{
'text': 'We gonna hit you harder!',
'track': 'Friends',
'album': 'And the beat goes on!',
'year': '1995'
},
{
'text': 'Once again we have the plan, driving you wild as good as we can.',
'track': 'Back in the U.K.',
'album': 'Our happy hardcore',
'year': '1996'
},
{
'text': 'Somewhere is England, banging the bass. Join our trip to this weird place. Back to nature, where we can be faster harder, loud and free.',
'track': 'Back in the U.K.',
'album': 'Our happy hardcore',
'year': '1996'
},
{
'text': 'Speed it Up, speed it up. Turn up the bass.',
'track': 'Let me be your valentine',
'album': 'Our happy hardcore',
'year': '1996'
},
{
'text': 'We love the happy hardcore, we\'re getting out of control.',
'track': 'Let me be your valentine',
'album': 'Our happy hardcore',
'year': '1996'
},
{
'text': 'Sometimes this is dangerous. Sometimes this is rough. But one thing is true... We never get, we never get enough.',
'track': 'Our happy hardcore',
'album': 'Our happy hardcore',
'year': '1996'
},
{
'text': 'Raver\'s you like it rough All of you can\'t get enough.',
'track': 'We take you higher',
'album': 'Wicked!',
'year': '1996'
},
{
'text': 'Breakbeat, that\'s the groove. Come on, make it move.',
'track': 'We take you higher',
'album': 'Wicked!',
'year': '1996'
},
{
'text': 'Posse, we spin you \'round. Hardcore, that\'s the sound',
'track': 'We take you higher',
'album': 'Wicked!',
'year': '1996'
},
{
'text': 'When I was a young boy I used to chat on the mike.',
'track': 'When I was a young boy',
'album': 'Wicked!',
'year': '1996'
},
{
'text': 'Leaving the whole week behind stop the trouble, open your mind.',
'track': 'Zebras crossing the street',
'album': 'Wicked!',
'year': '1996'
},
{
'text': 'Come on we start it right, so posse hold on tight.',
'track': 'The age of love',
'album': 'Age of love',
'year': '1997'
},
{
'text': 'Yes, turn up that blaster, I wanna see you faster.',
'track': 'The age of love',
'album': 'Age of love',
'year': '1997'
},
{
'text': 'Shake it, shake it, shake it. Are there any questions ?',
'track': 'She said',
'album': 'Age of love',
'year': '1997'
},
{
'text': 'Switch off the lights and close your eyes. Feel the energy inside. Chilli bowl, chilli bowl, chilli bowl.',
'track': 'Fire',
'album': 'Age of love',
'year': '1997'
},
{
'text': 'When I\'m far from home, don\'t call me on the phone to tell me you\'re alone.',
'track': 'Eyes without a face',
'album': 'No time to chill',
'year': '1998'
},
{
'text': 'This is the voice from outer space responsible rhythm for the human race.',
'track': 'Hands up!',
'album': 'No time to chill',
'year': '1998'
},
{
'text': 'Here is the force! I\'m the Candyman, also known as Dave. Dave from Sheffield, furthermore known as the Screaming Lord but you can call me Ice, Ice Ice baby! SUPA monchi! Ahhh!',
'track': 'Fuck the milennium',
'album': 'Back To The Heavyweight Jam',
'year': '1999'
},
{
'text': 'I\'m damned, I\'m hot and just can\'t stop, you can see my back \'cause I run like a shot.',
'track': 'The revolution',
'album': 'Back To The Heavyweight Jam',
'year': '1999'
},
{
'text': 'At the time when the justified ancients of Mu Mu ruled the world we started to create a sound.',
'track': 'Psycho',
'album': 'Back To The Heavyweight Jam',
'year': '1999'
},
{
'text': 'Before success can manifest. You\'ve got to go through the learning process.',
'track': 'The learning process',
'album': 'Back To The Heavyweight Jam',
'year': '1999'
},
{
'text': 'I originate, you must appreciate, all the others imitate.',
'track': 'I\'ll put you on the guest list',
'album': 'Back To The Heavyweight Jam',
'year': '1999'
},
{
'text': 'Feels like strawberry sun. Thank you.',
'track': 'I\'ll put you on the guest list',
'album': 'Back To The Heavyweight Jam',
'year': '1999'
},
{
'text': 'We like the fast lane.',
'track': 'Kashmir',
'album': 'Back To The Heavyweight Jam',
'year': '1999'
},
{
'text': 'I\'m gonna grab the mic to your delight. Let\'s go out for the night',
'track': 'Don\'t gimme the funk',
'album': 'Sheffield',
'year': '2000'
},
{
'text': 'Lost and found back on the case. We\'ll bring it on down to the party place',
'track': 'I\'m your pusher',
'album': 'Sheffield',
'year': '2000'
},
{
'text': 'Sheffield\'s gonna rock you once again. This is a real monster tune. Coming up with the motherfucking bassdrum.',
'track': 'I\'m your pusher',
'album': 'Sheffield',
'year': '2000'
},
{
'text': 'Jetzt kommt die Feuerwehr.',
'track': 'I\'m your pusher',
'album': 'Sheffield',
'year': '2000'
},
{
'text': 'I could make a film. And make you my star, you\'d be a natural the way you are.',
'track': 'Sex dwarf',
'album': 'Sheffield',
'year': '2000'
},
{
'text': 'We\'ll knock \'em cold, knockin \'em cold in black and gold.',
'track': 'Sex dwarf',
'album': 'Sheffield',
'year': '2000'
},
{
'text': 'Hard like wax going up to the max.',
'track': 'Never slow down',
'album': 'Sheffield',
'year': '2000'
},
{
'text': 'When I\'ve got the microphone I don\'t like the slow mo. You know my flow is better than a porno in soho.',
'track': 'Never slow down',
'album': 'Sheffield',
'year': '2000'
},
{
'text': 'I\'m the quarterback of the scene. We bring the noise and make you scream.',
'track': 'Posse (I need you on the floor)',
'album': 'We bring the noise!',
'year': '2001'
},
{
'text': 'I\'m bigger and bolder and rougher and tougher. In other words, sucker, there is no other. I\'m bigger and bolder and rougher and tougher. In other words, sucker, I\'ve got no brother',
'track': 'Posse (I need you on the floor)',
'album': 'We bring the noise!',
'year': '2001'
},
{
'text': 'Bring the break!',
'track': 'Posse (I need you on the floor)',
'album': 'We bring the noise!',
'year': '2001'
},
{
'text': 'Lakierski materialski',
'track': 'Posse (I need you on the floor)',
'album': 'We bring the noise!',
'year': '2001'
},
{
'text': 'Heiligeili!',
'track': 'Posse (I need you on the floor)',
'album': 'We bring the noise!',
'year': '2001'
},
{
'text': 'Back on the track, ride on. Hot as hell, though you did not expect.',
'track': 'Posse (I need you on the floor)',
'album': 'We bring the noise!',
'year': '2001'
},
{
'text': 'Rock to the beat, rock to the beat, Rock to the beat, now!',
'track': 'Posse (I need you on the floor)',
'album': 'We bring the noise!',
'year': '2001'
},
{
'text': 'Massive mental shouts to the crowd. This is the sound of the underground. Yeah!',
'track': 'We bring the noise',
'album': 'We bring the noise!',
'year': '2001'
},
{
'text': 'Coming at ya like Cleopatra!',
'track': 'I shot the DJ',
'album': 'We bring the noise!',
'year': '2001'
},
{
'text': 'Where is da punani?',
'track': 'I shot the DJ',
'album': 'We bring the noise!',
'year': '2001'
},
{
'text': 'I\'m the rhyme driller. If you don\'t believe here\'s another floor filler.',
'track': 'I shot the DJ',
'album': 'We bring the noise!',
'year': '2001'
},
{
'text': 'All you chicks just shake your hips.',
'track': 'I shot the DJ',
'album': 'We bring the noise!',
'year': '2001'
},
{
'text': 'Bow shalak!',
'track': 'I shot the DJ',
'album': 'We bring the noise!',
'year': '2001'
},
{
'text': 'Tell me where\'s the party. All I wanna do is chase the punani!',
'track': 'I shot the DJ',
'album': 'We bring the noise!',
'year': '2001'
},
{
'text': 'Yo Marc, turn up the bass, boy!',
'track': 'Maria (I like it loud)',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'Alright everybody! Tie your shoes!',
'track': 'Maria (I like it loud)',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'From the H to the P on the mic you will see. The people\'s champ, that\'s me.',
'track': 'Maria (I like it loud)',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'Skibadee, skibadanger. I am the rearranger.',
'track': 'Maria (I like it loud)',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'Never, never endeavor the good weather or whether we\'ll be there. Only for your pleasure, yeah!',
'track': 'Maria (I like it loud)',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'We\'re the special guest mixologists!',
'track': 'Maria (I like it loud)',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'A Ritz Bits for the hits with the lyrics. With a robotic narcotic in the pocket. The fire rocket, blood socket. I crack whip, yeah!',
'track': 'Maria (I like it loud)',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'Here comes the chicks terminator!',
'track': 'Weekend!',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'In control!',
'track': 'Weekend!',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'Sounds of the track attacker!',
'track': 'Weekend!',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'Upon the mic I\'m the teacher! Spead my words like a preacher!',
'track': 'Weekend!',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'Cut the crap! Get the slap!',
'track': 'Weekend!',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'We are not the monkeys, but we\'ve got the key!',
'track': 'Weekend!',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'All right, crew! It\'s weekend!',
'track': 'Weekend!',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'I\'m the fast chatter no one\'s better then me!',
'track': 'Weekend!',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'Upon the mic I\'m the Voodoo! Destination of Zulu.',
'track': 'Weekend!',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'What is essential? It\'s invisible to the eye! It\'s only with the heart, that you can see rightly.',
'track': 'Weekend!',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'Respect to the man in the ice cream van!',
'track': 'Weekend!',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'Rumble in the jungle!',
'track': 'The night',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'Back on the mic I got the sound. Holding you down, down to the ground. Speaking the melody. Who out there got the skills to test me?',
'track': 'The night',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'Never stop the turntable madness. Ready to blast.',
'track': 'Roll baby roll',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'I say hi, you say hello. I say yes, you say no. I say whistle, you just blow. So roll baby roll.',
'track': 'Roll baby roll',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'This one is dedicated to the junglist crew.',
'track': 'Roll baby roll',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'Feel the bass drop vibrating your spirit. If you see a speaker come here \'n get near it.',
'track': 'Roll baby roll',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'Nobody\'s invincible, no plan foolproof. But keep in mind we\'re rocking under the same roof.',
'track': 'Like hypa said',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'You got a horn in your hand. Got a whistle round your neck. That\'s all you need for our next attack.',
'track': 'Like hypa said',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'Don\'t need a knife. Don\'t need a gun. Like hypa said. We just want some fun.',
'track': 'Like hypa said',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'Actions have reactions so don\'t be quick to judge.',
'track': 'Like hypa said',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'Flow in streams of fantasy come from deep inside. Substitute for memory, dreams I have to hide.',
'track': 'Like hypa said',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'Always lived my life alone, been searching for a place called home.',
'track': 'Nessaja',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'I know that I\'ve been cold as ice, ignored the dreams, too many lies.',
'track': 'Nessaja',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'Somewhere deep inside, somewhere deep inside me, I found the child I used to be. And I know that it\'s not too late. Never, too late.',
'track': 'Nessaja',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'The painted cow!',
'track': 'Nessaja',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'I am the Junglist soldier. Come On! The rocket launcher stopped ya!',
'track': 'Nessaja',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'It\'s not a bird, it\'s not a plane. It must be Dave who\'s on the train.',
'track': 'Nessaja',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'Are you ready? It\'s not a game! I chant so much, I turn you insane.',
'track': 'Nessaja',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'I am the freshman. Messing up the jam! Turning up the stereo, join the caravan.',
'track': 'Nessaja',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'Skippy, the rain won\'t come!',
'track': 'Nessaja',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'When me chant upon the microphone, and me say with the DJ. Junglists in the place. Junglists on the case.',
'track': 'The logical song',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'Love, peace and unity. Siberia, the place to be. The K, the L, the F and the -ology. Hallelujah!',
'track': 'The logical song',
'album': 'The stadium techno experience',
'year': '2003'
},
{
'text': 'I am the horseman',
'track': 'One (Always hardcore)',
'album': 'Mind the gap',
'year': '2004'
},
{
'text': 'It\'s a mixture ruff to the core. Through the texture. Come and get a taste of the fixture.',
'track': 'One (Always hardcore)',
'album': 'Mind the gap',
'year': '2004'
},
{
'text': 'Alright. One world, one people, one music. One MC.',
'track': 'One (Always hardcore)',
'album': 'Mind the gap',
'year': '2004'
},
{
'text': 'All right, crew! I am a junglist man! Don\'t try to change my plan, yeah!',
'track': 'Shake that',
'album': 'Mind the gap',
'year': '2004'
},
{
'text': 'Doing it for the masses! Doing it for the crew! Going to make you hop and skip around like a kangaroo!',
'track': 'Shake that',
'album': 'Mind the gap',
'year': '2004'
},
{
'text': 'Doing it for the masses! Doing it fast and slow! When I\'m in charge on the microphone, watch out I\'m about to blow!',
'track': 'Shake that',
'album': 'Mind the gap',
'year': '2004'
},
{
'text': 'Life without knowledge is death in disguise!',
'track': 'Shake that',
'album': 'Mind the gap',
'year': '2004'
},
{
'text': 'Find out what you cannot do and then go and do it. Yeah... no diggedy, aahh.',
'track': 'All i wanna do',
'album': 'Mind the gap',
'year': '2004'
},
{
'text': 'Chat the mic, with no care. Test my style, if you dare.',
'track': 'All i wanna do',
'album': 'Mind the gap',
'year': '2004'
},
{
'text': 'Ring me up!',
'track': 'Jigga Jigga',
'album': 'Mind the gap',
'year': '2004'
},
{
'text': 'Welcome to the main arena!',
'track': 'Jigga Jigga',
'album': 'Mind the gap',
'year': '2004'
},
{
'text': 'Close to the edge!',
'track': 'Jigga Jigga',
'album': 'Mind the gap',
'year': '2004'
},
{
'text': 'I\'m not a faker, I\'m feared like the great white shark!',
'track': 'Jigga Jigga',
'album': 'Mind the gap',
'year': '2004'
},
{
'text': 'Everybody wants to be a top shotter. I work da mike proper, here is the chart topper. Yeah!',
'track': 'Jigga Jigga',
'album': 'Mind the gap',
'year': '2004'
},
{
'text': 'When I\'m bouncing, I\'m like a rabbit. See a punchbag, I wanna grab it.',
'track': 'Panties wanted',
'album': 'Mind the gap',
'year': '2004'
},
{
'text': 'We want you now to take off your bras and your panties. Yeah. Throw them all onto the stage. And do it now!',
'track': 'Panties wanted',
'album': 'Mind the gap',
'year': '2004'
},
{
'text': 'Come with me into the trees. We\'ll lay on the grass and let the hours pass',
'track': 'Stripped',
'album': 'Mind the gap',
'year': '2004'
},
{
'text': 'Take my hand come back to the land. Where everything\'s ours for a few hours',
'track': 'Stripped',
'album': 'Mind the gap',
'year': '2004'
},
{
'text': 'Whenever people agree with me I always feel I must be wrong',
'track': 'Suavemente',
'album': 'Mind the gap',
'year': '2004'
},
{
'text': 'Slide on in between. It forces me to action. Where is the response?',
'track': 'The Chaser',
'album': 'Mind the gap',
'year': '2004'
},
{
'text': 'Vicious and clean, edge like a laser. Words to hit you-like a laser.',
'track': 'The Chaser',
'album': 'Mind the gap',
'year': '2004'
},
{
'text': 'I interrupt your transmission to distort your position',
'track': 'The avenger\'s back',
'album': 'Mind the gap',
'year': '2004'
},
{
'text': 'It\'s like thunder, lightning! The way you love me is frightening.',
'track': 'The avenger\'s back',
'album': 'Mind the gap',
'year': '2004'
},
{
'text': 'Now let me know if you\'re good to go',
'track': 'Hello! (Good to be back)',
'album': 'Who\'s got the last laugh now',
'year': '2005'
},
{
'text': 'Hello! Hello! Good to be back, good to be back',
'track': 'Hello! (Good to be back)',
'album': 'Who\'s got the last laugh now',
'year': '2005'
},
{
'text': 'Don\'t stop it\'s the ride of your life. Hold on tight, the whole night, \'cause you got the right',
'track': 'Hello! (Good to be back)',
'album': 'Who\'s got the last laugh now',
'year': '2005'
},
{
'text': 'Like shotgun on the M.I.C. I float like a butterfly, sting like a bee',
'track': 'Hello! (Good to be back)',
'album': 'Who\'s got the last laugh now',
'year': '2005'
},
{
'text': 'The explosion off my tongue makes you shiver',
'track': 'Privileged to witness',
'album': 'Who\'s got the last laugh now',
'year': '2005'
},
{
'text': 'You faggot lost your flavour like an old piece of gum yeah',
'track': 'Privileged to witness',
'album': 'Who\'s got the last laugh now',
'year': '2005'
},
{
'text': 'Rambling wack shit try to show you\'re the baddest while I sit back and relax go in full flow with attacks.',
'track': 'Privileged to witness',
'album': 'Who\'s got the last laugh now',
'year': '2005'
},
{
'text': 'Giant steps are what you take. Walking on the moon, I hope my legs don\'t break',
'track': 'Privileged to witness',
'album': 'Who\'s got the last laugh now',
'year': '2005'
},
{
'text': 'Leave you there with stitches, jacking to the pictures of your sister, \'til your hands got blisters',
'track': 'Privileged to witness',
'album': 'Who\'s got the last laugh now',
'year': '2005'
},
{
'text': 'I don\'t speak my rhymes. I speak my mind. I battle with closed eyes and start beefing blind.',
'track': 'Privileged to witness',
'album': 'Who\'s got the last laugh now',
'year': '2005'
},
{
'text': 'I flick the switch 2000 Volts of lyrical tricks yeah',
'track': 'Rock bottom',
'album': 'Who\'s got the last laugh now',
'year': '2005'
},
{
'text': 'Discharge hard like lightning quick and hear the tick you got it?',
'track': 'Rock bottom',
'album': 'Who\'s got the last laugh now',
'year': '2005'
},
{
'text': 'But before you hear the tock. There\'s a new flex I drop from my frontal lobe \'til the microphone explodes',
'track': 'Rock bottom',
'album': 'Who\'s got the last laugh now',
'year': '2005'
},
{
'text': 'Love to rock bottom beats for the flicks to hibernate and syncopate but I\'m still in the mix',
'track': 'Rock bottom',
'album': 'Who\'s got the last laugh now',
'year': '2005'
},
{
'text': 'I pump kinetics unintentional malice. Wanna battle one of us is ending up in God\'s palace',
'track': 'Rock bottom',
'album': 'Who\'s got the last laugh now',
'year': '2005'
},
{
'text': 'Back off deadly like black coffee. Long as I got lungs and a knot you can\'t stop me',
'track': 'Rock bottom',
'album': 'Who\'s got the last laugh now',
'year': '2005'
},
{
'text': 'Rotterdam. Amsterdam. Hey Dimitri. Yooo!',
'track': 'Rock bottom',
'album': 'Who\'s got the last laugh now',
'year': '2005'
},
{
'text': 'It\'s H the lyrical weapon',
'track': 'The leading horse',
'album': 'Who\'s got the last laugh now',
'year': '2005'
},
{
'text': 'Let\'s get steppin, your girls\' panties, I will be wetting. Last night\'s events she won\'t be forgetting',
'track': 'The leading horse',