This repository has been archived by the owner on May 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
testdata.sql
4202 lines (4191 loc) · 686 KB
/
testdata.sql
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
-- Modified data from the Chinook Database
-- Original author: Luis Rocha
-- License: http://www.codeplex.com/ChinookDatabase/license
CREATE TABLE Album
(
AlbumId U32,
Title STRING,
ArtistId U32
);
CREATE TABLE Artist
(
ArtistId U32,
Name STRING
);
CREATE TABLE Genre
(
GenreId U32,
Name STRING
);
CREATE TABLE MediaType
(
MediaTypeId U32,
Name STRING
);
CREATE TABLE Track
(
TrackId U32,
Name STRING,
AlbumId U32,
MediaTypeId U32,
GenreId U32,
Composer STRING, -- todo: make nullable
Milliseconds U32,
Bytes U32,
UnitPrice F64
);
INSERT INTO Genre (GenreId, Name) VALUES (1, 'Rock'),
(2, 'Jazz'),
(3, 'Metal'),
(4, 'Alternative & Punk'),
(5, 'Rock And Roll'),
(6, 'Blues'),
(7, 'Latin'),
(8, 'Reggae'),
(9, 'Pop'),
(10, 'Soundtrack'),
(11, 'Bossa Nova'),
(12, 'Easy Listening'),
(13, 'Heavy Metal'),
(14, 'R&B/Soul'),
(15, 'Electronica/Dance'),
(16, 'World'),
(17, 'Hip Hop/Rap'),
(18, 'Science Fiction'),
(19, 'TV Shows'),
(20, 'Sci Fi & Fantasy'),
(21, 'Drama'),
(22, 'Comedy'),
(23, 'Alternative'),
(24, 'Classical'),
(25, 'Opera');
INSERT INTO Artist (ArtistId, Name) VALUES (1, 'AC/DC'),
(2, 'Accept'),
(3, 'Aerosmith'),
(4, 'Alanis Morissette'),
(5, 'Alice In Chains'),
(6, 'Antônio Carlos Jobim'),
(7, 'Apocalyptica'),
(8, 'Audioslave'),
(9, 'BackBeat'),
(10, 'Billy Cobham'),
(11, 'Black Label Society'),
(12, 'Black Sabbath'),
(13, 'Body Count'),
(14, 'Bruce Dickinson'),
(15, 'Buddy Guy'),
(16, 'Caetano Veloso'),
(17, 'Chico Buarque'),
(18, 'Chico Science & Nação Zumbi'),
(19, 'Cidade Negra'),
(20, 'Cláudio Zoli'),
(21, 'Various Artists'),
(22, 'Led Zeppelin'),
(23, 'Frank Zappa & Captain Beefheart'),
(24, 'Marcos Valle'),
(25, 'Milton Nascimento & Bebeto'),
(26, 'Azymuth'),
(27, 'Gilberto Gil'),
(28, 'João Gilberto'),
(29, 'Bebel Gilberto'),
(30, 'Jorge Vercilo'),
(31, 'Baby Consuelo'),
(32, 'Ney Matogrosso'),
(33, 'Luiz Melodia'),
(34, 'Nando Reis'),
(35, 'Pedro Luís & A Parede'),
(36, 'O Rappa'),
(37, 'Ed Motta'),
(38, 'Banda Black Rio'),
(39, 'Fernanda Porto'),
(40, 'Os Cariocas'),
(41, 'Elis Regina'),
(42, 'Milton Nascimento'),
(43, 'A Cor Do Som'),
(44, 'Kid Abelha'),
(45, 'Sandra De Sá'),
(46, 'Jorge Ben'),
(47, 'Hermeto Pascoal'),
(48, 'Barão Vermelho'),
(49, 'Edson, DJ Marky & DJ Patife Featuring Fernanda Porto'),
(50, 'Metallica'),
(51, 'Queen'),
(52, 'Kiss'),
(53, 'Spyro Gyra'),
(54, 'Green Day'),
(55, 'David Coverdale'),
(56, 'Gonzaguinha'),
(57, 'Os Mutantes'),
(58, 'Deep Purple'),
(59, 'Santana'),
(60, 'Santana Feat. Dave Matthews'),
(61, 'Santana Feat. Everlast'),
(62, 'Santana Feat. Rob Thomas'),
(63, 'Santana Feat. Lauryn Hill & Cee-Lo'),
(64, 'Santana Feat. The Project G&B'),
(65, 'Santana Feat. Maná'),
(66, 'Santana Feat. Eagle-Eye Cherry'),
(67, 'Santana Feat. Eric Clapton'),
(68, 'Miles Davis'),
(69, 'Gene Krupa'),
(70, 'Toquinho & Vinícius'),
(71, 'Vinícius De Moraes & Baden Powell'),
(72, 'Vinícius De Moraes'),
(73, 'Vinícius E Qurteto Em Cy'),
(74, 'Vinícius E Odette Lara'),
(75, 'Vinicius, Toquinho & Quarteto Em Cy'),
(76, 'Creedence Clearwater Revival'),
(77, 'Cássia Eller'),
(78, 'Def Leppard'),
(79, 'Dennis Chambers'),
(80, 'Djavan'),
(81, 'Eric Clapton'),
(82, 'Faith No More'),
(83, 'Falamansa'),
(84, 'Foo Fighters'),
(85, 'Frank Sinatra'),
(86, 'Funk Como Le Gusta'),
(87, 'Godsmack'),
(88, 'Guns N\' Roses'),
(89, 'Incognito'),
(90, 'Iron Maiden'),
(91, 'James Brown'),
(92, 'Jamiroquai'),
(93, 'JET'),
(94, 'Jimi Hendrix'),
(95, 'Joe Satriani'),
(96, 'Jota Quest'),
(97, 'João Suplicy'),
(98, 'Judas Priest'),
(99, 'Legião Urbana'),
(100, 'Lenny Kravitz'),
(101, 'Lulu Santos'),
(102, 'Marillion'),
(103, 'Marisa Monte'),
(104, 'Marvin Gaye'),
(105, 'Men At Work'),
(106, 'Motörhead'),
(107, 'Motörhead & Girlschool'),
(108, 'Mônica Marianno'),
(109, 'Mötley Crüe'),
(110, 'Nirvana'),
(111, 'O Terço'),
(112, 'Olodum'),
(113, 'Os Paralamas Do Sucesso'),
(114, 'Ozzy Osbourne'),
(115, 'Page & Plant'),
(116, 'Passengers'),
(117, 'Paul D\'Ianno'),
(118, 'Pearl Jam'),
(119, 'Peter Tosh'),
(120, 'Pink Floyd'),
(121, 'Planet Hemp'),
(122, 'R.E.M. Feat. Kate Pearson'),
(123, 'R.E.M. Feat. KRS-One'),
(124, 'R.E.M.'),
(125, 'Raimundos'),
(126, 'Raul Seixas'),
(127, 'Red Hot Chili Peppers'),
(128, 'Rush'),
(129, 'Simply Red'),
(130, 'Skank'),
(131, 'Smashing Pumpkins'),
(132, 'Soundgarden'),
(133, 'Stevie Ray Vaughan & Double Trouble'),
(134, 'Stone Temple Pilots'),
(135, 'System Of A Down'),
(136, 'Terry Bozzio, Tony Levin & Steve Stevens'),
(137, 'The Black Crowes'),
(138, 'The Clash'),
(139, 'The Cult'),
(140, 'The Doors'),
(141, 'The Police'),
(142, 'The Rolling Stones'),
(143, 'The Tea Party'),
(144, 'The Who'),
(145, 'Tim Maia'),
(146, 'Titãs'),
(147, 'Battlestar Galactica'),
(148, 'Heroes'),
(149, 'Lost'),
(150, 'U2'),
(151, 'UB40'),
(152, 'Van Halen'),
(153, 'Velvet Revolver'),
(154, 'Whitesnake'),
(155, 'Zeca Pagodinho'),
(156, 'The Office'),
(157, 'Dread Zeppelin'),
(158, 'Battlestar Galactica (Classic)'),
(159, 'Aquaman'),
(160, 'Christina Aguilera featuring BigElf'),
(161, 'Aerosmith & Sierra Leone\'s Refugee Allstars'),
(162, 'Los Lonely Boys'),
(163, 'Corinne Bailey Rae'),
(164, 'Dhani Harrison & Jakob Dylan'),
(165, 'Jackson Browne'),
(166, 'Avril Lavigne'),
(167, 'Big & Rich'),
(168, 'Youssou N\'Dour'),
(169, 'Black Eyed Peas'),
(170, 'Jack Johnson'),
(171, 'Ben Harper'),
(172, 'Snow Patrol'),
(173, 'Matisyahu'),
(174, 'The Postal Service'),
(175, 'Jaguares'),
(176, 'The Flaming Lips'),
(177, 'Jack\'s Mannequin & Mick Fleetwood'),
(178, 'Regina Spektor'),
(179, 'Scorpions'),
(180, 'House Of Pain'),
(181, 'Xis'),
(182, 'Nega Gizza'),
(183, 'Gustavo & Andres Veiga & Salazar'),
(184, 'Rodox'),
(185, 'Charlie Brown Jr.'),
(186, 'Pedro Luís E A Parede'),
(187, 'Los Hermanos'),
(188, 'Mundo Livre S/A'),
(189, 'Otto'),
(190, 'Instituto'),
(191, 'Nação Zumbi'),
(192, 'DJ Dolores & Orchestra Santa Massa'),
(193, 'Seu Jorge'),
(194, 'Sabotage E Instituto'),
(195, 'Stereo Maracana'),
(196, 'Cake'),
(197, 'Aisha Duo'),
(198, 'Habib Koité and Bamada'),
(199, 'Karsh Kale'),
(200, 'The Posies'),
(201, 'Luciana Souza/Romero Lubambo'),
(202, 'Aaron Goldberg'),
(203, 'Nicolaus Esterhazy Sinfonia'),
(204, 'Temple of the Dog'),
(205, 'Chris Cornell'),
(206, 'Alberto Turco & Nova Schola Gregoriana'),
(207, 'Richard Marlow & The Choir of Trinity College, Cambridge'),
(208, 'English Concert & Trevor Pinnock'),
(209, 'Anne-Sophie Mutter, Herbert Von Karajan & Wiener Philharmoniker'),
(210, 'Hilary Hahn, Jeffrey Kahane, Los Angeles Chamber Orchestra & Margaret Batjer'),
(211, 'Wilhelm Kempff'),
(212, 'Yo-Yo Ma'),
(213, 'Scholars Baroque Ensemble'),
(214, 'Academy of St. Martin in the Fields & Sir Neville Marriner'),
(215, 'Academy of St. Martin in the Fields Chamber Ensemble & Sir Neville Marriner'),
(216, 'Berliner Philharmoniker, Claudio Abbado & Sabine Meyer'),
(217, 'Royal Philharmonic Orchestra & Sir Thomas Beecham'),
(218, 'Orchestre Révolutionnaire et Romantique & John Eliot Gardiner'),
(219, 'Britten Sinfonia, Ivor Bolton & Lesley Garrett'),
(220, 'Chicago Symphony Chorus, Chicago Symphony Orchestra & Sir Georg Solti'),
(221, 'Sir Georg Solti & Wiener Philharmoniker'),
(222, 'Academy of St. Martin in the Fields, John Birch, Sir Neville Marriner & Sylvia McNair'),
(223, 'London Symphony Orchestra & Sir Charles Mackerras'),
(224, 'Barry Wordsworth & BBC Concert Orchestra'),
(225, 'Herbert Von Karajan, Mirella Freni & Wiener Philharmoniker'),
(226, 'Eugene Ormandy'),
(227, 'Luciano Pavarotti'),
(228, 'Leonard Bernstein & New York Philharmonic'),
(229, 'Boston Symphony Orchestra & Seiji Ozawa'),
(230, 'Aaron Copland & London Symphony Orchestra'),
(231, 'Ton Koopman'),
(232, 'Sergei Prokofiev & Yuri Temirkanov'),
(233, 'Chicago Symphony Orchestra & Fritz Reiner'),
(234, 'Orchestra of The Age of Enlightenment'),
(235, 'Emanuel Ax, Eugene Ormandy & Philadelphia Orchestra'),
(236, 'James Levine'),
(237, 'Berliner Philharmoniker & Hans Rosbaud'),
(238, 'Maurizio Pollini'),
(239, 'Academy of St. Martin in the Fields, Sir Neville Marriner & William Bennett'),
(240, 'Gustav Mahler'),
(241, 'Felix Schmidt, London Symphony Orchestra & Rafael Frühbeck de Burgos'),
(242, 'Edo de Waart & San Francisco Symphony'),
(243, 'Antal Doráti & London Symphony Orchestra'),
(244, 'Choir Of Westminster Abbey & Simon Preston'),
(245, 'Michael Tilson Thomas & San Francisco Symphony'),
(246, 'Chor der Wiener Staatsoper, Herbert Von Karajan & Wiener Philharmoniker'),
(247, 'The King\'s Singers'),
(248, 'Berliner Philharmoniker & Herbert Von Karajan'),
(249, 'Sir Georg Solti, Sumi Jo & Wiener Philharmoniker'),
(250, 'Christopher O\'Riley'),
(251, 'Fretwork'),
(252, 'Amy Winehouse'),
(253, 'Calexico'),
(254, 'Otto Klemperer & Philharmonia Orchestra'),
(255, 'Yehudi Menuhin'),
(256, 'Philharmonia Orchestra & Sir Neville Marriner'),
(257, 'Academy of St. Martin in the Fields, Sir Neville Marriner & Thurston Dart'),
(258, 'Les Arts Florissants & William Christie'),
(259, 'The 12 Cellists of The Berlin Philharmonic'),
(260, 'Adrian Leaper & Doreen de Feis'),
(261, 'Roger Norrington, London Classical Players'),
(262, 'Charles Dutoit & L\'Orchestre Symphonique de Montréal'),
(263, 'Equale Brass Ensemble, John Eliot Gardiner & Munich Monteverdi Orchestra and Choir'),
(264, 'Kent Nagano and Orchestre de l\'Opéra de Lyon'),
(265, 'Julian Bream'),
(266, 'Martin Roscoe'),
(267, 'Göteborgs Symfoniker & Neeme Järvi'),
(268, 'Itzhak Perlman'),
(269, 'Michele Campanella'),
(270, 'Gerald Moore'),
(271, 'Mela Tenenbaum, Pro Musica Prague & Richard Kapp'),
(272, 'Emerson String Quartet'),
(273, 'C. Monteverdi, Nigel Rogers - Chiaroscuro; London Baroque; London Cornett & Sackbu'),
(274, 'Nash Ensemble'),
(275, 'Philip Glass Ensemble');
INSERT INTO Album (AlbumId, Title, ArtistId) VALUES (1, 'For Those About To Rock We Salute You', 1),
(2, 'Balls to the Wall', 2),
(3, 'Restless and Wild', 2),
(4, 'Let There Be Rock', 1),
(5, 'Big Ones', 3),
(6, 'Jagged Little Pill', 4),
(7, 'Facelift', 5),
(8, 'Warner 25 Anos', 6),
(9, 'Plays Metallica By Four Cellos', 7),
(10, 'Audioslave', 8),
(11, 'Out Of Exile', 8),
(12, 'BackBeat Soundtrack', 9),
(13, 'The Best Of Billy Cobham', 10),
(14, 'Alcohol Fueled Brewtality Live! [Disc 1]', 11),
(15, 'Alcohol Fueled Brewtality Live! [Disc 2]', 11),
(16, 'Black Sabbath', 12),
(17, 'Black Sabbath Vol. 4 (Remaster)', 12),
(18, 'Body Count', 13),
(19, 'Chemical Wedding', 14),
(20, 'The Best Of Buddy Guy - The Millenium Collection', 15),
(21, 'Prenda Minha', 16),
(22, 'Sozinho Remix Ao Vivo', 16),
(23, 'Minha Historia', 17),
(24, 'Afrociberdelia', 18),
(25, 'Da Lama Ao Caos', 18),
(26, 'Acústico MTV [Live]', 19),
(27, 'Cidade Negra - Hits', 19),
(28, 'Na Pista', 20),
(29, 'Axé Bahia 2001', 21),
(30, 'BBC Sessions [Disc 1] [Live]', 22),
(31, 'Bongo Fury', 23),
(32, 'Carnaval 2001', 21),
(33, 'Chill: Brazil (Disc 1)', 24),
(34, 'Chill: Brazil (Disc 2)', 6),
(35, 'Garage Inc. (Disc 1)', 50),
(36, 'Greatest Hits II', 51),
(37, 'Greatest Kiss', 52),
(38, 'Heart of the Night', 53),
(39, 'International Superhits', 54),
(40, 'Into The Light', 55),
(41, 'Meus Momentos', 56),
(42, 'Minha História', 57),
(43, 'MK III The Final Concerts [Disc 1]', 58),
(44, 'Physical Graffiti [Disc 1]', 22),
(45, 'Sambas De Enredo 2001', 21),
(46, 'Supernatural', 59),
(47, 'The Best of Ed Motta', 37),
(48, 'The Essential Miles Davis [Disc 1]', 68),
(49, 'The Essential Miles Davis [Disc 2]', 68),
(50, 'The Final Concerts (Disc 2)', 58),
(51, 'Up An\' Atom', 69),
(52, 'Vinícius De Moraes - Sem Limite', 70),
(53, 'Vozes do MPB', 21),
(54, 'Chronicle, Vol. 1', 76),
(55, 'Chronicle, Vol. 2', 76),
(56, 'Cássia Eller - Coleção Sem Limite [Disc 2]', 77),
(57, 'Cássia Eller - Sem Limite [Disc 1]', 77),
(58, 'Come Taste The Band', 58),
(59, 'Deep Purple In Rock', 58),
(60, 'Fireball', 58),
(61, 'Knocking at Your Back Door: The Best Of Deep Purple in the 80\'s', 58),
(62, 'Machine Head', 58),
(63, 'Purpendicular', 58),
(64, 'Slaves And Masters', 58),
(65, 'Stormbringer', 58),
(66, 'The Battle Rages On', 58),
(67, 'Vault: Def Leppard\'s Greatest Hits', 78),
(68, 'Outbreak', 79),
(69, 'Djavan Ao Vivo - Vol. 02', 80),
(70, 'Djavan Ao Vivo - Vol. 1', 80),
(71, 'Elis Regina-Minha História', 41),
(72, 'The Cream Of Clapton', 81),
(73, 'Unplugged', 81),
(74, 'Album Of The Year', 82),
(75, 'Angel Dust', 82),
(76, 'King For A Day Fool For A Lifetime', 82),
(77, 'The Real Thing', 82),
(78, 'Deixa Entrar', 83),
(79, 'In Your Honor [Disc 1]', 84),
(80, 'In Your Honor [Disc 2]', 84),
(81, 'One By One', 84),
(82, 'The Colour And The Shape', 84),
(83, 'My Way: The Best Of Frank Sinatra [Disc 1]', 85),
(84, 'Roda De Funk', 86),
(85, 'As Canções de Eu Tu Eles', 27),
(86, 'Quanta Gente Veio Ver (Live)', 27),
(87, 'Quanta Gente Veio ver--Bônus De Carnaval', 27),
(88, 'Faceless', 87),
(89, 'American Idiot', 54),
(90, 'Appetite for Destruction', 88),
(91, 'Use Your Illusion I', 88),
(92, 'Use Your Illusion II', 88),
(93, 'Blue Moods', 89),
(94, 'A Matter of Life and Death', 90),
(95, 'A Real Dead One', 90),
(96, 'A Real Live One', 90),
(97, 'Brave New World', 90),
(98, 'Dance Of Death', 90),
(99, 'Fear Of The Dark', 90),
(100, 'Iron Maiden', 90),
(101, 'Killers', 90),
(102, 'Live After Death', 90),
(103, 'Live At Donington 1992 (Disc 1)', 90),
(104, 'Live At Donington 1992 (Disc 2)', 90),
(105, 'No Prayer For The Dying', 90),
(106, 'Piece Of Mind', 90),
(107, 'Powerslave', 90),
(108, 'Rock In Rio [CD1]', 90),
(109, 'Rock In Rio [CD2]', 90),
(110, 'Seventh Son of a Seventh Son', 90),
(111, 'Somewhere in Time', 90),
(112, 'The Number of The Beast', 90),
(113, 'The X Factor', 90),
(114, 'Virtual XI', 90),
(115, 'Sex Machine', 91),
(116, 'Emergency On Planet Earth', 92),
(117, 'Synkronized', 92),
(118, 'The Return Of The Space Cowboy', 92),
(119, 'Get Born', 93),
(120, 'Are You Experienced?', 94),
(121, 'Surfing with the Alien (Remastered)', 95),
(122, 'Jorge Ben Jor 25 Anos', 46),
(123, 'Jota Quest-1995', 96),
(124, 'Cafezinho', 97),
(125, 'Living After Midnight', 98),
(126, 'Unplugged [Live]', 52),
(127, 'BBC Sessions [Disc 2] [Live]', 22),
(128, 'Coda', 22),
(129, 'Houses Of The Holy', 22),
(130, 'In Through The Out Door', 22),
(131, 'IV', 22),
(132, 'Led Zeppelin I', 22),
(133, 'Led Zeppelin II', 22),
(134, 'Led Zeppelin III', 22),
(135, 'Physical Graffiti [Disc 2]', 22),
(136, 'Presence', 22),
(137, 'The Song Remains The Same (Disc 1)', 22),
(138, 'The Song Remains The Same (Disc 2)', 22),
(139, 'A TempestadeTempestade Ou O Livro Dos Dias', 99),
(140, 'Mais Do Mesmo', 99),
(141, 'Greatest Hits', 100),
(142, 'Lulu Santos - RCA 100 Anos De Música - Álbum 01', 101),
(143, 'Lulu Santos - RCA 100 Anos De Música - Álbum 02', 101),
(144, 'Misplaced Childhood', 102),
(145, 'Barulhinho Bom', 103),
(146, 'Seek And Shall Find: More Of The Best (1963-1981)', 104),
(147, 'The Best Of Men At Work', 105),
(148, 'Black Album', 50),
(149, 'Garage Inc. (Disc 2)', 50),
(150, 'Kill \'Em All', 50),
(151, 'Load', 50),
(152, 'Master Of Puppets', 50),
(153, 'ReLoad', 50),
(154, 'Ride The Lightning', 50),
(155, 'St. Anger', 50),
(156, '...And Justice For All', 50),
(157, 'Miles Ahead', 68),
(158, 'Milton Nascimento Ao Vivo', 42),
(159, 'Minas', 42),
(160, 'Ace Of Spades', 106),
(161, 'Demorou...', 108),
(162, 'Motley Crue Greatest Hits', 109),
(163, 'From The Muddy Banks Of The Wishkah [Live]', 110),
(164, 'Nevermind', 110),
(165, 'Compositores', 111),
(166, 'Olodum', 112),
(167, 'Acústico MTV', 113),
(168, 'Arquivo II', 113),
(169, 'Arquivo Os Paralamas Do Sucesso', 113),
(170, 'Bark at the Moon (Remastered)', 114),
(171, 'Blizzard of Ozz', 114),
(172, 'Diary of a Madman (Remastered)', 114),
(173, 'No More Tears (Remastered)', 114),
(174, 'Tribute', 114),
(175, 'Walking Into Clarksdale', 115),
(176, 'Original Soundtracks 1', 116),
(177, 'The Beast Live', 117),
(178, 'Live On Two Legs [Live]', 118),
(179, 'Pearl Jam', 118),
(180, 'Riot Act', 118),
(181, 'Ten', 118),
(182, 'Vs.', 118),
(183, 'Dark Side Of The Moon', 120),
(184, 'Os Cães Ladram Mas A Caravana Não Pára', 121),
(185, 'Greatest Hits I', 51),
(186, 'News Of The World', 51),
(187, 'Out Of Time', 122),
(188, 'Green', 124),
(189, 'New Adventures In Hi-Fi', 124),
(190, 'The Best Of R.E.M.: The IRS Years', 124),
(191, 'Cesta Básica', 125),
(192, 'Raul Seixas', 126),
(193, 'Blood Sugar Sex Magik', 127),
(194, 'By The Way', 127),
(195, 'Californication', 127),
(196, 'Retrospective I (1974-1980)', 128),
(197, 'Santana - As Years Go By', 59),
(198, 'Santana Live', 59),
(199, 'Maquinarama', 130),
(200, 'O Samba Poconé', 130),
(201, 'Judas 0: B-Sides and Rarities', 131),
(202, 'Rotten Apples: Greatest Hits', 131),
(203, 'A-Sides', 132),
(204, 'Morning Dance', 53),
(205, 'In Step', 133),
(206, 'Core', 134),
(207, 'Mezmerize', 135),
(208, '[1997] Black Light Syndrome', 136),
(209, 'Live [Disc 1]', 137),
(210, 'Live [Disc 2]', 137),
(211, 'The Singles', 138),
(212, 'Beyond Good And Evil', 139),
(213, 'Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]', 139),
(214, 'The Doors', 140),
(215, 'The Police Greatest Hits', 141),
(216, 'Hot Rocks, 1964-1971 (Disc 1)', 142),
(217, 'No Security', 142),
(218, 'Voodoo Lounge', 142),
(219, 'Tangents', 143),
(220, 'Transmission', 143),
(221, 'My Generation - The Very Best Of The Who', 144),
(222, 'Serie Sem Limite (Disc 1)', 145),
(223, 'Serie Sem Limite (Disc 2)', 145),
(224, 'Acústico', 146),
(225, 'Volume Dois', 146),
(226, 'Battlestar Galactica: The Story So Far', 147),
(227, 'Battlestar Galactica, Season 3', 147),
(228, 'Heroes, Season 1', 148),
(229, 'Lost, Season 3', 149),
(230, 'Lost, Season 1', 149),
(231, 'Lost, Season 2', 149),
(232, 'Achtung Baby', 150),
(233, 'All That You Can\'t Leave Behind', 150),
(234, 'B-Sides 1980-1990', 150),
(235, 'How To Dismantle An Atomic Bomb', 150),
(236, 'Pop', 150),
(237, 'Rattle And Hum', 150),
(238, 'The Best Of 1980-1990', 150),
(239, 'War', 150),
(240, 'Zooropa', 150),
(241, 'UB40 The Best Of - Volume Two [UK]', 151),
(242, 'Diver Down', 152),
(243, 'The Best Of Van Halen, Vol. I', 152),
(244, 'Van Halen', 152),
(245, 'Van Halen III', 152),
(246, 'Contraband', 153),
(247, 'Vinicius De Moraes', 72),
(248, 'Ao Vivo [IMPORT]', 155),
(249, 'The Office, Season 1', 156),
(250, 'The Office, Season 2', 156),
(251, 'The Office, Season 3', 156),
(252, 'Un-Led-Ed', 157),
(253, 'Battlestar Galactica (Classic), Season 1', 158),
(254, 'Aquaman', 159),
(255, 'Instant Karma: The Amnesty International Campaign to Save Darfur', 150),
(256, 'Speak of the Devil', 114),
(257, '20th Century Masters - The Millennium Collection: The Best of Scorpions', 179),
(258, 'House of Pain', 180),
(259, 'Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro', 36),
(260, 'Cake: B-Sides and Rarities', 196),
(261, 'LOST, Season 4', 149),
(262, 'Quiet Songs', 197),
(263, 'Muso Ko', 198),
(264, 'Realize', 199),
(265, 'Every Kind of Light', 200),
(266, 'Duos II', 201),
(267, 'Worlds', 202),
(268, 'The Best of Beethoven', 203),
(269, 'Temple of the Dog', 204),
(270, 'Carry On', 205),
(271, 'Revelations', 8),
(272, 'Adorate Deum: Gregorian Chant from the Proper of the Mass', 206),
(273, 'Allegri: Miserere', 207),
(274, 'Pachelbel: Canon & Gigue', 208),
(275, 'Vivaldi: The Four Seasons', 209),
(276, 'Bach: Violin Concertos', 210),
(277, 'Bach: Goldberg Variations', 211),
(278, 'Bach: The Cello Suites', 212),
(279, 'Handel: The Messiah (Highlights)', 213),
(280, 'The World of Classical Favourites', 214),
(281, 'Sir Neville Marriner: A Celebration', 215),
(282, 'Mozart: Wind Concertos', 216),
(283, 'Haydn: Symphonies 99 - 104', 217),
(284, 'Beethoven: Symhonies Nos. 5 & 6', 218),
(285, 'A Soprano Inspired', 219),
(286, 'Great Opera Choruses', 220),
(287, 'Wagner: Favourite Overtures', 221),
(288, 'Fauré: Requiem, Ravel: Pavane & Others', 222),
(289, 'Tchaikovsky: The Nutcracker', 223),
(290, 'The Last Night of the Proms', 224),
(291, 'Puccini: Madama Butterfly - Highlights', 225),
(292, 'Holst: The Planets, Op. 32 & Vaughan Williams: Fantasies', 226),
(293, 'Pavarotti\'s Opera Made Easy', 227),
(294, 'Great Performances - Barber\'s Adagio and Other Romantic Favorites for Strings', 228),
(295, 'Carmina Burana', 229),
(296, 'A Copland Celebration, Vol. I', 230),
(297, 'Bach: Toccata & Fugue in D Minor', 231),
(298, 'Prokofiev: Symphony No.1', 232),
(299, 'Scheherazade', 233),
(300, 'Bach: The Brandenburg Concertos', 234),
(301, 'Chopin: Piano Concertos Nos. 1 & 2', 235),
(302, 'Mascagni: Cavalleria Rusticana', 236),
(303, 'Sibelius: Finlandia', 237),
(304, 'Beethoven Piano Sonatas: Moonlight & Pastorale', 238),
(305, 'Great Recordings of the Century - Mahler: Das Lied von der Erde', 240),
(306, 'Elgar: Cello Concerto & Vaughan Williams: Fantasias', 241),
(307, 'Adams, John: The Chairman Dances', 242),
(308, 'Tchaikovsky: 1812 Festival Overture, Op.49, Capriccio Italien & Beethoven: Wellington\'s Victory', 243),
(309, 'Palestrina: Missa Papae Marcelli & Allegri: Miserere', 244),
(310, 'Prokofiev: Romeo & Juliet', 245),
(311, 'Strauss: Waltzes', 226),
(312, 'Berlioz: Symphonie Fantastique', 245),
(313, 'Bizet: Carmen Highlights', 246),
(314, 'English Renaissance', 247),
(315, 'Handel: Music for the Royal Fireworks (Original Version 1749)', 208),
(316, 'Grieg: Peer Gynt Suites & Sibelius: Pelléas et Mélisande', 248),
(317, 'Mozart Gala: Famous Arias', 249),
(318, 'SCRIABIN: Vers la flamme', 250),
(319, 'Armada: Music from the Courts of England and Spain', 251),
(320, 'Mozart: Symphonies Nos. 40 & 41', 248),
(321, 'Back to Black', 252),
(322, 'Frank', 252),
(323, 'Carried to Dust (Bonus Track Version)', 253),
(324, 'Beethoven: Symphony No. 6 \'Pastoral\' Etc.', 254),
(325, 'Bartok: Violin & Viola Concertos', 255),
(326, 'Mendelssohn: A Midsummer Night\'s Dream', 256),
(327, 'Bach: Orchestral Suites Nos. 1 - 4', 257),
(328, 'Charpentier: Divertissements, Airs & Concerts', 258),
(329, 'South American Getaway', 259),
(330, 'Górecki: Symphony No. 3', 260),
(331, 'Purcell: The Fairy Queen', 261),
(332, 'The Ultimate Relexation Album', 262),
(333, 'Purcell: Music for the Queen Mary', 263),
(334, 'Weill: The Seven Deadly Sins', 264),
(335, 'J.S. Bach: Chaconne, Suite in E Minor, Partita in E Major & Prelude, Fugue and Allegro', 265),
(336, 'Prokofiev: Symphony No.5 & Stravinksy: Le Sacre Du Printemps', 248),
(337, 'Szymanowski: Piano Works, Vol. 1', 266),
(338, 'Nielsen: The Six Symphonies', 267),
(339, 'Great Recordings of the Century: Paganini\'s 24 Caprices', 268),
(340, 'Liszt - 12 Études D\'Execution Transcendante', 269),
(341, 'Great Recordings of the Century - Shubert: Schwanengesang, 4 Lieder', 270),
(342, 'Locatelli: Concertos for Violin, Strings and Continuo, Vol. 3', 271),
(343, 'Respighi:Pines of Rome', 226),
(344, 'Schubert: The Late String Quartets & String Quintet (3 CD\'s)', 272),
(345, 'Monteverdi: L\'Orfeo', 273),
(346, 'Mozart: Chamber Music', 274),
(347, 'Koyaanisqatsi (Soundtrack from the Motion Picture)', 275);
INSERT INTO MediaType (MediaTypeId, Name) VALUES (1, 'MPEG audio file');
INSERT INTO MediaType (MediaTypeId, Name) VALUES (2, 'Protected AAC audio file');
INSERT INTO MediaType (MediaTypeId, Name) VALUES (3, 'Protected MPEG-4 video file');
INSERT INTO MediaType (MediaTypeId, Name) VALUES (4, 'Purchased AAC audio file');
INSERT INTO MediaType (MediaTypeId, Name) VALUES (5, 'AAC audio file');
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (1, 'For Those About To Rock (We Salute You)', 1, 1, 1, 'Angus Young, Malcolm Young, Brian Johnson', 343719, 11170334, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (2, 'Balls to the Wall', 2, 2, 1, 342562, 5510424, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (3, 'Fast As a Shark', 3, 2, 1, 'F. Baltes, S. Kaufman, U. Dirkscneider & W. Hoffman', 230619, 3990994, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (4, 'Restless and Wild', 3, 2, 1, 'F. Baltes, R.A. Smith-Diesel, S. Kaufman, U. Dirkscneider & W. Hoffman', 252051, 4331779, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (5, 'Princess of the Dawn', 3, 2, 1, 'Deaffy & R.A. Smith-Diesel', 375418, 6290521, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (6, 'Put The Finger On You', 1, 1, 1, 'Angus Young, Malcolm Young, Brian Johnson', 205662, 6713451, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (7, 'Let\'s Get It Up', 1, 1, 1, 'Angus Young, Malcolm Young, Brian Johnson', 233926, 7636561, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (8, 'Inject The Venom', 1, 1, 1, 'Angus Young, Malcolm Young, Brian Johnson', 210834, 6852860, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (9, 'Snowballed', 1, 1, 1, 'Angus Young, Malcolm Young, Brian Johnson', 203102, 6599424, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (10, 'Evil Walks', 1, 1, 1, 'Angus Young, Malcolm Young, Brian Johnson', 263497, 8611245, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (11, 'C.O.D.', 1, 1, 1, 'Angus Young, Malcolm Young, Brian Johnson', 199836, 6566314, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (12, 'Breaking The Rules', 1, 1, 1, 'Angus Young, Malcolm Young, Brian Johnson', 263288, 8596840, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (13, 'Night Of The Long Knives', 1, 1, 1, 'Angus Young, Malcolm Young, Brian Johnson', 205688, 6706347, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (14, 'Spellbound', 1, 1, 1, 'Angus Young, Malcolm Young, Brian Johnson', 270863, 8817038, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (15, 'Go Down', 4, 1, 1, 'AC/DC', 331180, 10847611, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (16, 'Dog Eat Dog', 4, 1, 1, 'AC/DC', 215196, 7032162, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (17, 'Let There Be Rock', 4, 1, 1, 'AC/DC', 366654, 12021261, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (18, 'Bad Boy Boogie', 4, 1, 1, 'AC/DC', 267728, 8776140, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (19, 'Problem Child', 4, 1, 1, 'AC/DC', 325041, 10617116, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (20, 'Overdose', 4, 1, 1, 'AC/DC', 369319, 12066294, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (21, 'Hell Ain\'t A Bad Place To Be', 4, 1, 1, 'AC/DC', 254380, 8331286, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (22, 'Whole Lotta Rosie', 4, 1, 1, 'AC/DC', 323761, 10547154, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (23, 'Walk On Water', 5, 1, 1, 'Steven Tyler, Joe Perry, Jack Blades, Tommy Shaw', 295680, 9719579, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (24, 'Love In An Elevator', 5, 1, 1, 'Steven Tyler, Joe Perry', 321828, 10552051, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (25, 'Rag Doll', 5, 1, 1, 'Steven Tyler, Joe Perry, Jim Vallance, Holly Knight', 264698, 8675345, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (26, 'What It Takes', 5, 1, 1, 'Steven Tyler, Joe Perry, Desmond Child', 310622, 10144730, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (27, 'Dude (Looks Like A Lady)', 5, 1, 1, 'Steven Tyler, Joe Perry, Desmond Child', 264855, 8679940, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (28, 'Janie\'s Got A Gun', 5, 1, 1, 'Steven Tyler, Tom Hamilton', 330736, 10869391, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (29, 'Cryin\'', 5, 1, 1, 'Steven Tyler, Joe Perry, Taylor Rhodes', 309263, 10056995, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (30, 'Amazing', 5, 1, 1, 'Steven Tyler, Richie Supa', 356519, 11616195, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (31, 'Blind Man', 5, 1, 1, 'Steven Tyler, Joe Perry, Taylor Rhodes', 240718, 7877453, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (32, 'Deuces Are Wild', 5, 1, 1, 'Steven Tyler, Jim Vallance', 215875, 7074167, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (33, 'The Other Side', 5, 1, 1, 'Steven Tyler, Jim Vallance', 244375, 7983270, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (34, 'Crazy', 5, 1, 1, 'Steven Tyler, Joe Perry, Desmond Child', 316656, 10402398, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (35, 'Eat The Rich', 5, 1, 1, 'Steven Tyler, Joe Perry, Jim Vallance', 251036, 8262039, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (36, 'Angel', 5, 1, 1, 'Steven Tyler, Desmond Child', 307617, 9989331, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (37, 'Livin\' On The Edge', 5, 1, 1, 'Steven Tyler, Joe Perry, Mark Hudson', 381231, 12374569, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (38, 'All I Really Want', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 284891, 9375567, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (39, 'You Oughta Know', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 249234, 8196916, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (40, 'Perfect', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 188133, 6145404, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (41, 'Hand In My Pocket', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 221570, 7224246, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (42, 'Right Through You', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 176117, 5793082, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (43, 'Forgiven', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 300355, 9753256, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (44, 'You Learn', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 239699, 7824837, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (45, 'Head Over Feet', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 267493, 8758008, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (46, 'Mary Jane', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 280607, 9163588, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (47, 'Ironic', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 229825, 7598866, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (48, 'Not The Doctor', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 227631, 7604601, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (49, 'Wake Up', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 293485, 9703359, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (50, 'You Oughta Know (Alternate)', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 491885, 16008629, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (51, 'We Die Young', 7, 1, 1, 'Jerry Cantrell', 152084, 4925362, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (52, 'Man In The Box', 7, 1, 1, 'Jerry Cantrell, Layne Staley', 286641, 9310272, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (53, 'Sea Of Sorrow', 7, 1, 1, 'Jerry Cantrell', 349831, 11316328, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (54, 'Bleed The Freak', 7, 1, 1, 'Jerry Cantrell', 241946, 7847716, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (55, 'I Can\'t Remember', 7, 1, 1, 'Jerry Cantrell, Layne Staley', 222955, 7302550, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (56, 'Love, Hate, Love', 7, 1, 1, 'Jerry Cantrell, Layne Staley', 387134, 12575396, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (57, 'It Ain\'t Like That', 7, 1, 1, 'Jerry Cantrell, Michael Starr, Sean Kinney', 277577, 8993793, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (58, 'Sunshine', 7, 1, 1, 'Jerry Cantrell', 284969, 9216057, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (59, 'Put You Down', 7, 1, 1, 'Jerry Cantrell', 196231, 6420530, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (60, 'Confusion', 7, 1, 1, 'Jerry Cantrell, Michael Starr, Layne Staley', 344163, 11183647, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (61, 'I Know Somethin (Bout You)', 7, 1, 1, 'Jerry Cantrell', 261955, 8497788, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (62, 'Real Thing', 7, 1, 1, 'Jerry Cantrell, Layne Staley', 243879, 7937731, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (63, 'Desafinado', 8, 1, 2, 185338, 5990473, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (64, 'Garota De Ipanema', 8, 1, 2, 285048, 9348428, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (65, 'Samba De Uma Nota Só (One Note Samba)', 8, 1, 2, 137273, 4535401, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (66, 'Por Causa De Você', 8, 1, 2, 169900, 5536496, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (67, 'Ligia', 8, 1, 2, 251977, 8226934, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (68, 'Fotografia', 8, 1, 2, 129227, 4198774, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (69, 'Dindi (Dindi)', 8, 1, 2, 253178, 8149148, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (70, 'Se Todos Fossem Iguais A Você (Instrumental)', 8, 1, 2, 134948, 4393377, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (71, 'Falando De Amor', 8, 1, 2, 219663, 7121735, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (72, 'Angela', 8, 1, 2, 169508, 5574957, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (73, 'Corcovado (Quiet Nights Of Quiet Stars)', 8, 1, 2, 205662, 6687994, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (74, 'Outra Vez', 8, 1, 2, 126511, 4110053, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (75, 'O Boto (Bôto)', 8, 1, 2, 366837, 12089673, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (76, 'Canta, Canta Mais', 8, 1, 2, 271856, 8719426, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (77, 'Enter Sandman', 9, 1, 3, 'Apocalyptica', 221701, 7286305, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (78, 'Master Of Puppets', 9, 1, 3, 'Apocalyptica', 436453, 14375310, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (79, 'Harvester Of Sorrow', 9, 1, 3, 'Apocalyptica', 374543, 12372536, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (80, 'The Unforgiven', 9, 1, 3, 'Apocalyptica', 322925, 10422447, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (81, 'Sad But True', 9, 1, 3, 'Apocalyptica', 288208, 9405526, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (82, 'Creeping Death', 9, 1, 3, 'Apocalyptica', 308035, 10110980, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (83, 'Wherever I May Roam', 9, 1, 3, 'Apocalyptica', 369345, 12033110, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (84, 'Welcome Home (Sanitarium)', 9, 1, 3, 'Apocalyptica', 350197, 11406431, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (85, 'Cochise', 10, 1, 1, 'Audioslave/Chris Cornell', 222380, 5339931, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (86, 'Show Me How to Live', 10, 1, 1, 'Audioslave/Chris Cornell', 277890, 6672176, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (87, 'Gasoline', 10, 1, 1, 'Audioslave/Chris Cornell', 279457, 6709793, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (88, 'What You Are', 10, 1, 1, 'Audioslave/Chris Cornell', 249391, 5988186, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (89, 'Like a Stone', 10, 1, 1, 'Audioslave/Chris Cornell', 294034, 7059624, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (90, 'Set It Off', 10, 1, 1, 'Audioslave/Chris Cornell', 263262, 6321091, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (91, 'Shadow on the Sun', 10, 1, 1, 'Audioslave/Chris Cornell', 343457, 8245793, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (92, 'I am the Highway', 10, 1, 1, 'Audioslave/Chris Cornell', 334942, 8041411, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (93, 'Exploder', 10, 1, 1, 'Audioslave/Chris Cornell', 206053, 4948095, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (94, 'Hypnotize', 10, 1, 1, 'Audioslave/Chris Cornell', 206628, 4961887, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (95, 'Bring\'em Back Alive', 10, 1, 1, 'Audioslave/Chris Cornell', 329534, 7911634, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (96, 'Light My Way', 10, 1, 1, 'Audioslave/Chris Cornell', 303595, 7289084, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (97, 'Getaway Car', 10, 1, 1, 'Audioslave/Chris Cornell', 299598, 7193162, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (98, 'The Last Remaining Light', 10, 1, 1, 'Audioslave/Chris Cornell', 317492, 7622615, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (99, 'Your Time Has Come', 11, 1, 4, 'Cornell, Commerford, Morello, Wilk', 255529, 8273592, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (100, 'Out Of Exile', 11, 1, 4, 'Cornell, Commerford, Morello, Wilk', 291291, 9506571, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (101, 'Be Yourself', 11, 1, 4, 'Cornell, Commerford, Morello, Wilk', 279484, 9106160, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (102, 'Doesn\'t Remind Me', 11, 1, 4, 'Cornell, Commerford, Morello, Wilk', 255869, 8357387, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (103, 'Drown Me Slowly', 11, 1, 4, 'Cornell, Commerford, Morello, Wilk', 233691, 7609178, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (104, 'Heaven\'s Dead', 11, 1, 4, 'Cornell, Commerford, Morello, Wilk', 276688, 9006158, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (105, 'The Worm', 11, 1, 4, 'Cornell, Commerford, Morello, Wilk', 237714, 7710800, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (106, 'Man Or Animal', 11, 1, 4, 'Cornell, Commerford, Morello, Wilk', 233195, 7542942, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (107, 'Yesterday To Tomorrow', 11, 1, 4, 'Cornell, Commerford, Morello, Wilk', 273763, 8944205, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (108, 'Dandelion', 11, 1, 4, 'Cornell, Commerford, Morello, Wilk', 278125, 9003592, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (109, '#1 Zero', 11, 1, 4, 'Cornell, Commerford, Morello, Wilk', 299102, 9731988, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (110, 'The Curse', 11, 1, 4, 'Cornell, Commerford, Morello, Wilk', 309786, 10029406, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (111, 'Money', 12, 1, 5, 'Berry Gordy, Jr./Janie Bradford', 147591, 2365897, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (112, 'Long Tall Sally', 12, 1, 5, 'Enotris Johnson/Little Richard/Robert "Bumps" Blackwell', 106396, 1707084, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (113, 'Bad Boy', 12, 1, 5, 'Larry Williams', 116088, 1862126, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (114, 'Twist And Shout', 12, 1, 5, 'Bert Russell/Phil Medley', 161123, 2582553, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (115, 'Please Mr. Postman', 12, 1, 5, 'Brian Holland/Freddie Gorman/Georgia Dobbins/Robert Bateman/William Garrett', 137639, 2206986, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (116, 'C\'Mon Everybody', 12, 1, 5, 'Eddie Cochran/Jerry Capehart', 140199, 2247846, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (117, 'Rock \'N\' Roll Music', 12, 1, 5, 'Chuck Berry', 141923, 2276788, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (118, 'Slow Down', 12, 1, 5, 'Larry Williams', 163265, 2616981, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (119, 'Roadrunner', 12, 1, 5, 'Bo Diddley', 143595, 2301989, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (120, 'Carol', 12, 1, 5, 'Chuck Berry', 143830, 2306019, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (121, 'Good Golly Miss Molly', 12, 1, 5, 'Little Richard', 106266, 1704918, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (122, '20 Flight Rock', 12, 1, 5, 'Ned Fairchild', 107807, 1299960, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (123, 'Quadrant', 13, 1, 2, 'Billy Cobham', 261851, 8538199, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (124, 'Snoopy\'s search-Red baron', 13, 1, 2, 'Billy Cobham', 456071, 15075616, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (125, 'Spanish moss-"A sound portrait"-Spanish moss', 13, 1, 2, 'Billy Cobham', 248084, 8217867, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (126, 'Moon germs', 13, 1, 2, 'Billy Cobham', 294060, 9714812, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (127, 'Stratus', 13, 1, 2, 'Billy Cobham', 582086, 19115680, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (128, 'The pleasant pheasant', 13, 1, 2, 'Billy Cobham', 318066, 10630578, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (129, 'Solo-Panhandler', 13, 1, 2, 'Billy Cobham', 246151, 8230661, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (130, 'Do what cha wanna', 13, 1, 2, 'George Duke', 274155, 9018565, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (131, 'Intro/ Low Down', 14, 1, 3, 323683, 10642901, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (132, '13 Years Of Grief', 14, 1, 3, 246987, 8137421, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (133, 'Stronger Than Death', 14, 1, 3, 300747, 9869647, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (134, 'All For You', 14, 1, 3, 235833, 7726948, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (135, 'Super Terrorizer', 14, 1, 3, 319373, 10513905, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (136, 'Phoney Smile Fake Hellos', 14, 1, 3, 273606, 9011701, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (137, 'Lost My Better Half', 14, 1, 3, 284081, 9355309, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (138, 'Bored To Tears', 14, 1, 3, 247327, 8130090, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (139, 'A.N.D.R.O.T.A.Z.', 14, 1, 3, 266266, 8574746, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (140, 'Born To Booze', 14, 1, 3, 282122, 9257358, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (141, 'World Of Trouble', 14, 1, 3, 359157, 11820932, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (142, 'No More Tears', 14, 1, 3, 555075, 18041629, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (143, 'The Begining... At Last', 14, 1, 3, 365662, 11965109, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (144, 'Heart Of Gold', 15, 1, 3, 194873, 6417460, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (145, 'Snowblind', 15, 1, 3, 420022, 13842549, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (146, 'Like A Bird', 15, 1, 3, 276532, 9115657, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (147, 'Blood In The Wall', 15, 1, 3, 284368, 9359475, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (148, 'The Beginning...At Last', 15, 1, 3, 271960, 8975814, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (149, 'Black Sabbath', 16, 1, 3, 382066, 12440200, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (150, 'The Wizard', 16, 1, 3, 264829, 8646737, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (151, 'Behind The Wall Of Sleep', 16, 1, 3, 217573, 7169049, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (152, 'N.I.B.', 16, 1, 3, 368770, 12029390, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (153, 'Evil Woman', 16, 1, 3, 204930, 6655170, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (154, 'Sleeping Village', 16, 1, 3, 644571, 21128525, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (155, 'Warning', 16, 1, 3, 212062, 6893363, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (156, 'Wheels Of Confusion / The Straightener', 17, 1, 3, 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 494524, 16065830, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (157, 'Tomorrow\'s Dream', 17, 1, 3, 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 192496, 6252071, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (158, 'Changes', 17, 1, 3, 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 286275, 9175517, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (159, 'FX', 17, 1, 3, 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 103157, 3331776, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (160, 'Supernaut', 17, 1, 3, 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 285779, 9245971, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (161, 'Snowblind', 17, 1, 3, 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 331676, 10813386, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (162, 'Cornucopia', 17, 1, 3, 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 234814, 7653880, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (163, 'Laguna Sunrise', 17, 1, 3, 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 173087, 5671374, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (164, 'St. Vitus Dance', 17, 1, 3, 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 149655, 4884969, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (165, 'Under The Sun/Every Day Comes and Goes', 17, 1, 3, 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 350458, 11360486, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (166, 'Smoked Pork', 18, 1, 4, 47333, 1549074, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (167, 'Body Count\'s In The House', 18, 1, 4, 204251, 6715413, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (168, 'Now Sports', 18, 1, 4, 4884, 161266, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (169, 'Body Count', 18, 1, 4, 317936, 10489139, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (170, 'A Statistic', 18, 1, 4, 6373, 211997, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (171, 'Bowels Of The Devil', 18, 1, 4, 223216, 7324125, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (172, 'The Real Problem', 18, 1, 4, 11650, 387360, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (173, 'KKK Bitch', 18, 1, 4, 173008, 5709631, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (174, 'D Note', 18, 1, 4, 95738, 3067064, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (175, 'Voodoo', 18, 1, 4, 300721, 9875962, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (176, 'The Winner Loses', 18, 1, 4, 392254, 12843821, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (177, 'There Goes The Neighborhood', 18, 1, 4, 350171, 11443471, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (178, 'Oprah', 18, 1, 4, 6635, 224313, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (179, 'Evil Dick', 18, 1, 4, 239020, 7828873, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (180, 'Body Count Anthem', 18, 1, 4, 166426, 5463690, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (181, 'Momma\'s Gotta Die Tonight', 18, 1, 4, 371539, 12122946, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (182, 'Freedom Of Speech', 18, 1, 4, 281234, 9337917, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (183, 'King In Crimson', 19, 1, 3, 'Roy Z', 283167, 9218499, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (184, 'Chemical Wedding', 19, 1, 3, 'Roy Z', 246177, 8022764, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (185, 'The Tower', 19, 1, 3, 'Roy Z', 285257, 9435693, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (186, 'Killing Floor', 19, 1, 3, 'Adrian Smith', 269557, 8854240, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (187, 'Book Of Thel', 19, 1, 3, 'Eddie Casillas/Roy Z', 494393, 16034404, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (188, 'Gates Of Urizen', 19, 1, 3, 'Roy Z', 265351, 8627004, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (189, 'Jerusalem', 19, 1, 3, 'Roy Z', 402390, 13194463, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (190, 'Trupets Of Jericho', 19, 1, 3, 'Roy Z', 359131, 11820908, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (191, 'Machine Men', 19, 1, 3, 'Adrian Smith', 341655, 11138147, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (192, 'The Alchemist', 19, 1, 3, 'Roy Z', 509413, 16545657, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (193, 'Realword', 19, 1, 3, 'Roy Z', 237531, 7802095, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (194, 'First Time I Met The Blues', 20, 1, 6, 'Eurreal Montgomery', 140434, 4604995, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (195, 'Let Me Love You Baby', 20, 1, 6, 'Willie Dixon', 175386, 5716994, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (196, 'Stone Crazy', 20, 1, 6, 'Buddy Guy', 433397, 14184984, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (197, 'Pretty Baby', 20, 1, 6, 'Willie Dixon', 237662, 7848282, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (198, 'When My Left Eye Jumps', 20, 1, 6, 'Al Perkins/Willie Dixon', 235311, 7685363, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (199, 'Leave My Girl Alone', 20, 1, 6, 'Buddy Guy', 204721, 6859518, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (200, 'She Suits Me To A Tee', 20, 1, 6, 'Buddy Guy', 136803, 4456321, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (201, 'Keep It To Myself (Aka Keep It To Yourself)', 20, 1, 6, 'Sonny Boy Williamson [I]', 166060, 5487056, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (202, 'My Time After Awhile', 20, 1, 6, 'Robert Geddins/Ron Badger/Sheldon Feinberg', 182491, 6022698, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (203, 'Too Many Ways (Alternate)', 20, 1, 6, 'Willie Dixon', 135053, 4459946, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (204, 'Talkin\' \'Bout Women Obviously', 20, 1, 6, 'Amos Blakemore/Buddy Guy', 589531, 19161377, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (205, 'Jorge Da Capadócia', 21, 1, 7, 'Jorge Ben', 177397, 5842196, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (206, 'Prenda Minha', 21, 1, 7, 'Tradicional', 99369, 3225364, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (207, 'Meditação', 21, 1, 7, 'Tom Jobim - Newton Mendoça', 148793, 4865597, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (208, 'Terra', 21, 1, 7, 'Caetano Veloso', 482429, 15889054, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (209, 'Eclipse Oculto', 21, 1, 7, 'Caetano Veloso', 221936, 7382703, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (210, 'Texto "Verdade Tropical"', 21, 1, 7, 'Caetano Veloso', 84088, 2752161, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (211, 'Bem Devagar', 21, 1, 7, 'Gilberto Gil', 133172, 4333651, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (212, 'Drão', 21, 1, 7, 'Gilberto Gil', 156264, 5065932, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (213, 'Saudosismo', 21, 1, 7, 'Caetano Veloso', 144326, 4726981, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (214, 'Carolina', 21, 1, 7, 'Chico Buarque', 181812, 5924159, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (215, 'Sozinho', 21, 1, 7, 'Peninha', 190589, 6253200, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (216, 'Esse Cara', 21, 1, 7, 'Caetano Veloso', 223111, 7217126, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (217, 'Mel', 21, 1, 7, 'Caetano Veloso - Waly Salomão', 294765, 9854062, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (218, 'Linha Do Equador', 21, 1, 7, 'Caetano Veloso - Djavan', 299337, 10003747, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (219, 'Odara', 21, 1, 7, 'Caetano Veloso', 141270, 4704104, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (220, 'A Luz De Tieta', 21, 1, 7, 'Caetano Veloso', 251742, 8507446, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (221, 'Atrás Da Verd-E-Rosa Só Não Vai Quem Já Morreu', 21, 1, 7, 'David Corrêa - Paulinho Carvalho - Carlos Sena - Bira do Ponto', 307252, 10364247, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (222, 'Vida Boa', 21, 1, 7, 'Fausto Nilo - Armandinho', 281730, 9411272, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (223, 'Sozinho (Hitmakers Classic Mix)', 22, 1, 7, 436636, 14462072, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (224, 'Sozinho (Hitmakers Classic Radio Edit)', 22, 1, 7, 195004, 6455134, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (225, 'Sozinho (Caêdrum \'n\' Bass)', 22, 1, 7, 328071, 10975007, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (226, 'Carolina', 23, 1, 7, 163056, 5375395, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (227, 'Essa Moça Ta Diferente', 23, 1, 7, 167235, 5568574, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (228, 'Vai Passar', 23, 1, 7, 369763, 12359161, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (229, 'Samba De Orly', 23, 1, 7, 162429, 5431854, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (230, 'Bye, Bye Brasil', 23, 1, 7, 283402, 9499590, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (231, 'Atras Da Porta', 23, 1, 7, 189675, 6132843, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (232, 'Tatuagem', 23, 1, 7, 172120, 5645703, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (233, 'O Que Será (À Flor Da Terra)', 23, 1, 7, 167288, 5574848, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (234, 'Morena De Angola', 23, 1, 7, 186801, 6373932, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (235, 'Apesar De Você', 23, 1, 7, 234501, 7886937, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (236, 'A Banda', 23, 1, 7, 132493, 4349539, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (237, 'Minha Historia', 23, 1, 7, 182256, 6029673, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (238, 'Com Açúcar E Com Afeto', 23, 1, 7, 175386, 5846442, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (239, 'Brejo Da Cruz', 23, 1, 7, 214099, 7270749, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (240, 'Meu Caro Amigo', 23, 1, 7, 260257, 8778172, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (241, 'Geni E O Zepelim', 23, 1, 7, 317570, 10342226, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (242, 'Trocando Em Miúdos', 23, 1, 7, 169717, 5461468, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (243, 'Vai Trabalhar Vagabundo', 23, 1, 7, 139154, 4693941, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (244, 'Gota D\'água', 23, 1, 7, 153208, 5074189, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (245, 'Construção / Deus Lhe Pague', 23, 1, 7, 383059, 12675305, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (246, 'Mateus Enter', 24, 1, 7, 'Chico Science', 33149, 1103013, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (247, 'O Cidadão Do Mundo', 24, 1, 7, 'Chico Science', 200933, 6724966, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (248, 'Etnia', 24, 1, 7, 'Chico Science', 152555, 5061413, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (249, 'Quilombo Groove [Instrumental]', 24, 1, 7, 'Chico Science', 151823, 5042447, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (250, 'Macô', 24, 1, 7, 'Chico Science', 249600, 8253934, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (251, 'Um Passeio No Mundo Livre', 24, 1, 7, 'Chico Science', 240091, 7984291, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (252, 'Samba Do Lado', 24, 1, 7, 'Chico Science', 227317, 7541688, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (253, 'Maracatu Atômico', 24, 1, 7, 'Chico Science', 284264, 9670057, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (254, 'O Encontro De Isaac Asimov Com Santos Dumont No Céu', 24, 1, 7, 'Chico Science', 99108, 3240816, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (255, 'Corpo De Lama', 24, 1, 7, 'Chico Science', 232672, 7714954, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (256, 'Sobremesa', 24, 1, 7, 'Chico Science', 240091, 7960868, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (257, 'Manguetown', 24, 1, 7, 'Chico Science', 194560, 6475159, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (258, 'Um Satélite Na Cabeça', 24, 1, 7, 'Chico Science', 126615, 4272821, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (259, 'Baião Ambiental [Instrumental]', 24, 1, 7, 'Chico Science', 152659, 5198539, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (260, 'Sangue De Bairro', 24, 1, 7, 'Chico Science', 132231, 4415557, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (261, 'Enquanto O Mundo Explode', 24, 1, 7, 'Chico Science', 88764, 2968650, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (262, 'Interlude Zumbi', 24, 1, 7, 'Chico Science', 71627, 2408550, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (263, 'Criança De Domingo', 24, 1, 7, 'Chico Science', 208222, 6984813, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (264, 'Amor De Muito', 24, 1, 7, 'Chico Science', 175333, 5881293, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (265, 'Samidarish [Instrumental]', 24, 1, 7, 'Chico Science', 272431, 8911641, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (266, 'Maracatu Atômico [Atomic Version]', 24, 1, 7, 'Chico Science', 273084, 9019677, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (267, 'Maracatu Atômico [Ragga Mix]', 24, 1, 7, 'Chico Science', 210155, 6986421, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (268, 'Maracatu Atômico [Trip Hop]', 24, 1, 7, 'Chico Science', 221492, 7380787, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (269, 'Banditismo Por Uma Questa', 25, 1, 7, 307095, 10251097, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (270, 'Banditismo Por Uma Questa', 25, 1, 7, 243644, 8147224, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (271, 'Rios Pontes & Overdrives', 25, 1, 7, 286720, 9659152, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (272, 'Cidade', 25, 1, 7, 216346, 7241817, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (273, 'Praiera', 25, 1, 7, 183640, 6172781, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (274, 'Samba Makossa', 25, 1, 7, 271856, 9095410, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (275, 'Da Lama Ao Caos', 25, 1, 7, 251559, 8378065, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (276, 'Maracatu De Tiro Certeiro', 25, 1, 7, 88868, 2901397, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (277, 'Salustiano Song', 25, 1, 7, 215405, 7183969, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (278, 'Antene Se', 25, 1, 7, 248372, 8253618, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (279, 'Risoflora', 25, 1, 7, 105586, 3536938, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (280, 'Lixo Do Mangue', 25, 1, 7, 193253, 6534200, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Milliseconds, Bytes, UnitPrice) VALUES (281, 'Computadores Fazem Arte', 25, 1, 7, 404323, 13702771, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (282, 'Girassol', 26, 1, 8, 'Bino Farias/Da Gama/Lazão/Pedro Luis/Toni Garrido', 249808, 8327676, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (283, 'A Sombra Da Maldade', 26, 1, 8, 'Da Gama/Toni Garrido', 230922, 7697230, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (284, 'Johnny B. Goode', 26, 1, 8, 'Chuck Berry', 254615, 8505985, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (285, 'Soldado Da Paz', 26, 1, 8, 'Herbert Vianna', 194220, 6455080, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (286, 'Firmamento', 26, 1, 8, 'Bino Farias/Da Gama/Henry Lawes/Lazão/Toni Garrido/Winston Foser-Vers', 222145, 7402658, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (287, 'Extra', 26, 1, 8, 'Gilberto Gil', 304352, 10078050, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (288, 'O Erê', 26, 1, 8, 'Bernardo Vilhena/Bino Farias/Da Gama/Lazão/Toni Garrido', 236382, 7866924, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (289, 'Podes Crer', 26, 1, 8, 'Bino Farias/Da Gama/Lazão/Toni Garrido', 232280, 7747747, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (290, 'A Estrada', 26, 1, 8, 'Bino Farias/Da Gama/Lazão/Toni Garrido', 248842, 8275673, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (291, 'Berlim', 26, 1, 8, 'Da Gama/Toni Garrido', 207542, 6920424, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (292, 'Já Foi', 26, 1, 8, 'Bino Farias/Da Gama/Lazão/Toni Garrido', 221544, 7388466, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (293, 'Onde Você Mora?', 26, 1, 8, 'Marisa Monte/Nando Reis', 256026, 8502588, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (294, 'Pensamento', 26, 1, 8, 'Bino Farias/Da Gamma/Lazão/Rás Bernard', 173008, 5748424, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (295, 'Conciliação', 26, 1, 8, 'Da Gama/Lazão/Rás Bernardo', 257619, 8552474, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (296, 'Realidade Virtual', 26, 1, 8, 'Bino Farias/Da Gama/Lazão/Toni Garrido', 195239, 6503533, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (297, 'Mensagem', 26, 1, 8, 'Bino Farias/Da Gama/Lazão/Rás Bernardo', 225332, 7488852, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (298, 'A Cor Do Sol', 26, 1, 8, 'Bernardo Vilhena/Da Gama/Lazão', 231392, 7663348, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (299, 'Onde Você Mora?', 27, 1, 8, 'Marisa Monte/Nando Reis', 298396, 10056970, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (300, 'O Erê', 27, 1, 8, 'Bernardo Vilhena/Bino/Da Gama/Lazao/Toni Garrido', 206942, 6950332, 0.99);
INSERT INTO Track (TrackId, Name, AlbumId, MediaTypeId, GenreId, Composer, Milliseconds, Bytes, UnitPrice) VALUES (301, 'A Sombra Da Maldade', 27, 1, 8, 'Da Gama/Toni Garrido', 285231, 9544383, 0.99);