diff --git a/GridView/GridObjectRelationalCRUD/Description.md b/GridView/GridObjectRelationalCRUD/Description.md new file mode 100644 index 0000000..a0a0f2a --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/Description.md @@ -0,0 +1,16 @@ +## Environment + + + + + + + + + +
Product Version2015.1.331
ProductRadGridView for WinForms
+ + +## Description + +This solution aims to show you a sample approach how to implement CRUD operations for the inner hierarchy levels in **RadGridView**. A complete step by step tutorial is available in the [RadGridView CRUD in Object Relational Hierarchy Mode](https://docs.telerik.com/devtools/winforms/knowledge-base/radgridview-crud-in-object-relational-hierarchy-mode) article. diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS.sln b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS.sln new file mode 100644 index 0000000..6737177 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS.sln @@ -0,0 +1,20 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GridObjectRelationalCRUD-CS", "GridObjectRelationalCRUD-CS\GridObjectRelationalCRUD-CS.csproj", "{27F3F356-2BB0-4BDF-99CD-EBC0692D05A6}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {27F3F356-2BB0-4BDF-99CD-EBC0692D05A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {27F3F356-2BB0-4BDF-99CD-EBC0692D05A6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {27F3F356-2BB0-4BDF-99CD-EBC0692D05A6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {27F3F356-2BB0-4BDF-99CD-EBC0692D05A6}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Form1.Designer.cs b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Form1.Designer.cs new file mode 100644 index 0000000..9a78191 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Form1.Designer.cs @@ -0,0 +1,70 @@ +namespace GridObjectRelationalCRUD +{ + partial class Form1 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.radGridView1 = new Telerik.WinControls.UI.RadGridView(); + ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).BeginInit(); + this.SuspendLayout(); + // + // radGridView1 + // + this.radGridView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.radGridView1.Location = new System.Drawing.Point(13, 13); + this.radGridView1.Name = "radGridView1"; + this.radGridView1.Size = new System.Drawing.Size(661, 501); + this.radGridView1.TabIndex = 0; + this.radGridView1.Text = "radGridView1"; + this.radGridView1.UserAddingRow += new Telerik.WinControls.UI.GridViewRowCancelEventHandler(this.radGridView1_UserAddingRow); + this.radGridView1.UserAddedRow += new Telerik.WinControls.UI.GridViewRowEventHandler(this.radGridView1_UserAddedRow); + this.radGridView1.UserDeletedRow += new Telerik.WinControls.UI.GridViewRowEventHandler(this.radGridView1_UserDeletedRow); + this.radGridView1.CellValueChanged += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellValueChanged); + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(686, 526); + this.Controls.Add(this.radGridView1); + this.Name = "Form1"; + this.Text = "Form1"; + ((System.ComponentModel.ISupportInitialize)(this.radGridView1.MasterTemplate)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private Telerik.WinControls.UI.RadGridView radGridView1; + } +} + diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Form1.cs b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Form1.cs new file mode 100644 index 0000000..e2bbbe6 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Form1.cs @@ -0,0 +1,182 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Windows.Forms; +using Telerik.WinControls.UI; +using Telerik.WinControls; +using System.Collections; +using System.IO; +using System.Runtime.Serialization.Formatters.Binary; +using System.Runtime.Serialization; +using System.Xml.Serialization; + +using GridObjectRelationalCRUD.Models; + +namespace GridObjectRelationalCRUD +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + + + protected override void OnLoad(EventArgs e) + { + base.OnLoad(e); + + this.radGridView1.DataSource = DataContext.Artists; + this.radGridView1.AutoGenerateHierarchy = true; + + this.SetupTemplates(); + } + + private void SetupTemplates() + { + this.radGridView1.EnableFiltering = true; + this.radGridView1.Columns["Id"].IsVisible = false; + this.radGridView1.Columns["Albums"].IsVisible = false; + this.radGridView1.AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill; + + this.radGridView1.Templates[0].AllowAddNewRow = true; + this.radGridView1.Templates[0].Columns["Id"].IsVisible = false; + this.radGridView1.Templates[0].Columns["ArtistId"].IsVisible = false; + this.radGridView1.Templates[0].Columns["Tracks"].IsVisible = false; + this.radGridView1.Templates[0].AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill; + + this.radGridView1.Templates[0].Templates[0].AllowAddNewRow = true; + this.radGridView1.Templates[0].Templates[0].Columns["Id"].IsVisible = false; + this.radGridView1.Templates[0].Templates[0].Columns["Size"].IsVisible = false; + this.radGridView1.Templates[0].Templates[0].AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill; + } + + private void radGridView1_CellValueChanged(object sender, GridViewCellEventArgs e) + { + if (e.Row is GridViewNewRowInfo || e.Row is GridViewFilteringRowInfo) + { + return; + } + + if (e.Row.HierarchyLevel > 0) + { + this.SetBoundValue(e.Row.DataBoundItem, e.Column.FieldName, e.Value); + e.Row.InvalidateRow(); + } + } + + private void radGridView1_UserAddingRow(object sender, GridViewRowCancelEventArgs e) + { + GridViewRowInfo row = e.Rows[0]; + if (row.HierarchyLevel == 0) + { + return; + } + + GridViewRelation relation = this.radGridView1.Relations.Find(row.ViewTemplate.Parent, row.ViewTemplate); + GridViewRowInfo parentRow = row.Parent as GridViewRowInfo; + PropertyDescriptorCollection parentProperties = ListBindingHelper.GetListItemProperties(parentRow.DataBoundItem); + PropertyDescriptor childDescriptor = parentProperties.Find(relation.ChildColumnNames[0], true); + if (childDescriptor != null) + { + IList children = childDescriptor.GetValue(parentRow.DataBoundItem) as IList; + if (children != null) + { + object newItem = Activator.CreateInstance(ListBindingHelper.GetListItemType(children)); + bool success = true; + foreach (GridViewColumn column in row.ViewTemplate.Columns) + { + if (column.IsVisible && !column.ReadOnly && row.Cells[column.FieldName].Value != null && success) + { + success = success & this.SetBoundValue(newItem, column.FieldName, row.Cells[column.FieldName].Value); + } + } + + if (!success) + { + e.Cancel = true; + } + else + { + children.Add(newItem); + } + } + } + } + + private void radGridView1_UserAddedRow(object sender, GridViewRowEventArgs e) + { + e.Row.ViewTemplate.Refresh(); + } + + private void radGridView1_UserDeletedRow(object sender, GridViewRowEventArgs e) + { + GridViewRowInfo[] rows = e.Rows; + for (int i = 0; i < (int)rows.Length; i++) + { + GridViewRowInfo row = rows[i]; + if (row.HierarchyLevel != 0) + { + GridViewRelation relation = this.radGridView1.Relations.Find(row.ViewTemplate.Parent, row.ViewTemplate); + GridViewRowInfo parentRow = row.Parent as GridViewRowInfo; + PropertyDescriptorCollection parentProperties = ListBindingHelper.GetListItemProperties(parentRow.DataBoundItem); + PropertyDescriptor childDescriptor = parentProperties.Find(relation.ChildColumnNames[0], true); + if (childDescriptor != null) + { + IList children = childDescriptor.GetValue(parentRow.DataBoundItem) as IList; + if (children != null) + { + children.Remove(row.DataBoundItem); + row.ViewInfo.Refresh(); + + foreach (var childRow in row.ViewInfo.ChildRows) + { + childRow.InvalidateRow(); + } + } + } + } + } + } + + private bool SetBoundValue(object dataBoundItem, string propertyName, object value) + { + PropertyDescriptor descriptor = TypeDescriptor.GetProperties(dataBoundItem).Find(propertyName, true); + if (value != null) + { + try + { + Type type = Nullable.GetUnderlyingType(descriptor.PropertyType); + if (descriptor.Converter != null && type != null && type.IsGenericType) + { + value = descriptor.Converter.ConvertFromInvariantString(value.ToString()); + } + descriptor.SetValue(dataBoundItem, value); + return true; + } + catch + { + RadMessageBox.Show(string.Concat("Invalid property value for ", propertyName), "Error", MessageBoxButtons.OK, RadMessageIcon.Error); + return false; + } + } + else + { + try + { + descriptor.SetValue(dataBoundItem, value); + } + catch + { + descriptor.SetValue(dataBoundItem, DBNull.Value); + } + } + + return true; + } + } +} diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Form1.resx b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Form1.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Form1.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/GridObjectRelationalCRUD-CS.csproj b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/GridObjectRelationalCRUD-CS.csproj new file mode 100644 index 0000000..0cb6798 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/GridObjectRelationalCRUD-CS.csproj @@ -0,0 +1,110 @@ + + + + + Debug + AnyCPU + {27F3F356-2BB0-4BDF-99CD-EBC0692D05A6} + WinExe + Properties + GridObjectRelationalCRUD + GridObjectRelationalCRUD + v4.0 + 512 + + + x86 + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + ..\..\..\work\Development\bin\Debug\Telerik.WinControls.dll + + + False + C:\Users\merdjanov\Desktop\DLLs\Telerik_UI_For_WinForms_2015_1_331_Dev_hotfix\Bin40\Telerik.WinControls.GridView.dll + + + ..\..\..\work\Development\bin\Debug\Telerik.WinControls.UI.dll + + + ..\..\..\work\Development\bin\Debug\TelerikCommon.dll + + + + + + + + Form + + + Form1.cs + + + + + + Form1.cs + + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + True + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + + + + + \ No newline at end of file diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Model/Album.cs b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Model/Album.cs new file mode 100644 index 0000000..009ea7e --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Model/Album.cs @@ -0,0 +1,49 @@ +using System; +using System.Collections.Generic; + +namespace GridObjectRelationalCRUD.Models +{ + [Serializable] + public class Album + { + private int id; + private int artistId; + private string title; + private List tracks = new List(); + + public Album() + { + + } + + public Album(int id, int artistId, string title) + { + this.id = id; + this.artistId = artistId; + this.title = title; + } + + public int Id + { + get { return id; } + set { id = value; } + } + + public int ArtistId + { + get { return artistId; } + set { artistId = value; } + } + + public string Title + { + get { return title; } + set { title = value; } + } + + public List Tracks + { + get { return this.tracks; } + } + } +} diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Model/Artist.cs b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Model/Artist.cs new file mode 100644 index 0000000..91dd48c --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Model/Artist.cs @@ -0,0 +1,41 @@ +using System; +using System.Collections.Generic; + +namespace GridObjectRelationalCRUD.Models +{ + [Serializable] + public class Artist + { + private int id; + private string name; + private List albums = new List(); + + public Artist() + { + + } + + public Artist(int id, string name) + { + this.id = id; + this.name = name; + } + + public int Id + { + get { return id; } + set { id = value; } + } + + public string Name + { + get { return name; } + set { name = value; } + } + + public List Albums + { + get { return albums; } + } + } +} diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Model/DataContext.cs b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Model/DataContext.cs new file mode 100644 index 0000000..e7e6ff6 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Model/DataContext.cs @@ -0,0 +1,56 @@ +using System.Collections.Generic; +using System.IO; +using System.Xml.Serialization; + +using GridObjectRelationalCRUD.Properties; + +namespace GridObjectRelationalCRUD.Models +{ + public class DataContext + { + private static List artistsField = null; + private static List topArtistsField = null; + + protected DataContext() + { + } + + public static List Artists + { + get + { + if (artistsField == null) + { + XmlSerializer mySerializer = new XmlSerializer(typeof(List)); + FileStream myFileStream = new FileStream(@"..\..\artists.xml", FileMode.Open); + artistsField = (List)mySerializer.Deserialize(myFileStream); + } + + return artistsField; + } + } + + public static List TopArtists + { + get + { + if (topArtistsField == null) + { + using (MemoryStream stream = new MemoryStream(Resources.ChinookModel)) + { + XmlSerializer mySerializer = new XmlSerializer(typeof(List)); + FileStream myFileStream = new FileStream(@"..\..\artists.xml", FileMode.Open); + topArtistsField = (List)mySerializer.Deserialize(myFileStream); + + while (topArtistsField.Count > 50) + { + topArtistsField.RemoveAt(topArtistsField.Count - 1); + } + } + } + + return topArtistsField; + } + } + } +} diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Model/Track.cs b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Model/Track.cs new file mode 100644 index 0000000..a34aa49 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Model/Track.cs @@ -0,0 +1,58 @@ +using System; + +namespace GridObjectRelationalCRUD.Models +{ + [Serializable] + public class Track + { + private int id; + private string name; + private string mediaType; + private string genre; + private string size; + + public Track() + { + + } + + public Track(int id, string name, string mediaType, string genre, string size) + { + this.id = id; + this.name = name; + this.mediaType = mediaType; + this.genre = genre; + this.size = size; + } + + public int Id + { + get { return id; } + set { id = value; } + } + + public string Name + { + get { return name; } + set { name = value; } + } + + public string MediaType + { + get { return mediaType; } + set { mediaType = value; } + } + + public string Genre + { + get { return genre; } + set { genre = value; } + } + + public string Size + { + get { return size; } + set { size = value; } + } + } +} diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Program.cs b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Program.cs new file mode 100644 index 0000000..e3ba7dc --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Program.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Windows.Forms; + +namespace GridObjectRelationalCRUD +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Properties/AssemblyInfo.cs b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..3899234 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("GridObjectRelationalCRUD")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("GridObjectRelationalCRUD")] +[assembly: AssemblyCopyright("Copyright © 2015")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("eff83f39-8e2c-411d-870d-58c8a24f302d")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Properties/Resources.Designer.cs b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Properties/Resources.Designer.cs new file mode 100644 index 0000000..4783b20 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Properties/Resources.Designer.cs @@ -0,0 +1,73 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.18444 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace GridObjectRelationalCRUD.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("GridObjectRelationalCRUD.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized resource of type System.Byte[]. + /// + internal static byte[] ChinookModel { + get { + object obj = ResourceManager.GetObject("ChinookModel", resourceCulture); + return ((byte[])(obj)); + } + } + } +} diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Properties/Resources.resx b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Properties/Resources.resx new file mode 100644 index 0000000..f317bf0 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Properties/Resources.resx @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + ..\Resources\data.xml;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Properties/Settings.Designer.cs b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Properties/Settings.Designer.cs new file mode 100644 index 0000000..b30381f --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.18444 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace GridObjectRelationalCRUD.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Properties/Settings.settings b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Properties/licenses.licx b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Properties/licenses.licx new file mode 100644 index 0000000..ec80f94 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Properties/licenses.licx @@ -0,0 +1,2 @@ +Telerik.WinControls.UI.RadButton, Telerik.WinControls.UI, Version=2015.1.331.40, Culture=neutral, PublicKeyToken=5bb2a467cbec794e +Telerik.WinControls.UI.RadGridView, Telerik.WinControls.GridView, Version=2015.1.331.40, Culture=neutral, PublicKeyToken=5bb2a467cbec794e diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Resources/data.xml b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Resources/data.xml new file mode 100644 index 0000000..a2937da Binary files /dev/null and b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/Resources/data.xml differ diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/artists.xml b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/artists.xml new file mode 100644 index 0000000..6da4db1 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-cs/GridObjectRelationalCRUD-CS/artists.xml @@ -0,0 +1,25029 @@ + + + + 1 + AC/DC + + + 1 + 1 + For Those About To Rock We Salute You + + + 0 + For Those About To Rock (We Salute You) + MPEG audio file + Rock + + + 0 + Put The Finger On You + MPEG audio file + Rock + + + 0 + Let's Get It Up + MPEG audio file + Rock + + + 0 + Inject The Venom + MPEG audio file + Rock + + + 0 + Snowballed + MPEG audio file + Rock + + + 0 + Evil Walks + MPEG audio file + Rock + + + 0 + C.O.D. + MPEG audio file + Rock + + + 0 + Breaking The Rules + MPEG audio file + Rock + + + 0 + Night Of The Long Knives + MPEG audio file + Rock + + + 0 + Spellbound + MPEG audio file + Rock + + + + + 4 + 1 + Let There Be Rock + + + 0 + Go Down + MPEG audio file + Rock + + + 0 + Dog Eat Dog + MPEG audio file + Rock + + + 0 + Let There Be Rock + MPEG audio file + Rock + + + 0 + Bad Boy Boogie + MPEG audio file + Rock + + + 0 + Problem Child + MPEG audio file + Rock + + + 0 + Overdose + MPEG audio file + Rock + + + 0 + Hell Ain't A Bad Place To Be + MPEG audio file + Rock + + + 0 + Whole Lotta Rosie + MPEG audio file + Rock + + + + + + + 2 + Accept + + + 2 + 2 + Balls to the Wall + + + 0 + Balls to the Wall + Protected AAC audio file + Rock + + + + + 3 + 2 + Restless and Wild + + + 0 + Fast As a Shark + Protected AAC audio file + Rock + + + 0 + Restless and Wild + Protected AAC audio file + Rock + + + 0 + Princess of the Dawn + Protected AAC audio file + Rock + + + + + + + 3 + Aerosmith + + + 5 + 3 + Big Ones + + + 0 + Walk On Water + MPEG audio file + Rock + + + 0 + Love In An Elevator + MPEG audio file + Rock + + + 0 + Rag Doll + MPEG audio file + Rock + + + 0 + What It Takes + MPEG audio file + Rock + + + 0 + Dude (Looks Like A Lady) + MPEG audio file + Rock + + + 0 + Janie's Got A Gun + MPEG audio file + Rock + + + 0 + Cryin' + MPEG audio file + Rock + + + 0 + Amazing + MPEG audio file + Rock + + + 0 + Blind Man + MPEG audio file + Rock + + + 0 + Deuces Are Wild + MPEG audio file + Rock + + + 0 + The Other Side + MPEG audio file + Rock + + + 0 + Crazy + MPEG audio file + Rock + + + 0 + Eat The Rich + MPEG audio file + Rock + + + 0 + Angel + MPEG audio file + Rock + + + 0 + Livin' On The Edge + MPEG audio file + Rock + + + + + + + 4 + Alanis Morissette + + + 6 + 4 + Jagged Little Pill + + + 0 + All I Really Want + MPEG audio file + Rock + + + 0 + You Oughta Know + MPEG audio file + Rock + + + 0 + Perfect + MPEG audio file + Rock + + + 0 + Hand In My Pocket + MPEG audio file + Rock + + + 0 + Right Through You + MPEG audio file + Rock + + + 0 + Forgiven + MPEG audio file + Rock + + + 0 + You Learn + MPEG audio file + Rock + + + 0 + Head Over Feet + MPEG audio file + Rock + + + 0 + Mary Jane + MPEG audio file + Rock + + + 0 + Ironic + MPEG audio file + Rock + + + 0 + Not The Doctor + MPEG audio file + Rock + + + 0 + Wake Up + MPEG audio file + Rock + + + 0 + You Oughta Know (Alternate) + MPEG audio file + Rock + + + + + + + 5 + Alice In Chains + + + 7 + 5 + Facelift + + + 0 + We Die Young + MPEG audio file + Rock + + + 0 + Man In The Box + MPEG audio file + Rock + + + 0 + Sea Of Sorrow + MPEG audio file + Rock + + + 0 + Bleed The Freak + MPEG audio file + Rock + + + 0 + I Can't Remember + MPEG audio file + Rock + + + 0 + Love, Hate, Love + MPEG audio file + Rock + + + 0 + It Ain't Like That + MPEG audio file + Rock + + + 0 + Sunshine + MPEG audio file + Rock + + + 0 + Put You Down + MPEG audio file + Rock + + + 0 + Confusion + MPEG audio file + Rock + + + 0 + I Know Somethin (Bout You) + MPEG audio file + Rock + + + 0 + Real Thing + MPEG audio file + Rock + + + + + + + 6 + Antônio Carlos Jobim + + + 8 + 6 + Warner 25 Anos + + + 0 + Desafinado + MPEG audio file + Jazz + + + 0 + Garota De Ipanema + MPEG audio file + Jazz + + + 0 + Samba De Uma Nota Só (One Note Samba) + MPEG audio file + Jazz + + + 0 + Por Causa De Você + MPEG audio file + Jazz + + + 0 + Ligia + MPEG audio file + Jazz + + + 0 + Fotografia + MPEG audio file + Jazz + + + 0 + Dindi (Dindi) + MPEG audio file + Jazz + + + 0 + Se Todos Fossem Iguais A Você (Instrumental) + MPEG audio file + Jazz + + + 0 + Falando De Amor + MPEG audio file + Jazz + + + 0 + Angela + MPEG audio file + Jazz + + + 0 + Corcovado (Quiet Nights Of Quiet Stars) + MPEG audio file + Jazz + + + 0 + Outra Vez + MPEG audio file + Jazz + + + 0 + O Boto (Bôto) + MPEG audio file + Jazz + + + 0 + Canta, Canta Mais + MPEG audio file + Jazz + + + + + 34 + 6 + Chill: Brazil (Disc 2) + + + 0 + Garota De Ipanema + MPEG audio file + Latin + + + 0 + Tim Tim Por Tim Tim + MPEG audio file + Latin + + + 0 + Tarde Em Itapoã + MPEG audio file + Latin + + + 0 + Tanto Tempo + MPEG audio file + Latin + + + 0 + Eu Vim Da Bahia - Live + MPEG audio file + Latin + + + 0 + Alô Alô Marciano + MPEG audio file + Latin + + + 0 + Linha Do Horizonte + MPEG audio file + Latin + + + 0 + Only A Dream In Rio + MPEG audio file + Latin + + + 0 + Abrir A Porta + MPEG audio file + Latin + + + 0 + Alice + MPEG audio file + Latin + + + 0 + Momentos Que Marcam + MPEG audio file + Latin + + + 0 + Um Jantar Pra Dois + MPEG audio file + Latin + + + 0 + Bumbo Da Mangueira + MPEG audio file + Latin + + + 0 + Mr Funk Samba + MPEG audio file + Latin + + + 0 + Santo Antonio + MPEG audio file + Latin + + + 0 + Por Você + MPEG audio file + Latin + + + 0 + Só Tinha De Ser Com Você + MPEG audio file + Latin + + + + + + + 7 + Apocalyptica + + + 9 + 7 + Plays Metallica By Four Cellos + + + 0 + Enter Sandman + MPEG audio file + Metal + + + 0 + Master Of Puppets + MPEG audio file + Metal + + + 0 + Harvester Of Sorrow + MPEG audio file + Metal + + + 0 + The Unforgiven + MPEG audio file + Metal + + + 0 + Sad But True + MPEG audio file + Metal + + + 0 + Creeping Death + MPEG audio file + Metal + + + 0 + Wherever I May Roam + MPEG audio file + Metal + + + 0 + Welcome Home (Sanitarium) + MPEG audio file + Metal + + + + + + + 8 + Audioslave + + + 10 + 8 + Audioslave + + + 0 + Cochise + MPEG audio file + Rock + + + 0 + Show Me How to Live + MPEG audio file + Rock + + + 0 + Gasoline + MPEG audio file + Rock + + + 0 + What You Are + MPEG audio file + Rock + + + 0 + Like a Stone + MPEG audio file + Rock + + + 0 + Set It Off + MPEG audio file + Rock + + + 0 + Shadow on the Sun + MPEG audio file + Rock + + + 0 + I am the Highway + MPEG audio file + Rock + + + 0 + Exploder + MPEG audio file + Rock + + + 0 + Hypnotize + MPEG audio file + Rock + + + 0 + Bring'em Back Alive + MPEG audio file + Rock + + + 0 + Light My Way + MPEG audio file + Rock + + + 0 + Getaway Car + MPEG audio file + Rock + + + 0 + The Last Remaining Light + MPEG audio file + Rock + + + + + 11 + 8 + Out Of Exile + + + 0 + Your Time Has Come + MPEG audio file + Alternative & Punk + + + 0 + Out Of Exile + MPEG audio file + Alternative & Punk + + + 0 + Be Yourself + MPEG audio file + Alternative & Punk + + + 0 + Doesn't Remind Me + MPEG audio file + Alternative & Punk + + + 0 + Drown Me Slowly + MPEG audio file + Alternative & Punk + + + 0 + Heaven's Dead + MPEG audio file + Alternative & Punk + + + 0 + The Worm + MPEG audio file + Alternative & Punk + + + 0 + Man Or Animal + MPEG audio file + Alternative & Punk + + + 0 + Yesterday To Tomorrow + MPEG audio file + Alternative & Punk + + + 0 + Dandelion + MPEG audio file + Alternative & Punk + + + 0 + #1 Zero + MPEG audio file + Alternative & Punk + + + 0 + The Curse + MPEG audio file + Alternative & Punk + + + + + 271 + 8 + Revelations + + + 0 + Revelations + Protected AAC audio file + Alternative + + + 0 + One and the Same + Protected AAC audio file + Alternative + + + 0 + Sound of a Gun + Protected AAC audio file + Alternative + + + 0 + Until We Fall + Protected AAC audio file + Alternative + + + 0 + Original Fire + Protected AAC audio file + Alternative + + + 0 + Broken City + Protected AAC audio file + Alternative + + + 0 + Somedays + Protected AAC audio file + Alternative + + + 0 + Shape of Things to Come + Protected AAC audio file + Alternative + + + 0 + Jewel of the Summertime + Protected AAC audio file + Alternative + + + 0 + Wide Awake + Protected AAC audio file + Alternative + + + 0 + Nothing Left to Say But Goodbye + Protected AAC audio file + Alternative + + + 0 + Moth + Protected AAC audio file + Alternative + + + 0 + Show Me How to Live (Live at the Quart Festival) + Protected AAC audio file + Alternative + + + 0 + Band Members Discuss Tracks from "Revelations" + Protected MPEG-4 video file + Alternative + + + + + + + 9 + BackBeat + + + 12 + 9 + BackBeat Soundtrack + + + 0 + Money + MPEG audio file + Rock And Roll + + + 0 + Long Tall Sally + MPEG audio file + Rock And Roll + + + 0 + Bad Boy + MPEG audio file + Rock And Roll + + + 0 + Twist And Shout + MPEG audio file + Rock And Roll + + + 0 + Please Mr. Postman + MPEG audio file + Rock And Roll + + + 0 + C'Mon Everybody + MPEG audio file + Rock And Roll + + + 0 + Rock 'N' Roll Music + MPEG audio file + Rock And Roll + + + 0 + Slow Down + MPEG audio file + Rock And Roll + + + 0 + Roadrunner + MPEG audio file + Rock And Roll + + + 0 + Carol + MPEG audio file + Rock And Roll + + + 0 + Good Golly Miss Molly + MPEG audio file + Rock And Roll + + + 0 + 20 Flight Rock + MPEG audio file + Rock And Roll + + + + + + + 10 + Billy Cobham + + + 13 + 10 + The Best Of Billy Cobham + + + 0 + Quadrant + MPEG audio file + Jazz + + + 0 + Snoopy's search-Red baron + MPEG audio file + Jazz + + + 0 + Spanish moss-"A sound portrait"-Spanish moss + MPEG audio file + Jazz + + + 0 + Moon germs + MPEG audio file + Jazz + + + 0 + Stratus + MPEG audio file + Jazz + + + 0 + The pleasant pheasant + MPEG audio file + Jazz + + + 0 + Solo-Panhandler + MPEG audio file + Jazz + + + 0 + Do what cha wanna + MPEG audio file + Jazz + + + + + + + 11 + Black Label Society + + + 14 + 11 + Alcohol Fueled Brewtality Live! [Disc 1] + + + 0 + Intro/ Low Down + MPEG audio file + Metal + + + 0 + 13 Years Of Grief + MPEG audio file + Metal + + + 0 + Stronger Than Death + MPEG audio file + Metal + + + 0 + All For You + MPEG audio file + Metal + + + 0 + Super Terrorizer + MPEG audio file + Metal + + + 0 + Phoney Smile Fake Hellos + MPEG audio file + Metal + + + 0 + Lost My Better Half + MPEG audio file + Metal + + + 0 + Bored To Tears + MPEG audio file + Metal + + + 0 + A.N.D.R.O.T.A.Z. + MPEG audio file + Metal + + + 0 + Born To Booze + MPEG audio file + Metal + + + 0 + World Of Trouble + MPEG audio file + Metal + + + 0 + No More Tears + MPEG audio file + Metal + + + 0 + The Begining... At Last + MPEG audio file + Metal + + + + + 15 + 11 + Alcohol Fueled Brewtality Live! [Disc 2] + + + 0 + Heart Of Gold + MPEG audio file + Metal + + + 0 + Snowblind + MPEG audio file + Metal + + + 0 + Like A Bird + MPEG audio file + Metal + + + 0 + Blood In The Wall + MPEG audio file + Metal + + + 0 + The Beginning...At Last + MPEG audio file + Metal + + + + + + + 12 + Black Sabbath + + + 16 + 12 + Black Sabbath + + + 0 + Black Sabbath + MPEG audio file + Metal + + + 0 + The Wizard + MPEG audio file + Metal + + + 0 + Behind The Wall Of Sleep + MPEG audio file + Metal + + + 0 + N.I.B. + MPEG audio file + Metal + + + 0 + Evil Woman + MPEG audio file + Metal + + + 0 + Sleeping Village + MPEG audio file + Metal + + + 0 + Warning + MPEG audio file + Metal + + + + + 17 + 12 + Black Sabbath Vol. 4 (Remaster) + + + 0 + Wheels Of Confusion / The Straightener + MPEG audio file + Metal + + + 0 + Tomorrow's Dream + MPEG audio file + Metal + + + 0 + Changes + MPEG audio file + Metal + + + 0 + FX + MPEG audio file + Metal + + + 0 + Supernaut + MPEG audio file + Metal + + + 0 + Snowblind + MPEG audio file + Metal + + + 0 + Cornucopia + MPEG audio file + Metal + + + 0 + Laguna Sunrise + MPEG audio file + Metal + + + 0 + St. Vitus Dance + MPEG audio file + Metal + + + 0 + Under The Sun/Every Day Comes and Goes + MPEG audio file + Metal + + + + + + + 13 + Body Count + + + 18 + 13 + Body Count + + + 0 + Smoked Pork + MPEG audio file + Alternative & Punk + + + 0 + Body Count's In The House + MPEG audio file + Alternative & Punk + + + 0 + Now Sports + MPEG audio file + Alternative & Punk + + + 0 + Body Count + MPEG audio file + Alternative & Punk + + + 0 + A Statistic + MPEG audio file + Alternative & Punk + + + 0 + Bowels Of The Devil + MPEG audio file + Alternative & Punk + + + 0 + The Real Problem + MPEG audio file + Alternative & Punk + + + 0 + KKK Bitch + MPEG audio file + Alternative & Punk + + + 0 + D Note + MPEG audio file + Alternative & Punk + + + 0 + Voodoo + MPEG audio file + Alternative & Punk + + + 0 + The Winner Loses + MPEG audio file + Alternative & Punk + + + 0 + There Goes The Neighborhood + MPEG audio file + Alternative & Punk + + + 0 + Oprah + MPEG audio file + Alternative & Punk + + + 0 + Evil Dick + MPEG audio file + Alternative & Punk + + + 0 + Body Count Anthem + MPEG audio file + Alternative & Punk + + + 0 + Momma's Gotta Die Tonight + MPEG audio file + Alternative & Punk + + + 0 + Freedom Of Speech + MPEG audio file + Alternative & Punk + + + + + + + 14 + Bruce Dickinson + + + 19 + 14 + Chemical Wedding + + + 0 + King In Crimson + MPEG audio file + Metal + + + 0 + Chemical Wedding + MPEG audio file + Metal + + + 0 + The Tower + MPEG audio file + Metal + + + 0 + Killing Floor + MPEG audio file + Metal + + + 0 + Book Of Thel + MPEG audio file + Metal + + + 0 + Gates Of Urizen + MPEG audio file + Metal + + + 0 + Jerusalem + MPEG audio file + Metal + + + 0 + Trupets Of Jericho + MPEG audio file + Metal + + + 0 + Machine Men + MPEG audio file + Metal + + + 0 + The Alchemist + MPEG audio file + Metal + + + 0 + Realword + MPEG audio file + Metal + + + + + + + 15 + Buddy Guy + + + 20 + 15 + The Best Of Buddy Guy - The Millenium Collection + + + 0 + First Time I Met The Blues + MPEG audio file + Blues + + + 0 + Let Me Love You Baby + MPEG audio file + Blues + + + 0 + Stone Crazy + MPEG audio file + Blues + + + 0 + Pretty Baby + MPEG audio file + Blues + + + 0 + When My Left Eye Jumps + MPEG audio file + Blues + + + 0 + Leave My Girl Alone + MPEG audio file + Blues + + + 0 + She Suits Me To A Tee + MPEG audio file + Blues + + + 0 + Keep It To Myself (Aka Keep It To Yourself) + MPEG audio file + Blues + + + 0 + My Time After Awhile + MPEG audio file + Blues + + + 0 + Too Many Ways (Alternate) + MPEG audio file + Blues + + + 0 + Talkin' 'Bout Women Obviously + MPEG audio file + Blues + + + + + + + 16 + Caetano Veloso + + + 21 + 16 + Prenda Minha + + + 0 + Jorge Da Capadócia + MPEG audio file + Latin + + + 0 + Prenda Minha + MPEG audio file + Latin + + + 0 + Meditação + MPEG audio file + Latin + + + 0 + Terra + MPEG audio file + Latin + + + 0 + Eclipse Oculto + MPEG audio file + Latin + + + 0 + Texto "Verdade Tropical" + MPEG audio file + Latin + + + 0 + Bem Devagar + MPEG audio file + Latin + + + 0 + Drão + MPEG audio file + Latin + + + 0 + Saudosismo + MPEG audio file + Latin + + + 0 + Carolina + MPEG audio file + Latin + + + 0 + Sozinho + MPEG audio file + Latin + + + 0 + Esse Cara + MPEG audio file + Latin + + + 0 + Mel + MPEG audio file + Latin + + + 0 + Linha Do Equador + MPEG audio file + Latin + + + 0 + Odara + MPEG audio file + Latin + + + 0 + A Luz De Tieta + MPEG audio file + Latin + + + 0 + Atrás Da Verd-E-Rosa Só Não Vai Quem Já Morreu + MPEG audio file + Latin + + + 0 + Vida Boa + MPEG audio file + Latin + + + + + 22 + 16 + Sozinho Remix Ao Vivo + + + 0 + Sozinho (Hitmakers Classic Mix) + MPEG audio file + Latin + + + 0 + Sozinho (Hitmakers Classic Radio Edit) + MPEG audio file + Latin + + + 0 + Sozinho (Caêdrum 'n' Bass) + MPEG audio file + Latin + + + + + + + 17 + Chico Buarque + + + 23 + 17 + Minha Historia + + + 0 + Carolina + MPEG audio file + Latin + + + 0 + Essa Moça Ta Diferente + MPEG audio file + Latin + + + 0 + Vai Passar + MPEG audio file + Latin + + + 0 + Samba De Orly + MPEG audio file + Latin + + + 0 + Bye, Bye Brasil + MPEG audio file + Latin + + + 0 + Atras Da Porta + MPEG audio file + Latin + + + 0 + Tatuagem + MPEG audio file + Latin + + + 0 + O Que Será (À Flor Da Terra) + MPEG audio file + Latin + + + 0 + Morena De Angola + MPEG audio file + Latin + + + 0 + Apesar De Você + MPEG audio file + Latin + + + 0 + A Banda + MPEG audio file + Latin + + + 0 + Minha Historia + MPEG audio file + Latin + + + 0 + Com Açúcar E Com Afeto + MPEG audio file + Latin + + + 0 + Brejo Da Cruz + MPEG audio file + Latin + + + 0 + Meu Caro Amigo + MPEG audio file + Latin + + + 0 + Geni E O Zepelim + MPEG audio file + Latin + + + 0 + Trocando Em Miúdos + MPEG audio file + Latin + + + 0 + Vai Trabalhar Vagabundo + MPEG audio file + Latin + + + 0 + Gota D'água + MPEG audio file + Latin + + + 0 + Construção / Deus Lhe Pague + MPEG audio file + Latin + + + 0 + Meia-Lua Inteira + MPEG audio file + Latin + + + 0 + Voce e Linda + MPEG audio file + Latin + + + 0 + Um Indio + MPEG audio file + Latin + + + 0 + Podres Poderes + MPEG audio file + Latin + + + 0 + Voce Nao Entende Nada - Cotidiano + MPEG audio file + Latin + + + 0 + O Estrangeiro + MPEG audio file + Latin + + + 0 + Menino Do Rio + MPEG audio file + Latin + + + 0 + Qualquer Coisa + MPEG audio file + Latin + + + 0 + Sampa + MPEG audio file + Latin + + + 0 + Queixa + MPEG audio file + Latin + + + 0 + O Leaozinho + MPEG audio file + Latin + + + 0 + Fora Da Ordem + MPEG audio file + Latin + + + 0 + Terra + MPEG audio file + Latin + + + 0 + Alegria, Alegria + MPEG audio file + Latin + + + + + + + 18 + Chico Science & Nação Zumbi + + + 24 + 18 + Afrociberdelia + + + 0 + Mateus Enter + MPEG audio file + Latin + + + 0 + O Cidadão Do Mundo + MPEG audio file + Latin + + + 0 + Etnia + MPEG audio file + Latin + + + 0 + Quilombo Groove [Instrumental] + MPEG audio file + Latin + + + 0 + Macô + MPEG audio file + Latin + + + 0 + Um Passeio No Mundo Livre + MPEG audio file + Latin + + + 0 + Samba Do Lado + MPEG audio file + Latin + + + 0 + Maracatu Atômico + MPEG audio file + Latin + + + 0 + O Encontro De Isaac Asimov Com Santos Dumont No Céu + MPEG audio file + Latin + + + 0 + Corpo De Lama + MPEG audio file + Latin + + + 0 + Sobremesa + MPEG audio file + Latin + + + 0 + Manguetown + MPEG audio file + Latin + + + 0 + Um Satélite Na Cabeça + MPEG audio file + Latin + + + 0 + Baião Ambiental [Instrumental] + MPEG audio file + Latin + + + 0 + Sangue De Bairro + MPEG audio file + Latin + + + 0 + Enquanto O Mundo Explode + MPEG audio file + Latin + + + 0 + Interlude Zumbi + MPEG audio file + Latin + + + 0 + Criança De Domingo + MPEG audio file + Latin + + + 0 + Amor De Muito + MPEG audio file + Latin + + + 0 + Samidarish [Instrumental] + MPEG audio file + Latin + + + 0 + Maracatu Atômico [Atomic Version] + MPEG audio file + Latin + + + 0 + Maracatu Atômico [Ragga Mix] + MPEG audio file + Latin + + + 0 + Maracatu Atômico [Trip Hop] + MPEG audio file + Latin + + + + + 25 + 18 + Da Lama Ao Caos + + + 0 + Banditismo Por Uma Questa + MPEG audio file + Latin + + + 0 + Banditismo Por Uma Questa + MPEG audio file + Latin + + + 0 + Rios Pontes & Overdrives + MPEG audio file + Latin + + + 0 + Cidade + MPEG audio file + Latin + + + 0 + Praiera + MPEG audio file + Latin + + + 0 + Samba Makossa + MPEG audio file + Latin + + + 0 + Da Lama Ao Caos + MPEG audio file + Latin + + + 0 + Maracatu De Tiro Certeiro + MPEG audio file + Latin + + + 0 + Salustiano Song + MPEG audio file + Latin + + + 0 + Antene Se + MPEG audio file + Latin + + + 0 + Risoflora + MPEG audio file + Latin + + + 0 + Lixo Do Mangue + MPEG audio file + Latin + + + 0 + Computadores Fazem Arte + MPEG audio file + Latin + + + + + + + 19 + Cidade Negra + + + 26 + 19 + Acústico MTV [Live] + + + 0 + Girassol + MPEG audio file + Reggae + + + 0 + A Sombra Da Maldade + MPEG audio file + Reggae + + + 0 + Johnny B. Goode + MPEG audio file + Reggae + + + 0 + Soldado Da Paz + MPEG audio file + Reggae + + + 0 + Firmamento + MPEG audio file + Reggae + + + 0 + Extra + MPEG audio file + Reggae + + + 0 + O Erê + MPEG audio file + Reggae + + + 0 + Podes Crer + MPEG audio file + Reggae + + + 0 + A Estrada + MPEG audio file + Reggae + + + 0 + Berlim + MPEG audio file + Reggae + + + 0 + Já Foi + MPEG audio file + Reggae + + + 0 + Onde Você Mora? + MPEG audio file + Reggae + + + 0 + Pensamento + MPEG audio file + Reggae + + + 0 + Conciliação + MPEG audio file + Reggae + + + 0 + Realidade Virtual + MPEG audio file + Reggae + + + 0 + Mensagem + MPEG audio file + Reggae + + + 0 + A Cor Do Sol + MPEG audio file + Reggae + + + + + 27 + 19 + Cidade Negra - Hits + + + 0 + Onde Você Mora? + MPEG audio file + Reggae + + + 0 + O Erê + MPEG audio file + Reggae + + + 0 + A Sombra Da Maldade + MPEG audio file + Reggae + + + 0 + A Estrada + MPEG audio file + Reggae + + + 0 + Falar A Verdade + MPEG audio file + Reggae + + + 0 + Firmamento + MPEG audio file + Reggae + + + 0 + Pensamento + MPEG audio file + Reggae + + + 0 + Realidade Virtual + MPEG audio file + Reggae + + + 0 + Doutor + MPEG audio file + Reggae + + + 0 + Na Frente Da TV + MPEG audio file + Reggae + + + 0 + Downtown + MPEG audio file + Reggae + + + 0 + Sábado A Noite + MPEG audio file + Reggae + + + 0 + A Cor Do Sol + MPEG audio file + Reggae + + + 0 + Eu Também Quero Beijar + MPEG audio file + Reggae + + + + + + + 20 + Cláudio Zoli + + + 28 + 20 + Na Pista + + + 0 + Noite Do Prazer + MPEG audio file + Latin + + + 0 + À Francesa + MPEG audio file + Latin + + + 0 + Cada Um Cada Um (A Namoradeira) + MPEG audio file + Latin + + + 0 + Linha Do Equador + MPEG audio file + Latin + + + 0 + Amor Demais + MPEG audio file + Latin + + + 0 + Férias + MPEG audio file + Latin + + + 0 + Gostava Tanto De Você + MPEG audio file + Latin + + + 0 + Flor Do Futuro + MPEG audio file + Latin + + + 0 + Felicidade Urgente + MPEG audio file + Latin + + + 0 + Livre Pra Viver + MPEG audio file + Latin + + + + + + + 21 + Various Artists + + + 29 + 21 + Axé Bahia 2001 + + + 0 + Dig-Dig, Lambe-Lambe (Ao Vivo) + MPEG audio file + Pop + + + 0 + Pererê + MPEG audio file + Pop + + + 0 + TriboTchan + MPEG audio file + Pop + + + 0 + Tapa Aqui, Descobre Ali + MPEG audio file + Pop + + + 0 + Daniela + MPEG audio file + Pop + + + 0 + Bate Lata + MPEG audio file + Pop + + + 0 + Garotas do Brasil + MPEG audio file + Pop + + + 0 + Levada do Amor (Ailoviu) + MPEG audio file + Pop + + + 0 + Lavadeira + MPEG audio file + Pop + + + 0 + Reboladeira + MPEG audio file + Pop + + + 0 + É que Nessa Encarnação Eu Nasci Manga + MPEG audio file + Pop + + + 0 + Reggae Tchan + MPEG audio file + Pop + + + 0 + My Love + MPEG audio file + Pop + + + 0 + Latinha de Cerveja + MPEG audio file + Pop + + + + + 32 + 21 + Carnaval 2001 + + + 0 + Vai-Vai 2001 + MPEG audio file + Soundtrack + + + 0 + X-9 2001 + MPEG audio file + Soundtrack + + + 0 + Gavioes 2001 + MPEG audio file + Soundtrack + + + 0 + Nene 2001 + MPEG audio file + Soundtrack + + + 0 + Rosas De Ouro 2001 + MPEG audio file + Soundtrack + + + 0 + Mocidade Alegre 2001 + MPEG audio file + Soundtrack + + + 0 + Camisa Verde 2001 + MPEG audio file + Soundtrack + + + 0 + Leandro De Itaquera 2001 + MPEG audio file + Soundtrack + + + 0 + Tucuruvi 2001 + MPEG audio file + Soundtrack + + + 0 + Aguia De Ouro 2001 + MPEG audio file + Soundtrack + + + 0 + Ipiranga 2001 + MPEG audio file + Soundtrack + + + 0 + Morro Da Casa Verde 2001 + MPEG audio file + Soundtrack + + + 0 + Perola Negra 2001 + MPEG audio file + Soundtrack + + + 0 + Sao Lucas 2001 + MPEG audio file + Soundtrack + + + + + 45 + 21 + Sambas De Enredo 2001 + + + 0 + Imperatriz + MPEG audio file + Latin + + + 0 + Beija-Flor + MPEG audio file + Latin + + + 0 + Viradouro + MPEG audio file + Latin + + + 0 + Mocidade + MPEG audio file + Latin + + + 0 + Unidos Da Tijuca + MPEG audio file + Latin + + + 0 + Salgueiro + MPEG audio file + Latin + + + 0 + Mangueira + MPEG audio file + Latin + + + 0 + União Da Ilha + MPEG audio file + Latin + + + 0 + Grande Rio + MPEG audio file + Latin + + + 0 + Portela + MPEG audio file + Latin + + + 0 + Caprichosos + MPEG audio file + Latin + + + 0 + Tradição + MPEG audio file + Latin + + + 0 + Império Serrano + MPEG audio file + Latin + + + 0 + Tuiuti + MPEG audio file + Latin + + + + + 53 + 21 + Vozes do MPB + + + 0 + Linha de Passe (João Bosco) + MPEG audio file + Latin + + + 0 + Pela Luz dos Olhos Teus (Miúcha e Tom Jobim) + MPEG audio file + Latin + + + 0 + Chão de Giz (Elba Ramalho) + MPEG audio file + Latin + + + 0 + Marina (Dorival Caymmi) + MPEG audio file + Latin + + + 0 + Aquarela (Toquinho) + MPEG audio file + Latin + + + 0 + Coração do Agreste (Fafá de Belém) + MPEG audio file + Latin + + + 0 + Dona (Roupa Nova) + MPEG audio file + Latin + + + 0 + Começaria Tudo Outra Vez (Maria Creuza) + MPEG audio file + Latin + + + 0 + Caçador de Mim (Sá & Guarabyra) + MPEG audio file + Latin + + + 0 + Romaria (Renato Teixeira) + MPEG audio file + Latin + + + 0 + As Rosas Não Falam (Beth Carvalho) + MPEG audio file + Latin + + + 0 + Wave (Os Cariocas) + MPEG audio file + Latin + + + 0 + Garota de Ipanema (Dick Farney) + MPEG audio file + Latin + + + 0 + Preciso Apender a Viver Só (Maysa) + MPEG audio file + Latin + + + + + + + 22 + Led Zeppelin + + + 30 + 22 + BBC Sessions [Disc 1] [Live] + + + 0 + You Shook Me + MPEG audio file + Rock + + + 0 + I Can't Quit You Baby + MPEG audio file + Rock + + + 0 + Communication Breakdown + MPEG audio file + Rock + + + 0 + Dazed and Confused + MPEG audio file + Rock + + + 0 + The Girl I Love She Got Long Black Wavy Hair + MPEG audio file + Rock + + + 0 + What is and Should Never Be + MPEG audio file + Rock + + + 0 + Communication Breakdown(2) + MPEG audio file + Rock + + + 0 + Travelling Riverside Blues + MPEG audio file + Rock + + + 0 + Whole Lotta Love + MPEG audio file + Rock + + + 0 + Somethin' Else + MPEG audio file + Rock + + + 0 + Communication Breakdown(3) + MPEG audio file + Rock + + + 0 + I Can't Quit You Baby(2) + MPEG audio file + Rock + + + 0 + You Shook Me(2) + MPEG audio file + Rock + + + 0 + How Many More Times + MPEG audio file + Rock + + + + + 44 + 22 + Physical Graffiti [Disc 1] + + + 0 + Custard Pie + MPEG audio file + Rock + + + 0 + The Rover + MPEG audio file + Rock + + + 0 + In My Time Of Dying + MPEG audio file + Rock + + + 0 + Houses Of The Holy + MPEG audio file + Rock + + + 0 + Trampled Under Foot + MPEG audio file + Rock + + + 0 + Kashmir + MPEG audio file + Rock + + + + + 127 + 22 + BBC Sessions [Disc 2] [Live] + + + 0 + Immigrant Song + MPEG audio file + Rock + + + 0 + Heartbreaker + MPEG audio file + Rock + + + 0 + Since I've Been Loving You + MPEG audio file + Rock + + + 0 + Black Dog + MPEG audio file + Rock + + + 0 + Dazed And Confused + MPEG audio file + Rock + + + 0 + Stairway To Heaven + MPEG audio file + Rock + + + 0 + Going To California + MPEG audio file + Rock + + + 0 + That's The Way + MPEG audio file + Rock + + + 0 + Whole Lotta Love (Medley) + MPEG audio file + Rock + + + 0 + Thank You + MPEG audio file + Rock + + + + + 128 + 22 + Coda + + + 0 + We're Gonna Groove + MPEG audio file + Rock + + + 0 + Poor Tom + MPEG audio file + Rock + + + 0 + I Can't Quit You Baby + MPEG audio file + Rock + + + 0 + Walter's Walk + MPEG audio file + Rock + + + 0 + Ozone Baby + MPEG audio file + Rock + + + 0 + Darlene + MPEG audio file + Rock + + + 0 + Bonzo's Montreux + MPEG audio file + Rock + + + 0 + Wearing And Tearing + MPEG audio file + Rock + + + + + 129 + 22 + Houses Of The Holy + + + 0 + The Song Remains The Same + MPEG audio file + Rock + + + 0 + The Rain Song + MPEG audio file + Rock + + + 0 + Over The Hills And Far Away + MPEG audio file + Rock + + + 0 + The Crunge + MPEG audio file + Rock + + + 0 + Dancing Days + MPEG audio file + Rock + + + 0 + D'Yer Mak'er + MPEG audio file + Rock + + + 0 + No Quarter + MPEG audio file + Rock + + + 0 + The Ocean + MPEG audio file + Rock + + + + + 130 + 22 + In Through The Out Door + + + 0 + In The Evening + MPEG audio file + Rock + + + 0 + South Bound Saurez + MPEG audio file + Rock + + + 0 + Fool In The Rain + MPEG audio file + Rock + + + 0 + Hot Dog + MPEG audio file + Rock + + + 0 + Carouselambra + MPEG audio file + Rock + + + 0 + All My Love + MPEG audio file + Rock + + + 0 + I'm Gonna Crawl + MPEG audio file + Rock + + + + + 131 + 22 + IV + + + 0 + Black Dog + MPEG audio file + Rock + + + 0 + Rock & Roll + MPEG audio file + Rock + + + 0 + The Battle Of Evermore + MPEG audio file + Rock + + + 0 + Stairway To Heaven + MPEG audio file + Rock + + + 0 + Misty Mountain Hop + MPEG audio file + Rock + + + 0 + Four Sticks + MPEG audio file + Rock + + + 0 + Going To California + MPEG audio file + Rock + + + 0 + When The Levee Breaks + MPEG audio file + Rock + + + + + 132 + 22 + Led Zeppelin I + + + 0 + Good Times Bad Times + MPEG audio file + Rock + + + 0 + Babe I'm Gonna Leave You + MPEG audio file + Rock + + + 0 + You Shook Me + MPEG audio file + Rock + + + 0 + Dazed and Confused + MPEG audio file + Rock + + + 0 + Your Time Is Gonna Come + MPEG audio file + Rock + + + 0 + Black Mountain Side + MPEG audio file + Rock + + + 0 + Communication Breakdown + MPEG audio file + Rock + + + 0 + I Can't Quit You Baby + MPEG audio file + Rock + + + 0 + How Many More Times + MPEG audio file + Rock + + + + + 133 + 22 + Led Zeppelin II + + + 0 + Whole Lotta Love + MPEG audio file + Rock + + + 0 + What Is And What Should Never Be + MPEG audio file + Rock + + + 0 + The Lemon Song + MPEG audio file + Rock + + + 0 + Thank You + MPEG audio file + Rock + + + 0 + Heartbreaker + MPEG audio file + Rock + + + 0 + Living Loving Maid (She's Just A Woman) + MPEG audio file + Rock + + + 0 + Ramble On + MPEG audio file + Rock + + + 0 + Moby Dick + MPEG audio file + Rock + + + 0 + Bring It On Home + MPEG audio file + Rock + + + + + 134 + 22 + Led Zeppelin III + + + 0 + Out On The Tiles + MPEG audio file + Rock + + + 0 + Gallows Pole + MPEG audio file + Rock + + + 0 + Tangerine + MPEG audio file + Rock + + + 0 + That's The Way + MPEG audio file + Rock + + + 0 + Bron-Y-Aur Stomp + MPEG audio file + Rock + + + 0 + Hats Off To (Roy) Harper + MPEG audio file + Rock + + + 0 + Immigrant Song + MPEG audio file + Rock + + + 0 + Friends + MPEG audio file + Rock + + + 0 + Celebration Day + MPEG audio file + Rock + + + 0 + Since I've Been Loving You + MPEG audio file + Rock + + + + + 135 + 22 + Physical Graffiti [Disc 2] + + + 0 + In The Light + MPEG audio file + Rock + + + 0 + Bron-Yr-Aur + MPEG audio file + Rock + + + 0 + Down By The Seaside + MPEG audio file + Rock + + + 0 + Ten Years Gone + MPEG audio file + Rock + + + 0 + Night Flight + MPEG audio file + Rock + + + 0 + The Wanton Song + MPEG audio file + Rock + + + 0 + Boogie With Stu + MPEG audio file + Rock + + + 0 + Black Country Woman + MPEG audio file + Rock + + + 0 + Sick Again + MPEG audio file + Rock + + + + + 136 + 22 + Presence + + + 0 + Achilles Last Stand + MPEG audio file + Rock + + + 0 + For Your Life + MPEG audio file + Rock + + + 0 + Royal Orleans + MPEG audio file + Rock + + + 0 + Nobody's Fault But Mine + MPEG audio file + Rock + + + 0 + Candy Store Rock + MPEG audio file + Rock + + + 0 + Hots On For Nowhere + MPEG audio file + Rock + + + 0 + Tea For One + MPEG audio file + Rock + + + + + 137 + 22 + The Song Remains The Same (Disc 1) + + + 0 + Rock & Roll + MPEG audio file + Rock + + + 0 + Celebration Day + MPEG audio file + Rock + + + 0 + The Song Remains The Same + MPEG audio file + Rock + + + 0 + Rain Song + MPEG audio file + Rock + + + 0 + Dazed And Confused + MPEG audio file + Rock + + + + + 138 + 22 + The Song Remains The Same (Disc 2) + + + 0 + No Quarter + MPEG audio file + Rock + + + 0 + Stairway To Heaven + MPEG audio file + Rock + + + 0 + Moby Dick + MPEG audio file + Rock + + + 0 + Whole Lotta Love + MPEG audio file + Rock + + + + + + + 23 + Frank Zappa & Captain Beefheart + + + 31 + 23 + Bongo Fury + + + 0 + Debra Kadabra + MPEG audio file + Rock + + + 0 + Carolina Hard-Core Ecstasy + MPEG audio file + Rock + + + 0 + Sam With The Showing Scalp Flat Top + MPEG audio file + Rock + + + 0 + Poofter's Froth Wyoming Plans Ahead + MPEG audio file + Rock + + + 0 + 200 Years Old + MPEG audio file + Rock + + + 0 + Cucamonga + MPEG audio file + Rock + + + 0 + Advance Romance + MPEG audio file + Rock + + + 0 + Man With The Woman Head + MPEG audio file + Rock + + + 0 + Muffin Man + MPEG audio file + Rock + + + + + + + 24 + Marcos Valle + + + 33 + 24 + Chill: Brazil (Disc 1) + + + 0 + Guanabara + MPEG audio file + Latin + + + 0 + Mas Que Nada + MPEG audio file + Latin + + + 0 + Vôo Sobre o Horizonte + MPEG audio file + Latin + + + 0 + A Paz + MPEG audio file + Latin + + + 0 + Wave (Vou te Contar) + MPEG audio file + Latin + + + 0 + Água de Beber + MPEG audio file + Latin + + + 0 + Samba da Bençaco + MPEG audio file + Latin + + + 0 + Pode Parar + MPEG audio file + Latin + + + 0 + Menino do Rio + MPEG audio file + Latin + + + 0 + Ando Meio Desligado + MPEG audio file + Latin + + + 0 + Mistério da Raça + MPEG audio file + Latin + + + 0 + All Star + MPEG audio file + Latin + + + 0 + Menina Bonita + MPEG audio file + Latin + + + 0 + Pescador de Ilusões + MPEG audio file + Latin + + + 0 + À Vontade (Live Mix) + MPEG audio file + Latin + + + 0 + Maria Fumaça + MPEG audio file + Latin + + + 0 + Sambassim (dj patife remix) + MPEG audio file + Latin + + + + + + + 25 + Milton Nascimento & Bebeto + + + + 26 + Azymuth + + + + 27 + Gilberto Gil + + + 85 + 27 + As Canções de Eu Tu Eles + + + 0 + Óia Eu Aqui De Novo + MPEG audio file + Soundtrack + + + 0 + Baião Da Penha + MPEG audio file + Soundtrack + + + 0 + Esperando Na Janela + MPEG audio file + Soundtrack + + + 0 + Juazeiro + MPEG audio file + Soundtrack + + + 0 + Último Pau-De-Arara + MPEG audio file + Soundtrack + + + 0 + Asa Branca + MPEG audio file + Soundtrack + + + 0 + Qui Nem Jiló + MPEG audio file + Soundtrack + + + 0 + Assum Preto + MPEG audio file + Soundtrack + + + 0 + Pau-De-Arara + MPEG audio file + Soundtrack + + + 0 + A Volta Da Asa Branca + MPEG audio file + Soundtrack + + + 0 + O Amor Daqui De Casa + MPEG audio file + Soundtrack + + + 0 + As Pegadas Do Amor + MPEG audio file + Soundtrack + + + 0 + Lamento Sertanejo + MPEG audio file + Soundtrack + + + 0 + Casinha Feliz + MPEG audio file + Soundtrack + + + + + 86 + 27 + Quanta Gente Veio Ver (Live) + + + 0 + Introdução (Live) + MPEG audio file + Latin + + + 0 + Palco (Live) + MPEG audio file + Latin + + + 0 + Is This Love (Live) + MPEG audio file + Latin + + + 0 + Stir It Up (Live) + MPEG audio file + Latin + + + 0 + Refavela (Live) + MPEG audio file + Latin + + + 0 + Vendedor De Caranguejo (Live) + MPEG audio file + Latin + + + 0 + Quanta (Live) + MPEG audio file + Latin + + + 0 + Estrela (Live) + MPEG audio file + Latin + + + 0 + Pela Internet (Live) + MPEG audio file + Latin + + + 0 + Cérebro Eletrônico (Live) + MPEG audio file + Latin + + + 0 + Opachorô (Live) + MPEG audio file + Latin + + + 0 + Copacabana (Live) + MPEG audio file + Latin + + + 0 + A Novidade (Live) + MPEG audio file + Latin + + + 0 + Ghandi (Live) + MPEG audio file + Latin + + + 0 + De Ouro E Marfim (Live) + MPEG audio file + Latin + + + + + 87 + 27 + Quanta Gente Veio ver--Bônus De Carnaval + + + 0 + Doce De Carnaval (Candy All) + MPEG audio file + Jazz + + + 0 + Lamento De Carnaval + MPEG audio file + Jazz + + + 0 + Pretinha + MPEG audio file + Jazz + + + + + + + 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 + + + 259 + 36 + Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro + + + 0 + Instinto Colectivo + MPEG audio file + Electronica/Dance + + + 0 + Chapa o Coco + MPEG audio file + Electronica/Dance + + + 0 + Prostituta + MPEG audio file + Electronica/Dance + + + 0 + Eu So Queria Sumir + MPEG audio file + Electronica/Dance + + + 0 + Tres Reis + MPEG audio file + Electronica/Dance + + + 0 + Um Lugar ao Sol + MPEG audio file + Electronica/Dance + + + 0 + Batalha Naval + MPEG audio file + Electronica/Dance + + + 0 + Todo o Carnaval tem seu Fim + MPEG audio file + Electronica/Dance + + + 0 + O Misterio do Samba + MPEG audio file + Electronica/Dance + + + 0 + Armadura + MPEG audio file + Electronica/Dance + + + 0 + Na Ladeira + MPEG audio file + Electronica/Dance + + + 0 + Carimbo + MPEG audio file + Electronica/Dance + + + 0 + Catimbo + MPEG audio file + Electronica/Dance + + + 0 + Funk de Bamba + MPEG audio file + Electronica/Dance + + + 0 + Chega no Suingue + MPEG audio file + Electronica/Dance + + + 0 + Mun-Ra + MPEG audio file + Electronica/Dance + + + 0 + Freestyle Love + MPEG audio file + Electronica/Dance + + + + + + + 37 + Ed Motta + + + 47 + 37 + The Best of Ed Motta + + + 0 + Solução + MPEG audio file + Latin + + + 0 + Manuel + MPEG audio file + Latin + + + 0 + Entre E Ouça + MPEG audio file + Latin + + + 0 + Um Contrato Com Deus + MPEG audio file + Latin + + + 0 + Um Jantar Pra Dois + MPEG audio file + Latin + + + 0 + Vamos Dançar + MPEG audio file + Latin + + + 0 + Um Love + MPEG audio file + Latin + + + 0 + Seis Da Tarde + MPEG audio file + Latin + + + 0 + Baixo Rio + MPEG audio file + Latin + + + 0 + Sombras Do Meu Destino + MPEG audio file + Latin + + + 0 + Do You Have Other Loves? + MPEG audio file + Latin + + + 0 + Agora Que O Dia Acordou + MPEG audio file + Latin + + + 0 + Já!!! + MPEG audio file + Latin + + + 0 + A Rua + MPEG audio file + Latin + + + + + + + 38 + Banda Black Rio + + + + 39 + Fernanda Porto + + + + 40 + Os Cariocas + + + + 41 + Elis Regina + + + 71 + 41 + Elis Regina-Minha História + + + 0 + O Bêbado e a Equilibrista + MPEG audio file + Latin + + + 0 + O Mestre-Sala dos Mares + MPEG audio file + Latin + + + 0 + Atrás da Porta + MPEG audio file + Latin + + + 0 + Dois Pra Lá, Dois Pra Cá + MPEG audio file + Latin + + + 0 + Casa no Campo + MPEG audio file + Latin + + + 0 + Romaria + MPEG audio file + Latin + + + 0 + Alô, Alô, Marciano + MPEG audio file + Latin + + + 0 + Me Deixas Louca + MPEG audio file + Latin + + + 0 + Fascinação + MPEG audio file + Latin + + + 0 + Saudosa Maloca + MPEG audio file + Latin + + + 0 + As Aparências Enganam + MPEG audio file + Latin + + + 0 + Madalena + MPEG audio file + Latin + + + 0 + Maria Rosa + MPEG audio file + Latin + + + 0 + Aprendendo A Jogar + MPEG audio file + Latin + + + + + + + 42 + Milton Nascimento + + + 158 + 42 + Milton Nascimento Ao Vivo + + + 0 + Coração De Estudante + MPEG audio file + Latin + + + 0 + A Noite Do Meu Bem + MPEG audio file + Latin + + + 0 + Paisagem Na Janela + MPEG audio file + Latin + + + 0 + Cuitelinho + MPEG audio file + Latin + + + 0 + Caxangá + MPEG audio file + Latin + + + 0 + Nos Bailes Da Vida + MPEG audio file + Latin + + + 0 + Menestrel Das Alagoas + MPEG audio file + Latin + + + 0 + Brasil + MPEG audio file + Latin + + + 0 + Canção Do Novo Mundo + MPEG audio file + Latin + + + 0 + Um Gosto De Sol + MPEG audio file + Latin + + + 0 + Solar + MPEG audio file + Latin + + + 0 + Para Lennon E McCartney + MPEG audio file + Latin + + + 0 + Maria, Maria + MPEG audio file + Latin + + + + + 159 + 42 + Minas + + + 0 + Minas + MPEG audio file + Latin + + + 0 + Fé Cega, Faca Amolada + MPEG audio file + Latin + + + 0 + Beijo Partido + MPEG audio file + Latin + + + 0 + Saudade Dos Aviões Da Panair (Conversando No Bar) + MPEG audio file + Latin + + + 0 + Gran Circo + MPEG audio file + Latin + + + 0 + Ponta de Areia + MPEG audio file + Latin + + + 0 + Trastevere + MPEG audio file + Latin + + + 0 + Idolatrada + MPEG audio file + Latin + + + 0 + Leila (Venha Ser Feliz) + MPEG audio file + Latin + + + 0 + Paula E Bebeto + MPEG audio file + Latin + + + 0 + Simples + MPEG audio file + Latin + + + 0 + Norwegian Wood + MPEG audio file + Latin + + + 0 + Caso Você Queira Saber + MPEG audio file + Latin + + + + + + + 43 + A Cor Do Som + + + + 44 + Kid Abelha + + + + 45 + Sandra De Sá + + + + 46 + Jorge Ben + + + 122 + 46 + Jorge Ben Jor 25 Anos + + + 0 + Engenho De Dentro + MPEG audio file + Latin + + + 0 + Alcohol + MPEG audio file + Latin + + + 0 + Mama Africa + MPEG audio file + Latin + + + 0 + Salve Simpatia + MPEG audio file + Latin + + + 0 + W/Brasil (Chama O Síndico) + MPEG audio file + Latin + + + 0 + País Tropical + MPEG audio file + Latin + + + 0 + Os Alquimistas Estão Chegando + MPEG audio file + Latin + + + 0 + Charles Anjo 45 + MPEG audio file + Latin + + + 0 + Selassiê + MPEG audio file + Latin + + + 0 + Menina Sarará + MPEG audio file + Latin + + + 0 + Que Maravilha + MPEG audio file + Latin + + + 0 + Santa Clara Clareou + MPEG audio file + Latin + + + 0 + Filho Maravilha + MPEG audio file + Latin + + + 0 + Taj Mahal + MPEG audio file + Latin + + + + + + + 47 + Hermeto Pascoal + + + + 48 + Barão Vermelho + + + + 49 + Edson, DJ Marky & DJ Patife Featuring Fernanda Porto + + + + 50 + Metallica + + + 35 + 50 + Garage Inc. (Disc 1) + + + 0 + Free Speech For The Dumb + MPEG audio file + Metal + + + 0 + It's Electric + MPEG audio file + Metal + + + 0 + Sabbra Cadabra + MPEG audio file + Metal + + + 0 + Turn The Page + MPEG audio file + Metal + + + 0 + Die Die My Darling + MPEG audio file + Metal + + + 0 + Loverman + MPEG audio file + Metal + + + 0 + Mercyful Fate + MPEG audio file + Metal + + + 0 + Astronomy + MPEG audio file + Metal + + + 0 + Whiskey In The Jar + MPEG audio file + Metal + + + 0 + Tuesday's Gone + MPEG audio file + Metal + + + 0 + The More I See + MPEG audio file + Metal + + + + + 148 + 50 + Black Album + + + 0 + Enter Sandman + MPEG audio file + Metal + + + 0 + Sad But True + MPEG audio file + Metal + + + 0 + Holier Than Thou + MPEG audio file + Metal + + + 0 + The Unforgiven + MPEG audio file + Metal + + + 0 + Wherever I May Roam + MPEG audio file + Metal + + + 0 + Don't Tread On Me + MPEG audio file + Metal + + + 0 + Through The Never + MPEG audio file + Metal + + + 0 + Nothing Else Matters + MPEG audio file + Metal + + + 0 + Of Wolf And Man + MPEG audio file + Metal + + + 0 + The God That Failed + MPEG audio file + Metal + + + 0 + My Friend Of Misery + MPEG audio file + Metal + + + 0 + The Struggle Within + MPEG audio file + Metal + + + + + 149 + 50 + Garage Inc. (Disc 2) + + + 0 + Helpless + MPEG audio file + Metal + + + 0 + The Small Hours + MPEG audio file + Metal + + + 0 + The Wait + MPEG audio file + Metal + + + 0 + Crash Course In Brain Surgery + MPEG audio file + Metal + + + 0 + Last Caress/Green Hell + MPEG audio file + Metal + + + 0 + Am I Evil? + MPEG audio file + Metal + + + 0 + Blitzkrieg + MPEG audio file + Metal + + + 0 + Breadfan + MPEG audio file + Metal + + + 0 + The Prince + MPEG audio file + Metal + + + 0 + Stone Cold Crazy + MPEG audio file + Metal + + + 0 + So What + MPEG audio file + Metal + + + 0 + Killing Time + MPEG audio file + Metal + + + 0 + Overkill + MPEG audio file + Metal + + + 0 + Damage Case + MPEG audio file + Metal + + + 0 + Stone Dead Forever + MPEG audio file + Metal + + + 0 + Too Late Too Late + MPEG audio file + Metal + + + + + 150 + 50 + Kill 'Em All + + + 0 + Hit The Lights + MPEG audio file + Metal + + + 0 + The Four Horsemen + MPEG audio file + Metal + + + 0 + Motorbreath + MPEG audio file + Metal + + + 0 + Jump In The Fire + MPEG audio file + Metal + + + 0 + (Anesthesia) Pulling Teeth + MPEG audio file + Metal + + + 0 + Whiplash + MPEG audio file + Metal + + + 0 + Phantom Lord + MPEG audio file + Metal + + + 0 + No Remorse + MPEG audio file + Metal + + + 0 + Seek & Destroy + MPEG audio file + Metal + + + 0 + Metal Militia + MPEG audio file + Metal + + + + + 151 + 50 + Load + + + 0 + Ain't My Bitch + MPEG audio file + Metal + + + 0 + 2 X 4 + MPEG audio file + Metal + + + 0 + The House Jack Built + MPEG audio file + Metal + + + 0 + Until It Sleeps + MPEG audio file + Metal + + + 0 + King Nothing + MPEG audio file + Metal + + + 0 + Hero Of The Day + MPEG audio file + Metal + + + 0 + Bleeding Me + MPEG audio file + Metal + + + 0 + Cure + MPEG audio file + Metal + + + 0 + Poor Twisted Me + MPEG audio file + Metal + + + 0 + Wasted My Hate + MPEG audio file + Metal + + + 0 + Mama Said + MPEG audio file + Metal + + + 0 + Thorn Within + MPEG audio file + Metal + + + 0 + Ronnie + MPEG audio file + Metal + + + 0 + The Outlaw Torn + MPEG audio file + Metal + + + + + 152 + 50 + Master Of Puppets + + + 0 + Battery + MPEG audio file + Metal + + + 0 + Master Of Puppets + MPEG audio file + Metal + + + 0 + The Thing That Should Not Be + MPEG audio file + Metal + + + 0 + Welcome Home (Sanitarium) + MPEG audio file + Metal + + + 0 + Disposable Heroes + MPEG audio file + Metal + + + 0 + Leper Messiah + MPEG audio file + Metal + + + 0 + Orion + MPEG audio file + Metal + + + 0 + Damage Inc. + MPEG audio file + Metal + + + + + 153 + 50 + ReLoad + + + 0 + Fuel + MPEG audio file + Metal + + + 0 + The Memory Remains + MPEG audio file + Metal + + + 0 + Devil's Dance + MPEG audio file + Metal + + + 0 + The Unforgiven II + MPEG audio file + Metal + + + 0 + Better Than You + MPEG audio file + Metal + + + 0 + Slither + MPEG audio file + Metal + + + 0 + Carpe Diem Baby + MPEG audio file + Metal + + + 0 + Bad Seed + MPEG audio file + Metal + + + 0 + Where The Wild Things Are + MPEG audio file + Metal + + + 0 + Prince Charming + MPEG audio file + Metal + + + 0 + Low Man's Lyric + MPEG audio file + Metal + + + 0 + Attitude + MPEG audio file + Metal + + + 0 + Fixxxer + MPEG audio file + Metal + + + + + 154 + 50 + Ride The Lightning + + + 0 + Fight Fire With Fire + MPEG audio file + Metal + + + 0 + Ride The Lightning + MPEG audio file + Metal + + + 0 + For Whom The Bell Tolls + MPEG audio file + Metal + + + 0 + Fade To Black + MPEG audio file + Metal + + + 0 + Trapped Under Ice + MPEG audio file + Metal + + + 0 + Escape + MPEG audio file + Metal + + + 0 + Creeping Death + MPEG audio file + Metal + + + 0 + The Call Of Ktulu + MPEG audio file + Metal + + + + + 155 + 50 + St. Anger + + + 0 + Frantic + MPEG audio file + Metal + + + 0 + St. Anger + MPEG audio file + Metal + + + 0 + Some Kind Of Monster + MPEG audio file + Metal + + + 0 + Dirty Window + MPEG audio file + Metal + + + 0 + Invisible Kid + MPEG audio file + Metal + + + 0 + My World + MPEG audio file + Metal + + + 0 + Shoot Me Again + MPEG audio file + Metal + + + 0 + Sweet Amber + MPEG audio file + Metal + + + 0 + The Unnamed Feeling + MPEG audio file + Metal + + + 0 + Purify + MPEG audio file + Metal + + + 0 + All Within My Hands + MPEG audio file + Metal + + + + + 156 + 50 + ...And Justice For All + + + 0 + Blackened + MPEG audio file + Metal + + + 0 + ...And Justice For All + MPEG audio file + Metal + + + 0 + Eye Of The Beholder + MPEG audio file + Metal + + + 0 + One + MPEG audio file + Metal + + + 0 + The Shortest Straw + MPEG audio file + Metal + + + 0 + Harvester Of Sorrow + MPEG audio file + Metal + + + 0 + The Frayed Ends Of Sanity + MPEG audio file + Metal + + + 0 + To Live Is To Die + MPEG audio file + Metal + + + 0 + Dyers Eve + MPEG audio file + Metal + + + + + + + 51 + Queen + + + 36 + 51 + Greatest Hits II + + + 0 + A Kind Of Magic + MPEG audio file + Rock + + + 0 + Under Pressure + MPEG audio file + Rock + + + 0 + Radio GA GA + MPEG audio file + Rock + + + 0 + I Want It All + MPEG audio file + Rock + + + 0 + I Want To Break Free + MPEG audio file + Rock + + + 0 + Innuendo + MPEG audio file + Rock + + + 0 + It's A Hard Life + MPEG audio file + Rock + + + 0 + Breakthru + MPEG audio file + Rock + + + 0 + Who Wants To Live Forever + MPEG audio file + Rock + + + 0 + Headlong + MPEG audio file + Rock + + + 0 + The Miracle + MPEG audio file + Rock + + + 0 + I'm Going Slightly Mad + MPEG audio file + Rock + + + 0 + The Invisible Man + MPEG audio file + Rock + + + 0 + Hammer To Fall + MPEG audio file + Rock + + + 0 + Friends Will Be Friends + MPEG audio file + Rock + + + 0 + The Show Must Go On + MPEG audio file + Rock + + + 0 + One Vision + MPEG audio file + Rock + + + + + 185 + 51 + Greatest Hits I + + + 0 + Bohemian Rhapsody + MPEG audio file + Rock + + + 0 + Another One Bites The Dust + MPEG audio file + Rock + + + 0 + Killer Queen + MPEG audio file + Rock + + + 0 + Fat Bottomed Girls + MPEG audio file + Rock + + + 0 + Bicycle Race + MPEG audio file + Rock + + + 0 + You're My Best Friend + MPEG audio file + Rock + + + 0 + Don't Stop Me Now + MPEG audio file + Rock + + + 0 + Save Me + MPEG audio file + Rock + + + 0 + Crazy Little Thing Called Love + MPEG audio file + Rock + + + 0 + Somebody To Love + MPEG audio file + Rock + + + 0 + Now I'm Here + MPEG audio file + Rock + + + 0 + Good Old-Fashioned Lover Boy + MPEG audio file + Rock + + + 0 + Play The Game + MPEG audio file + Rock + + + 0 + Flash + MPEG audio file + Rock + + + 0 + Seven Seas Of Rhye + MPEG audio file + Rock + + + 0 + We Will Rock You + MPEG audio file + Rock + + + 0 + We Are The Champions + MPEG audio file + Rock + + + + + 186 + 51 + News Of The World + + + 0 + We Will Rock You + MPEG audio file + Rock + + + 0 + We Are The Champions + MPEG audio file + Rock + + + 0 + Sheer Heart Attack + MPEG audio file + Rock + + + 0 + All Dead, All Dead + MPEG audio file + Rock + + + 0 + Spread Your Wings + MPEG audio file + Rock + + + 0 + Fight From The Inside + MPEG audio file + Rock + + + 0 + Get Down, Make Love + MPEG audio file + Rock + + + 0 + Sleep On The Sidewalk + MPEG audio file + Rock + + + 0 + Who Needs You + MPEG audio file + Rock + + + 0 + It's Late + MPEG audio file + Rock + + + 0 + My Melancholy Blues + MPEG audio file + Rock + + + + + + + 52 + Kiss + + + 37 + 52 + Greatest Kiss + + + 0 + Detroit Rock City + MPEG audio file + Rock + + + 0 + Black Diamond + MPEG audio file + Rock + + + 0 + Hard Luck Woman + MPEG audio file + Rock + + + 0 + Sure Know Something + MPEG audio file + Rock + + + 0 + Love Gun + MPEG audio file + Rock + + + 0 + Deuce + MPEG audio file + Rock + + + 0 + Goin' Blind + MPEG audio file + Rock + + + 0 + Shock Me + MPEG audio file + Rock + + + 0 + Do You Love Me + MPEG audio file + Rock + + + 0 + She + MPEG audio file + Rock + + + 0 + I Was Made For Loving You + MPEG audio file + Rock + + + 0 + Shout It Out Loud + MPEG audio file + Rock + + + 0 + God Of Thunder + MPEG audio file + Rock + + + 0 + Calling Dr. Love + MPEG audio file + Rock + + + 0 + Beth + MPEG audio file + Rock + + + 0 + Strutter + MPEG audio file + Rock + + + 0 + Rock And Roll All Nite + MPEG audio file + Rock + + + 0 + Cold Gin + MPEG audio file + Rock + + + 0 + Plaster Caster + MPEG audio file + Rock + + + 0 + God Gave Rock 'n' Roll To You + MPEG audio file + Rock + + + + + 126 + 52 + Unplugged [Live] + + + 0 + Comin' Home + MPEG audio file + Rock + + + 0 + Plaster Caster + MPEG audio file + Rock + + + 0 + Goin' Blind + MPEG audio file + Rock + + + 0 + Do You Love Me + MPEG audio file + Rock + + + 0 + Domino + MPEG audio file + Rock + + + 0 + Sure Know Something + MPEG audio file + Rock + + + 0 + A World Without Heroes + MPEG audio file + Rock + + + 0 + Rock Bottom + MPEG audio file + Rock + + + 0 + See You Tonight + MPEG audio file + Rock + + + 0 + I Still Love You + MPEG audio file + Rock + + + 0 + Every Time I Look At You + MPEG audio file + Rock + + + 0 + 2,000 Man + MPEG audio file + Rock + + + 0 + Beth + MPEG audio file + Rock + + + 0 + Nothin' To Lose + MPEG audio file + Rock + + + 0 + Rock And Roll All Nite + MPEG audio file + Rock + + + + + + + 53 + Spyro Gyra + + + 38 + 53 + Heart of the Night + + + 0 + Heart of the Night + MPEG audio file + Jazz + + + 0 + De La Luz + MPEG audio file + Jazz + + + 0 + Westwood Moon + MPEG audio file + Jazz + + + 0 + Midnight + MPEG audio file + Jazz + + + 0 + Playtime + MPEG audio file + Jazz + + + 0 + Surrender + MPEG audio file + Jazz + + + 0 + Valentino's + MPEG audio file + Jazz + + + 0 + Believe + MPEG audio file + Jazz + + + 0 + As We Sleep + MPEG audio file + Jazz + + + 0 + When Evening Falls + MPEG audio file + Jazz + + + 0 + J Squared + MPEG audio file + Jazz + + + 0 + Best Thing + MPEG audio file + Jazz + + + + + 204 + 53 + Morning Dance + + + 0 + Morning Dance + MPEG audio file + Jazz + + + 0 + Jubilee + MPEG audio file + Jazz + + + 0 + Rasul + MPEG audio file + Jazz + + + 0 + Song For Lorraine + MPEG audio file + Jazz + + + 0 + Starburst + MPEG audio file + Jazz + + + 0 + Heliopolis + MPEG audio file + Jazz + + + 0 + It Doesn't Matter + MPEG audio file + Jazz + + + 0 + Little Linda + MPEG audio file + Jazz + + + 0 + End Of Romanticism + MPEG audio file + Jazz + + + + + + + 54 + Green Day + + + 39 + 54 + International Superhits + + + 0 + Maria + MPEG audio file + Alternative & Punk + + + 0 + Poprocks And Coke + MPEG audio file + Alternative & Punk + + + 0 + Longview + MPEG audio file + Alternative & Punk + + + 0 + Welcome To Paradise + MPEG audio file + Alternative & Punk + + + 0 + Basket Case + MPEG audio file + Alternative & Punk + + + 0 + When I Come Around + MPEG audio file + Alternative & Punk + + + 0 + She + MPEG audio file + Alternative & Punk + + + 0 + J.A.R. (Jason Andrew Relva) + MPEG audio file + Alternative & Punk + + + 0 + Geek Stink Breath + MPEG audio file + Alternative & Punk + + + 0 + Brain Stew + MPEG audio file + Alternative & Punk + + + 0 + Jaded + MPEG audio file + Alternative & Punk + + + 0 + Walking Contradiction + MPEG audio file + Alternative & Punk + + + 0 + Stuck With Me + MPEG audio file + Alternative & Punk + + + 0 + Hitchin' A Ride + MPEG audio file + Alternative & Punk + + + 0 + Good Riddance (Time Of Your Life) + MPEG audio file + Alternative & Punk + + + 0 + Redundant + MPEG audio file + Alternative & Punk + + + 0 + Nice Guys Finish Last + MPEG audio file + Alternative & Punk + + + 0 + Minority + MPEG audio file + Alternative & Punk + + + 0 + Warning + MPEG audio file + Alternative & Punk + + + 0 + Waiting + MPEG audio file + Alternative & Punk + + + 0 + Macy's Day Parade + MPEG audio file + Alternative & Punk + + + + + 89 + 54 + American Idiot + + + 0 + American Idiot + MPEG audio file + Alternative & Punk + + + 0 + Jesus Of Suburbia / City Of The Damned / I Don't Care / Dearly Beloved / Tales Of Another Broken Home + MPEG audio file + Alternative & Punk + + + 0 + Holiday + MPEG audio file + Alternative & Punk + + + 0 + Boulevard Of Broken Dreams + MPEG audio file + Alternative & Punk + + + 0 + Are We The Waiting + MPEG audio file + Alternative & Punk + + + 0 + St. Jimmy + MPEG audio file + Alternative & Punk + + + 0 + Give Me Novacaine + MPEG audio file + Alternative & Punk + + + 0 + She's A Rebel + MPEG audio file + Alternative & Punk + + + 0 + Extraordinary Girl + MPEG audio file + Alternative & Punk + + + 0 + Letterbomb + MPEG audio file + Alternative & Punk + + + 0 + Wake Me Up When September Ends + MPEG audio file + Alternative & Punk + + + 0 + Homecoming / The Death Of St. Jimmy / East 12th St. / Nobody Likes You / Rock And Roll Girlfriend / We're Coming Home Again + MPEG audio file + Alternative & Punk + + + 0 + Whatsername + MPEG audio file + Alternative & Punk + + + + + + + 55 + David Coverdale + + + 40 + 55 + Into The Light + + + 0 + Into The Light + MPEG audio file + Rock + + + 0 + River Song + MPEG audio file + Rock + + + 0 + She Give Me ... + MPEG audio file + Rock + + + 0 + Don't You Cry + MPEG audio file + Rock + + + 0 + Love Is Blind + MPEG audio file + Rock + + + 0 + Slave + MPEG audio file + Rock + + + 0 + Cry For Love + MPEG audio file + Rock + + + 0 + Living On Love + MPEG audio file + Rock + + + 0 + Midnight Blue + MPEG audio file + Rock + + + 0 + Too Many Tears + MPEG audio file + Rock + + + 0 + Don't Lie To Me + MPEG audio file + Rock + + + 0 + Wherever You May Go + MPEG audio file + Rock + + + + + + + 56 + Gonzaguinha + + + 41 + 56 + Meus Momentos + + + 0 + Grito De Alerta + MPEG audio file + Latin + + + 0 + Não Dá Mais Pra Segurar (Explode Coração) + MPEG audio file + Latin + + + 0 + Começaria Tudo Outra Vez + MPEG audio file + Latin + + + 0 + O Que É O Que É ? + MPEG audio file + Latin + + + 0 + Sangrando + MPEG audio file + Latin + + + 0 + Diga Lá, Coração + MPEG audio file + Latin + + + 0 + Lindo Lago Do Amor + MPEG audio file + Latin + + + 0 + Eu Apenas Queria Que Voçê Soubesse + MPEG audio file + Latin + + + 0 + Com A Perna No Mundo + MPEG audio file + Latin + + + 0 + E Vamos À Luta + MPEG audio file + Latin + + + 0 + Um Homem Também Chora (Guerreiro Menino) + MPEG audio file + Latin + + + 0 + Comportamento Geral + MPEG audio file + Latin + + + 0 + Ponto De Interrogação + MPEG audio file + Latin + + + 0 + Espere Por Mim, Morena + MPEG audio file + Latin + + + + + + + 57 + Os Mutantes + + + 42 + 57 + Minha História + + + 0 + Balada Do Louco + MPEG audio file + Alternative & Punk + + + 0 + Ando Meio Desligado + MPEG audio file + Alternative & Punk + + + 0 + Top Top + MPEG audio file + Alternative & Punk + + + 0 + Baby + MPEG audio file + Alternative & Punk + + + 0 + A E O Z + MPEG audio file + Alternative & Punk + + + 0 + Panis Et Circenses + MPEG audio file + Alternative & Punk + + + 0 + Chão De Estrelas + MPEG audio file + Alternative & Punk + + + 0 + Vida De Cachorro + MPEG audio file + Alternative & Punk + + + 0 + Bat Macumba + MPEG audio file + Alternative & Punk + + + 0 + Desculpe Babe + MPEG audio file + Alternative & Punk + + + 0 + Rita Lee + MPEG audio file + Alternative & Punk + + + 0 + Posso Perder Minha Mulher, Minha Mãe, Desde Que Eu Tenha O Rock And Roll + MPEG audio file + Alternative & Punk + + + 0 + Banho De Lua + MPEG audio file + Alternative & Punk + + + 0 + Meu Refrigerador Não Funciona + MPEG audio file + Alternative & Punk + + + + + + + 58 + Deep Purple + + + 43 + 58 + MK III The Final Concerts [Disc 1] + + + 0 + Burn + MPEG audio file + Rock + + + 0 + Stormbringer + MPEG audio file + Rock + + + 0 + Gypsy + MPEG audio file + Rock + + + 0 + Lady Double Dealer + MPEG audio file + Rock + + + 0 + Mistreated + MPEG audio file + Rock + + + 0 + Smoke On The Water + MPEG audio file + Rock + + + 0 + You Fool No One + MPEG audio file + Rock + + + + + 50 + 58 + The Final Concerts (Disc 2) + + + 0 + Space Truckin' + MPEG audio file + Rock + + + 0 + Going Down / Highway Star + MPEG audio file + Rock + + + 0 + Mistreated (Alternate Version) + MPEG audio file + Rock + + + 0 + You Fool No One (Alternate Version) + MPEG audio file + Rock + + + + + 58 + 58 + Come Taste The Band + + + 0 + Comin' Home + MPEG audio file + Rock + + + 0 + Lady Luck + MPEG audio file + Rock + + + 0 + Gettin' Tighter + MPEG audio file + Rock + + + 0 + Dealer + MPEG audio file + Rock + + + 0 + I Need Love + MPEG audio file + Rock + + + 0 + Drifter + MPEG audio file + Rock + + + 0 + Love Child + MPEG audio file + Rock + + + 0 + This Time Around / Owed to 'G' [Instrumental] + MPEG audio file + Rock + + + 0 + You Keep On Moving + MPEG audio file + Rock + + + + + 59 + 58 + Deep Purple In Rock + + + 0 + Speed King + MPEG audio file + Rock + + + 0 + Bloodsucker + MPEG audio file + Rock + + + 0 + Child In Time + MPEG audio file + Rock + + + 0 + Flight Of The Rat + MPEG audio file + Rock + + + 0 + Into The Fire + MPEG audio file + Rock + + + 0 + Living Wreck + MPEG audio file + Rock + + + 0 + Hard Lovin' Man + MPEG audio file + Rock + + + + + 60 + 58 + Fireball + + + 0 + Fireball + MPEG audio file + Rock + + + 0 + No No No + MPEG audio file + Rock + + + 0 + Strange Kind Of Woman + MPEG audio file + Rock + + + 0 + Anyone's Daughter + MPEG audio file + Rock + + + 0 + The Mule + MPEG audio file + Rock + + + 0 + Fools + MPEG audio file + Rock + + + 0 + No One Came + MPEG audio file + Rock + + + + + 61 + 58 + Knocking at Your Back Door: The Best Of Deep Purple in the 80's + + + 0 + Knocking At Your Back Door + MPEG audio file + Rock + + + 0 + Bad Attitude + MPEG audio file + Rock + + + 0 + Child In Time (Son Of Aleric - Instrumental) + MPEG audio file + Rock + + + 0 + Nobody's Home + MPEG audio file + Rock + + + 0 + Black Night + MPEG audio file + Rock + + + 0 + Perfect Strangers + MPEG audio file + Rock + + + 0 + The Unwritten Law + MPEG audio file + Rock + + + 0 + Call Of The Wild + MPEG audio file + Rock + + + 0 + Hush + MPEG audio file + Rock + + + 0 + Smoke On The Water + MPEG audio file + Rock + + + 0 + Space Trucking + MPEG audio file + Rock + + + + + 62 + 58 + Machine Head + + + 0 + Highway Star + MPEG audio file + Rock + + + 0 + Maybe I'm A Leo + MPEG audio file + Rock + + + 0 + Pictures Of Home + MPEG audio file + Rock + + + 0 + Never Before + MPEG audio file + Rock + + + 0 + Smoke On The Water + MPEG audio file + Rock + + + 0 + Lazy + MPEG audio file + Rock + + + 0 + Space Truckin' + MPEG audio file + Rock + + + + + 63 + 58 + Purpendicular + + + 0 + Vavoom : Ted The Mechanic + MPEG audio file + Rock + + + 0 + Loosen My Strings + MPEG audio file + Rock + + + 0 + Soon Forgotten + MPEG audio file + Rock + + + 0 + Sometimes I Feel Like Screaming + MPEG audio file + Rock + + + 0 + Cascades : I'm Not Your Lover + MPEG audio file + Rock + + + 0 + The Aviator + MPEG audio file + Rock + + + 0 + Rosa's Cantina + MPEG audio file + Rock + + + 0 + A Castle Full Of Rascals + MPEG audio file + Rock + + + 0 + A Touch Away + MPEG audio file + Rock + + + 0 + Hey Cisco + MPEG audio file + Rock + + + 0 + Somebody Stole My Guitar + MPEG audio file + Rock + + + 0 + The Purpendicular Waltz + MPEG audio file + Rock + + + + + 64 + 58 + Slaves And Masters + + + 0 + King Of Dreams + MPEG audio file + Rock + + + 0 + The Cut Runs Deep + MPEG audio file + Rock + + + 0 + Fire In The Basement + MPEG audio file + Rock + + + 0 + Truth Hurts + MPEG audio file + Rock + + + 0 + Breakfast In Bed + MPEG audio file + Rock + + + 0 + Love Conquers All + MPEG audio file + Rock + + + 0 + Fortuneteller + MPEG audio file + Rock + + + 0 + Too Much Is Not Enough + MPEG audio file + Rock + + + 0 + Wicked Ways + MPEG audio file + Rock + + + + + 65 + 58 + Stormbringer + + + 0 + Stormbringer + MPEG audio file + Rock + + + 0 + Love Don't Mean a Thing + MPEG audio file + Rock + + + 0 + Holy Man + MPEG audio file + Rock + + + 0 + Hold On + MPEG audio file + Rock + + + 0 + Lady Double Dealer + MPEG audio file + Rock + + + 0 + You Can't Do it Right (With the One You Love) + MPEG audio file + Rock + + + 0 + High Ball Shooter + MPEG audio file + Rock + + + 0 + The Gypsy + MPEG audio file + Rock + + + 0 + Soldier Of Fortune + MPEG audio file + Rock + + + + + 66 + 58 + The Battle Rages On + + + 0 + The Battle Rages On + MPEG audio file + Rock + + + 0 + Lick It Up + MPEG audio file + Rock + + + 0 + Anya + MPEG audio file + Rock + + + 0 + Talk About Love + MPEG audio file + Rock + + + 0 + Time To Kill + MPEG audio file + Rock + + + 0 + Ramshackle Man + MPEG audio file + Rock + + + 0 + A Twist In The Tail + MPEG audio file + Rock + + + 0 + Nasty Piece Of Work + MPEG audio file + Rock + + + 0 + Solitaire + MPEG audio file + Rock + + + 0 + One Man's Meat + MPEG audio file + Rock + + + + + + + 59 + Santana + + + 46 + 59 + Supernatural + + + 0 + (Da Le) Yaleo + MPEG audio file + Rock + + + 0 + Love Of My Life + MPEG audio file + Rock + + + 0 + Put Your Lights On + MPEG audio file + Rock + + + 0 + Africa Bamba + MPEG audio file + Rock + + + 0 + Smooth + MPEG audio file + Rock + + + 0 + Do You Like The Way + MPEG audio file + Rock + + + 0 + Maria Maria + MPEG audio file + Rock + + + 0 + Migra + MPEG audio file + Rock + + + 0 + Corazon Espinado + MPEG audio file + Rock + + + 0 + Wishing It Was + MPEG audio file + Rock + + + 0 + El Farol + MPEG audio file + Rock + + + 0 + Primavera + MPEG audio file + Rock + + + 0 + The Calling + MPEG audio file + Rock + + + + + 197 + 59 + Santana - As Years Go By + + + 0 + Jingo + MPEG audio file + Rock + + + 0 + El Corazon Manda + MPEG audio file + Rock + + + 0 + La Puesta Del Sol + MPEG audio file + Rock + + + 0 + Persuasion + MPEG audio file + Rock + + + 0 + As The Years Go by + MPEG audio file + Rock + + + 0 + Soul Sacrifice + MPEG audio file + Rock + + + 0 + Fried Neckbones And Home Fries + MPEG audio file + Rock + + + 0 + Santana Jam + MPEG audio file + Rock + + + + + 198 + 59 + Santana Live + + + 0 + Evil Ways + MPEG audio file + Rock + + + 0 + We've Got To Get Together/Jingo + MPEG audio file + Rock + + + 0 + Rock Me + MPEG audio file + Rock + + + 0 + Just Ain't Good Enough + MPEG audio file + Rock + + + 0 + Funky Piano + MPEG audio file + Rock + + + 0 + The Way You Do To Mer + MPEG audio file + Rock + + + + + + + 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 + + + 48 + 68 + The Essential Miles Davis [Disc 1] + + + 0 + Now's The Time + MPEG audio file + Jazz + + + 0 + Jeru + MPEG audio file + Jazz + + + 0 + Compulsion + MPEG audio file + Jazz + + + 0 + Tempus Fugit + MPEG audio file + Jazz + + + 0 + Walkin' + MPEG audio file + Jazz + + + 0 + 'Round Midnight + MPEG audio file + Jazz + + + 0 + Bye Bye Blackbird + MPEG audio file + Jazz + + + 0 + New Rhumba + MPEG audio file + Jazz + + + 0 + Generique + MPEG audio file + Jazz + + + 0 + Summertime + MPEG audio file + Jazz + + + 0 + So What + MPEG audio file + Jazz + + + 0 + The Pan Piper + MPEG audio file + Jazz + + + 0 + Someday My Prince Will Come + MPEG audio file + Jazz + + + + + 49 + 68 + The Essential Miles Davis [Disc 2] + + + 0 + My Funny Valentine (Live) + MPEG audio file + Jazz + + + 0 + E.S.P. + MPEG audio file + Jazz + + + 0 + Nefertiti + MPEG audio file + Jazz + + + 0 + Petits Machins (Little Stuff) + MPEG audio file + Jazz + + + 0 + Miles Runs The Voodoo Down + MPEG audio file + Jazz + + + 0 + Little Church (Live) + MPEG audio file + Jazz + + + 0 + Black Satin + MPEG audio file + Jazz + + + 0 + Jean Pierre (Live) + MPEG audio file + Jazz + + + 0 + Time After Time + MPEG audio file + Jazz + + + 0 + Portia + MPEG audio file + Jazz + + + + + 157 + 68 + Miles Ahead + + + 0 + Springsville + MPEG audio file + Jazz + + + 0 + The Maids Of Cadiz + MPEG audio file + Jazz + + + 0 + The Duke + MPEG audio file + Jazz + + + 0 + My Ship + MPEG audio file + Jazz + + + 0 + Miles Ahead + MPEG audio file + Jazz + + + 0 + Blues For Pablo + MPEG audio file + Jazz + + + 0 + New Rhumba + MPEG audio file + Jazz + + + 0 + The Meaning Of The Blues + MPEG audio file + Jazz + + + 0 + Lament + MPEG audio file + Jazz + + + 0 + I Don't Wanna Be Kissed (By Anyone But You) + MPEG audio file + Jazz + + + 0 + Springsville (Alternate Take) + MPEG audio file + Jazz + + + 0 + Blues For Pablo (Alternate Take) + MPEG audio file + Jazz + + + 0 + The Meaning Of The Blues/Lament (Alternate Take) + MPEG audio file + Jazz + + + 0 + I Don't Wanna Be Kissed (By Anyone But You) (Alternate Take) + MPEG audio file + Jazz + + + + + + + 69 + Gene Krupa + + + 51 + 69 + Up An' Atom + + + 0 + Jeepers Creepers + MPEG audio file + Jazz + + + 0 + Blue Rythm Fantasy + MPEG audio file + Jazz + + + 0 + Drum Boogie + MPEG audio file + Jazz + + + 0 + Let Me Off Uptown + MPEG audio file + Jazz + + + 0 + Leave Us Leap + MPEG audio file + Jazz + + + 0 + Opus No.1 + MPEG audio file + Jazz + + + 0 + Boogie Blues + MPEG audio file + Jazz + + + 0 + How High The Moon + MPEG audio file + Jazz + + + 0 + Disc Jockey Jump + MPEG audio file + Jazz + + + 0 + Up An' Atom + MPEG audio file + Jazz + + + 0 + Bop Boogie + MPEG audio file + Jazz + + + 0 + Lemon Drop + MPEG audio file + Jazz + + + 0 + Coronation Drop + MPEG audio file + Jazz + + + 0 + Overtime + MPEG audio file + Jazz + + + 0 + Imagination + MPEG audio file + Jazz + + + 0 + Don't Take Your Love From Me + MPEG audio file + Jazz + + + 0 + Midget + MPEG audio file + Jazz + + + 0 + I'm Coming Virginia + MPEG audio file + Jazz + + + 0 + Payin' Them Dues Blues + MPEG audio file + Jazz + + + 0 + Jungle Drums + MPEG audio file + Jazz + + + 0 + Showcase + MPEG audio file + Jazz + + + 0 + Swedish Schnapps + MPEG audio file + Jazz + + + + + + + 70 + Toquinho & Vinícius + + + 52 + 70 + Vinícius De Moraes - Sem Limite + + + 0 + Samba Da Bênção + MPEG audio file + Bossa Nova + + + 0 + Pot-Pourri N.º 4 + MPEG audio file + Bossa Nova + + + 0 + Onde Anda Você + MPEG audio file + Bossa Nova + + + 0 + Samba Da Volta + MPEG audio file + Bossa Nova + + + 0 + Canto De Ossanha + MPEG audio file + Bossa Nova + + + 0 + Pot-Pourri N.º 5 + MPEG audio file + Bossa Nova + + + 0 + Formosa + MPEG audio file + Bossa Nova + + + 0 + Como É Duro Trabalhar + MPEG audio file + Bossa Nova + + + 0 + Minha Namorada + MPEG audio file + Bossa Nova + + + 0 + Por Que Será + MPEG audio file + Bossa Nova + + + 0 + Berimbau + MPEG audio file + Bossa Nova + + + 0 + Deixa + MPEG audio file + Bossa Nova + + + 0 + Pot-Pourri N.º 2 + MPEG audio file + Bossa Nova + + + 0 + Samba Em Prelúdio + MPEG audio file + Bossa Nova + + + 0 + Carta Ao Tom 74 + MPEG audio file + Bossa Nova + + + + + + + 71 + Vinícius De Moraes & Baden Powell + + + + 72 + Vinícius De Moraes + + + 247 + 72 + Vinicius De Moraes + + + 0 + Pela Luz Dos Olhos Teus + MPEG audio file + Latin + + + 0 + A Bencao E Outros + MPEG audio file + Latin + + + 0 + Tudo Na Mais Santa Paz + MPEG audio file + Latin + + + 0 + O Velho E Aflor + MPEG audio file + Latin + + + 0 + Cotidiano N 2 + MPEG audio file + Latin + + + 0 + Adeus + MPEG audio file + Latin + + + 0 + Samba Pra Endrigo + MPEG audio file + Latin + + + 0 + So Por Amor + MPEG audio file + Latin + + + 0 + Meu Pranto Rolou + MPEG audio file + Latin + + + 0 + Mulher Carioca + MPEG audio file + Latin + + + 0 + Um Homem Chamado Alfredo + MPEG audio file + Latin + + + 0 + Samba Do Jato + MPEG audio file + Latin + + + 0 + Oi, La + MPEG audio file + Latin + + + 0 + Vinicius, Poeta Do Encontro + MPEG audio file + Latin + + + 0 + Soneto Da Separacao + MPEG audio file + Latin + + + + + + + 73 + Vinícius E Qurteto Em Cy + + + + 74 + Vinícius E Odette Lara + + + + 75 + Vinicius, Toquinho & Quarteto Em Cy + + + + 76 + Creedence Clearwater Revival + + + 54 + 76 + Chronicle, Vol. 1 + + + 0 + Susie Q + MPEG audio file + Rock + + + 0 + I Put A Spell On You + MPEG audio file + Rock + + + 0 + Proud Mary + MPEG audio file + Rock + + + 0 + Bad Moon Rising + MPEG audio file + Rock + + + 0 + Lodi + MPEG audio file + Rock + + + 0 + Green River + MPEG audio file + Rock + + + 0 + Commotion + MPEG audio file + Rock + + + 0 + Down On The Corner + MPEG audio file + Rock + + + 0 + Fortunate Son + MPEG audio file + Rock + + + 0 + Travelin' Band + MPEG audio file + Rock + + + 0 + Who'll Stop The Rain + MPEG audio file + Rock + + + 0 + Up Around The Bend + MPEG audio file + Rock + + + 0 + Run Through The Jungle + MPEG audio file + Rock + + + 0 + Lookin' Out My Back Door + MPEG audio file + Rock + + + 0 + Long As I Can See The Light + MPEG audio file + Rock + + + 0 + I Heard It Through The Grapevine + MPEG audio file + Rock + + + 0 + Have You Ever Seen The Rain? + MPEG audio file + Rock + + + 0 + Hey Tonight + MPEG audio file + Rock + + + 0 + Sweet Hitch-Hiker + MPEG audio file + Rock + + + 0 + Someday Never Comes + MPEG audio file + Rock + + + + + 55 + 76 + Chronicle, Vol. 2 + + + 0 + Walking On The Water + MPEG audio file + Rock + + + 0 + Suzie-Q, Pt. 2 + MPEG audio file + Rock + + + 0 + Born On The Bayou + MPEG audio file + Rock + + + 0 + Good Golly Miss Molly + MPEG audio file + Rock + + + 0 + Tombstone Shadow + MPEG audio file + Rock + + + 0 + Wrote A Song For Everyone + MPEG audio file + Rock + + + 0 + Night Time Is The Right Time + MPEG audio file + Rock + + + 0 + Cotton Fields + MPEG audio file + Rock + + + 0 + It Came Out Of The Sky + MPEG audio file + Rock + + + 0 + Don't Look Now + MPEG audio file + Rock + + + 0 + The Midnight Special + MPEG audio file + Rock + + + 0 + Before You Accuse Me + MPEG audio file + Rock + + + 0 + My Baby Left Me + MPEG audio file + Rock + + + 0 + Pagan Baby + MPEG audio file + Rock + + + 0 + (Wish I Could) Hideaway + MPEG audio file + Rock + + + 0 + It's Just A Thought + MPEG audio file + Rock + + + 0 + Molina + MPEG audio file + Rock + + + 0 + Born To Move + MPEG audio file + Rock + + + 0 + Lookin' For A Reason + MPEG audio file + Rock + + + 0 + Hello Mary Lou + MPEG audio file + Rock + + + + + + + 77 + Cássia Eller + + + 56 + 77 + Cássia Eller - Coleção Sem Limite [Disc 2] + + + 0 + Gatas Extraordinárias + MPEG audio file + Latin + + + 0 + Brasil + MPEG audio file + Latin + + + 0 + Eu Sou Neguinha (Ao Vivo) + MPEG audio file + Latin + + + 0 + Geração Coca-Cola (Ao Vivo) + MPEG audio file + Latin + + + 0 + Lanterna Dos Afogados + MPEG audio file + Latin + + + 0 + Coroné Antonio Bento + MPEG audio file + Latin + + + 0 + Você Passa, Eu Acho Graça (Ao Vivo) + MPEG audio file + Latin + + + 0 + Meu Mundo Fica Completo (Com Você) + MPEG audio file + Latin + + + 0 + 1° De Julho + MPEG audio file + Latin + + + 0 + Música Urbana 2 + MPEG audio file + Latin + + + 0 + Vida Bandida (Ao Vivo) + MPEG audio file + Latin + + + 0 + Palavras Ao Vento + MPEG audio file + Latin + + + 0 + Não Sei O Que Eu Quero Da Vida + MPEG audio file + Latin + + + 0 + Woman Is The Nigger Of The World (Ao Vivo) + MPEG audio file + Latin + + + 0 + Juventude Transviada (Ao Vivo) + MPEG audio file + Latin + + + + + 57 + 77 + Cássia Eller - Sem Limite [Disc 1] + + + 0 + Malandragem + MPEG audio file + Latin + + + 0 + O Segundo Sol + MPEG audio file + Latin + + + 0 + Smells Like Teen Spirit (Ao Vivo) + MPEG audio file + Latin + + + 0 + E.C.T. + MPEG audio file + Latin + + + 0 + Todo Amor Que Houver Nesta Vida + MPEG audio file + Latin + + + 0 + Metrô. Linha 743 + MPEG audio file + Latin + + + 0 + Nós (Ao Vivo) + MPEG audio file + Latin + + + 0 + Na Cadência Do Samba + MPEG audio file + Latin + + + 0 + Admirável Gado Novo + MPEG audio file + Latin + + + 0 + Eleanor Rigby + MPEG audio file + Latin + + + 0 + Socorro + MPEG audio file + Latin + + + 0 + Blues Da Piedade + MPEG audio file + Latin + + + 0 + Rubens + MPEG audio file + Latin + + + 0 + Não Deixe O Samba Morrer - Cassia Eller e Alcione + MPEG audio file + Latin + + + 0 + Mis Penas Lloraba Yo (Ao Vivo) Soy Gitano (Tangos) + MPEG audio file + Latin + + + + + + + 78 + Def Leppard + + + 67 + 78 + Vault: Def Leppard's Greatest Hits + + + 0 + Pour Some Sugar On Me + MPEG audio file + Rock + + + 0 + Photograph + MPEG audio file + Rock + + + 0 + Love Bites + MPEG audio file + Rock + + + 0 + Let's Get Rocked + MPEG audio file + Rock + + + 0 + Two Steps Behind [Acoustic Version] + MPEG audio file + Rock + + + 0 + Animal + MPEG audio file + Rock + + + 0 + Heaven Is + MPEG audio file + Rock + + + 0 + Rocket + MPEG audio file + Rock + + + 0 + When Love & Hate Collide + MPEG audio file + Rock + + + 0 + Action + MPEG audio file + Rock + + + 0 + Make Love Like A Man + MPEG audio file + Rock + + + 0 + Armageddon It + MPEG audio file + Rock + + + 0 + Have You Ever Needed Someone So Bad + MPEG audio file + Rock + + + 0 + Rock Of Ages + MPEG audio file + Rock + + + 0 + Hysteria + MPEG audio file + Rock + + + 0 + Bringin' On The Heartbreak + MPEG audio file + Rock + + + + + + + 79 + Dennis Chambers + + + 68 + 79 + Outbreak + + + 0 + Roll Call + MPEG audio file + Jazz + + + 0 + Otay + MPEG audio file + Jazz + + + 0 + Groovus Interruptus + MPEG audio file + Jazz + + + 0 + Paris On Mine + MPEG audio file + Jazz + + + 0 + In Time + MPEG audio file + Jazz + + + 0 + Plan B + MPEG audio file + Jazz + + + 0 + Outbreak + MPEG audio file + Jazz + + + 0 + Baltimore, DC + MPEG audio file + Jazz + + + 0 + Talkin Loud and Saying Nothin + MPEG audio file + Jazz + + + + + + + 80 + Djavan + + + 69 + 80 + Djavan Ao Vivo - Vol. 02 + + + 0 + Pétala + MPEG audio file + Latin + + + 0 + Meu Bem-Querer + MPEG audio file + Latin + + + 0 + Cigano + MPEG audio file + Latin + + + 0 + Boa Noite + MPEG audio file + Latin + + + 0 + Fato Consumado + MPEG audio file + Latin + + + 0 + Faltando Um Pedaço + MPEG audio file + Latin + + + 0 + Álibi + MPEG audio file + Latin + + + 0 + Esquinas + MPEG audio file + Latin + + + 0 + Se... + MPEG audio file + Latin + + + 0 + Eu Te Devoro + MPEG audio file + Latin + + + 0 + Lilás + MPEG audio file + Latin + + + 0 + Acelerou + MPEG audio file + Latin + + + 0 + Um Amor Puro + MPEG audio file + Latin + + + + + 70 + 80 + Djavan Ao Vivo - Vol. 1 + + + 0 + Samurai + MPEG audio file + Latin + + + 0 + Nem Um Dia + MPEG audio file + Latin + + + 0 + Oceano + MPEG audio file + Latin + + + 0 + Açai + MPEG audio file + Latin + + + 0 + Serrado + MPEG audio file + Latin + + + 0 + Flor De Lis + MPEG audio file + Latin + + + 0 + Amar É Tudo + MPEG audio file + Latin + + + 0 + Azul + MPEG audio file + Latin + + + 0 + Seduzir + MPEG audio file + Latin + + + 0 + A Carta + MPEG audio file + Latin + + + 0 + Sina + MPEG audio file + Latin + + + 0 + Acelerou + MPEG audio file + Latin + + + 0 + Um Amor Puro + MPEG audio file + Latin + + + + + + + 81 + Eric Clapton + + + 72 + 81 + The Cream Of Clapton + + + 0 + Layla + MPEG audio file + Blues + + + 0 + Badge + MPEG audio file + Blues + + + 0 + I Feel Free + MPEG audio file + Blues + + + 0 + Sunshine Of Your Love + MPEG audio file + Blues + + + 0 + Crossroads + MPEG audio file + Blues + + + 0 + Strange Brew + MPEG audio file + Blues + + + 0 + White Room + MPEG audio file + Blues + + + 0 + Bell Bottom Blues + MPEG audio file + Blues + + + 0 + Cocaine + MPEG audio file + Blues + + + 0 + I Shot The Sheriff + MPEG audio file + Blues + + + 0 + After Midnight + MPEG audio file + Blues + + + 0 + Swing Low Sweet Chariot + MPEG audio file + Blues + + + 0 + Lay Down Sally + MPEG audio file + Blues + + + 0 + Knockin On Heavens Door + MPEG audio file + Blues + + + 0 + Wonderful Tonight + MPEG audio file + Blues + + + 0 + Let It Grow + MPEG audio file + Blues + + + 0 + Promises + MPEG audio file + Blues + + + 0 + I Can't Stand It + MPEG audio file + Blues + + + + + 73 + 81 + Unplugged + + + 0 + A Novidade + MPEG audio file + Latin + + + 0 + Tenho Sede + MPEG audio file + Latin + + + 0 + Refazenda + MPEG audio file + Latin + + + 0 + Realce + MPEG audio file + Latin + + + 0 + Esotérico + MPEG audio file + Latin + + + 0 + Drão + MPEG audio file + Latin + + + 0 + A Paz + MPEG audio file + Latin + + + 0 + Beira Mar + MPEG audio file + Latin + + + 0 + Sampa + MPEG audio file + Latin + + + 0 + Parabolicamará + MPEG audio file + Latin + + + 0 + Tempo Rei + MPEG audio file + Latin + + + 0 + Expresso 2222 + MPEG audio file + Latin + + + 0 + Aquele Abraço + MPEG audio file + Latin + + + 0 + Palco + MPEG audio file + Latin + + + 0 + Toda Menina Baiana + MPEG audio file + Latin + + + 0 + Sítio Do Pica-Pau Amarelo + MPEG audio file + Latin + + + 0 + Signe + MPEG audio file + Blues + + + 0 + Before You Accuse Me + MPEG audio file + Blues + + + 0 + Hey Hey + MPEG audio file + Blues + + + 0 + Tears In Heaven + MPEG audio file + Blues + + + 0 + Lonely Stranger + MPEG audio file + Blues + + + 0 + Nobody Knows You When You're Down & Out + MPEG audio file + Blues + + + 0 + Layla + MPEG audio file + Blues + + + 0 + Running On Faith + MPEG audio file + Blues + + + 0 + Walkin' Blues + MPEG audio file + Blues + + + 0 + Alberta + MPEG audio file + Blues + + + 0 + San Francisco Bay Blues + MPEG audio file + Blues + + + 0 + Malted Milk + MPEG audio file + Blues + + + 0 + Old Love + MPEG audio file + Blues + + + 0 + Rollin' And Tumblin' + MPEG audio file + Blues + + + + + + + 82 + Faith No More + + + 74 + 82 + Album Of The Year + + + 0 + Collision + MPEG audio file + Alternative & Punk + + + 0 + Stripsearch + MPEG audio file + Alternative & Punk + + + 0 + Last Cup Of Sorrow + MPEG audio file + Alternative & Punk + + + 0 + Naked In Front Of The Computer + MPEG audio file + Alternative & Punk + + + 0 + Helpless + MPEG audio file + Alternative & Punk + + + 0 + Mouth To Mouth + MPEG audio file + Alternative & Punk + + + 0 + Ashes To Ashes + MPEG audio file + Alternative & Punk + + + 0 + She Loves Me Not + MPEG audio file + Alternative & Punk + + + 0 + Got That Feeling + MPEG audio file + Alternative & Punk + + + 0 + Paths Of Glory + MPEG audio file + Alternative & Punk + + + 0 + Home Sick Home + MPEG audio file + Alternative & Punk + + + 0 + Pristina + MPEG audio file + Alternative & Punk + + + + + 75 + 82 + Angel Dust + + + 0 + Smaller And Smaller + MPEG audio file + Alternative & Punk + + + 0 + Everything's Ruined + MPEG audio file + Alternative & Punk + + + 0 + Malpractice + MPEG audio file + Alternative & Punk + + + 0 + Kindergarten + MPEG audio file + Alternative & Punk + + + 0 + Be Aggressive + MPEG audio file + Alternative & Punk + + + 0 + A Small Victory + MPEG audio file + Alternative & Punk + + + 0 + Crack Hitler + MPEG audio file + Alternative & Punk + + + 0 + Jizzlobber + MPEG audio file + Alternative & Punk + + + 0 + Midnight Cowboy + MPEG audio file + Alternative & Punk + + + 0 + Easy + MPEG audio file + Alternative & Punk + + + 0 + Land Of Sunshine + MPEG audio file + Alternative & Punk + + + 0 + Caffeine + MPEG audio file + Alternative & Punk + + + 0 + Midlife Crisis + MPEG audio file + Alternative & Punk + + + 0 + RV + MPEG audio file + Alternative & Punk + + + + + 76 + 82 + King For A Day Fool For A Lifetime + + + 0 + Get Out + MPEG audio file + Rock + + + 0 + Ricochet + MPEG audio file + Rock + + + 0 + Evidence + MPEG audio file + Rock + + + 0 + The Gentle Art Of Making Enemies + MPEG audio file + Rock + + + 0 + Star A.D. + MPEG audio file + Rock + + + 0 + Cuckoo For Caca + MPEG audio file + Rock + + + 0 + Caralho Voador + MPEG audio file + Rock + + + 0 + Ugly In The Morning + MPEG audio file + Rock + + + 0 + Digging The Grave + MPEG audio file + Rock + + + 0 + Take This Bottle + MPEG audio file + Rock + + + 0 + King For A Day + MPEG audio file + Rock + + + 0 + What A Day + MPEG audio file + Rock + + + 0 + The Last To Know + MPEG audio file + Rock + + + 0 + Just A Man + MPEG audio file + Rock + + + 0 + Absolute Zero + MPEG audio file + Rock + + + + + 77 + 82 + The Real Thing + + + 0 + From Out Of Nowhere + MPEG audio file + Alternative & Punk + + + 0 + Epic + MPEG audio file + Alternative & Punk + + + 0 + Falling To Pieces + MPEG audio file + Alternative & Punk + + + 0 + Surprise! You're Dead! + MPEG audio file + Alternative & Punk + + + 0 + Zombie Eaters + MPEG audio file + Alternative & Punk + + + 0 + The Real Thing + MPEG audio file + Alternative & Punk + + + 0 + Underwater Love + MPEG audio file + Alternative & Punk + + + 0 + The Morning After + MPEG audio file + Alternative & Punk + + + 0 + Woodpecker From Mars + MPEG audio file + Alternative & Punk + + + 0 + War Pigs + MPEG audio file + Alternative & Punk + + + 0 + Edge Of The World + MPEG audio file + Alternative & Punk + + + + + + + 83 + Falamansa + + + 78 + 83 + Deixa Entrar + + + 0 + Deixa Entrar + MPEG audio file + Latin + + + 0 + Falamansa Song + MPEG audio file + Latin + + + 0 + Xote Dos Milagres + MPEG audio file + Latin + + + 0 + Rindo À Toa + MPEG audio file + Latin + + + 0 + Confidência + MPEG audio file + Latin + + + 0 + Forró De Tóquio + MPEG audio file + Latin + + + 0 + Zeca Violeiro + MPEG audio file + Latin + + + 0 + Avisa + MPEG audio file + Latin + + + 0 + Principiando/Decolagem + MPEG audio file + Latin + + + 0 + Asas + MPEG audio file + Latin + + + 0 + Medo De Escuro + MPEG audio file + Latin + + + 0 + Oração + MPEG audio file + Latin + + + 0 + Minha Gata + MPEG audio file + Latin + + + 0 + Desaforo + MPEG audio file + Latin + + + + + + + 84 + Foo Fighters + + + 79 + 84 + In Your Honor [Disc 1] + + + 0 + In Your Honor + MPEG audio file + Rock + + + 0 + No Way Back + MPEG audio file + Rock + + + 0 + Best Of You + MPEG audio file + Rock + + + 0 + DOA + MPEG audio file + Rock + + + 0 + Hell + MPEG audio file + Rock + + + 0 + The Last Song + MPEG audio file + Rock + + + 0 + Free Me + MPEG audio file + Rock + + + 0 + Resolve + MPEG audio file + Rock + + + 0 + The Deepest Blues Are Black + MPEG audio file + Rock + + + 0 + End Over End + MPEG audio file + Rock + + + + + 80 + 84 + In Your Honor [Disc 2] + + + 0 + Still + MPEG audio file + Rock + + + 0 + What If I Do? + MPEG audio file + Rock + + + 0 + Miracle + MPEG audio file + Rock + + + 0 + Another Round + MPEG audio file + Rock + + + 0 + Friend Of A Friend + MPEG audio file + Rock + + + 0 + Over And Out + MPEG audio file + Rock + + + 0 + On The Mend + MPEG audio file + Rock + + + 0 + Virginia Moon + MPEG audio file + Rock + + + 0 + Cold Day In The Sun + MPEG audio file + Rock + + + 0 + Razor + MPEG audio file + Rock + + + + + 81 + 84 + One By One + + + 0 + All My Life + MPEG audio file + Alternative & Punk + + + 0 + Low + MPEG audio file + Alternative & Punk + + + 0 + Have It All + MPEG audio file + Alternative & Punk + + + 0 + Times Like These + MPEG audio file + Alternative & Punk + + + 0 + Disenchanted Lullaby + MPEG audio file + Alternative & Punk + + + 0 + Tired Of You + MPEG audio file + Alternative & Punk + + + 0 + Halo + MPEG audio file + Alternative & Punk + + + 0 + Lonely As You + MPEG audio file + Alternative & Punk + + + 0 + Overdrive + MPEG audio file + Alternative & Punk + + + 0 + Burn Away + MPEG audio file + Alternative & Punk + + + 0 + Come Back + MPEG audio file + Alternative & Punk + + + + + 82 + 84 + The Colour And The Shape + + + 0 + Doll + MPEG audio file + Rock + + + 0 + Monkey Wrench + MPEG audio file + Rock + + + 0 + Hey, Johnny Park! + MPEG audio file + Rock + + + 0 + My Poor Brain + MPEG audio file + Rock + + + 0 + Wind Up + MPEG audio file + Rock + + + 0 + Up In Arms + MPEG audio file + Rock + + + 0 + My Hero + MPEG audio file + Rock + + + 0 + See You + MPEG audio file + Rock + + + 0 + Enough Space + MPEG audio file + Rock + + + 0 + February Stars + MPEG audio file + Rock + + + 0 + Everlong + MPEG audio file + Rock + + + 0 + Walking After You + MPEG audio file + Rock + + + 0 + New Way Home + MPEG audio file + Rock + + + + + + + 85 + Frank Sinatra + + + 83 + 85 + My Way: The Best Of Frank Sinatra [Disc 1] + + + 0 + My Way + MPEG audio file + Easy Listening + + + 0 + Strangers In The Night + MPEG audio file + Easy Listening + + + 0 + New York, New York + MPEG audio file + Easy Listening + + + 0 + I Get A Kick Out Of You + MPEG audio file + Easy Listening + + + 0 + Something Stupid + MPEG audio file + Easy Listening + + + 0 + Moon River + MPEG audio file + Easy Listening + + + 0 + What Now My Love + MPEG audio file + Easy Listening + + + 0 + Summer Love + MPEG audio file + Easy Listening + + + 0 + For Once In My Life + MPEG audio file + Easy Listening + + + 0 + Love And Marriage + MPEG audio file + Easy Listening + + + 0 + They Can't Take That Away From Me + MPEG audio file + Easy Listening + + + 0 + My Kind Of Town + MPEG audio file + Easy Listening + + + 0 + Fly Me To The Moon + MPEG audio file + Easy Listening + + + 0 + I've Got You Under My Skin + MPEG audio file + Easy Listening + + + 0 + The Best Is Yet To Come + MPEG audio file + Easy Listening + + + 0 + It Was A Very Good Year + MPEG audio file + Easy Listening + + + 0 + Come Fly With Me + MPEG audio file + Easy Listening + + + 0 + That's Life + MPEG audio file + Easy Listening + + + 0 + The Girl From Ipanema + MPEG audio file + Easy Listening + + + 0 + The Lady Is A Tramp + MPEG audio file + Easy Listening + + + 0 + Bad, Bad Leroy Brown + MPEG audio file + Easy Listening + + + 0 + Mack The Knife + MPEG audio file + Easy Listening + + + 0 + Loves Been Good To Me + MPEG audio file + Easy Listening + + + 0 + L.A. Is My Lady + MPEG audio file + Easy Listening + + + + + + + 86 + Funk Como Le Gusta + + + 84 + 86 + Roda De Funk + + + 0 + Entrando Na Sua (Intro) + MPEG audio file + Latin + + + 0 + Nervosa + MPEG audio file + Latin + + + 0 + Funk De Bamba (Com Fernanda Abreu) + MPEG audio file + Latin + + + 0 + Call Me At Cleo´s + MPEG audio file + Latin + + + 0 + Olhos Coloridos (Com Sandra De Sá) + MPEG audio file + Latin + + + 0 + Zambação + MPEG audio file + Latin + + + 0 + Funk Hum + MPEG audio file + Latin + + + 0 + Forty Days (Com DJ Hum) + MPEG audio file + Latin + + + 0 + Balada Da Paula + MPEG audio file + Latin + + + 0 + Dujji + MPEG audio file + Latin + + + 0 + Meu Guarda-Chuva + MPEG audio file + Latin + + + 0 + Motéis + MPEG audio file + Latin + + + 0 + Whistle Stop + MPEG audio file + Latin + + + 0 + 16 Toneladas + MPEG audio file + Latin + + + 0 + Divirta-Se (Saindo Da Sua) + MPEG audio file + Latin + + + 0 + Forty Days Instrumental + MPEG audio file + Latin + + + + + + + 87 + Godsmack + + + 88 + 87 + Faceless + + + 0 + Straight Out Of Line + MPEG audio file + Metal + + + 0 + Faceless + MPEG audio file + Metal + + + 0 + Changes + MPEG audio file + Metal + + + 0 + Make Me Believe + MPEG audio file + Metal + + + 0 + I Stand Alone + MPEG audio file + Metal + + + 0 + Re-Align + MPEG audio file + Metal + + + 0 + I Fucking Hate You + MPEG audio file + Metal + + + 0 + Releasing The Demons + MPEG audio file + Metal + + + 0 + Dead And Broken + MPEG audio file + Metal + + + 0 + I Am + MPEG audio file + Metal + + + 0 + The Awakening + MPEG audio file + Metal + + + 0 + Serenity + MPEG audio file + Metal + + + + + + + 88 + Guns N' Roses + + + 90 + 88 + Appetite for Destruction + + + 0 + Welcome to the Jungle + Protected AAC audio file + Rock + + + 0 + It's So Easy + Protected AAC audio file + Rock + + + 0 + Nightrain + Protected AAC audio file + Rock + + + 0 + Out Ta Get Me + Protected AAC audio file + Rock + + + 0 + Mr. Brownstone + Protected AAC audio file + Rock + + + 0 + Paradise City + Protected AAC audio file + Rock + + + 0 + My Michelle + Protected AAC audio file + Rock + + + 0 + Think About You + Protected AAC audio file + Rock + + + 0 + Sweet Child O' Mine + Protected AAC audio file + Rock + + + 0 + You're Crazy + Protected AAC audio file + Rock + + + 0 + Anything Goes + Protected AAC audio file + Rock + + + 0 + Rocket Queen + Protected AAC audio file + Rock + + + + + 91 + 88 + Use Your Illusion I + + + 0 + Right Next Door to Hell + Protected AAC audio file + Rock + + + 0 + Dust N' Bones + Protected AAC audio file + Rock + + + 0 + Live and Let Die + Protected AAC audio file + Rock + + + 0 + Don't Cry (Original) + Protected AAC audio file + Rock + + + 0 + Perfect Crime + Protected AAC audio file + Rock + + + 0 + You Ain't the First + Protected AAC audio file + Rock + + + 0 + Bad Obsession + Protected AAC audio file + Rock + + + 0 + Back off Bitch + Protected AAC audio file + Rock + + + 0 + Double Talkin' Jive + Protected AAC audio file + Rock + + + 0 + November Rain + Protected AAC audio file + Rock + + + 0 + The Garden + Protected AAC audio file + Rock + + + 0 + Garden of Eden + Protected AAC audio file + Rock + + + 0 + Don't Damn Me + Protected AAC audio file + Rock + + + 0 + Bad Apples + Protected AAC audio file + Rock + + + 0 + Dead Horse + Protected AAC audio file + Rock + + + 0 + Coma + Protected AAC audio file + Rock + + + + + 92 + 88 + Use Your Illusion II + + + 0 + Civil War + MPEG audio file + Metal + + + 0 + 14 Years + MPEG audio file + Metal + + + 0 + Yesterdays + MPEG audio file + Metal + + + 0 + Knockin' On Heaven's Door + MPEG audio file + Metal + + + 0 + Get In The Ring + MPEG audio file + Metal + + + 0 + Shotgun Blues + MPEG audio file + Metal + + + 0 + Breakdown + MPEG audio file + Metal + + + 0 + Pretty Tied Up + MPEG audio file + Metal + + + 0 + Locomotive + MPEG audio file + Metal + + + 0 + So Fine + MPEG audio file + Metal + + + 0 + Estranged + MPEG audio file + Metal + + + 0 + You Could Be Mine + MPEG audio file + Metal + + + 0 + Don't Cry + MPEG audio file + Metal + + + 0 + My World + MPEG audio file + Metal + + + + + + + 89 + Incognito + + + 93 + 89 + Blue Moods + + + 0 + Colibri + MPEG audio file + Jazz + + + 0 + Love Is The Colour + MPEG audio file + Jazz + + + 0 + Magnetic Ocean + MPEG audio file + Jazz + + + 0 + Deep Waters + MPEG audio file + Jazz + + + 0 + L'Arc En Ciel De Miles + MPEG audio file + Jazz + + + 0 + Gypsy + MPEG audio file + Jazz + + + 0 + Journey Into Sunlight + MPEG audio file + Jazz + + + 0 + Sunchild + MPEG audio file + Jazz + + + 0 + Millenium + MPEG audio file + Jazz + + + 0 + Thinking 'Bout Tomorrow + MPEG audio file + Jazz + + + 0 + Jacob's Ladder + MPEG audio file + Jazz + + + 0 + She Wears Black + MPEG audio file + Jazz + + + 0 + Dark Side Of The Cog + MPEG audio file + Jazz + + + + + + + 90 + Iron Maiden + + + 94 + 90 + A Matter of Life and Death + + + 0 + Different World + Protected AAC audio file + Rock + + + 0 + These Colours Don't Run + Protected AAC audio file + Rock + + + 0 + Brighter Than a Thousand Suns + Protected AAC audio file + Rock + + + 0 + The Pilgrim + Protected AAC audio file + Rock + + + 0 + The Longest Day + Protected AAC audio file + Rock + + + 0 + Out of the Shadows + Protected AAC audio file + Rock + + + 0 + The Reincarnation of Benjamin Breeg + Protected AAC audio file + Rock + + + 0 + For the Greater Good of God + Protected AAC audio file + Rock + + + 0 + Lord of Light + Protected AAC audio file + Rock + + + 0 + The Legacy + Protected AAC audio file + Rock + + + 0 + Hallowed Be Thy Name (Live) [Non Album Bonus Track] + Protected AAC audio file + Rock + + + + + 95 + 90 + A Real Dead One + + + 0 + The Number Of The Beast + MPEG audio file + Metal + + + 0 + The Trooper + MPEG audio file + Metal + + + 0 + Prowler + MPEG audio file + Metal + + + 0 + Transylvania + MPEG audio file + Metal + + + 0 + Remember Tomorrow + MPEG audio file + Metal + + + 0 + Where Eagles Dare + MPEG audio file + Metal + + + 0 + Sanctuary + MPEG audio file + Metal + + + 0 + Running Free + MPEG audio file + Metal + + + 0 + Run To The Hilss + MPEG audio file + Metal + + + 0 + 2 Minutes To Midnight + MPEG audio file + Metal + + + 0 + Iron Maiden + MPEG audio file + Metal + + + 0 + Hallowed Be Thy Name + MPEG audio file + Metal + + + + + 96 + 90 + A Real Live One + + + 0 + Be Quick Or Be Dead + MPEG audio file + Metal + + + 0 + From Here To Eternity + MPEG audio file + Metal + + + 0 + Can I Play With Madness + MPEG audio file + Metal + + + 0 + Wasting Love + MPEG audio file + Metal + + + 0 + Tailgunner + MPEG audio file + Metal + + + 0 + The Evil That Men Do + MPEG audio file + Metal + + + 0 + Afraid To Shoot Strangers + MPEG audio file + Metal + + + 0 + Bring Your Daughter... To The Slaughter + MPEG audio file + Metal + + + 0 + Heaven Can Wait + MPEG audio file + Metal + + + 0 + The Clairvoyant + MPEG audio file + Metal + + + 0 + Fear Of The Dark + MPEG audio file + Metal + + + + + 97 + 90 + Brave New World + + + 0 + The Wicker Man + MPEG audio file + Rock + + + 0 + Ghost Of The Navigator + MPEG audio file + Rock + + + 0 + Brave New World + MPEG audio file + Rock + + + 0 + Blood Brothers + MPEG audio file + Rock + + + 0 + The Mercenary + MPEG audio file + Rock + + + 0 + Dream Of Mirrors + MPEG audio file + Rock + + + 0 + The Fallen Angel + MPEG audio file + Rock + + + 0 + The Nomad + MPEG audio file + Rock + + + 0 + Out Of The Silent Planet + MPEG audio file + Rock + + + 0 + The Thin Line Between Love & Hate + MPEG audio file + Rock + + + + + 98 + 90 + Dance Of Death + + + 0 + Wildest Dreams + MPEG audio file + Heavy Metal + + + 0 + Rainmaker + MPEG audio file + Heavy Metal + + + 0 + No More Lies + MPEG audio file + Heavy Metal + + + 0 + Montsegur + MPEG audio file + Heavy Metal + + + 0 + Dance Of Death + MPEG audio file + Heavy Metal + + + 0 + Gates Of Tomorrow + MPEG audio file + Heavy Metal + + + 0 + New Frontier + MPEG audio file + Heavy Metal + + + 0 + Paschendale + MPEG audio file + Heavy Metal + + + 0 + Face In The Sand + MPEG audio file + Heavy Metal + + + 0 + Age Of Innocence + MPEG audio file + Heavy Metal + + + 0 + Journeyman + MPEG audio file + Heavy Metal + + + + + 99 + 90 + Fear Of The Dark + + + 0 + Be Quick Or Be Dead + MPEG audio file + Rock + + + 0 + From Here To Eternity + MPEG audio file + Rock + + + 0 + Afraid To Shoot Strangers + MPEG audio file + Rock + + + 0 + Fear Is The Key + MPEG audio file + Rock + + + 0 + Childhood's End + MPEG audio file + Rock + + + 0 + Wasting Love + MPEG audio file + Rock + + + 0 + The Fugitive + MPEG audio file + Rock + + + 0 + Chains Of Misery + MPEG audio file + Rock + + + 0 + The Apparition + MPEG audio file + Rock + + + 0 + Judas Be My Guide + MPEG audio file + Rock + + + 0 + Weekend Warrior + MPEG audio file + Rock + + + 0 + Fear Of The Dark + MPEG audio file + Rock + + + + + 100 + 90 + Iron Maiden + + + 0 + 01 - Prowler + MPEG audio file + Blues + + + 0 + 02 - Sanctuary + MPEG audio file + Blues + + + 0 + 03 - Remember Tomorrow + MPEG audio file + Blues + + + 0 + 04 - Running Free + MPEG audio file + Blues + + + 0 + 05 - Phantom of the Opera + MPEG audio file + Blues + + + 0 + 06 - Transylvania + MPEG audio file + Blues + + + 0 + 07 - Strange World + MPEG audio file + Blues + + + 0 + 08 - Charlotte the Harlot + MPEG audio file + Blues + + + 0 + 09 - Iron Maiden + MPEG audio file + Blues + + + + + 101 + 90 + Killers + + + 0 + The Ides Of March + MPEG audio file + Heavy Metal + + + 0 + Wrathchild + MPEG audio file + Heavy Metal + + + 0 + Murders In The Rue Morgue + MPEG audio file + Heavy Metal + + + 0 + Another Life + MPEG audio file + Heavy Metal + + + 0 + Genghis Khan + MPEG audio file + Heavy Metal + + + 0 + Innocent Exile + MPEG audio file + Heavy Metal + + + 0 + Killers + MPEG audio file + Heavy Metal + + + 0 + Prodigal Son + MPEG audio file + Heavy Metal + + + 0 + Purgatory + MPEG audio file + Heavy Metal + + + 0 + Drifter + MPEG audio file + Heavy Metal + + + + + 102 + 90 + Live After Death + + + 0 + Intro- Churchill S Speech + MPEG audio file + Heavy Metal + + + 0 + Aces High + MPEG audio file + Heavy Metal + + + 0 + 2 Minutes To Midnight + MPEG audio file + Metal + + + 0 + The Trooper + MPEG audio file + Metal + + + 0 + Revelations + MPEG audio file + Metal + + + 0 + Flight Of Icarus + MPEG audio file + Metal + + + 0 + Rime Of The Ancient Mariner + MPEG audio file + Metal + + + 0 + Powerslave + MPEG audio file + Metal + + + 0 + The Number Of The Beast + MPEG audio file + Metal + + + 0 + Hallowed Be Thy Name + MPEG audio file + Metal + + + 0 + Iron Maiden + MPEG audio file + Metal + + + 0 + Run To The Hills + MPEG audio file + Metal + + + 0 + Running Free + MPEG audio file + Metal + + + 0 + Wrathchild + MPEG audio file + Heavy Metal + + + 0 + Acacia Avenue + MPEG audio file + Heavy Metal + + + 0 + Children Of The Damned + MPEG audio file + Heavy Metal + + + 0 + Die With Your Boots On + MPEG audio file + Heavy Metal + + + 0 + Phantom Of The Opera + MPEG audio file + Heavy Metal + + + + + 103 + 90 + Live At Donington 1992 (Disc 1) + + + 0 + Be Quick Or Be Dead + MPEG audio file + Rock + + + 0 + The Number Of The Beast + MPEG audio file + Rock + + + 0 + Wrathchild + MPEG audio file + Rock + + + 0 + From Here To Eternity + MPEG audio file + Rock + + + 0 + Can I Play With Madness + MPEG audio file + Rock + + + 0 + Wasting Love + MPEG audio file + Rock + + + 0 + Tailgunner + MPEG audio file + Rock + + + 0 + The Evil That Men Do + MPEG audio file + Rock + + + 0 + Afraid To Shoot Strangers + MPEG audio file + Rock + + + 0 + Fear Of The Dark + MPEG audio file + Rock + + + + + 104 + 90 + Live At Donington 1992 (Disc 2) + + + 0 + Bring Your Daughter... To The Slaughter... + MPEG audio file + Rock + + + 0 + The Clairvoyant + MPEG audio file + Rock + + + 0 + Heaven Can Wait + MPEG audio file + Rock + + + 0 + Run To The Hills + MPEG audio file + Rock + + + 0 + 2 Minutes To Midnight + MPEG audio file + Rock + + + 0 + Iron Maiden + MPEG audio file + Rock + + + 0 + Hallowed Be Thy Name + MPEG audio file + Rock + + + 0 + The Trooper + MPEG audio file + Rock + + + 0 + Sanctuary + MPEG audio file + Rock + + + 0 + Running Free + MPEG audio file + Rock + + + + + 105 + 90 + No Prayer For The Dying + + + 0 + Tailgunner + MPEG audio file + Metal + + + 0 + Holy Smoke + MPEG audio file + Metal + + + 0 + No Prayer For The Dying + MPEG audio file + Metal + + + 0 + Public Enema Number One + MPEG audio file + Metal + + + 0 + Fates Warning + MPEG audio file + Metal + + + 0 + The Assassin + MPEG audio file + Metal + + + 0 + Run Silent Run Deep + MPEG audio file + Metal + + + 0 + Hooks In You + MPEG audio file + Metal + + + 0 + Bring Your Daughter... ...To The Slaughter + MPEG audio file + Metal + + + 0 + Mother Russia + MPEG audio file + Metal + + + + + 106 + 90 + Piece Of Mind + + + 0 + Where Eagles Dare + MPEG audio file + Metal + + + 0 + Revelations + MPEG audio file + Metal + + + 0 + Flight Of The Icarus + MPEG audio file + Metal + + + 0 + Die With Your Boots On + MPEG audio file + Metal + + + 0 + The Trooper + MPEG audio file + Metal + + + 0 + Still Life + MPEG audio file + Metal + + + 0 + Quest For Fire + MPEG audio file + Metal + + + 0 + Sun And Steel + MPEG audio file + Metal + + + 0 + To Tame A Land + MPEG audio file + Metal + + + + + 107 + 90 + Powerslave + + + 0 + Aces High + MPEG audio file + Metal + + + 0 + 2 Minutes To Midnight + MPEG audio file + Metal + + + 0 + Losfer Words + MPEG audio file + Metal + + + 0 + Flash of The Blade + MPEG audio file + Metal + + + 0 + Duelists + MPEG audio file + Metal + + + 0 + Back in the Village + MPEG audio file + Metal + + + 0 + Powerslave + MPEG audio file + Metal + + + 0 + Rime of the Ancient Mariner + MPEG audio file + Metal + + + + + 108 + 90 + Rock In Rio [CD1] + + + 0 + Intro + MPEG audio file + Metal + + + 0 + The Wicker Man + MPEG audio file + Metal + + + 0 + Ghost Of The Navigator + MPEG audio file + Metal + + + 0 + Brave New World + MPEG audio file + Metal + + + 0 + Wrathchild + MPEG audio file + Metal + + + 0 + 2 Minutes To Midnight + MPEG audio file + Metal + + + 0 + Blood Brothers + MPEG audio file + Metal + + + 0 + Sign Of The Cross + MPEG audio file + Metal + + + 0 + The Mercenary + MPEG audio file + Metal + + + 0 + The Trooper + MPEG audio file + Metal + + + + + 109 + 90 + Rock In Rio [CD2] + + + 0 + Dream Of Mirrors + MPEG audio file + Rock + + + 0 + The Clansman + MPEG audio file + Rock + + + 0 + The Evil That Men Do + MPEG audio file + Metal + + + 0 + Fear Of The Dark + MPEG audio file + Rock + + + 0 + Iron Maiden + MPEG audio file + Rock + + + 0 + The Number Of The Beast + MPEG audio file + Rock + + + 0 + Hallowed Be Thy Name + MPEG audio file + Rock + + + 0 + Sanctuary + MPEG audio file + Rock + + + 0 + Run To The Hills + MPEG audio file + Rock + + + + + 110 + 90 + Seventh Son of a Seventh Son + + + 0 + Moonchild + MPEG audio file + Metal + + + 0 + Infinite Dreams + MPEG audio file + Metal + + + 0 + Can I Play With Madness + MPEG audio file + Metal + + + 0 + The Evil That Men Do + MPEG audio file + Metal + + + 0 + Seventh Son of a Seventh Son + MPEG audio file + Metal + + + 0 + The Prophecy + MPEG audio file + Metal + + + 0 + The Clairvoyant + MPEG audio file + Metal + + + 0 + Only the Good Die Young + MPEG audio file + Metal + + + + + 111 + 90 + Somewhere in Time + + + 0 + Caught Somewhere in Time + MPEG audio file + Metal + + + 0 + Wasted Years + MPEG audio file + Metal + + + 0 + Sea of Madness + MPEG audio file + Metal + + + 0 + Heaven Can Wait + MPEG audio file + Metal + + + 0 + Stranger in a Strange Land + MPEG audio file + Metal + + + 0 + Alexander the Great + MPEG audio file + Metal + + + 0 + De Ja Vu + MPEG audio file + Metal + + + 0 + The Loneliness of the Long Dis + MPEG audio file + Metal + + + + + 112 + 90 + The Number of The Beast + + + 0 + 22 Acacia Avenue + MPEG audio file + Metal + + + 0 + Children of the Damned + MPEG audio file + Metal + + + 0 + Gangland + MPEG audio file + Metal + + + 0 + Hallowed Be Thy Name + MPEG audio file + Metal + + + 0 + Invaders + MPEG audio file + Metal + + + 0 + Run to the Hills + MPEG audio file + Metal + + + 0 + The Number Of The Beast + MPEG audio file + Rock + + + 0 + The Prisoner + MPEG audio file + Metal + + + + + 113 + 90 + The X Factor + + + 0 + Sign Of The Cross + MPEG audio file + Rock + + + 0 + Lord Of The Flies + MPEG audio file + Rock + + + 0 + Man On The Edge + MPEG audio file + Rock + + + 0 + Fortunes Of War + MPEG audio file + Rock + + + 0 + Look For The Truth + MPEG audio file + Rock + + + 0 + The Aftermath + MPEG audio file + Rock + + + 0 + Judgement Of Heaven + MPEG audio file + Rock + + + 0 + Blood On The World's Hands + MPEG audio file + Rock + + + 0 + The Edge Of Darkness + MPEG audio file + Rock + + + 0 + 2 A.M. + MPEG audio file + Rock + + + 0 + The Unbeliever + MPEG audio file + Rock + + + + + 114 + 90 + Virtual XI + + + 0 + Futureal + MPEG audio file + Rock + + + 0 + The Angel And The Gambler + MPEG audio file + Rock + + + 0 + Lightning Strikes Twice + MPEG audio file + Rock + + + 0 + The Clansman + MPEG audio file + Rock + + + 0 + When Two Worlds Collide + MPEG audio file + Rock + + + 0 + The Educated Fool + MPEG audio file + Rock + + + 0 + Don't Look To The Eyes Of A Stranger + MPEG audio file + Rock + + + 0 + Como Estais Amigos + MPEG audio file + Rock + + + + + + + 91 + James Brown + + + 115 + 91 + Sex Machine + + + 0 + Please Please Please + MPEG audio file + R&B/Soul + + + 0 + Think + MPEG audio file + R&B/Soul + + + 0 + Night Train + MPEG audio file + R&B/Soul + + + 0 + Out Of Sight + MPEG audio file + R&B/Soul + + + 0 + Papa's Got A Brand New Bag Pt.1 + MPEG audio file + R&B/Soul + + + 0 + I Got You (I Feel Good) + MPEG audio file + R&B/Soul + + + 0 + It's A Man's Man's Man's World + MPEG audio file + R&B/Soul + + + 0 + Cold Sweat + MPEG audio file + R&B/Soul + + + 0 + Say It Loud, I'm Black And I'm Proud Pt.1 + MPEG audio file + R&B/Soul + + + 0 + Get Up (I Feel Like Being A) Sex Machine + MPEG audio file + R&B/Soul + + + 0 + Hey America + MPEG audio file + R&B/Soul + + + 0 + Make It Funky Pt.1 + MPEG audio file + R&B/Soul + + + 0 + I'm A Greedy Man Pt.1 + MPEG audio file + R&B/Soul + + + 0 + Get On The Good Foot + MPEG audio file + R&B/Soul + + + 0 + Get Up Offa That Thing + MPEG audio file + R&B/Soul + + + 0 + It's Too Funky In Here + MPEG audio file + R&B/Soul + + + 0 + Living In America + MPEG audio file + R&B/Soul + + + 0 + I'm Real + MPEG audio file + R&B/Soul + + + 0 + Hot Pants Pt.1 + MPEG audio file + R&B/Soul + + + 0 + Soul Power (Live) + MPEG audio file + R&B/Soul + + + + + + + 92 + Jamiroquai + + + 116 + 92 + Emergency On Planet Earth + + + 0 + When You Gonna Learn (Digeridoo) + MPEG audio file + Rock + + + 0 + Too Young To Die + MPEG audio file + Rock + + + 0 + Hooked Up + MPEG audio file + Rock + + + 0 + If I Like It, I Do It + MPEG audio file + Rock + + + 0 + Music Of The Wind + MPEG audio file + Rock + + + 0 + Emergency On Planet Earth + MPEG audio file + Rock + + + 0 + Whatever It Is, I Just Can't Stop + MPEG audio file + Rock + + + 0 + Blow Your Mind + MPEG audio file + Rock + + + 0 + Revolution 1993 + MPEG audio file + Rock + + + 0 + Didgin' Out + MPEG audio file + Rock + + + + + 117 + 92 + Synkronized + + + 0 + Canned Heat + MPEG audio file + R&B/Soul + + + 0 + Planet Home + MPEG audio file + R&B/Soul + + + 0 + Black Capricorn Day + MPEG audio file + R&B/Soul + + + 0 + Soul Education + MPEG audio file + R&B/Soul + + + 0 + Failling + MPEG audio file + R&B/Soul + + + 0 + Destitute Illusions + MPEG audio file + R&B/Soul + + + 0 + Supersonic + MPEG audio file + R&B/Soul + + + 0 + Butterfly + MPEG audio file + R&B/Soul + + + 0 + Were Do We Go From Here + MPEG audio file + R&B/Soul + + + 0 + King For A Day + MPEG audio file + R&B/Soul + + + 0 + Deeper Underground + MPEG audio file + R&B/Soul + + + + + 118 + 92 + The Return Of The Space Cowboy + + + 0 + Just Another Story + MPEG audio file + Electronica/Dance + + + 0 + Stillness In Time + MPEG audio file + Electronica/Dance + + + 0 + Half The Man + MPEG audio file + Electronica/Dance + + + 0 + Light Years + MPEG audio file + Electronica/Dance + + + 0 + Manifest Destiny + MPEG audio file + Electronica/Dance + + + 0 + The Kids + MPEG audio file + Electronica/Dance + + + 0 + Mr. Moon + MPEG audio file + Electronica/Dance + + + 0 + Scam + MPEG audio file + Electronica/Dance + + + 0 + Journey To Arnhemland + MPEG audio file + Electronica/Dance + + + 0 + Morning Glory + MPEG audio file + Electronica/Dance + + + 0 + Space Cowboy + MPEG audio file + Electronica/Dance + + + + + + + 93 + JET + + + 119 + 93 + Get Born + + + 0 + Last Chance + MPEG audio file + Alternative & Punk + + + 0 + Are You Gonna Be My Girl + MPEG audio file + Alternative & Punk + + + 0 + Rollover D.J. + MPEG audio file + Alternative & Punk + + + 0 + Look What You've Done + MPEG audio file + Alternative & Punk + + + 0 + Get What You Need + MPEG audio file + Alternative & Punk + + + 0 + Move On + MPEG audio file + Alternative & Punk + + + 0 + Radio Song + MPEG audio file + Alternative & Punk + + + 0 + Get Me Outta Here + MPEG audio file + Alternative & Punk + + + 0 + Cold Hard Bitch + MPEG audio file + Alternative & Punk + + + 0 + Come Around Again + MPEG audio file + Alternative & Punk + + + 0 + Take It Or Leave It + MPEG audio file + Alternative & Punk + + + 0 + Lazy Gun + MPEG audio file + Alternative & Punk + + + 0 + Timothy + MPEG audio file + Alternative & Punk + + + + + + + 94 + Jimi Hendrix + + + 120 + 94 + Are You Experienced? + + + 0 + Foxy Lady + MPEG audio file + Rock + + + 0 + Manic Depression + MPEG audio file + Rock + + + 0 + Red House + MPEG audio file + Rock + + + 0 + Can You See Me + MPEG audio file + Rock + + + 0 + Love Or Confusion + MPEG audio file + Rock + + + 0 + I Don't Live Today + MPEG audio file + Rock + + + 0 + May This Be Love + MPEG audio file + Rock + + + 0 + Fire + MPEG audio file + Rock + + + 0 + Third Stone From The Sun + MPEG audio file + Rock + + + 0 + Remember + MPEG audio file + Rock + + + 0 + Are You Experienced? + MPEG audio file + Rock + + + 0 + Hey Joe + MPEG audio file + Rock + + + 0 + Stone Free + MPEG audio file + Rock + + + 0 + Purple Haze + MPEG audio file + Rock + + + 0 + 51st Anniversary + MPEG audio file + Rock + + + 0 + The Wind Cries Mary + MPEG audio file + Rock + + + 0 + Highway Chile + MPEG audio file + Rock + + + + + + + 95 + Joe Satriani + + + 121 + 95 + Surfing with the Alien (Remastered) + + + 0 + Surfing with the Alien + Protected AAC audio file + Rock + + + 0 + Ice 9 + Protected AAC audio file + Rock + + + 0 + Crushing Day + Protected AAC audio file + Rock + + + 0 + Always With Me, Always With You + Protected AAC audio file + Rock + + + 0 + Satch Boogie + Protected AAC audio file + Rock + + + 0 + Hill of the Skull + Protected AAC audio file + Rock + + + 0 + Circles + Protected AAC audio file + Rock + + + 0 + Lords of Karma + Protected AAC audio file + Rock + + + 0 + Midnight + Protected AAC audio file + Rock + + + 0 + Echo + Protected AAC audio file + Rock + + + + + + + 96 + Jota Quest + + + 123 + 96 + Jota Quest-1995 + + + 0 + Rapidamente + MPEG audio file + Latin + + + 0 + As Dores do Mundo + MPEG audio file + Latin + + + 0 + Vou Pra Ai + MPEG audio file + Latin + + + 0 + My Brother + MPEG audio file + Latin + + + 0 + Há Quanto Tempo + MPEG audio file + Latin + + + 0 + Vício + MPEG audio file + Latin + + + 0 + Encontrar Alguém + MPEG audio file + Latin + + + 0 + Dance Enquanto é Tempo + MPEG audio file + Latin + + + 0 + A Tarde + MPEG audio file + Latin + + + 0 + Always Be All Right + MPEG audio file + Latin + + + 0 + Sem Sentido + MPEG audio file + Latin + + + 0 + Onibusfobia + MPEG audio file + Latin + + + + + + + 97 + João Suplicy + + + 124 + 97 + Cafezinho + + + 0 + Pura Elegancia + MPEG audio file + World + + + 0 + Choramingando + MPEG audio file + World + + + 0 + Por Merecer + MPEG audio file + World + + + 0 + No Futuro + MPEG audio file + World + + + 0 + Voce Inteira + MPEG audio file + World + + + 0 + Cuando A Noite Vai Chegando + MPEG audio file + World + + + 0 + Naquele Dia + MPEG audio file + World + + + 0 + Equinocio + MPEG audio file + World + + + 0 + Papelão + MPEG audio file + World + + + 0 + Cuando Eu For Pro Ceu + MPEG audio file + World + + + 0 + Do Nosso Amor + MPEG audio file + World + + + 0 + Borogodo + MPEG audio file + World + + + 0 + Cafezinho + MPEG audio file + World + + + 0 + Enquanto O Dia Não Vem + MPEG audio file + World + + + + + + + 98 + Judas Priest + + + 125 + 98 + Living After Midnight + + + 0 + The Green Manalishi + MPEG audio file + Metal + + + 0 + Living After Midnight + MPEG audio file + Metal + + + 0 + Breaking The Law (Live) + MPEG audio file + Metal + + + 0 + Hot Rockin' + MPEG audio file + Metal + + + 0 + Heading Out To The Highway (Live) + MPEG audio file + Metal + + + 0 + The Hellion + MPEG audio file + Metal + + + 0 + Electric Eye + MPEG audio file + Metal + + + 0 + You've Got Another Thing Comin' + MPEG audio file + Metal + + + 0 + Turbo Lover + MPEG audio file + Metal + + + 0 + Freewheel Burning + MPEG audio file + Metal + + + 0 + Some Heads Are Gonna Roll + MPEG audio file + Metal + + + 0 + Metal Meltdown + MPEG audio file + Metal + + + 0 + Ram It Down + MPEG audio file + Metal + + + 0 + Diamonds And Rust (Live) + MPEG audio file + Metal + + + 0 + Victim Of Change (Live) + MPEG audio file + Metal + + + 0 + Tyrant (Live) + MPEG audio file + Metal + + + + + + + 99 + Legião Urbana + + + 139 + 99 + A TempestadeTempestade Ou O Livro Dos Dias + + + 0 + Natália + MPEG audio file + Latin + + + 0 + L'Avventura + MPEG audio file + Latin + + + 0 + Música De Trabalho + MPEG audio file + Latin + + + 0 + Longe Do Meu Lado + MPEG audio file + Latin + + + 0 + A Via Láctea + MPEG audio file + Latin + + + 0 + Música Ambiente + MPEG audio file + Latin + + + 0 + Aloha + MPEG audio file + Latin + + + 0 + Soul Parsifal + MPEG audio file + Latin + + + 0 + Dezesseis + MPEG audio file + Latin + + + 0 + Mil Pedaços + MPEG audio file + Latin + + + 0 + Leila + MPEG audio file + Latin + + + 0 + 1º De Julho + MPEG audio file + Latin + + + 0 + Esperando Por Mim + MPEG audio file + Latin + + + 0 + Quando Você Voltar + MPEG audio file + Latin + + + 0 + O Livro Dos Dias + MPEG audio file + Latin + + + + + 140 + 99 + Mais Do Mesmo + + + 0 + Será + MPEG audio file + Latin + + + 0 + Ainda É Cedo + MPEG audio file + Latin + + + 0 + Geração Coca-Cola + MPEG audio file + Latin + + + 0 + Eduardo E Mônica + MPEG audio file + Latin + + + 0 + Tempo Perdido + MPEG audio file + Latin + + + 0 + Indios + MPEG audio file + Latin + + + 0 + Que País É Este + MPEG audio file + Latin + + + 0 + Faroeste Caboclo + MPEG audio file + Latin + + + 0 + Há Tempos + MPEG audio file + Latin + + + 0 + Pais E Filhos + MPEG audio file + Latin + + + 0 + Meninos E Meninas + MPEG audio file + Latin + + + 0 + Vento No Litoral + MPEG audio file + Latin + + + 0 + Perfeição + MPEG audio file + Latin + + + 0 + Giz + MPEG audio file + Latin + + + 0 + Dezesseis + MPEG audio file + Latin + + + 0 + Antes Das Seis + MPEG audio file + Latin + + + + + + + 100 + Lenny Kravitz + + + 141 + 100 + Greatest Hits + + + 0 + Still Of The Night + MPEG audio file + Metal + + + 0 + Here I Go Again + MPEG audio file + Metal + + + 0 + Is This Love + MPEG audio file + Metal + + + 0 + Love Ain't No Stranger + MPEG audio file + Metal + + + 0 + Looking For Love + MPEG audio file + Metal + + + 0 + Now You're Gone + MPEG audio file + Metal + + + 0 + Slide It In + MPEG audio file + Metal + + + 0 + Slow An' Easy + MPEG audio file + Metal + + + 0 + Judgement Day + MPEG audio file + Metal + + + 0 + You're Gonna Break My Hart Again + MPEG audio file + Metal + + + 0 + The Deeper The Love + MPEG audio file + Metal + + + 0 + Crying In The Rain + MPEG audio file + Metal + + + 0 + Fool For Your Loving + MPEG audio file + Metal + + + 0 + Sweet Lady Luck + MPEG audio file + Metal + + + 0 + Are You Gonna Go My Way + MPEG audio file + Rock + + + 0 + Fly Away + MPEG audio file + Rock + + + 0 + Rock And Roll Is Dead + MPEG audio file + Rock + + + 0 + Again + MPEG audio file + Rock + + + 0 + It Ain't Over 'Til It's Over + MPEG audio file + Rock + + + 0 + Can't Get You Off My Mind + MPEG audio file + Rock + + + 0 + Mr. Cab Driver + MPEG audio file + Rock + + + 0 + American Woman + MPEG audio file + Rock + + + 0 + Stand By My Woman + MPEG audio file + Rock + + + 0 + Always On The Run + MPEG audio file + Rock + + + 0 + Heaven Help + MPEG audio file + Rock + + + 0 + I Belong To You + MPEG audio file + Rock + + + 0 + Believe + MPEG audio file + Rock + + + 0 + Let Love Rule + MPEG audio file + Rock + + + 0 + Black Velveteen + MPEG audio file + Rock + + + 0 + Johnny B. Goode + MPEG audio file + Reggae + + + 0 + Don't Look Back + MPEG audio file + Reggae + + + 0 + Jah Seh No + MPEG audio file + Reggae + + + 0 + I'm The Toughest + MPEG audio file + Reggae + + + 0 + Nothing But Love + MPEG audio file + Reggae + + + 0 + Buk-In-Hamm Palace + MPEG audio file + Reggae + + + 0 + Bush Doctor + MPEG audio file + Reggae + + + 0 + Wanted Dread And Alive + MPEG audio file + Reggae + + + 0 + Mystic Man + MPEG audio file + Reggae + + + 0 + Coming In Hot + MPEG audio file + Reggae + + + 0 + Pick Myself Up + MPEG audio file + Reggae + + + 0 + Crystal Ball + MPEG audio file + Reggae + + + 0 + Equal Rights Downpresser Man + MPEG audio file + Reggae + + + 0 + Holding Back The Years + MPEG audio file + Rock + + + 0 + Money's Too Tight To Mention + MPEG audio file + Rock + + + 0 + The Right Thing + MPEG audio file + Rock + + + 0 + It's Only Love + MPEG audio file + Rock + + + 0 + A New Flame + MPEG audio file + Rock + + + 0 + You've Got It + MPEG audio file + Rock + + + 0 + If You Don't Know Me By Now + MPEG audio file + Rock + + + 0 + Stars + MPEG audio file + Rock + + + 0 + Something Got Me Started + MPEG audio file + Rock + + + 0 + Thrill Me + MPEG audio file + Rock + + + 0 + Your Mirror + MPEG audio file + Rock + + + 0 + For Your Babies + MPEG audio file + Rock + + + 0 + So Beautiful + MPEG audio file + Rock + + + 0 + Angel + MPEG audio file + Rock + + + 0 + Fairground + MPEG audio file + Rock + + + + + + + 101 + Lulu Santos + + + 142 + 101 + Lulu Santos - RCA 100 Anos De Música - Álbum 01 + + + 0 + Assim Caminha A Humanidade + MPEG audio file + Latin + + + 0 + Um Pro Outro + MPEG audio file + Latin + + + 0 + Casa + MPEG audio file + Latin + + + 0 + Condição + MPEG audio file + Latin + + + 0 + Satisfação + MPEG audio file + Latin + + + 0 + Brumário + MPEG audio file + Latin + + + 0 + Sábado À Noite + MPEG audio file + Latin + + + 0 + A Cura + MPEG audio file + Latin + + + 0 + Atrás Do Trio Elétrico + MPEG audio file + Latin + + + 0 + Tudo Bem + MPEG audio file + Latin + + + 0 + Toda Forma De Amor + MPEG audio file + Latin + + + 0 + Sereia + MPEG audio file + Latin + + + 0 + Se Você Pensa + MPEG audio file + Latin + + + 0 + Lá Vem O Sol (Here Comes The Sun) + MPEG audio file + Latin + + + + + 143 + 101 + Lulu Santos - RCA 100 Anos De Música - Álbum 02 + + + 0 + Honolulu + MPEG audio file + Latin + + + 0 + Dancin´Days + MPEG audio file + Latin + + + 0 + Aviso Aos Navegantes + MPEG audio file + Latin + + + 0 + Hyperconectividade + MPEG audio file + Latin + + + 0 + O Descobridor Dos Sete Mares + MPEG audio file + Latin + + + 0 + Um Certo Alguém + MPEG audio file + Latin + + + 0 + Fullgás + MPEG audio file + Latin + + + 0 + Aquilo + MPEG audio file + Latin + + + 0 + Senta A Pua + MPEG audio file + Latin + + + 0 + Ro-Que-Se-Da-Ne + MPEG audio file + Latin + + + 0 + Tudo Igual + MPEG audio file + Latin + + + 0 + Fogo De Palha + MPEG audio file + Latin + + + 0 + Assaltaram A Gramática + MPEG audio file + Latin + + + 0 + O Último Romântico (Ao Vivo) + MPEG audio file + Latin + + + + + + + 102 + Marillion + + + 144 + 102 + Misplaced Childhood + + + 0 + White Feather + MPEG audio file + Rock + + + 0 + Pseudo Silk Kimono + MPEG audio file + Rock + + + 0 + Kayleigh + MPEG audio file + Rock + + + 0 + Lavender + MPEG audio file + Rock + + + 0 + Bitter Suite: Brief Encounter / Lost Weekend / Blue Angel + MPEG audio file + Rock + + + 0 + Heart Of Lothian: Wide Boy / Curtain Call + MPEG audio file + Rock + + + 0 + Waterhole (Expresso Bongo) + MPEG audio file + Rock + + + 0 + Lords Of The Backstage + MPEG audio file + Rock + + + 0 + Blind Curve: Vocal Under A Bloodlight / Passing Strangers / Mylo / Perimeter Walk / Threshold + MPEG audio file + Rock + + + 0 + Childhoods End? + MPEG audio file + Rock + + + + + + + 103 + Marisa Monte + + + 145 + 103 + Barulhinho Bom + + + 0 + Arrepio + MPEG audio file + Latin + + + 0 + Magamalabares + MPEG audio file + Latin + + + 0 + Chuva No Brejo + MPEG audio file + Latin + + + 0 + Cérebro Eletrônico + MPEG audio file + Latin + + + 0 + Tempos Modernos + MPEG audio file + Latin + + + 0 + Maraçá + MPEG audio file + Latin + + + 0 + Blanco + MPEG audio file + Latin + + + 0 + Panis Et Circenses + MPEG audio file + Latin + + + 0 + De Noite Na Cama + MPEG audio file + Latin + + + 0 + Beija Eu + MPEG audio file + Latin + + + 0 + Give Me Love + MPEG audio file + Latin + + + 0 + Ainda Lembro + MPEG audio file + Latin + + + 0 + A Menina Dança + MPEG audio file + Latin + + + 0 + Dança Da Solidão + MPEG audio file + Latin + + + 0 + Ao Meu Redor + MPEG audio file + Latin + + + 0 + Bem Leve + MPEG audio file + Latin + + + 0 + Segue O Seco + MPEG audio file + Latin + + + 0 + O Xote Das Meninas + MPEG audio file + Latin + + + + + + + 104 + Marvin Gaye + + + 146 + 104 + Seek And Shall Find: More Of The Best (1963-1981) + + + 0 + Wherever I Lay My Hat + MPEG audio file + R&B/Soul + + + 0 + Get My Hands On Some Lovin' + MPEG audio file + R&B/Soul + + + 0 + No Good Without You + MPEG audio file + R&B/Soul + + + 0 + You've Been A Long Time Coming + MPEG audio file + R&B/Soul + + + 0 + When I Had Your Love + MPEG audio file + R&B/Soul + + + 0 + You're What's Happening (In The World Today) + MPEG audio file + R&B/Soul + + + 0 + Loving You Is Sweeter Than Ever + MPEG audio file + R&B/Soul + + + 0 + It's A Bitter Pill To Swallow + MPEG audio file + R&B/Soul + + + 0 + Seek And You Shall Find + MPEG audio file + R&B/Soul + + + 0 + Gonna Keep On Tryin' Till I Win Your Love + MPEG audio file + R&B/Soul + + + 0 + Gonna Give Her All The Love I've Got + MPEG audio file + R&B/Soul + + + 0 + I Wish It Would Rain + MPEG audio file + R&B/Soul + + + 0 + Abraham, Martin And John + MPEG audio file + R&B/Soul + + + 0 + Save The Children + MPEG audio file + R&B/Soul + + + 0 + You Sure Love To Ball + MPEG audio file + R&B/Soul + + + 0 + Ego Tripping Out + MPEG audio file + R&B/Soul + + + 0 + Praise + MPEG audio file + R&B/Soul + + + 0 + Heavy Love Affair + MPEG audio file + R&B/Soul + + + + + + + 105 + Men At Work + + + 147 + 105 + The Best Of Men At Work + + + 0 + Down Under + MPEG audio file + Rock + + + 0 + Overkill + MPEG audio file + Rock + + + 0 + Be Good Johnny + MPEG audio file + Rock + + + 0 + Everything I Need + MPEG audio file + Rock + + + 0 + Down by the Sea + MPEG audio file + Rock + + + 0 + Who Can It Be Now? + MPEG audio file + Rock + + + 0 + It's a Mistake + MPEG audio file + Rock + + + 0 + Dr. Heckyll & Mr. Jive + MPEG audio file + Rock + + + 0 + Shakes and Ladders + MPEG audio file + Rock + + + 0 + No Sign of Yesterday + MPEG audio file + Rock + + + + + + + 106 + Motörhead + + + 160 + 106 + Ace Of Spades + + + 0 + Ace Of Spades + MPEG audio file + Metal + + + 0 + Love Me Like A Reptile + MPEG audio file + Metal + + + 0 + Shoot You In The Back + MPEG audio file + Metal + + + 0 + Live To Win + MPEG audio file + Metal + + + 0 + Fast And Loose + MPEG audio file + Metal + + + 0 + (We Are) The Road Crew + MPEG audio file + Metal + + + 0 + Fire Fire + MPEG audio file + Metal + + + 0 + Jailbait + MPEG audio file + Metal + + + 0 + Dance + MPEG audio file + Metal + + + 0 + Bite The Bullet + MPEG audio file + Metal + + + 0 + The Chase Is Better Than The Catch + MPEG audio file + Metal + + + 0 + The Hammer + MPEG audio file + Metal + + + 0 + Dirty Love + MPEG audio file + Metal + + + 0 + Please Don't Touch + MPEG audio file + Metal + + + 0 + Emergency + MPEG audio file + Metal + + + + + + + 107 + Motörhead & Girlschool + + + + 108 + Mônica Marianno + + + 161 + 108 + Demorou... + + + 0 + Kir Royal + MPEG audio file + World + + + 0 + O Que Vai Em Meu Coração + MPEG audio file + World + + + 0 + Aos Leões + MPEG audio file + World + + + 0 + Dois Índios + MPEG audio file + World + + + 0 + Noite Negra + MPEG audio file + World + + + 0 + Beijo do Olhar + MPEG audio file + World + + + 0 + É Fogo + MPEG audio file + World + + + 0 + Já Foi + MPEG audio file + World + + + 0 + Só Se For Pelo Cabelo + MPEG audio file + World + + + 0 + No Clima + MPEG audio file + World + + + 0 + A Moça e a Chuva + MPEG audio file + World + + + 0 + Demorou! + MPEG audio file + World + + + + + + + 109 + Mötley Crüe + + + 162 + 109 + Motley Crue Greatest Hits + + + 0 + Bitter Pill + MPEG audio file + Metal + + + 0 + Enslaved + MPEG audio file + Metal + + + 0 + Girls, Girls, Girls + MPEG audio file + Metal + + + 0 + Kickstart My Heart + MPEG audio file + Metal + + + 0 + Wild Side + MPEG audio file + Metal + + + 0 + Glitter + MPEG audio file + Metal + + + 0 + Dr. Feelgood + MPEG audio file + Metal + + + 0 + Same Ol' Situation + MPEG audio file + Metal + + + 0 + Home Sweet Home + MPEG audio file + Metal + + + 0 + Afraid + MPEG audio file + Metal + + + 0 + Don't Go Away Mad (Just Go Away) + MPEG audio file + Metal + + + 0 + Without You + MPEG audio file + Metal + + + 0 + Smokin' in The Boys Room + MPEG audio file + Metal + + + 0 + Primal Scream + MPEG audio file + Metal + + + 0 + Too Fast For Love + MPEG audio file + Metal + + + 0 + Looks That Kill + MPEG audio file + Metal + + + 0 + Shout At The Devil + MPEG audio file + Metal + + + + + + + 110 + Nirvana + + + 163 + 110 + From The Muddy Banks Of The Wishkah [Live] + + + 0 + Intro + MPEG audio file + Rock + + + 0 + School + MPEG audio file + Rock + + + 0 + Drain You + MPEG audio file + Rock + + + 0 + Aneurysm + MPEG audio file + Rock + + + 0 + Smells Like Teen Spirit + MPEG audio file + Rock + + + 0 + Been A Son + MPEG audio file + Rock + + + 0 + Lithium + MPEG audio file + Rock + + + 0 + Sliver + MPEG audio file + Rock + + + 0 + Spank Thru + MPEG audio file + Rock + + + 0 + Scentless Apprentice + MPEG audio file + Rock + + + 0 + Heart-Shaped Box + MPEG audio file + Rock + + + 0 + Milk It + MPEG audio file + Rock + + + 0 + Negative Creep + MPEG audio file + Rock + + + 0 + Polly + MPEG audio file + Rock + + + 0 + Breed + MPEG audio file + Rock + + + 0 + Tourette's + MPEG audio file + Rock + + + 0 + Blew + MPEG audio file + Rock + + + + + 164 + 110 + Nevermind + + + 0 + Smells Like Teen Spirit + MPEG audio file + Rock + + + 0 + In Bloom + MPEG audio file + Rock + + + 0 + Come As You Are + MPEG audio file + Rock + + + 0 + Breed + MPEG audio file + Rock + + + 0 + Lithium + MPEG audio file + Rock + + + 0 + Polly + MPEG audio file + Rock + + + 0 + Territorial Pissings + MPEG audio file + Rock + + + 0 + Drain You + MPEG audio file + Rock + + + 0 + Lounge Act + MPEG audio file + Rock + + + 0 + Stay Away + MPEG audio file + Rock + + + 0 + On A Plain + MPEG audio file + Rock + + + 0 + Something In The Way + MPEG audio file + Rock + + + + + + + 111 + O Terço + + + 165 + 111 + Compositores + + + 0 + Time + MPEG audio file + Rock + + + 0 + P.S.Apareça + MPEG audio file + Rock + + + 0 + Sangue Latino + MPEG audio file + Rock + + + 0 + Folhas Secas + MPEG audio file + Rock + + + 0 + Poeira + MPEG audio file + Rock + + + 0 + Mágica + MPEG audio file + Rock + + + 0 + Quem Mata A Mulher Mata O Melhor + MPEG audio file + Rock + + + 0 + Mundaréu + MPEG audio file + Rock + + + 0 + O Braço Da Minha Guitarra + MPEG audio file + Rock + + + 0 + Deus + MPEG audio file + Rock + + + 0 + Mãe Terra + MPEG audio file + Rock + + + 0 + Às Vezes + MPEG audio file + Rock + + + 0 + Menino De Rua + MPEG audio file + Rock + + + 0 + Prazer E Fé + MPEG audio file + Rock + + + 0 + Elza + MPEG audio file + Rock + + + + + + + 112 + Olodum + + + 166 + 112 + Olodum + + + 0 + Requebra + MPEG audio file + Latin + + + 0 + Nossa Gente (Avisa Là) + MPEG audio file + Latin + + + 0 + Olodum - Alegria Geral + MPEG audio file + Latin + + + 0 + Madagáscar Olodum + MPEG audio file + Latin + + + 0 + Faraó Divindade Do Egito + MPEG audio file + Latin + + + 0 + Todo Amor (Asas Da Liberdade) + MPEG audio file + Latin + + + 0 + Denúncia + MPEG audio file + Latin + + + 0 + Olodum, A Banda Do Pelô + MPEG audio file + Latin + + + 0 + Cartao Postal + MPEG audio file + Latin + + + 0 + Jeito Faceiro + MPEG audio file + Latin + + + 0 + Revolta Olodum + MPEG audio file + Latin + + + 0 + Reggae Odoyá + MPEG audio file + Latin + + + 0 + Protesto Do Olodum (Ao Vivo) + MPEG audio file + Latin + + + 0 + Olodum - Smile (Instrumental) + MPEG audio file + Latin + + + + + + + 113 + Os Paralamas Do Sucesso + + + 167 + 113 + Acústico MTV + + + 0 + Vulcão Dub - Fui Eu + MPEG audio file + Latin + + + 0 + O Trem Da Juventude + MPEG audio file + Latin + + + 0 + Manguetown + MPEG audio file + Latin + + + 0 + Um Amor, Um Lugar + MPEG audio file + Latin + + + 0 + Bora-Bora + MPEG audio file + Latin + + + 0 + Vai Valer + MPEG audio file + Latin + + + 0 + I Feel Good (I Got You) - Sossego + MPEG audio file + Latin + + + 0 + Uns Dias + MPEG audio file + Latin + + + 0 + Sincero Breu + MPEG audio file + Latin + + + 0 + Meu Erro + MPEG audio file + Latin + + + 0 + Selvagem + MPEG audio file + Latin + + + 0 + Brasília 5:31 + MPEG audio file + Latin + + + 0 + Tendo A Lua + MPEG audio file + Latin + + + 0 + Que País É Este + MPEG audio file + Latin + + + 0 + Navegar Impreciso + MPEG audio file + Latin + + + 0 + Feira Moderna + MPEG audio file + Latin + + + 0 + Tequila - Lourinha Bombril (Parate Y Mira) + MPEG audio file + Latin + + + 0 + Vamo Batê Lata + MPEG audio file + Latin + + + 0 + Life During Wartime + MPEG audio file + Latin + + + 0 + Nebulosa Do Amor + MPEG audio file + Latin + + + 0 + Caleidoscópio + MPEG audio file + Latin + + + + + 168 + 113 + Arquivo II + + + 0 + Trac Trac + MPEG audio file + Latin + + + 0 + Tendo A Lua + MPEG audio file + Latin + + + 0 + Mensagen De Amor (2000) + MPEG audio file + Latin + + + 0 + Lourinha Bombril + MPEG audio file + Latin + + + 0 + La Bella Luna + MPEG audio file + Latin + + + 0 + Busca Vida + MPEG audio file + Latin + + + 0 + Uma Brasileira + MPEG audio file + Latin + + + 0 + Luis Inacio (300 Picaretas) + MPEG audio file + Latin + + + 0 + Saber Amar + MPEG audio file + Latin + + + 0 + Ela Disse Adeus + MPEG audio file + Latin + + + 0 + O Amor Nao Sabe Esperar + MPEG audio file + Latin + + + 0 + Aonde Quer Que Eu Va + MPEG audio file + Latin + + + + + 169 + 113 + Arquivo Os Paralamas Do Sucesso + + + 0 + Caleidoscópio + MPEG audio file + Latin + + + 0 + Óculos + MPEG audio file + Latin + + + 0 + Cinema Mudo + MPEG audio file + Latin + + + 0 + Alagados + MPEG audio file + Latin + + + 0 + Lanterna Dos Afogados + MPEG audio file + Latin + + + 0 + Melô Do Marinheiro + MPEG audio file + Latin + + + 0 + Vital E Sua Moto + MPEG audio file + Latin + + + 0 + O Beco + MPEG audio file + Latin + + + 0 + Meu Erro + MPEG audio file + Latin + + + 0 + Perplexo + MPEG audio file + Latin + + + 0 + Me Liga + MPEG audio file + Latin + + + 0 + Quase Um Segundo + MPEG audio file + Latin + + + 0 + Selvagem + MPEG audio file + Latin + + + 0 + Romance Ideal + MPEG audio file + Latin + + + 0 + Será Que Vai Chover? + MPEG audio file + Latin + + + 0 + SKA + MPEG audio file + Latin + + + + + + + 114 + Ozzy Osbourne + + + 170 + 114 + Bark at the Moon (Remastered) + + + 0 + Bark at the Moon + Protected AAC audio file + Rock + + + + + 171 + 114 + Blizzard of Ozz + + + 0 + I Don't Know + Protected AAC audio file + Rock + + + 0 + Crazy Train + Protected AAC audio file + Rock + + + + + 172 + 114 + Diary of a Madman (Remastered) + + + 0 + Flying High Again + Protected AAC audio file + Rock + + + + + 173 + 114 + No More Tears (Remastered) + + + 0 + Mama, I'm Coming Home + Protected AAC audio file + Rock + + + 0 + No More Tears + Protected AAC audio file + Rock + + + + + 174 + 114 + Tribute + + + 0 + I Don't Know + MPEG audio file + Metal + + + 0 + Crazy Train + MPEG audio file + Metal + + + 0 + Believer + MPEG audio file + Metal + + + 0 + Mr. Crowley + MPEG audio file + Metal + + + 0 + Flying High Again + MPEG audio file + Metal + + + 0 + Relvelation (Mother Earth) + MPEG audio file + Metal + + + 0 + Steal Away (The Night) + MPEG audio file + Metal + + + 0 + Suicide Solution (With Guitar Solo) + MPEG audio file + Metal + + + 0 + Iron Man + MPEG audio file + Metal + + + 0 + Children Of The Grave + MPEG audio file + Metal + + + 0 + Paranoid + MPEG audio file + Metal + + + 0 + Goodbye To Romance + MPEG audio file + Metal + + + 0 + No Bone Movies + MPEG audio file + Metal + + + 0 + Dee + MPEG audio file + Metal + + + + + 256 + 114 + Speak of the Devil + + + 0 + Sympton of the Universe + Protected AAC audio file + Rock + + + 0 + Snowblind + Protected AAC audio file + Rock + + + 0 + Black Sabbath + Protected AAC audio file + Rock + + + 0 + Fairies Wear Boots + Protected AAC audio file + Rock + + + 0 + War Pigs + Protected AAC audio file + Rock + + + 0 + The Wizard + Protected AAC audio file + Rock + + + 0 + N.I.B. + Protected AAC audio file + Rock + + + 0 + Sweet Leaf + Protected AAC audio file + Rock + + + 0 + Never Say Die + Protected AAC audio file + Rock + + + 0 + Sabbath, Bloody Sabbath + Protected AAC audio file + Rock + + + 0 + Iron Man/Children of the Grave + Protected AAC audio file + Rock + + + 0 + Paranoid + Protected AAC audio file + Rock + + + + + + + 115 + Page & Plant + + + 175 + 115 + Walking Into Clarksdale + + + 0 + Shining In The Light + MPEG audio file + Rock + + + 0 + When The World Was Young + MPEG audio file + Rock + + + 0 + Upon A Golden Horse + MPEG audio file + Rock + + + 0 + Blue Train + MPEG audio file + Rock + + + 0 + Please Read The Letter + MPEG audio file + Rock + + + 0 + Most High + MPEG audio file + Rock + + + 0 + Heart In Your Hand + MPEG audio file + Rock + + + 0 + Walking Into Clarksdale + MPEG audio file + Rock + + + 0 + Burning Up + MPEG audio file + Rock + + + 0 + When I Was A Child + MPEG audio file + Rock + + + 0 + House Of Love + MPEG audio file + Rock + + + 0 + Sons Of Freedom + MPEG audio file + Rock + + + + + + + 116 + Passengers + + + 176 + 116 + Original Soundtracks 1 + + + 0 + United Colours + MPEG audio file + Soundtrack + + + 0 + Slug + MPEG audio file + Soundtrack + + + 0 + Your Blue Room + MPEG audio file + Soundtrack + + + 0 + Always Forever Now + MPEG audio file + Soundtrack + + + 0 + A Different Kind Of Blue + MPEG audio file + Soundtrack + + + 0 + Beach Sequence + MPEG audio file + Soundtrack + + + 0 + Miss Sarajevo + MPEG audio file + Soundtrack + + + 0 + Ito Okashi + MPEG audio file + Soundtrack + + + 0 + One Minute Warning + MPEG audio file + Soundtrack + + + 0 + Corpse (These Chains Are Way Too Long) + MPEG audio file + Soundtrack + + + 0 + Elvis Ate America + MPEG audio file + Soundtrack + + + 0 + Plot 180 + MPEG audio file + Soundtrack + + + 0 + Theme From The Swan + MPEG audio file + Soundtrack + + + 0 + Theme From Let's Go Native + MPEG audio file + Soundtrack + + + + + + + 117 + Paul D'Ianno + + + 177 + 117 + The Beast Live + + + 0 + Wrathchild + MPEG audio file + Rock + + + 0 + Killers + MPEG audio file + Rock + + + 0 + Prowler + MPEG audio file + Rock + + + 0 + Murders In The Rue Morgue + MPEG audio file + Rock + + + 0 + Women In Uniform + MPEG audio file + Rock + + + 0 + Remember Tomorrow + MPEG audio file + Rock + + + 0 + Sanctuary + MPEG audio file + Rock + + + 0 + Running Free + MPEG audio file + Rock + + + 0 + Phantom Of The Opera + MPEG audio file + Rock + + + 0 + Iron Maiden + MPEG audio file + Rock + + + + + + + 118 + Pearl Jam + + + 178 + 118 + Live On Two Legs [Live] + + + 0 + Corduroy + MPEG audio file + Rock + + + 0 + Given To Fly + MPEG audio file + Rock + + + 0 + Hail, Hail + MPEG audio file + Rock + + + 0 + Daughter + MPEG audio file + Rock + + + 0 + Elderly Woman Behind The Counter In A Small Town + MPEG audio file + Rock + + + 0 + Untitled + MPEG audio file + Rock + + + 0 + MFC + MPEG audio file + Rock + + + 0 + Go + MPEG audio file + Rock + + + 0 + Red Mosquito + MPEG audio file + Rock + + + 0 + Even Flow + MPEG audio file + Rock + + + 0 + Off He Goes + MPEG audio file + Rock + + + 0 + Nothingman + MPEG audio file + Rock + + + 0 + Do The Evolution + MPEG audio file + Rock + + + 0 + Better Man + MPEG audio file + Rock + + + 0 + Black + MPEG audio file + Rock + + + 0 + F*Ckin' Up + MPEG audio file + Rock + + + + + 179 + 118 + Pearl Jam + + + 0 + Life Wasted + MPEG audio file + Alternative & Punk + + + 0 + World Wide Suicide + MPEG audio file + Alternative & Punk + + + 0 + Comatose + MPEG audio file + Alternative & Punk + + + 0 + Severed Hand + MPEG audio file + Alternative & Punk + + + 0 + Marker In The Sand + MPEG audio file + Alternative & Punk + + + 0 + Parachutes + MPEG audio file + Alternative & Punk + + + 0 + Unemployable + MPEG audio file + Alternative & Punk + + + 0 + Big Wave + MPEG audio file + Alternative & Punk + + + 0 + Gone + MPEG audio file + Alternative & Punk + + + 0 + Wasted Reprise + MPEG audio file + Alternative & Punk + + + 0 + Army Reserve + MPEG audio file + Alternative & Punk + + + 0 + Come Back + MPEG audio file + Alternative & Punk + + + 0 + Inside Job + MPEG audio file + Alternative & Punk + + + + + 180 + 118 + Riot Act + + + 0 + Can't Keep + MPEG audio file + Rock + + + 0 + Save You + MPEG audio file + Rock + + + 0 + Love Boat Captain + MPEG audio file + Rock + + + 0 + Cropduster + MPEG audio file + Rock + + + 0 + Ghost + MPEG audio file + Rock + + + 0 + I Am Mine + MPEG audio file + Rock + + + 0 + Thumbing My Way + MPEG audio file + Rock + + + 0 + You Are + MPEG audio file + Rock + + + 0 + Get Right + MPEG audio file + Rock + + + 0 + Green Disease + MPEG audio file + Rock + + + 0 + Help Help + MPEG audio file + Rock + + + 0 + Bushleager + MPEG audio file + Rock + + + 0 + 1/2 Full + MPEG audio file + Rock + + + 0 + Arc + MPEG audio file + Rock + + + 0 + All or None + MPEG audio file + Rock + + + + + 181 + 118 + Ten + + + 0 + Once + MPEG audio file + Rock + + + 0 + Evenflow + MPEG audio file + Rock + + + 0 + Alive + MPEG audio file + Rock + + + 0 + Why Go + MPEG audio file + Rock + + + 0 + Black + MPEG audio file + Rock + + + 0 + Jeremy + MPEG audio file + Rock + + + 0 + Oceans + MPEG audio file + Rock + + + 0 + Porch + MPEG audio file + Rock + + + 0 + Garden + MPEG audio file + Rock + + + 0 + Deep + MPEG audio file + Rock + + + 0 + Release + MPEG audio file + Rock + + + + + 182 + 118 + Vs. + + + 0 + Go + MPEG audio file + Rock + + + 0 + Animal + MPEG audio file + Rock + + + 0 + Daughter + MPEG audio file + Rock + + + 0 + Glorified G + MPEG audio file + Rock + + + 0 + Dissident + MPEG audio file + Rock + + + 0 + W.M.A. + MPEG audio file + Rock + + + 0 + Blood + MPEG audio file + Rock + + + 0 + Rearviewmirror + MPEG audio file + Rock + + + 0 + Rats + MPEG audio file + Rock + + + 0 + Elderly Woman Behind The Counter In A Small Town + MPEG audio file + Rock + + + 0 + Leash + MPEG audio file + Rock + + + 0 + Indifference + MPEG audio file + Rock + + + + + + + 119 + Peter Tosh + + + + 120 + Pink Floyd + + + 183 + 120 + Dark Side Of The Moon + + + 0 + Speak To Me/Breathe + MPEG audio file + Rock + + + 0 + On The Run + MPEG audio file + Rock + + + 0 + Time + MPEG audio file + Rock + + + 0 + The Great Gig In The Sky + MPEG audio file + Rock + + + 0 + Money + MPEG audio file + Rock + + + 0 + Us And Them + MPEG audio file + Rock + + + 0 + Any Colour You Like + MPEG audio file + Rock + + + 0 + Brain Damage + MPEG audio file + Rock + + + 0 + Eclipse + MPEG audio file + Rock + + + + + + + 121 + Planet Hemp + + + 184 + 121 + Os Cães Ladram Mas A Caravana Não Pára + + + 0 + ZeroVinteUm + MPEG audio file + Hip Hop/Rap + + + 0 + Queimando Tudo + MPEG audio file + Hip Hop/Rap + + + 0 + Hip Hop Rio + MPEG audio file + Hip Hop/Rap + + + 0 + Bossa + MPEG audio file + Hip Hop/Rap + + + 0 + 100% HardCore + MPEG audio file + Hip Hop/Rap + + + 0 + Biruta + MPEG audio file + Hip Hop/Rap + + + 0 + Mão Na Cabeça + MPEG audio file + Hip Hop/Rap + + + 0 + O Bicho Tá Pregando + MPEG audio file + Hip Hop/Rap + + + 0 + Adoled (Ocean) + MPEG audio file + Hip Hop/Rap + + + 0 + Seus Amigos + MPEG audio file + Hip Hop/Rap + + + 0 + Paga Pau + MPEG audio file + Hip Hop/Rap + + + 0 + Rappers Reais + MPEG audio file + Hip Hop/Rap + + + 0 + Nega Do Cabelo Duro + MPEG audio file + Hip Hop/Rap + + + 0 + Hemp Family + MPEG audio file + Hip Hop/Rap + + + 0 + Quem Me Cobrou? + MPEG audio file + Hip Hop/Rap + + + 0 + Se Liga + MPEG audio file + Hip Hop/Rap + + + + + + + 122 + R.E.M. Feat. Kate Pearson + + + 187 + 122 + Out Of Time + + + 0 + Shiny Happy People + MPEG audio file + Alternative & Punk + + + 0 + Me In Honey + MPEG audio file + Alternative & Punk + + + 0 + Radio Song + MPEG audio file + Alternative & Punk + + + 0 + Losing My Religion + MPEG audio file + Alternative & Punk + + + 0 + Low + MPEG audio file + Alternative & Punk + + + 0 + Near Wild Heaven + MPEG audio file + Alternative & Punk + + + 0 + Endgame + MPEG audio file + Alternative & Punk + + + 0 + Belong + MPEG audio file + Alternative & Punk + + + 0 + Half A World Away + MPEG audio file + Alternative & Punk + + + 0 + Texarkana + MPEG audio file + Alternative & Punk + + + 0 + Country Feedback + MPEG audio file + Alternative & Punk + + + + + + + 123 + R.E.M. Feat. KRS-One + + + + 124 + R.E.M. + + + 188 + 124 + Green + + + 0 + Pop Song 89 + MPEG audio file + Alternative & Punk + + + 0 + Get Up + MPEG audio file + Alternative & Punk + + + 0 + You Are The Everything + MPEG audio file + Alternative & Punk + + + 0 + Stand + MPEG audio file + Alternative & Punk + + + 0 + World Leader Pretend + MPEG audio file + Alternative & Punk + + + 0 + The Wrong Child + MPEG audio file + Alternative & Punk + + + 0 + Orange Crush + MPEG audio file + Alternative & Punk + + + 0 + Turn You Inside-Out + MPEG audio file + Alternative & Punk + + + 0 + Hairshirt + MPEG audio file + Alternative & Punk + + + 0 + I Remember California + MPEG audio file + Alternative & Punk + + + 0 + Untitled + MPEG audio file + Alternative & Punk + + + + + 189 + 124 + New Adventures In Hi-Fi + + + 0 + How The West Was Won And Where It Got Us + MPEG audio file + Rock + + + 0 + The Wake-Up Bomb + MPEG audio file + Rock + + + 0 + New Test Leper + MPEG audio file + Rock + + + 0 + Undertow + MPEG audio file + Rock + + + 0 + E-Bow The Letter + MPEG audio file + Rock + + + 0 + Leave + MPEG audio file + Rock + + + 0 + Departure + MPEG audio file + Rock + + + 0 + Bittersweet Me + MPEG audio file + Rock + + + 0 + Be Mine + MPEG audio file + Rock + + + 0 + Binky The Doormat + MPEG audio file + Rock + + + 0 + Zither + MPEG audio file + Rock + + + 0 + So Fast, So Numb + MPEG audio file + Rock + + + 0 + Low Desert + MPEG audio file + Rock + + + 0 + Electrolite + MPEG audio file + Rock + + + + + 190 + 124 + The Best Of R.E.M.: The IRS Years + + + 0 + Carnival Of Sorts + MPEG audio file + Alternative & Punk + + + 0 + Radio Free Aurope + MPEG audio file + Alternative & Punk + + + 0 + Perfect Circle + MPEG audio file + Alternative & Punk + + + 0 + Talk About The Passion + MPEG audio file + Alternative & Punk + + + 0 + So Central Rain + MPEG audio file + Alternative & Punk + + + 0 + Don't Go Back To Rockville + MPEG audio file + Alternative & Punk + + + 0 + Pretty Persuasion + MPEG audio file + Alternative & Punk + + + 0 + Green Grow The Rushes + MPEG audio file + Alternative & Punk + + + 0 + Can't Get There From Here + MPEG audio file + Alternative & Punk + + + 0 + Driver 8 + MPEG audio file + Alternative & Punk + + + 0 + Fall On Me + MPEG audio file + Alternative & Punk + + + 0 + I Believe + MPEG audio file + Alternative & Punk + + + 0 + Cuyahoga + MPEG audio file + Alternative & Punk + + + 0 + The One I Love + MPEG audio file + Alternative & Punk + + + 0 + The Finest Worksong + MPEG audio file + Alternative & Punk + + + 0 + It's The End Of The World As We Know It (And I Feel Fine) + MPEG audio file + Alternative & Punk + + + + + + + 125 + Raimundos + + + 191 + 125 + Cesta Básica + + + 0 + Infeliz Natal + MPEG audio file + Alternative & Punk + + + 0 + A Sua + MPEG audio file + Alternative & Punk + + + 0 + Papeau Nuky Doe + MPEG audio file + Alternative & Punk + + + 0 + Merry Christmas + MPEG audio file + Alternative & Punk + + + 0 + Bodies + MPEG audio file + Alternative & Punk + + + 0 + Puteiro Em João Pessoa + MPEG audio file + Alternative & Punk + + + 0 + Esporrei Na Manivela + MPEG audio file + Alternative & Punk + + + 0 + Bê-a-Bá + MPEG audio file + Alternative & Punk + + + 0 + Cajueiro + MPEG audio file + Alternative & Punk + + + 0 + Palhas Do Coqueiro + MPEG audio file + Alternative & Punk + + + + + + + 126 + Raul Seixas + + + 192 + 126 + Raul Seixas + + + 0 + Maluco Beleza + MPEG audio file + Rock + + + 0 + O Dia Em Que A Terra Parou + MPEG audio file + Rock + + + 0 + No Fundo Do Quintal Da Escola + MPEG audio file + Rock + + + 0 + O Segredo Do Universo + MPEG audio file + Rock + + + 0 + As Profecias + MPEG audio file + Rock + + + 0 + Mata Virgem + MPEG audio file + Rock + + + 0 + Sapato 36 + MPEG audio file + Rock + + + 0 + Todo Mundo Explica + MPEG audio file + Rock + + + 0 + Que Luz É Essa + MPEG audio file + Rock + + + 0 + Diamante De Mendigo + MPEG audio file + Rock + + + 0 + Negócio É + MPEG audio file + Rock + + + 0 + Muita Estrela, Pouca Constelação + MPEG audio file + Rock + + + 0 + Século XXI + MPEG audio file + Rock + + + 0 + Rock Das Aranhas (Ao Vivo) (Live) + MPEG audio file + Rock + + + + + + + 127 + Red Hot Chili Peppers + + + 193 + 127 + Blood Sugar Sex Magik + + + 0 + The Power Of Equality + MPEG audio file + Alternative & Punk + + + 0 + If You Have To Ask + MPEG audio file + Alternative & Punk + + + 0 + Breaking The Girl + MPEG audio file + Alternative & Punk + + + 0 + Funky Monks + MPEG audio file + Alternative & Punk + + + 0 + Suck My Kiss + MPEG audio file + Alternative & Punk + + + 0 + I Could Have Lied + MPEG audio file + Alternative & Punk + + + 0 + Mellowship Slinky In B Major + MPEG audio file + Alternative & Punk + + + 0 + The Righteous & The Wicked + MPEG audio file + Alternative & Punk + + + 0 + Give It Away + MPEG audio file + Alternative & Punk + + + 0 + Blood Sugar Sex Magik + MPEG audio file + Alternative & Punk + + + 0 + Under The Bridge + MPEG audio file + Alternative & Punk + + + 0 + Naked In The Rain + MPEG audio file + Alternative & Punk + + + 0 + Apache Rose Peacock + MPEG audio file + Alternative & Punk + + + 0 + The Greeting Song + MPEG audio file + Alternative & Punk + + + 0 + My Lovely Man + MPEG audio file + Alternative & Punk + + + 0 + Sir Psycho Sexy + MPEG audio file + Alternative & Punk + + + 0 + They're Red Hot + MPEG audio file + Alternative & Punk + + + + + 194 + 127 + By The Way + + + 0 + By The Way + MPEG audio file + Rock + + + 0 + Universally Speaking + MPEG audio file + Rock + + + 0 + This Is The Place + MPEG audio file + Rock + + + 0 + Dosed + MPEG audio file + Rock + + + 0 + Don't Forget Me + MPEG audio file + Rock + + + 0 + The Zephyr Song + MPEG audio file + Rock + + + 0 + Can't Stop + MPEG audio file + Rock + + + 0 + I Could Die For You + MPEG audio file + Rock + + + 0 + Midnight + MPEG audio file + Rock + + + 0 + Throw Away Your Television + MPEG audio file + Rock + + + 0 + Cabron + MPEG audio file + Rock + + + 0 + Tear + MPEG audio file + Rock + + + 0 + On Mercury + MPEG audio file + Rock + + + 0 + Minor Thing + MPEG audio file + Rock + + + 0 + Warm Tape + MPEG audio file + Rock + + + 0 + Venice Queen + MPEG audio file + Rock + + + + + 195 + 127 + Californication + + + 0 + Around The World + MPEG audio file + Rock + + + 0 + Parallel Universe + MPEG audio file + Rock + + + 0 + Scar Tissue + MPEG audio file + Rock + + + 0 + Otherside + MPEG audio file + Rock + + + 0 + Get On Top + MPEG audio file + Rock + + + 0 + Californication + MPEG audio file + Rock + + + 0 + Easily + MPEG audio file + Rock + + + 0 + Porcelain + MPEG audio file + Rock + + + 0 + Emit Remmus + MPEG audio file + Rock + + + 0 + I Like Dirt + MPEG audio file + Rock + + + 0 + This Velvet Glove + MPEG audio file + Rock + + + 0 + Savior + MPEG audio file + Rock + + + 0 + Purple Stain + MPEG audio file + Rock + + + 0 + Right On Time + MPEG audio file + Rock + + + 0 + Road Trippin' + MPEG audio file + Rock + + + + + + + 128 + Rush + + + 196 + 128 + Retrospective I (1974-1980) + + + 0 + The Spirit Of Radio + MPEG audio file + Rock + + + 0 + The Trees + MPEG audio file + Rock + + + 0 + Something For Nothing + MPEG audio file + Rock + + + 0 + Freewill + MPEG audio file + Rock + + + 0 + Xanadu + MPEG audio file + Rock + + + 0 + Bastille Day + MPEG audio file + Rock + + + 0 + By-Tor And The Snow Dog + MPEG audio file + Rock + + + 0 + Anthem + MPEG audio file + Rock + + + 0 + Closer To The Heart + MPEG audio file + Rock + + + 0 + 2112 Overture + MPEG audio file + Rock + + + 0 + The Temples Of Syrinx + MPEG audio file + Rock + + + 0 + La Villa Strangiato + MPEG audio file + Rock + + + 0 + Fly By Night + MPEG audio file + Rock + + + 0 + Finding My Way + MPEG audio file + Rock + + + + + + + 129 + Simply Red + + + + 130 + Skank + + + 199 + 130 + Maquinarama + + + 0 + Água E Fogo + MPEG audio file + Rock + + + 0 + Três Lados + MPEG audio file + Rock + + + 0 + Ela Desapareceu + MPEG audio file + Rock + + + 0 + Balada Do Amor Inabalável + MPEG audio file + Rock + + + 0 + Canção Noturna + MPEG audio file + Rock + + + 0 + Muçulmano + MPEG audio file + Rock + + + 0 + Maquinarama + MPEG audio file + Rock + + + 0 + Rebelião + MPEG audio file + Rock + + + 0 + A Última Guerra + MPEG audio file + Rock + + + 0 + Fica + MPEG audio file + Rock + + + 0 + Ali + MPEG audio file + Rock + + + 0 + Preto Damião + MPEG audio file + Rock + + + + + 200 + 130 + O Samba Poconé + + + 0 + É Uma Partida De Futebol + MPEG audio file + Rock + + + 0 + Eu Disse A Ela + MPEG audio file + Rock + + + 0 + Zé Trindade + MPEG audio file + Rock + + + 0 + Garota Nacional + MPEG audio file + Rock + + + 0 + Tão Seu + MPEG audio file + Rock + + + 0 + Sem Terra + MPEG audio file + Rock + + + 0 + Os Exilados + MPEG audio file + Rock + + + 0 + Um Dia Qualquer + MPEG audio file + Rock + + + 0 + Los Pretos + MPEG audio file + Rock + + + 0 + Sul Da América + MPEG audio file + Rock + + + 0 + Poconé + MPEG audio file + Rock + + + + + + + 131 + Smashing Pumpkins + + + 201 + 131 + Judas 0: B-Sides and Rarities + + + 0 + Lucky 13 + MPEG audio file + Alternative & Punk + + + 0 + Aeroplane Flies High + MPEG audio file + Alternative & Punk + + + 0 + Because You Are + MPEG audio file + Alternative & Punk + + + 0 + Slow Dawn + MPEG audio file + Alternative & Punk + + + 0 + Believe + MPEG audio file + Alternative & Punk + + + 0 + My Mistake + MPEG audio file + Alternative & Punk + + + 0 + Marquis In Spades + MPEG audio file + Alternative & Punk + + + 0 + Here's To The Atom Bomb + MPEG audio file + Alternative & Punk + + + 0 + Sparrow + MPEG audio file + Alternative & Punk + + + 0 + Waiting + MPEG audio file + Alternative & Punk + + + 0 + Saturnine + MPEG audio file + Alternative & Punk + + + 0 + Rock On + MPEG audio file + Alternative & Punk + + + 0 + Set The Ray To Jerry + MPEG audio file + Alternative & Punk + + + 0 + Winterlong + MPEG audio file + Alternative & Punk + + + 0 + Soot & Stars + MPEG audio file + Alternative & Punk + + + 0 + Blissed & Gone + MPEG audio file + Alternative & Punk + + + + + 202 + 131 + Rotten Apples: Greatest Hits + + + 0 + Siva + MPEG audio file + Alternative & Punk + + + 0 + Rhinocerous + MPEG audio file + Alternative & Punk + + + 0 + Drown + MPEG audio file + Alternative & Punk + + + 0 + Cherub Rock + MPEG audio file + Alternative & Punk + + + 0 + Today + MPEG audio file + Alternative & Punk + + + 0 + Disarm + MPEG audio file + Alternative & Punk + + + 0 + Landslide + MPEG audio file + Alternative & Punk + + + 0 + Bullet With Butterfly Wings + MPEG audio file + Alternative & Punk + + + 0 + 1979 + MPEG audio file + Alternative & Punk + + + 0 + Zero + MPEG audio file + Alternative & Punk + + + 0 + Tonight, Tonight + MPEG audio file + Alternative & Punk + + + 0 + Eye + MPEG audio file + Alternative & Punk + + + 0 + Ava Adore + MPEG audio file + Alternative & Punk + + + 0 + Perfect + MPEG audio file + Alternative & Punk + + + 0 + The Everlasting Gaze + MPEG audio file + Alternative & Punk + + + 0 + Stand Inside Your Love + MPEG audio file + Alternative & Punk + + + 0 + Real Love + MPEG audio file + Alternative & Punk + + + 0 + [Untitled] + MPEG audio file + Alternative & Punk + + + + + + + 132 + Soundgarden + + + 203 + 132 + A-Sides + + + 0 + Nothing To Say + MPEG audio file + Rock + + + 0 + Flower + MPEG audio file + Rock + + + 0 + Loud Love + MPEG audio file + Rock + + + 0 + Hands All Over + MPEG audio file + Rock + + + 0 + Get On The Snake + MPEG audio file + Rock + + + 0 + Jesus Christ Pose + MPEG audio file + Rock + + + 0 + Outshined + MPEG audio file + Rock + + + 0 + Rusty Cage + MPEG audio file + Rock + + + 0 + Spoonman + MPEG audio file + Rock + + + 0 + The Day I Tried To Live + MPEG audio file + Rock + + + 0 + Black Hole Sun + MPEG audio file + Rock + + + 0 + Fell On Black Days + MPEG audio file + Rock + + + 0 + Pretty Noose + MPEG audio file + Rock + + + 0 + Burden In My Hand + MPEG audio file + Rock + + + 0 + Blow Up The Outside World + MPEG audio file + Rock + + + 0 + Ty Cobb + MPEG audio file + Rock + + + 0 + Bleed Together + MPEG audio file + Rock + + + + + + + 133 + Stevie Ray Vaughan & Double Trouble + + + 205 + 133 + In Step + + + 0 + The House Is Rockin' + MPEG audio file + Blues + + + 0 + Crossfire + MPEG audio file + Blues + + + 0 + Tightrope + MPEG audio file + Blues + + + 0 + Let Me Love You Baby + MPEG audio file + Blues + + + 0 + Leave My Girl Alone + MPEG audio file + Blues + + + 0 + Travis Walk + MPEG audio file + Blues + + + 0 + Wall Of Denial + MPEG audio file + Blues + + + 0 + Scratch-N-Sniff + MPEG audio file + Blues + + + 0 + Love Me Darlin' + MPEG audio file + Blues + + + 0 + Riviera Paradise + MPEG audio file + Blues + + + + + + + 134 + Stone Temple Pilots + + + 206 + 134 + Core + + + 0 + Dead And Bloated + MPEG audio file + Rock + + + 0 + Sex Type Thing + MPEG audio file + Rock + + + 0 + Wicked Garden + MPEG audio file + Rock + + + 0 + No Memory + MPEG audio file + Rock + + + 0 + Sin + MPEG audio file + Rock + + + 0 + Naked Sunday + MPEG audio file + Rock + + + 0 + Creep + MPEG audio file + Rock + + + 0 + Piece Of Pie + MPEG audio file + Rock + + + 0 + Plush + MPEG audio file + Rock + + + 0 + Wet My Bed + MPEG audio file + Rock + + + 0 + Crackerman + MPEG audio file + Rock + + + 0 + Where The River Goes + MPEG audio file + Rock + + + + + + + 135 + System Of A Down + + + 207 + 135 + Mezmerize + + + 0 + Soldier Side - Intro + MPEG audio file + Metal + + + 0 + B.Y.O.B. + MPEG audio file + Metal + + + 0 + Revenga + MPEG audio file + Metal + + + 0 + Cigaro + MPEG audio file + Metal + + + 0 + Radio/Video + MPEG audio file + Metal + + + 0 + This Cocaine Makes Me Feel Like I'm On This Song + MPEG audio file + Metal + + + 0 + Violent Pornography + MPEG audio file + Metal + + + 0 + Question! + MPEG audio file + Metal + + + 0 + Sad Statue + MPEG audio file + Metal + + + 0 + Old School Hollywood + MPEG audio file + Metal + + + 0 + Lost in Hollywood + MPEG audio file + Metal + + + + + + + 136 + Terry Bozzio, Tony Levin & Steve Stevens + + + 208 + 136 + [1997] Black Light Syndrome + + + 0 + The Sun Road + MPEG audio file + Rock + + + 0 + Dark Corners + MPEG audio file + Rock + + + 0 + Duende + MPEG audio file + Rock + + + 0 + Black Light Syndrome + MPEG audio file + Rock + + + 0 + Falling in Circles + MPEG audio file + Rock + + + 0 + Book of Hours + MPEG audio file + Rock + + + 0 + Chaos-Control + MPEG audio file + Rock + + + + + + + 137 + The Black Crowes + + + 209 + 137 + Live [Disc 1] + + + 0 + Midnight From The Inside Out + MPEG audio file + Blues + + + 0 + Sting Me + MPEG audio file + Blues + + + 0 + Thick & Thin + MPEG audio file + Blues + + + 0 + Greasy Grass River + MPEG audio file + Blues + + + 0 + Sometimes Salvation + MPEG audio file + Blues + + + 0 + Cursed Diamonds + MPEG audio file + Blues + + + 0 + Miracle To Me + MPEG audio file + Blues + + + 0 + Wiser Time + MPEG audio file + Blues + + + 0 + Girl From A Pawnshop + MPEG audio file + Blues + + + 0 + Cosmic Fiend + MPEG audio file + Blues + + + + + 210 + 137 + Live [Disc 2] + + + 0 + Black Moon Creeping + MPEG audio file + Blues + + + 0 + High Head Blues + MPEG audio file + Blues + + + 0 + Title Song + MPEG audio file + Blues + + + 0 + She Talks To Angels + MPEG audio file + Blues + + + 0 + Twice As Hard + MPEG audio file + Blues + + + 0 + Lickin' + MPEG audio file + Blues + + + 0 + Soul Singing + MPEG audio file + Blues + + + 0 + Hard To Handle + MPEG audio file + Blues + + + 0 + Remedy + MPEG audio file + Blues + + + + + + + 138 + The Clash + + + 211 + 138 + The Singles + + + 0 + White Riot + MPEG audio file + Alternative & Punk + + + 0 + Remote Control + MPEG audio file + Alternative & Punk + + + 0 + Complete Control + MPEG audio file + Alternative & Punk + + + 0 + Clash City Rockers + MPEG audio file + Alternative & Punk + + + 0 + (White Man) In Hammersmith Palais + MPEG audio file + Alternative & Punk + + + 0 + Tommy Gun + MPEG audio file + Alternative & Punk + + + 0 + English Civil War + MPEG audio file + Alternative & Punk + + + 0 + I Fought The Law + MPEG audio file + Alternative & Punk + + + 0 + London Calling + MPEG audio file + Alternative & Punk + + + 0 + Train In Vain + MPEG audio file + Alternative & Punk + + + 0 + Bankrobber + MPEG audio file + Alternative & Punk + + + 0 + The Call Up + MPEG audio file + Alternative & Punk + + + 0 + Hitsville UK + MPEG audio file + Alternative & Punk + + + 0 + The Magnificent Seven + MPEG audio file + Alternative & Punk + + + 0 + This Is Radio Clash + MPEG audio file + Alternative & Punk + + + 0 + Know Your Rights + MPEG audio file + Alternative & Punk + + + 0 + Rock The Casbah + MPEG audio file + Alternative & Punk + + + 0 + Should I Stay Or Should I Go + MPEG audio file + Alternative & Punk + + + + + + + 139 + The Cult + + + 212 + 139 + Beyond Good And Evil + + + 0 + Rise + MPEG audio file + Rock + + + 0 + Take The Power + MPEG audio file + Rock + + + 0 + Breathe + MPEG audio file + Rock + + + 0 + Nico + MPEG audio file + Rock + + + 0 + American Gothic + MPEG audio file + Rock + + + 0 + Ashes And Ghosts + MPEG audio file + Rock + + + 0 + Shape The Sky + MPEG audio file + Rock + + + 0 + Speed Of Light + MPEG audio file + Rock + + + 0 + True Believers + MPEG audio file + Rock + + + 0 + My Bridges Burn + MPEG audio file + Rock + + + 0 + War (The Process) + MPEG audio file + Rock + + + 0 + The Saint + MPEG audio file + Rock + + + + + 213 + 139 + Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK] + + + 0 + She Sells Sanctuary + MPEG audio file + Rock + + + 0 + Fire Woman + MPEG audio file + Rock + + + 0 + Lil' Evil + MPEG audio file + Rock + + + 0 + Spirit Walker + MPEG audio file + Rock + + + 0 + The Witch + MPEG audio file + Rock + + + 0 + Revolution + MPEG audio file + Rock + + + 0 + Wild Hearted Son + MPEG audio file + Rock + + + 0 + Love Removal Machine + MPEG audio file + Rock + + + 0 + Rain + MPEG audio file + Rock + + + 0 + Edie (Ciao Baby) + MPEG audio file + Rock + + + 0 + Heart Of Soul + MPEG audio file + Rock + + + 0 + Love + MPEG audio file + Rock + + + 0 + Wild Flower + MPEG audio file + Rock + + + 0 + Go West + MPEG audio file + Rock + + + 0 + Resurrection Joe + MPEG audio file + Rock + + + 0 + Sun King + MPEG audio file + Rock + + + 0 + Sweet Soul Sister + MPEG audio file + Rock + + + 0 + Earth Mofo + MPEG audio file + Rock + + + + + + + 140 + The Doors + + + 214 + 140 + The Doors + + + 0 + Break on Through + MPEG audio file + Rock + + + 0 + Soul Kitchen + MPEG audio file + Rock + + + 0 + The Crystal Ship + MPEG audio file + Rock + + + 0 + Twentienth Century Fox + MPEG audio file + Rock + + + 0 + Alabama Song + MPEG audio file + Rock + + + 0 + Light My Fire + MPEG audio file + Rock + + + 0 + Back Door Man + MPEG audio file + Rock + + + 0 + I Looked At You + MPEG audio file + Rock + + + 0 + End Of The Night + MPEG audio file + Rock + + + 0 + Take It As It Comes + MPEG audio file + Rock + + + 0 + The End + MPEG audio file + Rock + + + + + + + 141 + The Police + + + 215 + 141 + The Police Greatest Hits + + + 0 + Roxanne + MPEG audio file + Rock + + + 0 + Can't Stand Losing You + MPEG audio file + Rock + + + 0 + Message in a Bottle + MPEG audio file + Rock + + + 0 + Walking on the Moon + MPEG audio file + Rock + + + 0 + Don't Stand so Close to Me + MPEG audio file + Rock + + + 0 + De Do Do Do, De Da Da Da + MPEG audio file + Rock + + + 0 + Every Little Thing She Does is Magic + MPEG audio file + Rock + + + 0 + Invisible Sun + MPEG audio file + Rock + + + 0 + Spirit's in the Material World + MPEG audio file + Rock + + + 0 + Every Breath You Take + MPEG audio file + Rock + + + 0 + King Of Pain + MPEG audio file + Rock + + + 0 + Wrapped Around Your Finger + MPEG audio file + Rock + + + 0 + Don't Stand So Close to Me '86 + MPEG audio file + Rock + + + 0 + Message in a Bottle (new classic rock mix) + MPEG audio file + Rock + + + + + + + 142 + The Rolling Stones + + + 216 + 142 + Hot Rocks, 1964-1971 (Disc 1) + + + 0 + Time Is On My Side + MPEG audio file + Rock + + + 0 + Heart Of Stone + MPEG audio file + Rock + + + 0 + Play With Fire + MPEG audio file + Rock + + + 0 + Satisfaction + MPEG audio file + Rock + + + 0 + As Tears Go By + MPEG audio file + Rock + + + 0 + Get Off Of My Cloud + MPEG audio file + Rock + + + 0 + Mother's Little Helper + MPEG audio file + Rock + + + 0 + 19th Nervous Breakdown + MPEG audio file + Rock + + + 0 + Paint It Black + MPEG audio file + Rock + + + 0 + Under My Thumb + MPEG audio file + Rock + + + 0 + Ruby Tuesday + MPEG audio file + Rock + + + 0 + Let's Spend The Night Together + MPEG audio file + Rock + + + + + 217 + 142 + No Security + + + 0 + Intro + MPEG audio file + Rock + + + 0 + You Got Me Rocking + MPEG audio file + Rock + + + 0 + Gimmie Shelters + MPEG audio file + Rock + + + 0 + Flip The Switch + MPEG audio file + Rock + + + 0 + Memory Motel + MPEG audio file + Rock + + + 0 + Corinna + MPEG audio file + Rock + + + 0 + Saint Of Me + MPEG audio file + Rock + + + 0 + Wainting On A Friend + MPEG audio file + Rock + + + 0 + Sister Morphine + MPEG audio file + Rock + + + 0 + Live With Me + MPEG audio file + Rock + + + 0 + Respectable + MPEG audio file + Rock + + + 0 + Thief In The Night + MPEG audio file + Rock + + + 0 + The Last Time + MPEG audio file + Rock + + + 0 + Out Of Control + MPEG audio file + Rock + + + + + 218 + 142 + Voodoo Lounge + + + 0 + Love Is Strong + MPEG audio file + Rock + + + 0 + You Got Me Rocking + MPEG audio file + Rock + + + 0 + Sparks Will Fly + MPEG audio file + Rock + + + 0 + The Worst + MPEG audio file + Rock + + + 0 + New Faces + MPEG audio file + Rock + + + 0 + Moon Is Up + MPEG audio file + Rock + + + 0 + Out Of Tears + MPEG audio file + Rock + + + 0 + I Go Wild + MPEG audio file + Rock + + + 0 + Brand New Car + MPEG audio file + Rock + + + 0 + Sweethearts Together + MPEG audio file + Rock + + + 0 + Suck On The Jugular + MPEG audio file + Rock + + + 0 + Blinded By Rainbows + MPEG audio file + Rock + + + 0 + Baby Break It Down + MPEG audio file + Rock + + + 0 + Thru And Thru + MPEG audio file + Rock + + + 0 + Mean Disposition + MPEG audio file + Rock + + + + + + + 143 + The Tea Party + + + 219 + 143 + Tangents + + + 0 + Walking Wounded + MPEG audio file + Alternative & Punk + + + 0 + Temptation + MPEG audio file + Alternative & Punk + + + 0 + The Messenger + MPEG audio file + Alternative & Punk + + + 0 + Psychopomp + MPEG audio file + Alternative & Punk + + + 0 + Sister Awake + MPEG audio file + Alternative & Punk + + + 0 + The Bazaar + MPEG audio file + Alternative & Punk + + + 0 + Save Me (Remix) + MPEG audio file + Alternative & Punk + + + 0 + Fire In The Head + MPEG audio file + Alternative & Punk + + + 0 + Release + MPEG audio file + Alternative & Punk + + + 0 + Heaven Coming Down + MPEG audio file + Alternative & Punk + + + 0 + The River (Remix) + MPEG audio file + Alternative & Punk + + + 0 + Babylon + MPEG audio file + Alternative & Punk + + + 0 + Waiting On A Sign + MPEG audio file + Alternative & Punk + + + 0 + Life Line + MPEG audio file + Alternative & Punk + + + 0 + Paint It Black + MPEG audio file + Alternative & Punk + + + + + 220 + 143 + Transmission + + + 0 + Temptation + MPEG audio file + Alternative & Punk + + + 0 + Army Ants + MPEG audio file + Alternative & Punk + + + 0 + Psychopomp + MPEG audio file + Alternative & Punk + + + 0 + Gyroscope + MPEG audio file + Alternative & Punk + + + 0 + Alarum + MPEG audio file + Alternative & Punk + + + 0 + Release + MPEG audio file + Alternative & Punk + + + 0 + Transmission + MPEG audio file + Alternative & Punk + + + 0 + Babylon + MPEG audio file + Alternative & Punk + + + 0 + Pulse + MPEG audio file + Alternative & Punk + + + 0 + Emerald + MPEG audio file + Alternative & Punk + + + 0 + Aftermath + MPEG audio file + Alternative & Punk + + + + + + + 144 + The Who + + + 221 + 144 + My Generation - The Very Best Of The Who + + + 0 + I Can't Explain + MPEG audio file + Rock + + + 0 + Anyway, Anyhow, Anywhere + MPEG audio file + Rock + + + 0 + My Generation + MPEG audio file + Rock + + + 0 + Substitute + MPEG audio file + Rock + + + 0 + I'm A Boy + MPEG audio file + Rock + + + 0 + Boris The Spider + MPEG audio file + Rock + + + 0 + Happy Jack + MPEG audio file + Rock + + + 0 + Pictures Of Lily + MPEG audio file + Rock + + + 0 + I Can See For Miles + MPEG audio file + Rock + + + 0 + Magic Bus + MPEG audio file + Rock + + + 0 + Pinball Wizard + MPEG audio file + Rock + + + 0 + The Seeker + MPEG audio file + Rock + + + 0 + Baba O'Riley + MPEG audio file + Rock + + + 0 + Won't Get Fooled Again (Full Length Version) + MPEG audio file + Rock + + + 0 + Let's See Action + MPEG audio file + Rock + + + 0 + 5.15 + MPEG audio file + Rock + + + 0 + Join Together + MPEG audio file + Rock + + + 0 + Squeeze Box + MPEG audio file + Rock + + + 0 + Who Are You (Single Edit Version) + MPEG audio file + Rock + + + 0 + You Better You Bet + MPEG audio file + Rock + + + + + + + 145 + Tim Maia + + + 222 + 145 + Serie Sem Limite (Disc 1) + + + 0 + Primavera + MPEG audio file + Latin + + + 0 + Chocolate + MPEG audio file + Latin + + + 0 + Azul Da Cor Do Mar + MPEG audio file + Latin + + + 0 + O Descobridor Dos Sete Mares + MPEG audio file + Latin + + + 0 + Até Que Enfim Encontrei Você + MPEG audio file + Latin + + + 0 + Coroné Antonio Bento + MPEG audio file + Latin + + + 0 + New Love + MPEG audio file + Latin + + + 0 + Não Vou Ficar + MPEG audio file + Latin + + + 0 + Música No Ar + MPEG audio file + Latin + + + 0 + Salve Nossa Senhora + MPEG audio file + Latin + + + 0 + Você Fugiu + MPEG audio file + Latin + + + 0 + Cristina Nº 2 + MPEG audio file + Latin + + + 0 + Compadre + MPEG audio file + Latin + + + 0 + Over Again + MPEG audio file + Latin + + + 0 + Réu Confesso + MPEG audio file + Latin + + + + + 223 + 145 + Serie Sem Limite (Disc 2) + + + 0 + O Que Me Importa + MPEG audio file + Latin + + + 0 + Gostava Tanto De Você + MPEG audio file + Latin + + + 0 + Você + MPEG audio file + Latin + + + 0 + Não Quero Dinheiro + MPEG audio file + Latin + + + 0 + Eu Amo Você + MPEG audio file + Latin + + + 0 + A Festa Do Santo Reis + MPEG audio file + Latin + + + 0 + I Don't Know What To Do With Myself + MPEG audio file + Latin + + + 0 + Padre Cícero + MPEG audio file + Latin + + + 0 + Nosso Adeus + MPEG audio file + Latin + + + 0 + Canário Do Reino + MPEG audio file + Latin + + + 0 + Preciso Ser Amado + MPEG audio file + Latin + + + 0 + Balanço + MPEG audio file + Latin + + + 0 + Preciso Aprender A Ser Só + MPEG audio file + Latin + + + 0 + Esta É A Canção + MPEG audio file + Latin + + + 0 + Formigueiro + MPEG audio file + Latin + + + + + + + 146 + Titãs + + + 224 + 146 + Acústico + + + 0 + Comida + MPEG audio file + Alternative & Punk + + + 0 + Go Back + MPEG audio file + Alternative & Punk + + + 0 + Prá Dizer Adeus + MPEG audio file + Alternative & Punk + + + 0 + Família + MPEG audio file + Alternative & Punk + + + 0 + Os Cegos Do Castelo + MPEG audio file + Alternative & Punk + + + 0 + O Pulso + MPEG audio file + Alternative & Punk + + + 0 + Marvin + MPEG audio file + Alternative & Punk + + + 0 + Nem 5 Minutos Guardados + MPEG audio file + Alternative & Punk + + + 0 + Flores + MPEG audio file + Alternative & Punk + + + 0 + Palavras + MPEG audio file + Alternative & Punk + + + 0 + Hereditário + MPEG audio file + Alternative & Punk + + + 0 + A Melhor Forma + MPEG audio file + Alternative & Punk + + + 0 + Cabeça Dinossauro + MPEG audio file + Alternative & Punk + + + 0 + 32 Dentes + MPEG audio file + Alternative & Punk + + + 0 + Bichos Escrotos (Vinheta) + MPEG audio file + Alternative & Punk + + + 0 + Não Vou Lutar + MPEG audio file + Alternative & Punk + + + 0 + Homem Primata (Vinheta) + MPEG audio file + Alternative & Punk + + + 0 + Homem Primata + MPEG audio file + Alternative & Punk + + + 0 + Polícia (Vinheta) + MPEG audio file + Alternative & Punk + + + 0 + Querem Meu Sangue + MPEG audio file + Alternative & Punk + + + 0 + Diversão + MPEG audio file + Alternative & Punk + + + 0 + Televisão + MPEG audio file + Alternative & Punk + + + + + 225 + 146 + Volume Dois + + + 0 + Sonifera Ilha + MPEG audio file + Alternative & Punk + + + 0 + Lugar Nenhum + MPEG audio file + Alternative & Punk + + + 0 + Sua Impossivel Chance + MPEG audio file + Alternative & Punk + + + 0 + Desordem + MPEG audio file + Alternative & Punk + + + 0 + Não Vou Me Adaptar + MPEG audio file + Alternative & Punk + + + 0 + Domingo + MPEG audio file + Alternative & Punk + + + 0 + Amanhã Não Se Sabe + MPEG audio file + Alternative & Punk + + + 0 + Caras Como Eu + MPEG audio file + Alternative & Punk + + + 0 + Senhora E Senhor + MPEG audio file + Alternative & Punk + + + 0 + Era Uma Vez + MPEG audio file + Alternative & Punk + + + 0 + Miséria + MPEG audio file + Alternative & Punk + + + 0 + Insensível + MPEG audio file + Alternative & Punk + + + 0 + Eu E Ela + MPEG audio file + Alternative & Punk + + + 0 + Toda Cor + MPEG audio file + Alternative & Punk + + + 0 + É Preciso Saber Viver + MPEG audio file + Alternative & Punk + + + 0 + Senhor Delegado/Eu Não Aguento + MPEG audio file + Alternative & Punk + + + + + + + 147 + Battlestar Galactica + + + 226 + 147 + Battlestar Galactica: The Story So Far + + + 0 + Battlestar Galactica: The Story So Far + Protected MPEG-4 video file + Science Fiction + + + + + 227 + 147 + Battlestar Galactica, Season 3 + + + 0 + Occupation / Precipice + Protected MPEG-4 video file + TV Shows + + + 0 + Exodus, Pt. 1 + Protected MPEG-4 video file + TV Shows + + + 0 + Exodus, Pt. 2 + Protected MPEG-4 video file + TV Shows + + + 0 + Collaborators + Protected MPEG-4 video file + TV Shows + + + 0 + Torn + Protected MPEG-4 video file + TV Shows + + + 0 + A Measure of Salvation + Protected MPEG-4 video file + Science Fiction + + + 0 + Hero + Protected MPEG-4 video file + Science Fiction + + + 0 + Unfinished Business + Protected MPEG-4 video file + Science Fiction + + + 0 + The Passage + Protected MPEG-4 video file + Science Fiction + + + 0 + The Eye of Jupiter + Protected MPEG-4 video file + Science Fiction + + + 0 + Rapture + Protected MPEG-4 video file + Science Fiction + + + 0 + Taking a Break from All Your Worries + Protected MPEG-4 video file + Science Fiction + + + 0 + The Woman King + Protected MPEG-4 video file + Science Fiction + + + 0 + A Day In the Life + Protected MPEG-4 video file + Science Fiction + + + 0 + Dirty Hands + Protected MPEG-4 video file + Science Fiction + + + 0 + Maelstrom + Protected MPEG-4 video file + Science Fiction + + + 0 + The Son Also Rises + Protected MPEG-4 video file + Science Fiction + + + 0 + Crossroads, Pt. 1 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + Crossroads, Pt. 2 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + + + + + 148 + Heroes + + + 228 + 148 + Heroes, Season 1 + + + 0 + .07% + Protected MPEG-4 video file + Drama + + + 0 + Five Years Gone + Protected MPEG-4 video file + Drama + + + 0 + The Hard Part + Protected MPEG-4 video file + Drama + + + 0 + Landslide + Protected MPEG-4 video file + Drama + + + 0 + How to Stop an Exploding Man + Protected MPEG-4 video file + Drama + + + 0 + Genesis + Protected MPEG-4 video file + TV Shows + + + 0 + Don't Look Back + Protected MPEG-4 video file + Drama + + + 0 + One Giant Leap + Protected MPEG-4 video file + Drama + + + 0 + Collision + Protected MPEG-4 video file + Drama + + + 0 + Hiros + Protected MPEG-4 video file + Drama + + + 0 + Better Halves + Protected MPEG-4 video file + Drama + + + 0 + Nothing to Hide + Protected MPEG-4 video file + TV Shows + + + 0 + Seven Minutes to Midnight + Protected MPEG-4 video file + Drama + + + 0 + Homecoming + Protected MPEG-4 video file + Drama + + + 0 + Six Months Ago + Protected MPEG-4 video file + TV Shows + + + 0 + Fallout + Protected MPEG-4 video file + Drama + + + 0 + The Fix + Protected MPEG-4 video file + Drama + + + 0 + Distractions + Protected MPEG-4 video file + Drama + + + 0 + Run! + Protected MPEG-4 video file + Drama + + + 0 + Unexpected + Protected MPEG-4 video file + Drama + + + 0 + Company Man + Protected MPEG-4 video file + Drama + + + 0 + Company Man + Protected MPEG-4 video file + Drama + + + 0 + Parasite + Protected MPEG-4 video file + Drama + + + + + + + 149 + Lost + + + 229 + 149 + Lost, Season 3 + + + 0 + The Brig + Protected MPEG-4 video file + Drama + + + 0 + The Man Behind the Curtain + Protected MPEG-4 video file + Drama + + + 0 + Greatest Hits + Protected MPEG-4 video file + Drama + + + 0 + Through a Looking Glass + Protected MPEG-4 video file + Drama + + + 0 + A Tale of Two Cities + Protected MPEG-4 video file + TV Shows + + + 0 + The Glass Ballerina + Protected MPEG-4 video file + Drama + + + 0 + Further Instructions + Protected MPEG-4 video file + TV Shows + + + 0 + Every Man for Himself + Protected MPEG-4 video file + Drama + + + 0 + The Cost of Living + Protected MPEG-4 video file + TV Shows + + + 0 + I Do + Protected MPEG-4 video file + TV Shows + + + 0 + Not In Portland + Protected MPEG-4 video file + Drama + + + 0 + Not In Portland + Protected MPEG-4 video file + Drama + + + 0 + Flashes Before Your Eyes + Protected MPEG-4 video file + Drama + + + 0 + Lost Survival Guide + Protected MPEG-4 video file + Drama + + + 0 + Stranger In a Strange Land + Protected MPEG-4 video file + Drama + + + 0 + Tricia Tanaka Is Dead + Protected MPEG-4 video file + Drama + + + 0 + Enter 77 + Protected MPEG-4 video file + Drama + + + 0 + Par Avion + Protected MPEG-4 video file + Drama + + + 0 + The Man from Tallahassee + Protected MPEG-4 video file + Drama + + + 0 + Exposé + Protected MPEG-4 video file + Drama + + + 0 + Left Behind + Protected MPEG-4 video file + Drama + + + 0 + One of Us + Protected MPEG-4 video file + Drama + + + 0 + Catch-22 + Protected MPEG-4 video file + Drama + + + 0 + D.O.C. + Protected MPEG-4 video file + Drama + + + 0 + Through the Looking Glass, Pt. 2 + Protected MPEG-4 video file + Drama + + + 0 + Through the Looking Glass, Pt. 1 + Protected MPEG-4 video file + Drama + + + + + 230 + 149 + Lost, Season 1 + + + 0 + Lost (Pilot, Part 1) [Premiere] + Protected MPEG-4 video file + TV Shows + + + 0 + Lost (Pilot, Part 2) + Protected MPEG-4 video file + TV Shows + + + 0 + Tabula Rasa + Protected MPEG-4 video file + TV Shows + + + 0 + Walkabout + Protected MPEG-4 video file + TV Shows + + + 0 + White Rabbit + Protected MPEG-4 video file + TV Shows + + + 0 + House of the Rising Sun + Protected MPEG-4 video file + TV Shows + + + 0 + The Moth + Protected MPEG-4 video file + TV Shows + + + 0 + Confidence Man + Protected MPEG-4 video file + TV Shows + + + 0 + Solitary + Protected MPEG-4 video file + TV Shows + + + 0 + Raised By Another + Protected MPEG-4 video file + TV Shows + + + 0 + All the Best Cowboys Have Daddy Issues + Protected MPEG-4 video file + TV Shows + + + 0 + Whatever the Case May Be + Protected MPEG-4 video file + TV Shows + + + 0 + Hearts and Minds + Protected MPEG-4 video file + TV Shows + + + 0 + Special + Protected MPEG-4 video file + TV Shows + + + 0 + Homecoming + Protected MPEG-4 video file + TV Shows + + + 0 + Outlaws + Protected MPEG-4 video file + TV Shows + + + 0 + ...In Translation + Protected MPEG-4 video file + TV Shows + + + 0 + Numbers + Protected MPEG-4 video file + TV Shows + + + 0 + Deus Ex Machina + Protected MPEG-4 video file + TV Shows + + + 0 + Do No Harm + Protected MPEG-4 video file + TV Shows + + + 0 + The Greater Good + Protected MPEG-4 video file + TV Shows + + + 0 + Born to Run + Protected MPEG-4 video file + TV Shows + + + 0 + Exodus (Part 1) + Protected MPEG-4 video file + TV Shows + + + 0 + Exodus (Part 2) [Season Finale] + Protected MPEG-4 video file + TV Shows + + + 0 + Exodus (Part 3) [Season Finale] + Protected MPEG-4 video file + TV Shows + + + + + 231 + 149 + Lost, Season 2 + + + 0 + Man of Science, Man of Faith (Premiere) + Protected MPEG-4 video file + TV Shows + + + 0 + Adrift + Protected MPEG-4 video file + TV Shows + + + 0 + Orientation + Protected MPEG-4 video file + TV Shows + + + 0 + Everybody Hates Hugo + Protected MPEG-4 video file + TV Shows + + + 0 + ...And Found + Protected MPEG-4 video file + TV Shows + + + 0 + Abandoned + Protected MPEG-4 video file + TV Shows + + + 0 + The Other 48 Days + Protected MPEG-4 video file + TV Shows + + + 0 + Collision + Protected MPEG-4 video file + TV Shows + + + 0 + What Kate Did + Protected MPEG-4 video file + TV Shows + + + 0 + The 23rd Psalm + Protected MPEG-4 video file + TV Shows + + + 0 + The Hunting Party + Protected MPEG-4 video file + Drama + + + 0 + Fire + Water + Protected MPEG-4 video file + Drama + + + 0 + The Long Con + Protected MPEG-4 video file + TV Shows + + + 0 + One of Them + Protected MPEG-4 video file + Drama + + + 0 + Maternity Leave + Protected MPEG-4 video file + Drama + + + 0 + The Whole Truth + Protected MPEG-4 video file + Drama + + + 0 + Lockdown + Protected MPEG-4 video file + Drama + + + 0 + Dave + Protected MPEG-4 video file + TV Shows + + + 0 + S.O.S. + Protected MPEG-4 video file + TV Shows + + + 0 + Two for the Road + Protected MPEG-4 video file + Drama + + + 0 + "?" + Protected MPEG-4 video file + TV Shows + + + 0 + Three Minutes + Protected MPEG-4 video file + TV Shows + + + 0 + Live Together, Die Alone, Pt. 1 + Protected MPEG-4 video file + Drama + + + 0 + Live Together, Die Alone, Pt. 2 + Protected MPEG-4 video file + TV Shows + + + + + 261 + 149 + LOST, Season 4 + + + 0 + Past, Present, and Future + Protected MPEG-4 video file + Drama + + + 0 + The Beginning of the End + Protected MPEG-4 video file + Drama + + + 0 + LOST Season 4 Trailer + Protected MPEG-4 video file + Drama + + + 0 + LOST In 8:15 + Protected MPEG-4 video file + Drama + + + 0 + Confirmed Dead + Protected MPEG-4 video file + Drama + + + 0 + The Economist + Protected MPEG-4 video file + Drama + + + 0 + Eggtown + Protected MPEG-4 video file + TV Shows + + + 0 + The Constant + Protected MPEG-4 video file + Drama + + + 0 + The Other Woman + Protected MPEG-4 video file + Drama + + + 0 + Ji Yeon + Protected MPEG-4 video file + TV Shows + + + 0 + Meet Kevin Johnson + Protected MPEG-4 video file + TV Shows + + + 0 + The Shape of Things to Come + Protected MPEG-4 video file + Drama + + + 0 + Something Nice Back Home + Protected MPEG-4 video file + Drama + + + 0 + Cabin Fever + Protected MPEG-4 video file + Drama + + + 0 + There's No Place Like Home, Pt. 1 + Protected MPEG-4 video file + Drama + + + 0 + There's No Place Like Home, Pt. 2 + Protected MPEG-4 video file + Drama + + + 0 + There's No Place Like Home, Pt. 3 + Protected MPEG-4 video file + Drama + + + + + + + 150 + U2 + + + 232 + 150 + Achtung Baby + + + 0 + Zoo Station + MPEG audio file + Rock + + + 0 + Even Better Than The Real Thing + MPEG audio file + Rock + + + 0 + One + MPEG audio file + Rock + + + 0 + Until The End Of The World + MPEG audio file + Rock + + + 0 + Who's Gonna Ride Your Wild Horses + MPEG audio file + Rock + + + 0 + So Cruel + MPEG audio file + Rock + + + 0 + The Fly + MPEG audio file + Rock + + + 0 + Mysterious Ways + MPEG audio file + Rock + + + 0 + Tryin' To Throw Your Arms Around The World + MPEG audio file + Rock + + + 0 + Ultraviolet (Light My Way) + MPEG audio file + Rock + + + 0 + Acrobat + MPEG audio file + Rock + + + 0 + Love Is Blindness + MPEG audio file + Rock + + + + + 233 + 150 + All That You Can't Leave Behind + + + 0 + Beautiful Day + MPEG audio file + Rock + + + 0 + Stuck In A Moment You Can't Get Out Of + MPEG audio file + Rock + + + 0 + Elevation + MPEG audio file + Rock + + + 0 + Walk On + MPEG audio file + Rock + + + 0 + Kite + MPEG audio file + Rock + + + 0 + In A Little While + MPEG audio file + Rock + + + 0 + Wild Honey + MPEG audio file + Rock + + + 0 + Peace On Earth + MPEG audio file + Rock + + + 0 + When I Look At The World + MPEG audio file + Rock + + + 0 + New York + MPEG audio file + Rock + + + 0 + Grace + MPEG audio file + Rock + + + + + 234 + 150 + B-Sides 1980-1990 + + + 0 + The Three Sunrises + MPEG audio file + Rock + + + 0 + Spanish Eyes + MPEG audio file + Rock + + + 0 + Sweetest Thing + MPEG audio file + Rock + + + 0 + Love Comes Tumbling + MPEG audio file + Rock + + + 0 + Bass Trap + MPEG audio file + Rock + + + 0 + Dancing Barefoot + MPEG audio file + Rock + + + 0 + Everlasting Love + MPEG audio file + Rock + + + 0 + Unchained Melody + MPEG audio file + Rock + + + 0 + Walk To The Water + MPEG audio file + Rock + + + 0 + Luminous Times (Hold On To Love) + MPEG audio file + Rock + + + 0 + Hallelujah Here She Comes + MPEG audio file + Rock + + + 0 + Silver And Gold + MPEG audio file + Rock + + + 0 + Endless Deep + MPEG audio file + Rock + + + 0 + A Room At The Heartbreak Hotel + MPEG audio file + Rock + + + 0 + Trash, Trampoline And The Party Girl + MPEG audio file + Rock + + + + + 235 + 150 + How To Dismantle An Atomic Bomb + + + 0 + Vertigo + MPEG audio file + Rock + + + 0 + Miracle Drug + MPEG audio file + Rock + + + 0 + Sometimes You Can't Make It On Your Own + MPEG audio file + Rock + + + 0 + Love And Peace Or Else + MPEG audio file + Rock + + + 0 + City Of Blinding Lights + MPEG audio file + Rock + + + 0 + All Because Of You + MPEG audio file + Rock + + + 0 + A Man And A Woman + MPEG audio file + Rock + + + 0 + Crumbs From Your Table + MPEG audio file + Rock + + + 0 + One Step Closer + MPEG audio file + Rock + + + 0 + Original Of The Species + MPEG audio file + Rock + + + 0 + Yahweh + MPEG audio file + Rock + + + + + 236 + 150 + Pop + + + 0 + Please + MPEG audio file + Rock + + + 0 + Wake Up Dead Man + MPEG audio file + Rock + + + 0 + Discotheque + MPEG audio file + Rock + + + 0 + Do You Feel Loved + MPEG audio file + Rock + + + 0 + Mofo + MPEG audio file + Rock + + + 0 + If God Will Send His Angels + MPEG audio file + Rock + + + 0 + Staring At The Sun + MPEG audio file + Rock + + + 0 + Last Night On Earth + MPEG audio file + Rock + + + 0 + Gone + MPEG audio file + Rock + + + 0 + Miami + MPEG audio file + Rock + + + 0 + The Playboy Mansion + MPEG audio file + Rock + + + 0 + If You Wear That Velvet Dress + MPEG audio file + Rock + + + + + 237 + 150 + Rattle And Hum + + + 0 + Helter Skelter + MPEG audio file + Rock + + + 0 + Van Diemen's Land + MPEG audio file + Rock + + + 0 + Desire + MPEG audio file + Rock + + + 0 + Hawkmoon 269 + MPEG audio file + Rock + + + 0 + All Along The Watchtower + MPEG audio file + Rock + + + 0 + I Still Haven't Found What I'm Looking for + MPEG audio file + Rock + + + 0 + Freedom For My People + MPEG audio file + Rock + + + 0 + Silver And Gold + MPEG audio file + Rock + + + 0 + Pride (In The Name Of Love) + MPEG audio file + Rock + + + 0 + Angel Of Harlem + MPEG audio file + Rock + + + 0 + Love Rescue Me + MPEG audio file + Rock + + + 0 + When Love Comes To Town + MPEG audio file + Rock + + + 0 + Heartland + MPEG audio file + Rock + + + 0 + God Part II + MPEG audio file + Rock + + + 0 + The Star Spangled Banner + MPEG audio file + Rock + + + 0 + Bullet The Blue Sky + MPEG audio file + Rock + + + 0 + All I Want Is You + MPEG audio file + Rock + + + + + 238 + 150 + The Best Of 1980-1990 + + + 0 + Pride (In The Name Of Love) + MPEG audio file + Rock + + + 0 + New Year's Day + MPEG audio file + Rock + + + 0 + With Or Without You + MPEG audio file + Rock + + + 0 + I Still Haven't Found What I'm Looking For + MPEG audio file + Rock + + + 0 + Sunday Bloody Sunday + MPEG audio file + Rock + + + 0 + Bad + MPEG audio file + Rock + + + 0 + Where The Streets Have No Name + MPEG audio file + Rock + + + 0 + I Will Follow + MPEG audio file + Rock + + + 0 + The Unforgettable Fire + MPEG audio file + Rock + + + 0 + Sweetest Thing + MPEG audio file + Rock + + + 0 + Desire + MPEG audio file + Rock + + + 0 + When Love Comes To Town + MPEG audio file + Rock + + + 0 + Angel Of Harlem + MPEG audio file + Rock + + + 0 + All I Want Is You + MPEG audio file + Rock + + + + + 239 + 150 + War + + + 0 + Sunday Bloody Sunday + MPEG audio file + Rock + + + 0 + Seconds + MPEG audio file + Rock + + + 0 + New Year's Day + MPEG audio file + Rock + + + 0 + Like A Song... + MPEG audio file + Rock + + + 0 + Drowning Man + MPEG audio file + Rock + + + 0 + The Refugee + MPEG audio file + Rock + + + 0 + Two Hearts Beat As One + MPEG audio file + Rock + + + 0 + Red Light + MPEG audio file + Rock + + + 0 + Surrender + MPEG audio file + Rock + + + 0 + "40" + MPEG audio file + Rock + + + + + 240 + 150 + Zooropa + + + 0 + Zooropa + MPEG audio file + Rock + + + 0 + Babyface + MPEG audio file + Rock + + + 0 + Numb + MPEG audio file + Rock + + + 0 + Lemon + MPEG audio file + Rock + + + 0 + Stay (Faraway, So Close!) + MPEG audio file + Rock + + + 0 + Daddy's Gonna Pay For Your Crashed Car + MPEG audio file + Rock + + + 0 + Some Days Are Better Than Others + MPEG audio file + Rock + + + 0 + The First Time + MPEG audio file + Rock + + + 0 + Dirty Day + MPEG audio file + Rock + + + 0 + The Wanderer + MPEG audio file + Rock + + + + + 255 + 150 + Instant Karma: The Amnesty International Campaign to Save Darfur + + + 0 + Instant Karma + Protected AAC audio file + Pop + + + 0 + #9 Dream + Protected AAC audio file + Pop + + + 0 + Mother + Protected AAC audio file + Pop + + + 0 + Give Peace a Chance + Protected AAC audio file + Pop + + + 0 + Cold Turkey + Protected AAC audio file + Pop + + + 0 + Whatever Gets You Thru the Night + Protected AAC audio file + Pop + + + 0 + I'm Losing You + Protected AAC audio file + Pop + + + 0 + Gimme Some Truth + Protected AAC audio file + Pop + + + 0 + Oh, My Love + Protected AAC audio file + Pop + + + 0 + Imagine + Protected AAC audio file + Pop + + + 0 + Nobody Told Me + Protected AAC audio file + Pop + + + 0 + Jealous Guy + Protected AAC audio file + Pop + + + 0 + Working Class Hero + Protected AAC audio file + Pop + + + 0 + Power to the People + Protected AAC audio file + Pop + + + 0 + Imagine + Protected AAC audio file + Pop + + + 0 + Beautiful Boy + Protected AAC audio file + Pop + + + 0 + Isolation + Protected AAC audio file + Pop + + + 0 + Watching the Wheels + Protected AAC audio file + Pop + + + 0 + Grow Old With Me + Protected AAC audio file + Pop + + + 0 + Gimme Some Truth + Protected AAC audio file + Pop + + + 0 + [Just Like] Starting Over + Protected AAC audio file + Pop + + + 0 + God + Protected AAC audio file + Pop + + + 0 + Real Love + Protected AAC audio file + Pop + + + + + + + 151 + UB40 + + + 241 + 151 + UB40 The Best Of - Volume Two [UK] + + + 0 + Breakfast In Bed + MPEG audio file + Reggae + + + 0 + Where Did I Go Wrong + MPEG audio file + Reggae + + + 0 + I Would Do For You + MPEG audio file + Reggae + + + 0 + Homely Girl + MPEG audio file + Reggae + + + 0 + Here I Am (Come And Take Me) + MPEG audio file + Reggae + + + 0 + Kingston Town + MPEG audio file + Reggae + + + 0 + Wear You To The Ball + MPEG audio file + Reggae + + + 0 + (I Can't Help) Falling In Love With You + MPEG audio file + Reggae + + + 0 + Higher Ground + MPEG audio file + Reggae + + + 0 + Bring Me Your Cup + MPEG audio file + Reggae + + + 0 + C'est La Vie + MPEG audio file + Reggae + + + 0 + Reggae Music + MPEG audio file + Reggae + + + 0 + Superstition + MPEG audio file + Reggae + + + 0 + Until My Dying Day + MPEG audio file + Reggae + + + + + + + 152 + Van Halen + + + 242 + 152 + Diver Down + + + 0 + Where Have All The Good Times Gone? + MPEG audio file + Rock + + + 0 + Hang 'Em High + MPEG audio file + Rock + + + 0 + Cathedral + MPEG audio file + Rock + + + 0 + Secrets + MPEG audio file + Rock + + + 0 + Intruder + MPEG audio file + Rock + + + 0 + (Oh) Pretty Woman + MPEG audio file + Rock + + + 0 + Dancing In The Street + MPEG audio file + Rock + + + 0 + Little Guitars (Intro) + MPEG audio file + Rock + + + 0 + Little Guitars + MPEG audio file + Rock + + + 0 + Big Bad Bill (Is Sweet William Now) + MPEG audio file + Rock + + + 0 + The Full Bug + MPEG audio file + Rock + + + 0 + Happy Trails + MPEG audio file + Rock + + + + + 243 + 152 + The Best Of Van Halen, Vol. I + + + 0 + Eruption + MPEG audio file + Rock + + + 0 + Ain't Talkin' 'bout Love + MPEG audio file + Rock + + + 0 + Runnin' With The Devil + MPEG audio file + Rock + + + 0 + Dance the Night Away + MPEG audio file + Rock + + + 0 + And the Cradle Will Rock... + MPEG audio file + Rock + + + 0 + Unchained + MPEG audio file + Rock + + + 0 + Jump + MPEG audio file + Rock + + + 0 + Panama + MPEG audio file + Rock + + + 0 + Why Can't This Be Love + MPEG audio file + Rock + + + 0 + Dreams + MPEG audio file + Rock + + + 0 + When It's Love + MPEG audio file + Rock + + + 0 + Poundcake + MPEG audio file + Rock + + + 0 + Right Now + MPEG audio file + Rock + + + 0 + Can't Stop Loving You + MPEG audio file + Rock + + + 0 + Humans Being + MPEG audio file + Rock + + + 0 + Can't Get This Stuff No More + MPEG audio file + Rock + + + 0 + Me Wise Magic + MPEG audio file + Rock + + + + + 244 + 152 + Van Halen + + + 0 + Runnin' With The Devil + MPEG audio file + Rock + + + 0 + Eruption + MPEG audio file + Rock + + + 0 + You Really Got Me + MPEG audio file + Rock + + + 0 + Ain't Talkin' 'Bout Love + MPEG audio file + Rock + + + 0 + I'm The One + MPEG audio file + Rock + + + 0 + Jamie's Cryin' + MPEG audio file + Rock + + + 0 + Atomic Punk + MPEG audio file + Rock + + + 0 + Feel Your Love Tonight + MPEG audio file + Rock + + + 0 + Little Dreamer + MPEG audio file + Rock + + + 0 + Ice Cream Man + MPEG audio file + Rock + + + 0 + On Fire + MPEG audio file + Rock + + + + + 245 + 152 + Van Halen III + + + 0 + Neworld + MPEG audio file + Rock + + + 0 + Without You + MPEG audio file + Rock + + + 0 + One I Want + MPEG audio file + Rock + + + 0 + From Afar + MPEG audio file + Rock + + + 0 + Dirty Water Dog + MPEG audio file + Rock + + + 0 + Once + MPEG audio file + Rock + + + 0 + Fire in the Hole + MPEG audio file + Rock + + + 0 + Josephina + MPEG audio file + Rock + + + 0 + Year to the Day + MPEG audio file + Rock + + + 0 + Primary + MPEG audio file + Rock + + + 0 + Ballot or the Bullet + MPEG audio file + Rock + + + 0 + How Many Say I + MPEG audio file + Rock + + + + + + + 153 + Velvet Revolver + + + 246 + 153 + Contraband + + + 0 + Fall To Pieces + MPEG audio file + Rock + + + 0 + Headspace + MPEG audio file + Rock + + + 0 + Superhuman + MPEG audio file + Rock + + + 0 + Set Me Free + MPEG audio file + Rock + + + 0 + You Got No Right + MPEG audio file + Rock + + + 0 + Slither + MPEG audio file + Rock + + + 0 + Dirty Little Thing + MPEG audio file + Rock + + + 0 + Loving The Alien + MPEG audio file + Rock + + + 0 + Sucker Train Blues + MPEG audio file + Rock + + + 0 + Do It For The Kids + MPEG audio file + Rock + + + 0 + Big Machine + MPEG audio file + Rock + + + 0 + Illegal I Song + MPEG audio file + Rock + + + 0 + Spectacle + MPEG audio file + Rock + + + + + + + 154 + Whitesnake + + + + 155 + Zeca Pagodinho + + + 248 + 155 + Ao Vivo [IMPORT] + + + 0 + Faixa Amarela + MPEG audio file + Latin + + + 0 + Posso Até Me Apaixonar + MPEG audio file + Latin + + + 0 + Não Sou Mais Disso + MPEG audio file + Latin + + + 0 + Vivo Isolado Do Mundo + MPEG audio file + Latin + + + 0 + Coração Em Desalinho + MPEG audio file + Latin + + + 0 + Seu Balancê + MPEG audio file + Latin + + + 0 + Vai Adiar + MPEG audio file + Latin + + + 0 + Rugas + MPEG audio file + Latin + + + 0 + Feirinha da Pavuna/Luz do Repente/Bagaço da Laranja + MPEG audio file + Latin + + + 0 + Sem Essa de Malandro Agulha + MPEG audio file + Latin + + + 0 + Chico Não Vai na Corimba + MPEG audio file + Latin + + + 0 + Papel Principal + MPEG audio file + Latin + + + 0 + Saudade Louca + MPEG audio file + Latin + + + 0 + Camarão que Dorme e Onda Leva + MPEG audio file + Latin + + + 0 + Sapopemba e Maxambomba + MPEG audio file + Latin + + + 0 + Minha Fé + MPEG audio file + Latin + + + 0 + Lua de Ogum + MPEG audio file + Latin + + + 0 + Samba pras moças + MPEG audio file + Latin + + + 0 + Verdade + MPEG audio file + Latin + + + + + + + 156 + The Office + + + 249 + 156 + The Office, Season 1 + + + 0 + The Office: An American Workplace (Pilot) + Protected MPEG-4 video file + TV Shows + + + 0 + Diversity Day + Protected MPEG-4 video file + TV Shows + + + 0 + Health Care + Protected MPEG-4 video file + TV Shows + + + 0 + The Alliance + Protected MPEG-4 video file + TV Shows + + + 0 + Basketball + Protected MPEG-4 video file + TV Shows + + + 0 + Hot Girl + Protected MPEG-4 video file + TV Shows + + + + + 250 + 156 + The Office, Season 2 + + + 0 + The Dundies + Protected MPEG-4 video file + TV Shows + + + 0 + Sexual Harassment + Protected MPEG-4 video file + TV Shows + + + 0 + Office Olympics + Protected MPEG-4 video file + TV Shows + + + 0 + The Fire + Protected MPEG-4 video file + TV Shows + + + 0 + Halloween + Protected MPEG-4 video file + TV Shows + + + 0 + The Fight + Protected MPEG-4 video file + TV Shows + + + 0 + The Client + Protected MPEG-4 video file + TV Shows + + + 0 + Performance Review + Protected MPEG-4 video file + TV Shows + + + 0 + Email Surveillance + Protected MPEG-4 video file + TV Shows + + + 0 + Christmas Party + Protected MPEG-4 video file + TV Shows + + + 0 + Booze Cruise + Protected MPEG-4 video file + TV Shows + + + 0 + The Injury + Protected MPEG-4 video file + TV Shows + + + 0 + The Secret + Protected MPEG-4 video file + TV Shows + + + 0 + The Carpet + Protected MPEG-4 video file + TV Shows + + + 0 + Boys and Girls + Protected MPEG-4 video file + TV Shows + + + 0 + Valentine's Day + Protected MPEG-4 video file + TV Shows + + + 0 + Dwight's Speech + Protected MPEG-4 video file + TV Shows + + + 0 + Take Your Daughter to Work Day + Protected MPEG-4 video file + TV Shows + + + 0 + Michael's Birthday + Protected MPEG-4 video file + TV Shows + + + 0 + Drug Testing + Protected MPEG-4 video file + TV Shows + + + 0 + Conflict Resolution + Protected MPEG-4 video file + TV Shows + + + 0 + Casino Night - Season Finale + Protected MPEG-4 video file + TV Shows + + + + + 251 + 156 + The Office, Season 3 + + + 0 + Gay Witch Hunt + Protected MPEG-4 video file + TV Shows + + + 0 + The Convention + Protected MPEG-4 video file + TV Shows + + + 0 + The Coup + Protected MPEG-4 video file + TV Shows + + + 0 + Grief Counseling + Protected MPEG-4 video file + TV Shows + + + 0 + The Initiation + Protected MPEG-4 video file + TV Shows + + + 0 + Diwali + Protected MPEG-4 video file + TV Shows + + + 0 + Branch Closing + Protected MPEG-4 video file + TV Shows + + + 0 + The Merger + Protected MPEG-4 video file + TV Shows + + + 0 + The Convict + Protected MPEG-4 video file + Comedy + + + 0 + A Benihana Christmas, Pts. 1 & 2 + Protected MPEG-4 video file + Comedy + + + 0 + Back from Vacation + Protected MPEG-4 video file + Comedy + + + 0 + Traveling Salesmen + Protected MPEG-4 video file + Comedy + + + 0 + Producer's Cut: The Return + Protected MPEG-4 video file + Comedy + + + 0 + Ben Franklin + Protected MPEG-4 video file + Comedy + + + 0 + Phyllis's Wedding + Protected MPEG-4 video file + Comedy + + + 0 + Business School + Protected MPEG-4 video file + Comedy + + + 0 + Cocktails + Protected MPEG-4 video file + Comedy + + + 0 + The Negotiation + Protected MPEG-4 video file + Comedy + + + 0 + Safety Training + Protected MPEG-4 video file + Comedy + + + 0 + Product Recall + Protected MPEG-4 video file + Comedy + + + 0 + Women's Appreciation + Protected MPEG-4 video file + Comedy + + + 0 + Beach Games + Protected MPEG-4 video file + Comedy + + + 0 + The Job + Protected MPEG-4 video file + Comedy + + + 0 + Branch Closing + Protected MPEG-4 video file + Comedy + + + 0 + The Return + Protected MPEG-4 video file + Comedy + + + + + + + 157 + Dread Zeppelin + + + 252 + 157 + Un-Led-Ed + + + 0 + Your Time Is Gonna Come + Protected AAC audio file + Rock + + + + + + + 158 + Battlestar Galactica (Classic) + + + 253 + 158 + Battlestar Galactica (Classic), Season 1 + + + 0 + Battlestar Galactica, Pt. 1 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + Battlestar Galactica, Pt. 2 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + Battlestar Galactica, Pt. 3 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + Lost Planet of the Gods, Pt. 1 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + Lost Planet of the Gods, Pt. 2 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + The Lost Warrior + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + The Long Patrol + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + The Gun On Ice Planet Zero, Pt. 1 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + The Gun On Ice Planet Zero, Pt. 2 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + The Magnificent Warriors + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + The Young Lords + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + The Living Legend, Pt. 1 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + The Living Legend, Pt. 2 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + Fire In Space + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + War of the Gods, Pt. 1 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + War of the Gods, Pt. 2 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + The Man With Nine Lives + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + Murder On the Rising Star + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + Greetings from Earth, Pt. 1 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + Greetings from Earth, Pt. 2 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + Baltar's Escape + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + Experiment In Terra + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + Take the Celestra + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + The Hand of God + Protected MPEG-4 video file + Sci Fi & Fantasy + + + + + + + 159 + Aquaman + + + 254 + 159 + Aquaman + + + 0 + Pilot + Protected MPEG-4 video file + TV Shows + + + + + + + 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 + + + 257 + 179 + 20th Century Masters - The Millennium Collection: The Best of Scorpions + + + 0 + Rock You Like a Hurricane + Protected AAC audio file + Rock + + + 0 + No One Like You + Protected AAC audio file + Rock + + + 0 + The Zoo + Protected AAC audio file + Rock + + + 0 + Loving You Sunday Morning + Protected AAC audio file + Rock + + + 0 + Still Loving You + Protected AAC audio file + Rock + + + 0 + Big City Nights + Protected AAC audio file + Rock + + + 0 + Believe in Love + Protected AAC audio file + Rock + + + 0 + Rhythm of Love + Protected AAC audio file + Rock + + + 0 + I Can't Explain + Protected AAC audio file + Rock + + + 0 + Tease Me Please Me + Protected AAC audio file + Rock + + + 0 + Wind of Change + Protected AAC audio file + Rock + + + 0 + Send Me an Angel + Protected AAC audio file + Rock + + + + + + + 180 + House Of Pain + + + 258 + 180 + House of Pain + + + 0 + Jump Around + MPEG audio file + Hip Hop/Rap + + + 0 + Salutations + MPEG audio file + Hip Hop/Rap + + + 0 + Put Your Head Out + MPEG audio file + Hip Hop/Rap + + + 0 + Top O' The Morning To Ya + MPEG audio file + Hip Hop/Rap + + + 0 + Commercial 1 + MPEG audio file + Hip Hop/Rap + + + 0 + House And The Rising Sun + MPEG audio file + Hip Hop/Rap + + + 0 + Shamrocks And Shenanigans + MPEG audio file + Hip Hop/Rap + + + 0 + House Of Pain Anthem + MPEG audio file + Hip Hop/Rap + + + 0 + Danny Boy, Danny Boy + MPEG audio file + Hip Hop/Rap + + + 0 + Guess Who's Back + MPEG audio file + Hip Hop/Rap + + + 0 + Commercial 2 + MPEG audio file + Hip Hop/Rap + + + 0 + Put On Your Shit Kickers + MPEG audio file + Hip Hop/Rap + + + 0 + Come And Get Some Of This + MPEG audio file + Hip Hop/Rap + + + 0 + Life Goes On + MPEG audio file + Hip Hop/Rap + + + 0 + One For The Road + MPEG audio file + Hip Hop/Rap + + + 0 + Feel It + MPEG audio file + Hip Hop/Rap + + + 0 + All My Love + MPEG audio file + Hip Hop/Rap + + + 0 + Jump Around (Pete Rock Remix) + MPEG audio file + Hip Hop/Rap + + + 0 + Shamrocks And Shenanigans (Boom Shalock Lock Boom/Butch Vig Mix) + MPEG audio file + Hip Hop/Rap + + + + + + + 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 + + + 260 + 196 + Cake: B-Sides and Rarities + + + 0 + War Pigs + Purchased AAC audio file + Alternative + + + + + + + 197 + Aisha Duo + + + 262 + 197 + Quiet Songs + + + 0 + Amanda + AAC audio file + Jazz + + + 0 + Despertar + AAC audio file + Jazz + + + + + + + 198 + Habib Koité and Bamada + + + 263 + 198 + Muso Ko + + + 0 + Din Din Wo (Little Child) + AAC audio file + World + + + 0 + I Ka Barra (Your Work) + AAC audio file + World + + + + + + + 199 + Karsh Kale + + + 264 + 199 + Realize + + + 0 + Distance + AAC audio file + Electronica/Dance + + + 0 + One Step Beyond + AAC audio file + Electronica/Dance + + + + + + + 200 + The Posies + + + 265 + 200 + Every Kind of Light + + + 0 + I Guess You're Right + AAC audio file + Rock + + + 0 + Love Comes + AAC audio file + Rock + + + + + + + 201 + Luciana Souza/Romero Lubambo + + + 266 + 201 + Duos II + + + 0 + Muita Bobeira + AAC audio file + Latin + + + + + + + 202 + Aaron Goldberg + + + 267 + 202 + Worlds + + + 0 + OAM's Blues + AAC audio file + Jazz + + + + + + + 203 + Nicolaus Esterhazy Sinfonia + + + 268 + 203 + The Best of Beethoven + + + 0 + Symphony No. 3 in E-flat major, Op. 55, "Eroica" - Scherzo: Allegro Vivace + AAC audio file + Classical + + + + + + + 204 + Temple of the Dog + + + 269 + 204 + Temple of the Dog + + + 0 + Say Hello 2 Heaven + Protected AAC audio file + Alternative + + + 0 + Reach Down + Protected AAC audio file + Alternative + + + 0 + Hunger Strike + Protected AAC audio file + Alternative + + + 0 + Pushin Forward Back + Protected AAC audio file + Alternative + + + 0 + Call Me a Dog + Protected AAC audio file + Alternative + + + 0 + Times of Trouble + Protected AAC audio file + Alternative + + + 0 + Wooden Jesus + Protected AAC audio file + Alternative + + + 0 + Your Savior + Protected AAC audio file + Alternative + + + 0 + Four Walled World + Protected AAC audio file + Alternative + + + 0 + All Night Thing + Protected AAC audio file + Alternative + + + + + + + 205 + Chris Cornell + + + 270 + 205 + Carry On + + + 0 + No Such Thing + Protected AAC audio file + Alternative + + + 0 + Poison Eye + Protected AAC audio file + Alternative + + + 0 + Arms Around Your Love + Protected AAC audio file + Alternative + + + 0 + Safe and Sound + Protected AAC audio file + Alternative + + + 0 + She'll Never Be Your Man + Protected AAC audio file + Alternative + + + 0 + Ghosts + Protected AAC audio file + Alternative + + + 0 + Killing Birds + Protected AAC audio file + Alternative + + + 0 + Billie Jean + Protected AAC audio file + Alternative + + + 0 + Scar On the Sky + Protected AAC audio file + Alternative + + + 0 + Your Soul Today + Protected AAC audio file + Alternative + + + 0 + Finally Forever + Protected AAC audio file + Alternative + + + 0 + Silence the Voices + Protected AAC audio file + Alternative + + + 0 + Disappearing Act + Protected AAC audio file + Alternative + + + 0 + You Know My Name + Protected AAC audio file + Alternative + + + + + + + 206 + Alberto Turco & Nova Schola Gregoriana + + + 272 + 206 + Adorate Deum: Gregorian Chant from the Proper of the Mass + + + 0 + Intoitus: Adorate Deum + Protected AAC audio file + Classical + + + + + + + 207 + Richard Marlow & The Choir of Trinity College, Cambridge + + + 273 + 207 + Allegri: Miserere + + + 0 + Miserere mei, Deus + Protected AAC audio file + Classical + + + + + + + 208 + English Concert & Trevor Pinnock + + + 274 + 208 + Pachelbel: Canon & Gigue + + + 0 + Canon and Gigue in D Major: I. Canon + Protected AAC audio file + Classical + + + + + 315 + 208 + Handel: Music for the Royal Fireworks (Original Version 1749) + + + 0 + Music for the Royal Fireworks, HWV351 (1749): La Réjouissance + Protected AAC audio file + Classical + + + + + + + 209 + Anne-Sophie Mutter, Herbert Von Karajan & Wiener Philharmoniker + + + 275 + 209 + Vivaldi: The Four Seasons + + + 0 + Concerto No. 1 in E Major, RV 269 "Spring": I. Allegro + Protected AAC audio file + Classical + + + + + + + 210 + Hilary Hahn, Jeffrey Kahane, Los Angeles Chamber Orchestra & Margaret Batjer + + + 276 + 210 + Bach: Violin Concertos + + + 0 + Concerto for 2 Violins in D Minor, BWV 1043: I. Vivace + Protected AAC audio file + Classical + + + + + + + 211 + Wilhelm Kempff + + + 277 + 211 + Bach: Goldberg Variations + + + 0 + Aria Mit 30 Veränderungen, BWV 988 "Goldberg Variations": Aria + Protected AAC audio file + Classical + + + + + + + 212 + Yo-Yo Ma + + + 278 + 212 + Bach: The Cello Suites + + + 0 + Suite for Solo Cello No. 1 in G Major, BWV 1007: I. Prélude + Protected AAC audio file + Classical + + + + + + + 213 + Scholars Baroque Ensemble + + + 279 + 213 + Handel: The Messiah (Highlights) + + + 0 + The Messiah: Behold, I Tell You a Mystery... The Trumpet Shall Sound + Protected AAC audio file + Classical + + + + + + + 214 + Academy of St. Martin in the Fields & Sir Neville Marriner + + + 280 + 214 + The World of Classical Favourites + + + 0 + Solomon HWV 67: The Arrival of the Queen of Sheba + Protected AAC audio file + Classical + + + 0 + Fantasia On Greensleeves + Protected AAC audio file + Classical + + + + + + + 215 + Academy of St. Martin in the Fields Chamber Ensemble & Sir Neville Marriner + + + 281 + 215 + Sir Neville Marriner: A Celebration + + + 0 + "Eine Kleine Nachtmusik" Serenade In G, K. 525: I. Allegro + Protected AAC audio file + Classical + + + + + + + 216 + Berliner Philharmoniker, Claudio Abbado & Sabine Meyer + + + 282 + 216 + Mozart: Wind Concertos + + + 0 + Concerto for Clarinet in A Major, K. 622: II. Adagio + Protected AAC audio file + Classical + + + + + + + 217 + Royal Philharmonic Orchestra & Sir Thomas Beecham + + + 283 + 217 + Haydn: Symphonies 99 - 104 + + + 0 + Symphony No. 104 in D Major "London": IV. Finale: Spiritoso + Purchased AAC audio file + Classical + + + + + + + 218 + Orchestre Révolutionnaire et Romantique & John Eliot Gardiner + + + 284 + 218 + Beethoven: Symhonies Nos. 5 & 6 + + + 0 + Symphony No.5 in C Minor: I. Allegro con brio + Protected AAC audio file + Classical + + + + + + + 219 + Britten Sinfonia, Ivor Bolton & Lesley Garrett + + + 285 + 219 + A Soprano Inspired + + + 0 + Ave Maria + Protected AAC audio file + Classical + + + + + + + 220 + Chicago Symphony Chorus, Chicago Symphony Orchestra & Sir Georg Solti + + + 286 + 220 + Great Opera Choruses + + + 0 + Nabucco: Chorus, "Va, Pensiero, Sull'ali Dorate" + Protected AAC audio file + Classical + + + + + + + 221 + Sir Georg Solti & Wiener Philharmoniker + + + 287 + 221 + Wagner: Favourite Overtures + + + 0 + Die Walküre: The Ride of the Valkyries + Protected AAC audio file + Classical + + + + + + + 222 + Academy of St. Martin in the Fields, John Birch, Sir Neville Marriner & Sylvia McNair + + + 288 + 222 + Fauré: Requiem, Ravel: Pavane & Others + + + 0 + Requiem, Op.48: 4. Pie Jesu + Protected AAC audio file + Classical + + + + + + + 223 + London Symphony Orchestra & Sir Charles Mackerras + + + 289 + 223 + Tchaikovsky: The Nutcracker + + + 0 + The Nutcracker, Op. 71a, Act II: Scene 14: Pas de deux: Dance of the Prince & the Sugar-Plum Fairy + Protected AAC audio file + Classical + + + + + + + 224 + Barry Wordsworth & BBC Concert Orchestra + + + 290 + 224 + The Last Night of the Proms + + + 0 + Nimrod (Adagio) from Variations On an Original Theme, Op. 36 "Enigma" + Protected AAC audio file + Classical + + + + + + + 225 + Herbert Von Karajan, Mirella Freni & Wiener Philharmoniker + + + 291 + 225 + Puccini: Madama Butterfly - Highlights + + + 0 + Madama Butterfly: Un Bel Dì Vedremo + Protected AAC audio file + Classical + + + + + + + 226 + Eugene Ormandy + + + 292 + 226 + Holst: The Planets, Op. 32 & Vaughan Williams: Fantasies + + + 0 + Jupiter, the Bringer of Jollity + Protected AAC audio file + Classical + + + + + 311 + 226 + Strauss: Waltzes + + + 0 + On the Beautiful Blue Danube + Protected AAC audio file + Classical + + + + + 343 + 226 + Respighi:Pines of Rome + + + 0 + Pini Di Roma (Pinien Von Rom) \ I Pini Della Via Appia + Protected AAC audio file + Classical + + + + + + + 227 + Luciano Pavarotti + + + 293 + 227 + Pavarotti's Opera Made Easy + + + 0 + Turandot, Act III, Nessun dorma! + Protected AAC audio file + Classical + + + + + + + 228 + Leonard Bernstein & New York Philharmonic + + + 294 + 228 + Great Performances - Barber's Adagio and Other Romantic Favorites for Strings + + + 0 + Adagio for Strings from the String Quartet, Op. 11 + Protected AAC audio file + Classical + + + + + + + 229 + Boston Symphony Orchestra & Seiji Ozawa + + + 295 + 229 + Carmina Burana + + + 0 + Carmina Burana: O Fortuna + Protected AAC audio file + Classical + + + + + + + 230 + Aaron Copland & London Symphony Orchestra + + + 296 + 230 + A Copland Celebration, Vol. I + + + 0 + Fanfare for the Common Man + Protected AAC audio file + Classical + + + + + + + 231 + Ton Koopman + + + 297 + 231 + Bach: Toccata & Fugue in D Minor + + + 0 + Toccata and Fugue in D Minor, BWV 565: I. Toccata + Protected AAC audio file + Classical + + + + + + + 232 + Sergei Prokofiev & Yuri Temirkanov + + + 298 + 232 + Prokofiev: Symphony No.1 + + + 0 + Symphony No.1 in D Major, Op.25 "Classical", Allegro Con Brio + Protected AAC audio file + Classical + + + + + + + 233 + Chicago Symphony Orchestra & Fritz Reiner + + + 299 + 233 + Scheherazade + + + 0 + Scheherazade, Op. 35: I. The Sea and Sindbad's Ship + Protected AAC audio file + Classical + + + + + + + 234 + Orchestra of The Age of Enlightenment + + + 300 + 234 + Bach: The Brandenburg Concertos + + + 0 + Concerto No.2 in F Major, BWV1047, I. Allegro + Protected AAC audio file + Classical + + + + + + + 235 + Emanuel Ax, Eugene Ormandy & Philadelphia Orchestra + + + 301 + 235 + Chopin: Piano Concertos Nos. 1 & 2 + + + 0 + Concerto for Piano No. 2 in F Minor, Op. 21: II. Larghetto + Protected AAC audio file + Classical + + + + + + + 236 + James Levine + + + 302 + 236 + Mascagni: Cavalleria Rusticana + + + 0 + Cavalleria Rusticana \ Act \ Intermezzo Sinfonico + Protected AAC audio file + Classical + + + + + + + 237 + Berliner Philharmoniker & Hans Rosbaud + + + 303 + 237 + Sibelius: Finlandia + + + 0 + Karelia Suite, Op.11: 2. Ballade (Tempo Di Menuetto) + Protected AAC audio file + Classical + + + + + + + 238 + Maurizio Pollini + + + 304 + 238 + Beethoven Piano Sonatas: Moonlight & Pastorale + + + 0 + Piano Sonata No. 14 in C Sharp Minor, Op. 27, No. 2, "Moonlight": I. Adagio sostenuto + Protected AAC audio file + Classical + + + + + + + 239 + Academy of St. Martin in the Fields, Sir Neville Marriner & William Bennett + + + + 240 + Gustav Mahler + + + 305 + 240 + Great Recordings of the Century - Mahler: Das Lied von der Erde + + + 0 + Das Lied Von Der Erde, Von Der Jugend + Protected AAC audio file + Classical + + + + + + + 241 + Felix Schmidt, London Symphony Orchestra & Rafael Frühbeck de Burgos + + + 306 + 241 + Elgar: Cello Concerto & Vaughan Williams: Fantasias + + + 0 + Concerto for Cello and Orchestra in E minor, Op. 85: I. Adagio - Moderato + Protected AAC audio file + Classical + + + + + + + 242 + Edo de Waart & San Francisco Symphony + + + 307 + 242 + Adams, John: The Chairman Dances + + + 0 + Two Fanfares for Orchestra: II. Short Ride in a Fast Machine + Protected AAC audio file + Classical + + + + + + + 243 + Antal Doráti & London Symphony Orchestra + + + 308 + 243 + Tchaikovsky: 1812 Festival Overture, Op.49, Capriccio Italien & Beethoven: Wellington's Victory + + + 0 + Wellington's Victory or the Battle Symphony, Op.91: 2. Symphony of Triumph + Protected AAC audio file + Classical + + + + + + + 244 + Choir Of Westminster Abbey & Simon Preston + + + 309 + 244 + Palestrina: Missa Papae Marcelli & Allegri: Miserere + + + 0 + Missa Papae Marcelli: Kyrie + Protected AAC audio file + Classical + + + + + + + 245 + Michael Tilson Thomas & San Francisco Symphony + + + 310 + 245 + Prokofiev: Romeo & Juliet + + + 0 + Romeo et Juliette: No. 11 - Danse des Chevaliers + Protected AAC audio file + Classical + + + + + 312 + 245 + Berlioz: Symphonie Fantastique + + + 0 + Symphonie Fantastique, Op. 14: V. Songe d'une nuit du sabbat + Protected AAC audio file + Classical + + + + + + + 246 + Chor der Wiener Staatsoper, Herbert Von Karajan & Wiener Philharmoniker + + + 313 + 246 + Bizet: Carmen Highlights + + + 0 + Carmen: Overture + Protected AAC audio file + Classical + + + + + + + 247 + The King's Singers + + + 314 + 247 + English Renaissance + + + 0 + Lamentations of Jeremiah, First Set \ Incipit Lamentatio + Protected AAC audio file + Classical + + + 0 + Sing Joyfully + Protected AAC audio file + Classical + + + + + + + 248 + Berliner Philharmoniker & Herbert Von Karajan + + + 316 + 248 + Grieg: Peer Gynt Suites & Sibelius: Pelléas et Mélisande + + + 0 + Peer Gynt Suite No.1, Op.46: 1. Morning Mood + Protected AAC audio file + Classical + + + + + 320 + 248 + Mozart: Symphonies Nos. 40 & 41 + + + 0 + Symphony No. 41 in C Major, K. 551, "Jupiter": IV. Molto allegro + Protected AAC audio file + Classical + + + + + 336 + 248 + Prokofiev: Symphony No.5 & Stravinksy: Le Sacre Du Printemps + + + 0 + Le Sacre Du Printemps: I.iv. Spring Rounds + Protected AAC audio file + Classical + + + + + + + 249 + Sir Georg Solti, Sumi Jo & Wiener Philharmoniker + + + 317 + 249 + Mozart Gala: Famous Arias + + + 0 + Die Zauberflöte, K.620: "Der Hölle Rache Kocht in Meinem Herze" + Protected AAC audio file + Opera + + + + + + + 250 + Christopher O'Riley + + + 318 + 250 + SCRIABIN: Vers la flamme + + + 0 + SCRIABIN: Prelude in B Major, Op. 11, No. 11 + Purchased AAC audio file + Classical + + + + + + + 251 + Fretwork + + + 319 + 251 + Armada: Music from the Courts of England and Spain + + + 0 + Pavan, Lachrimae Antiquae + Protected AAC audio file + Classical + + + + + + + 252 + Amy Winehouse + + + 321 + 252 + Back to Black + + + 0 + Rehab + Protected AAC audio file + R&B/Soul + + + 0 + You Know I'm No Good + Protected AAC audio file + R&B/Soul + + + 0 + Me & Mr. Jones + Protected AAC audio file + R&B/Soul + + + 0 + Just Friends + Protected AAC audio file + R&B/Soul + + + 0 + Back to Black + Protected AAC audio file + R&B/Soul + + + 0 + Love Is a Losing Game + Protected AAC audio file + R&B/Soul + + + 0 + Tears Dry On Their Own + Protected AAC audio file + R&B/Soul + + + 0 + Wake Up Alone + Protected AAC audio file + R&B/Soul + + + 0 + Some Unholy War + Protected AAC audio file + R&B/Soul + + + 0 + He Can Only Hold Her + Protected AAC audio file + R&B/Soul + + + 0 + You Know I'm No Good (feat. Ghostface Killah) + Protected AAC audio file + R&B/Soul + + + 0 + Rehab (Hot Chip Remix) + Protected AAC audio file + R&B/Soul + + + + + 322 + 252 + Frank + + + 0 + Intro / Stronger Than Me + Protected AAC audio file + Pop + + + 0 + You Sent Me Flying / Cherry + Protected AAC audio file + Pop + + + 0 + F**k Me Pumps + Protected AAC audio file + Pop + + + 0 + I Heard Love Is Blind + Protected AAC audio file + Pop + + + 0 + (There Is) No Greater Love (Teo Licks) + Protected AAC audio file + Pop + + + 0 + In My Bed + Protected AAC audio file + Pop + + + 0 + Take the Box + Protected AAC audio file + Pop + + + 0 + October Song + Protected AAC audio file + Pop + + + 0 + What Is It About Men + Protected AAC audio file + Pop + + + 0 + Help Yourself + Protected AAC audio file + Pop + + + 0 + Amy Amy Amy (Outro) + Protected AAC audio file + Pop + + + + + + + 253 + Calexico + + + 323 + 253 + Carried to Dust (Bonus Track Version) + + + 0 + Slowness + Protected AAC audio file + Alternative + + + + + + + 254 + Otto Klemperer & Philharmonia Orchestra + + + 324 + 254 + Beethoven: Symphony No. 6 'Pastoral' Etc. + + + 0 + Prometheus Overture, Op. 43 + Purchased AAC audio file + Classical + + + + + + + 255 + Yehudi Menuhin + + + 325 + 255 + Bartok: Violin & Viola Concertos + + + 0 + Sonata for Solo Violin: IV: Presto + Purchased AAC audio file + Classical + + + + + + + 256 + Philharmonia Orchestra & Sir Neville Marriner + + + 326 + 256 + Mendelssohn: A Midsummer Night's Dream + + + 0 + A Midsummer Night's Dream, Op.61 Incidental Music: No.7 Notturno + Protected AAC audio file + Classical + + + + + + + 257 + Academy of St. Martin in the Fields, Sir Neville Marriner & Thurston Dart + + + 327 + 257 + Bach: Orchestral Suites Nos. 1 - 4 + + + 0 + Suite No. 3 in D, BWV 1068: III. Gavotte I & II + Protected AAC audio file + Classical + + + + + + + 258 + Les Arts Florissants & William Christie + + + 328 + 258 + Charpentier: Divertissements, Airs & Concerts + + + 0 + Concert pour 4 Parties de V**les, H. 545: I. Prelude + Protected AAC audio file + Classical + + + + + + + 259 + The 12 Cellists of The Berlin Philharmonic + + + 329 + 259 + South American Getaway + + + 0 + Adios nonino + Protected AAC audio file + Classical + + + + + + + 260 + Adrian Leaper & Doreen de Feis + + + 330 + 260 + Górecki: Symphony No. 3 + + + 0 + Symphony No. 3 Op. 36 for Orchestra and Soprano "Symfonia Piesni Zalosnych" \ Lento E Largo - Tranquillissimo + Protected AAC audio file + Classical + + + + + + + 261 + Roger Norrington, London Classical Players + + + 331 + 261 + Purcell: The Fairy Queen + + + 0 + Act IV, Symphony + Protected AAC audio file + Classical + + + + + + + 262 + Charles Dutoit & L'Orchestre Symphonique de Montréal + + + 332 + 262 + The Ultimate Relexation Album + + + 0 + 3 Gymnopédies: No.1 - Lent Et Grave, No.3 - Lent Et Douloureux + Protected AAC audio file + Classical + + + + + + + 263 + Equale Brass Ensemble, John Eliot Gardiner & Munich Monteverdi Orchestra and Choir + + + 333 + 263 + Purcell: Music for the Queen Mary + + + 0 + Music for the Funeral of Queen Mary: VI. "Thou Knowest, Lord, the Secrets of Our Hearts" + Protected AAC audio file + Classical + + + + + + + 264 + Kent Nagano and Orchestre de l'Opéra de Lyon + + + 334 + 264 + Weill: The Seven Deadly Sins + + + 0 + Symphony No. 2: III. Allegro vivace + Protected AAC audio file + Classical + + + + + + + 265 + Julian Bream + + + 335 + 265 + J.S. Bach: Chaconne, Suite in E Minor, Partita in E Major & Prelude, Fugue and Allegro + + + 0 + Partita in E Major, BWV 1006A: I. Prelude + Protected AAC audio file + Classical + + + + + + + 266 + Martin Roscoe + + + 337 + 266 + Szymanowski: Piano Works, Vol. 1 + + + 0 + Metopes, Op. 29: Calypso + Protected AAC audio file + Classical + + + + + + + 267 + Göteborgs Symfoniker & Neeme Järvi + + + 338 + 267 + Nielsen: The Six Symphonies + + + 0 + Symphony No. 2, Op. 16 - "The Four Temperaments": II. Allegro Comodo e Flemmatico + Protected AAC audio file + Classical + + + + + + + 268 + Itzhak Perlman + + + 339 + 268 + Great Recordings of the Century: Paganini's 24 Caprices + + + 0 + 24 Caprices, Op. 1, No. 24, for Solo Violin, in A Minor + Protected AAC audio file + Classical + + + + + + + 269 + Michele Campanella + + + 340 + 269 + Liszt - 12 Études D'Execution Transcendante + + + 0 + Étude 1, In C Major - Preludio (Presto) - Liszt + Purchased AAC audio file + Classical + + + + + + + 270 + Gerald Moore + + + 341 + 270 + Great Recordings of the Century - Shubert: Schwanengesang, 4 Lieder + + + 0 + Erlkonig, D.328 + Protected AAC audio file + Classical + + + + + + + 271 + Mela Tenenbaum, Pro Musica Prague & Richard Kapp + + + 342 + 271 + Locatelli: Concertos for Violin, Strings and Continuo, Vol. 3 + + + 0 + Concerto for Violin, Strings and Continuo in G Major, Op. 3, No. 9: I. Allegro + Purchased AAC audio file + Classical + + + + + + + 272 + Emerson String Quartet + + + 344 + 272 + Schubert: The Late String Quartets & String Quintet (3 CD's) + + + 0 + String Quartet No. 12 in C Minor, D. 703 "Quartettsatz": II. Andante - Allegro assai + Protected AAC audio file + Classical + + + + + + + 273 + C. Monteverdi, Nigel Rogers - Chiaroscuro; London Baroque; London Cornett & Sackbu + + + 345 + 273 + Monteverdi: L'Orfeo + + + 0 + L'orfeo, Act 3, Sinfonia (Orchestra) + Protected AAC audio file + Classical + + + + + + + 274 + Nash Ensemble + + + 346 + 274 + Mozart: Chamber Music + + + 0 + Quintet for Horn, Violin, 2 Violas, and Cello in E Flat Major, K. 407/386c: III. Allegro + Protected AAC audio file + Classical + + + + + + + 275 + Philip Glass Ensemble + + + 347 + 275 + Koyaanisqatsi (Soundtrack from the Motion Picture) + + + 0 + Koyaanisqatsi + Protected AAC audio file + Soundtrack + + + + + + \ No newline at end of file diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB.sln b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB.sln new file mode 100644 index 0000000..79e0887 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB.sln @@ -0,0 +1,20 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 +Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "GridObjectRelationalCRUD-VB", "GridObjectRelationalCRUD-VB\GridObjectRelationalCRUD-VB.vbproj", "{68A18C0D-4594-4FA1-B8D1-77D8BEFEBE94}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x86 = Debug|x86 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {68A18C0D-4594-4FA1-B8D1-77D8BEFEBE94}.Debug|x86.ActiveCfg = Debug|x86 + {68A18C0D-4594-4FA1-B8D1-77D8BEFEBE94}.Debug|x86.Build.0 = Debug|x86 + {68A18C0D-4594-4FA1-B8D1-77D8BEFEBE94}.Release|x86.ActiveCfg = Release|x86 + {68A18C0D-4594-4FA1-B8D1-77D8BEFEBE94}.Release|x86.Build.0 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/App.config b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/App.config new file mode 100644 index 0000000..767efb2 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/App.config @@ -0,0 +1,6 @@ + + + + + + diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/Form1.Designer.vb b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/Form1.Designer.vb new file mode 100644 index 0000000..7b54f00 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/Form1.Designer.vb @@ -0,0 +1,54 @@ + _ +Partial Class Form1 + Inherits System.Windows.Forms.Form + + 'Form overrides dispose to clean up the component list. + _ + Protected Overrides Sub Dispose(ByVal disposing As Boolean) + Try + If disposing AndAlso components IsNot Nothing Then + components.Dispose() + End If + Finally + MyBase.Dispose(disposing) + End Try + End Sub + + 'Required by the Windows Form Designer + Private components As System.ComponentModel.IContainer + + 'NOTE: The following procedure is required by the Windows Form Designer + 'It can be modified using the Windows Form Designer. + 'Do not modify it using the code editor. + _ + Private Sub InitializeComponent() + Me.RadGridView1 = New Telerik.WinControls.UI.RadGridView() + CType(Me.RadGridView1, System.ComponentModel.ISupportInitialize).BeginInit() + CType(Me.RadGridView1.MasterTemplate, System.ComponentModel.ISupportInitialize).BeginInit() + Me.SuspendLayout() + ' + 'RadGridView1 + ' + Me.RadGridView1.Dock = System.Windows.Forms.DockStyle.Fill + Me.RadGridView1.Location = New System.Drawing.Point(0, 0) + Me.RadGridView1.Name = "RadGridView1" + Me.RadGridView1.Size = New System.Drawing.Size(856, 553) + Me.RadGridView1.TabIndex = 0 + Me.RadGridView1.Text = "RadGridView1" + ' + 'Form1 + ' + Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) + Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font + Me.ClientSize = New System.Drawing.Size(856, 553) + Me.Controls.Add(Me.RadGridView1) + Me.Name = "Form1" + Me.Text = "Form1" + CType(Me.RadGridView1.MasterTemplate, System.ComponentModel.ISupportInitialize).EndInit() + CType(Me.RadGridView1, System.ComponentModel.ISupportInitialize).EndInit() + Me.ResumeLayout(False) + + End Sub + Friend WithEvents RadGridView1 As Telerik.WinControls.UI.RadGridView + +End Class diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/Form1.resx b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/Form1.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/Form1.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/Form1.vb b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/Form1.vb new file mode 100644 index 0000000..32398cd --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/Form1.vb @@ -0,0 +1,130 @@ +Imports Telerik.WinControls.UI +Imports System.ComponentModel +Imports Telerik.WinControls + +Public Class Form1 + Public Sub New() + InitializeComponent() + End Sub + + Protected Overrides Sub OnLoad(e As EventArgs) + MyBase.OnLoad(e) + + Me.RadGridView1.DataSource = DataContext.Artists + Me.RadGridView1.AutoGenerateHierarchy = True + + Me.SetupTemplates() + End Sub + + Private Sub SetupTemplates() + Me.RadGridView1.EnableFiltering = True + Me.RadGridView1.Columns("Id").IsVisible = False + Me.RadGridView1.Columns("Albums").IsVisible = False + Me.RadGridView1.AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill + + Me.RadGridView1.Templates(0).AllowAddNewRow = True + Me.RadGridView1.Templates(0).Columns("Id").IsVisible = False + Me.RadGridView1.Templates(0).Columns("ArtistId").IsVisible = False + Me.RadGridView1.Templates(0).Columns("Tracks").IsVisible = False + Me.RadGridView1.Templates(0).AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill + + Me.RadGridView1.Templates(0).Templates(0).AllowAddNewRow = True + Me.RadGridView1.Templates(0).Templates(0).Columns("Id").IsVisible = False + Me.RadGridView1.Templates(0).Templates(0).Columns("Size").IsVisible = False + Me.RadGridView1.Templates(0).Templates(0).AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill + End Sub + + Private Sub radGridView1_CellValueChanged(sender As Object, e As GridViewCellEventArgs) Handles RadGridView1.CellValueChanged + If TypeOf e.Row Is GridViewNewRowInfo OrElse TypeOf e.Row Is GridViewFilteringRowInfo Then + Return + End If + + If e.Row.HierarchyLevel > 0 Then + Me.SetBoundValue(e.Row.DataBoundItem, e.Column.FieldName, e.Value) + e.Row.InvalidateRow() + End If + End Sub + + Private Sub radGridView1_UserAddingRow(sender As Object, e As GridViewRowCancelEventArgs) Handles RadGridView1.UserAddingRow + Dim row As GridViewRowInfo = e.Rows(0) + If row.HierarchyLevel = 0 Then + Return + End If + + Dim relation As GridViewRelation = Me.RadGridView1.Relations.Find(row.ViewTemplate.Parent, row.ViewTemplate) + Dim parentRow As GridViewRowInfo = TryCast(row.Parent, GridViewRowInfo) + Dim parentProperties As PropertyDescriptorCollection = ListBindingHelper.GetListItemProperties(parentRow.DataBoundItem) + Dim childDescriptor As PropertyDescriptor = parentProperties.Find(relation.ChildColumnNames(0), True) + If childDescriptor IsNot Nothing Then + Dim children As IList = TryCast(childDescriptor.GetValue(parentRow.DataBoundItem), IList) + If children IsNot Nothing Then + Dim newItem As Object = Activator.CreateInstance(ListBindingHelper.GetListItemType(children)) + Dim success As Boolean = True + For Each column As GridViewColumn In row.ViewTemplate.Columns + If column.IsVisible AndAlso Not column.[ReadOnly] AndAlso row.Cells(column.FieldName).Value IsNot Nothing AndAlso success Then + success = success And Me.SetBoundValue(newItem, column.FieldName, row.Cells(column.FieldName).Value) + End If + Next + + If Not success Then + e.Cancel = True + Else + children.Add(newItem) + End If + End If + End If + End Sub + + Private Sub radGridView1_UserAddedRow(sender As Object, e As GridViewRowEventArgs) Handles RadGridView1.UserAddedRow + e.Row.ViewTemplate.Refresh() + End Sub + + Private Sub radGridView1_UserDeletedRow(sender As Object, e As GridViewRowEventArgs) Handles RadGridView1.UserDeletedRow + Dim rows As GridViewRowInfo() = e.Rows + For i As Integer = 0 To CInt(rows.Length) - 1 + Dim row As GridViewRowInfo = rows(i) + If row.HierarchyLevel <> 0 Then + Dim relation As GridViewRelation = Me.RadGridView1.Relations.Find(row.ViewTemplate.Parent, row.ViewTemplate) + Dim parentRow As GridViewRowInfo = TryCast(row.Parent, GridViewRowInfo) + Dim parentProperties As PropertyDescriptorCollection = ListBindingHelper.GetListItemProperties(parentRow.DataBoundItem) + Dim childDescriptor As PropertyDescriptor = parentProperties.Find(relation.ChildColumnNames(0), True) + If childDescriptor IsNot Nothing Then + Dim children As IList = TryCast(childDescriptor.GetValue(parentRow.DataBoundItem), IList) + If children IsNot Nothing Then + children.Remove(row.DataBoundItem) + row.ViewInfo.Refresh() + + For Each childRow In row.ViewInfo.ChildRows + childRow.InvalidateRow() + Next + End If + End If + End If + Next + End Sub + + Private Function SetBoundValue(dataBoundItem As Object, propertyName As String, value As Object) As Boolean + Dim descriptor As PropertyDescriptor = TypeDescriptor.GetProperties(dataBoundItem).Find(propertyName, True) + If value IsNot Nothing Then + Try + Dim type As Type = Nullable.GetUnderlyingType(descriptor.PropertyType) + If descriptor.Converter IsNot Nothing AndAlso type IsNot Nothing AndAlso type.IsGenericType Then + value = descriptor.Converter.ConvertFromInvariantString(value.ToString()) + End If + descriptor.SetValue(dataBoundItem, value) + Return True + Catch + RadMessageBox.Show(String.Concat("Invalid property value for ", propertyName), "Error", MessageBoxButtons.OK, RadMessageIcon.[Error]) + Return False + End Try + Else + Try + descriptor.SetValue(dataBoundItem, value) + Catch + descriptor.SetValue(dataBoundItem, DBNull.Value) + End Try + End If + + Return True + End Function +End Class diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/GridObjectRelationalCRUD-VB.vbproj b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/GridObjectRelationalCRUD-VB.vbproj new file mode 100644 index 0000000..c2a848d --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/GridObjectRelationalCRUD-VB.vbproj @@ -0,0 +1,156 @@ + + + + Debug + x86 + + 2.0 + {68A18C0D-4594-4FA1-B8D1-77D8BEFEBE94} + WinExe + GridObjectRelationalCRUD.My.MyApplication + GridObjectRelationalCRUD + GridObjectRelationalCRUD + 512 + WindowsForms + v4.0 + + + + x86 + true + full + true + true + bin\Debug\ + GridObjectRelationalCRUD.xml + 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 + + + x86 + pdbonly + false + true + true + bin\Release\ + GridObjectRelationalCRUD.xml + 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 + + + On + + + Binary + + + Off + + + On + + + + + + + + + + + + + False + ..\..\DLLs\Telerik_UI_For_WinForms_2015_1_331_Dev_hotfix\Bin40\Telerik.WinControls.dll + + + False + ..\..\DLLs\Telerik_UI_For_WinForms_2015_1_331_Dev_hotfix\Bin40\Telerik.WinControls.GridView.dll + + + False + ..\..\DLLs\Telerik_UI_For_WinForms_2015_1_331_Dev_hotfix\Bin40\Telerik.WinControls.UI.dll + + + False + ..\..\DLLs\Telerik_UI_For_WinForms_2015_1_331_Dev_hotfix\Bin40\Telerik.WinControls.UI.Design.dll + + + False + ..\..\DLLs\Telerik_UI_For_WinForms_2015_1_331_Dev_hotfix\Bin40\TelerikCommon.dll + + + + + + + + + + + + + + + + + Form + + + Form1.vb + Form + + + + + + + + True + Application.myapp + + + True + True + Resources.resx + + + True + Settings.settings + True + + + + + Form1.vb + + + + VbMyResourcesResXFileCodeGenerator + Resources.Designer.vb + My.Resources + Designer + + + + + + MyApplicationCodeGenerator + Application.Designer.vb + + + SettingsSingleFileGenerator + My + Settings.Designer.vb + + + + + + + + \ No newline at end of file diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/Model/Album.vb b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/Model/Album.vb new file mode 100644 index 0000000..4404991 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/Model/Album.vb @@ -0,0 +1,50 @@ + _ +Public Class Album + Private m_id As Integer + Private m_artistId As Integer + Private m_title As String + Private m_tracks As New List(Of Track)() + + + Public Sub New() + End Sub + + Public Sub New(id As Integer, artistId As Integer, title As String) + Me.m_id = id + Me.m_artistId = artistId + Me.m_title = title + End Sub + + Public Property Id() As Integer + Get + Return m_id + End Get + Set(value As Integer) + m_id = value + End Set + End Property + + Public Property ArtistId() As Integer + Get + Return m_artistId + End Get + Set(value As Integer) + m_artistId = value + End Set + End Property + + Public Property Title() As String + Get + Return m_title + End Get + Set(value As String) + m_title = value + End Set + End Property + + Public ReadOnly Property Tracks() As List(Of Track) + Get + Return Me.m_tracks + End Get + End Property +End Class diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/Model/Artist.vb b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/Model/Artist.vb new file mode 100644 index 0000000..6be54b9 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/Model/Artist.vb @@ -0,0 +1,39 @@ + _ +Public Class Artist + Private m_id As Integer + Private m_name As String + Private m_albums As New List(Of Album)() + + + Public Sub New() + End Sub + + Public Sub New(id As Integer, name As String) + Me.m_id = id + Me.m_name = name + End Sub + + Public Property Id() As Integer + Get + Return m_id + End Get + Set(value As Integer) + m_id = value + End Set + End Property + + Public Property Name() As String + Get + Return m_name + End Get + Set(value As String) + m_name = value + End Set + End Property + + Public ReadOnly Property Albums() As List(Of Album) + Get + Return m_albums + End Get + End Property +End Class \ No newline at end of file diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/Model/DataContext.vb b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/Model/DataContext.vb new file mode 100644 index 0000000..c770d6d --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/Model/DataContext.vb @@ -0,0 +1,39 @@ +Imports System.IO +Imports System.Collections.Generic +Imports System.Xml.Serialization + +Public Class DataContext + Private Shared artistsField As List(Of Artist) = Nothing + Private Shared topArtistsField As List(Of Artist) = Nothing + + Protected Sub New() + End Sub + + Public Shared ReadOnly Property Artists() As List(Of Artist) + Get + If artistsField Is Nothing Then + Dim mySerializer As New XmlSerializer(GetType(List(Of Artist))) + Dim myFileStream As New FileStream("..\..\artists.xml", FileMode.Open) + artistsField = DirectCast(mySerializer.Deserialize(myFileStream), List(Of Artist)) + End If + + Return artistsField + End Get + End Property + + Public Shared ReadOnly Property TopArtists() As List(Of Artist) + Get + If topArtistsField Is Nothing Then + Dim mySerializer As New XmlSerializer(GetType(List(Of Artist))) + Dim myFileStream As New FileStream("..\..\artists.xml", FileMode.Open) + topArtistsField = DirectCast(mySerializer.Deserialize(myFileStream), List(Of Artist)) + + While topArtistsField.Count > 50 + topArtistsField.RemoveAt(topArtistsField.Count - 1) + End While + End If + + Return topArtistsField + End Get + End Property +End Class diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/Model/Track.vb b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/Model/Track.vb new file mode 100644 index 0000000..62c2b08 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/Model/Track.vb @@ -0,0 +1,65 @@ + _ +Public Class Track + Private m_id As Integer + Private m_name As String + Private m_mediaType As String + Private m_genre As String + Private m_size As String + + + Public Sub New() + End Sub + + Public Sub New(id As Integer, name As String, mediaType As String, genre As String, size As String) + Me.m_id = id + Me.m_name = name + Me.m_mediaType = mediaType + Me.m_genre = genre + Me.m_size = size + End Sub + + Public Property Id() As Integer + Get + Return m_id + End Get + Set(value As Integer) + m_id = value + End Set + End Property + + Public Property Name() As String + Get + Return m_name + End Get + Set(value As String) + m_name = value + End Set + End Property + + Public Property MediaType() As String + Get + Return m_mediaType + End Get + Set(value As String) + m_mediaType = value + End Set + End Property + + Public Property Genre() As String + Get + Return m_genre + End Get + Set(value As String) + m_genre = value + End Set + End Property + + Public Property Size() As String + Get + Return m_size + End Get + Set(value As String) + m_size = value + End Set + End Property +End Class \ No newline at end of file diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/My Project/Application.Designer.vb b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/My Project/Application.Designer.vb new file mode 100644 index 0000000..91b3c5b --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/My Project/Application.Designer.vb @@ -0,0 +1,38 @@ +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + + +Namespace My + + 'NOTE: This file is auto-generated; do not modify it directly. To make changes, + ' or if you encounter build errors in this file, go to the Project Designer + ' (go to Project Properties or double-click the My Project node in + ' Solution Explorer), and make changes on the Application tab. + ' + Partial Friend Class MyApplication + + _ + Public Sub New() + MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows) + Me.IsSingleInstance = false + Me.EnableVisualStyles = true + Me.SaveMySettingsOnExit = true + Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses + End Sub + + _ + Protected Overrides Sub OnCreateMainForm() + Me.MainForm = Global.GridObjectRelationalCRUD.Form1 + End Sub + End Class +End Namespace diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/My Project/Application.myapp b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/My Project/Application.myapp new file mode 100644 index 0000000..1243847 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/My Project/Application.myapp @@ -0,0 +1,11 @@ + + + true + Form1 + false + 0 + true + 0 + 0 + true + diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/My Project/AssemblyInfo.vb b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/My Project/AssemblyInfo.vb new file mode 100644 index 0000000..620121f --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/My Project/AssemblyInfo.vb @@ -0,0 +1,35 @@ +Imports System +Imports System.Reflection +Imports System.Runtime.InteropServices + +' General Information about an assembly is controlled through the following +' set of attributes. Change these attribute values to modify the information +' associated with an assembly. + +' Review the values of the assembly attributes + + + + + + + + + + +'The following GUID is for the ID of the typelib if this project is exposed to COM + + +' Version information for an assembly consists of the following four values: +' +' Major Version +' Minor Version +' Build Number +' Revision +' +' You can specify all the values or you can default the Build and Revision Numbers +' by using the '*' as shown below: +' + + + diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/My Project/Resources.Designer.vb b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/My Project/Resources.Designer.vb new file mode 100644 index 0000000..7cf8d05 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/My Project/Resources.Designer.vb @@ -0,0 +1,63 @@ +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + +Imports System + +Namespace My.Resources + + 'This class was auto-generated by the StronglyTypedResourceBuilder + 'class via a tool like ResGen or Visual Studio. + 'To add or remove a member, edit your .ResX file then rerun ResGen + 'with the /str option, or rebuild your VS project. + ''' + ''' A strongly-typed resource class, for looking up localized strings, etc. + ''' + _ + Friend Module Resources + + Private resourceMan As Global.System.Resources.ResourceManager + + Private resourceCulture As Global.System.Globalization.CultureInfo + + ''' + ''' Returns the cached ResourceManager instance used by this class. + ''' + _ + Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager + Get + If Object.ReferenceEquals(resourceMan, Nothing) Then + Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("GridObjectRelationalCRUD.Resources", GetType(Resources).Assembly) + resourceMan = temp + End If + Return resourceMan + End Get + End Property + + ''' + ''' Overrides the current thread's CurrentUICulture property for all + ''' resource lookups using this strongly typed resource class. + ''' + _ + Friend Property Culture() As Global.System.Globalization.CultureInfo + Get + Return resourceCulture + End Get + Set + resourceCulture = value + End Set + End Property + End Module +End Namespace diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/My Project/Resources.resx b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/My Project/Resources.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/My Project/Resources.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/My Project/Settings.Designer.vb b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/My Project/Settings.Designer.vb new file mode 100644 index 0000000..b895f47 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/My Project/Settings.Designer.vb @@ -0,0 +1,73 @@ +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.34209 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + + +Namespace My + + _ + Partial Friend NotInheritable Class MySettings + Inherits Global.System.Configuration.ApplicationSettingsBase + + Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings()),MySettings) + +#Region "My.Settings Auto-Save Functionality" +#If _MyType = "WindowsForms" Then + Private Shared addedHandler As Boolean + + Private Shared addedHandlerLockObject As New Object + + _ + Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs) + If My.Application.SaveMySettingsOnExit Then + My.Settings.Save() + End If + End Sub +#End If +#End Region + + Public Shared ReadOnly Property [Default]() As MySettings + Get + +#If _MyType = "WindowsForms" Then + If Not addedHandler Then + SyncLock addedHandlerLockObject + If Not addedHandler Then + AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings + addedHandler = True + End If + End SyncLock + End If +#End If + Return defaultInstance + End Get + End Property + End Class +End Namespace + +Namespace My + + _ + Friend Module MySettingsProperty + + _ + Friend ReadOnly Property Settings() As Global.GridObjectRelationalCRUD.My.MySettings + Get + Return Global.GridObjectRelationalCRUD.My.MySettings.Default + End Get + End Property + End Module +End Namespace diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/My Project/Settings.settings b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/My Project/Settings.settings new file mode 100644 index 0000000..85b890b --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/My Project/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/My Project/licenses.licx b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/My Project/licenses.licx new file mode 100644 index 0000000..818c9a1 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/My Project/licenses.licx @@ -0,0 +1 @@ +Telerik.WinControls.UI.RadGridView, Telerik.WinControls.GridView, Version=2015.1.331.40, Culture=neutral, PublicKeyToken=5bb2a467cbec794e diff --git a/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/artists.xml b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/artists.xml new file mode 100644 index 0000000..6da4db1 --- /dev/null +++ b/GridView/GridObjectRelationalCRUD/gridobjectrelationalcrud-vb/GridObjectRelationalCRUD-VB/artists.xml @@ -0,0 +1,25029 @@ + + + + 1 + AC/DC + + + 1 + 1 + For Those About To Rock We Salute You + + + 0 + For Those About To Rock (We Salute You) + MPEG audio file + Rock + + + 0 + Put The Finger On You + MPEG audio file + Rock + + + 0 + Let's Get It Up + MPEG audio file + Rock + + + 0 + Inject The Venom + MPEG audio file + Rock + + + 0 + Snowballed + MPEG audio file + Rock + + + 0 + Evil Walks + MPEG audio file + Rock + + + 0 + C.O.D. + MPEG audio file + Rock + + + 0 + Breaking The Rules + MPEG audio file + Rock + + + 0 + Night Of The Long Knives + MPEG audio file + Rock + + + 0 + Spellbound + MPEG audio file + Rock + + + + + 4 + 1 + Let There Be Rock + + + 0 + Go Down + MPEG audio file + Rock + + + 0 + Dog Eat Dog + MPEG audio file + Rock + + + 0 + Let There Be Rock + MPEG audio file + Rock + + + 0 + Bad Boy Boogie + MPEG audio file + Rock + + + 0 + Problem Child + MPEG audio file + Rock + + + 0 + Overdose + MPEG audio file + Rock + + + 0 + Hell Ain't A Bad Place To Be + MPEG audio file + Rock + + + 0 + Whole Lotta Rosie + MPEG audio file + Rock + + + + + + + 2 + Accept + + + 2 + 2 + Balls to the Wall + + + 0 + Balls to the Wall + Protected AAC audio file + Rock + + + + + 3 + 2 + Restless and Wild + + + 0 + Fast As a Shark + Protected AAC audio file + Rock + + + 0 + Restless and Wild + Protected AAC audio file + Rock + + + 0 + Princess of the Dawn + Protected AAC audio file + Rock + + + + + + + 3 + Aerosmith + + + 5 + 3 + Big Ones + + + 0 + Walk On Water + MPEG audio file + Rock + + + 0 + Love In An Elevator + MPEG audio file + Rock + + + 0 + Rag Doll + MPEG audio file + Rock + + + 0 + What It Takes + MPEG audio file + Rock + + + 0 + Dude (Looks Like A Lady) + MPEG audio file + Rock + + + 0 + Janie's Got A Gun + MPEG audio file + Rock + + + 0 + Cryin' + MPEG audio file + Rock + + + 0 + Amazing + MPEG audio file + Rock + + + 0 + Blind Man + MPEG audio file + Rock + + + 0 + Deuces Are Wild + MPEG audio file + Rock + + + 0 + The Other Side + MPEG audio file + Rock + + + 0 + Crazy + MPEG audio file + Rock + + + 0 + Eat The Rich + MPEG audio file + Rock + + + 0 + Angel + MPEG audio file + Rock + + + 0 + Livin' On The Edge + MPEG audio file + Rock + + + + + + + 4 + Alanis Morissette + + + 6 + 4 + Jagged Little Pill + + + 0 + All I Really Want + MPEG audio file + Rock + + + 0 + You Oughta Know + MPEG audio file + Rock + + + 0 + Perfect + MPEG audio file + Rock + + + 0 + Hand In My Pocket + MPEG audio file + Rock + + + 0 + Right Through You + MPEG audio file + Rock + + + 0 + Forgiven + MPEG audio file + Rock + + + 0 + You Learn + MPEG audio file + Rock + + + 0 + Head Over Feet + MPEG audio file + Rock + + + 0 + Mary Jane + MPEG audio file + Rock + + + 0 + Ironic + MPEG audio file + Rock + + + 0 + Not The Doctor + MPEG audio file + Rock + + + 0 + Wake Up + MPEG audio file + Rock + + + 0 + You Oughta Know (Alternate) + MPEG audio file + Rock + + + + + + + 5 + Alice In Chains + + + 7 + 5 + Facelift + + + 0 + We Die Young + MPEG audio file + Rock + + + 0 + Man In The Box + MPEG audio file + Rock + + + 0 + Sea Of Sorrow + MPEG audio file + Rock + + + 0 + Bleed The Freak + MPEG audio file + Rock + + + 0 + I Can't Remember + MPEG audio file + Rock + + + 0 + Love, Hate, Love + MPEG audio file + Rock + + + 0 + It Ain't Like That + MPEG audio file + Rock + + + 0 + Sunshine + MPEG audio file + Rock + + + 0 + Put You Down + MPEG audio file + Rock + + + 0 + Confusion + MPEG audio file + Rock + + + 0 + I Know Somethin (Bout You) + MPEG audio file + Rock + + + 0 + Real Thing + MPEG audio file + Rock + + + + + + + 6 + Antônio Carlos Jobim + + + 8 + 6 + Warner 25 Anos + + + 0 + Desafinado + MPEG audio file + Jazz + + + 0 + Garota De Ipanema + MPEG audio file + Jazz + + + 0 + Samba De Uma Nota Só (One Note Samba) + MPEG audio file + Jazz + + + 0 + Por Causa De Você + MPEG audio file + Jazz + + + 0 + Ligia + MPEG audio file + Jazz + + + 0 + Fotografia + MPEG audio file + Jazz + + + 0 + Dindi (Dindi) + MPEG audio file + Jazz + + + 0 + Se Todos Fossem Iguais A Você (Instrumental) + MPEG audio file + Jazz + + + 0 + Falando De Amor + MPEG audio file + Jazz + + + 0 + Angela + MPEG audio file + Jazz + + + 0 + Corcovado (Quiet Nights Of Quiet Stars) + MPEG audio file + Jazz + + + 0 + Outra Vez + MPEG audio file + Jazz + + + 0 + O Boto (Bôto) + MPEG audio file + Jazz + + + 0 + Canta, Canta Mais + MPEG audio file + Jazz + + + + + 34 + 6 + Chill: Brazil (Disc 2) + + + 0 + Garota De Ipanema + MPEG audio file + Latin + + + 0 + Tim Tim Por Tim Tim + MPEG audio file + Latin + + + 0 + Tarde Em Itapoã + MPEG audio file + Latin + + + 0 + Tanto Tempo + MPEG audio file + Latin + + + 0 + Eu Vim Da Bahia - Live + MPEG audio file + Latin + + + 0 + Alô Alô Marciano + MPEG audio file + Latin + + + 0 + Linha Do Horizonte + MPEG audio file + Latin + + + 0 + Only A Dream In Rio + MPEG audio file + Latin + + + 0 + Abrir A Porta + MPEG audio file + Latin + + + 0 + Alice + MPEG audio file + Latin + + + 0 + Momentos Que Marcam + MPEG audio file + Latin + + + 0 + Um Jantar Pra Dois + MPEG audio file + Latin + + + 0 + Bumbo Da Mangueira + MPEG audio file + Latin + + + 0 + Mr Funk Samba + MPEG audio file + Latin + + + 0 + Santo Antonio + MPEG audio file + Latin + + + 0 + Por Você + MPEG audio file + Latin + + + 0 + Só Tinha De Ser Com Você + MPEG audio file + Latin + + + + + + + 7 + Apocalyptica + + + 9 + 7 + Plays Metallica By Four Cellos + + + 0 + Enter Sandman + MPEG audio file + Metal + + + 0 + Master Of Puppets + MPEG audio file + Metal + + + 0 + Harvester Of Sorrow + MPEG audio file + Metal + + + 0 + The Unforgiven + MPEG audio file + Metal + + + 0 + Sad But True + MPEG audio file + Metal + + + 0 + Creeping Death + MPEG audio file + Metal + + + 0 + Wherever I May Roam + MPEG audio file + Metal + + + 0 + Welcome Home (Sanitarium) + MPEG audio file + Metal + + + + + + + 8 + Audioslave + + + 10 + 8 + Audioslave + + + 0 + Cochise + MPEG audio file + Rock + + + 0 + Show Me How to Live + MPEG audio file + Rock + + + 0 + Gasoline + MPEG audio file + Rock + + + 0 + What You Are + MPEG audio file + Rock + + + 0 + Like a Stone + MPEG audio file + Rock + + + 0 + Set It Off + MPEG audio file + Rock + + + 0 + Shadow on the Sun + MPEG audio file + Rock + + + 0 + I am the Highway + MPEG audio file + Rock + + + 0 + Exploder + MPEG audio file + Rock + + + 0 + Hypnotize + MPEG audio file + Rock + + + 0 + Bring'em Back Alive + MPEG audio file + Rock + + + 0 + Light My Way + MPEG audio file + Rock + + + 0 + Getaway Car + MPEG audio file + Rock + + + 0 + The Last Remaining Light + MPEG audio file + Rock + + + + + 11 + 8 + Out Of Exile + + + 0 + Your Time Has Come + MPEG audio file + Alternative & Punk + + + 0 + Out Of Exile + MPEG audio file + Alternative & Punk + + + 0 + Be Yourself + MPEG audio file + Alternative & Punk + + + 0 + Doesn't Remind Me + MPEG audio file + Alternative & Punk + + + 0 + Drown Me Slowly + MPEG audio file + Alternative & Punk + + + 0 + Heaven's Dead + MPEG audio file + Alternative & Punk + + + 0 + The Worm + MPEG audio file + Alternative & Punk + + + 0 + Man Or Animal + MPEG audio file + Alternative & Punk + + + 0 + Yesterday To Tomorrow + MPEG audio file + Alternative & Punk + + + 0 + Dandelion + MPEG audio file + Alternative & Punk + + + 0 + #1 Zero + MPEG audio file + Alternative & Punk + + + 0 + The Curse + MPEG audio file + Alternative & Punk + + + + + 271 + 8 + Revelations + + + 0 + Revelations + Protected AAC audio file + Alternative + + + 0 + One and the Same + Protected AAC audio file + Alternative + + + 0 + Sound of a Gun + Protected AAC audio file + Alternative + + + 0 + Until We Fall + Protected AAC audio file + Alternative + + + 0 + Original Fire + Protected AAC audio file + Alternative + + + 0 + Broken City + Protected AAC audio file + Alternative + + + 0 + Somedays + Protected AAC audio file + Alternative + + + 0 + Shape of Things to Come + Protected AAC audio file + Alternative + + + 0 + Jewel of the Summertime + Protected AAC audio file + Alternative + + + 0 + Wide Awake + Protected AAC audio file + Alternative + + + 0 + Nothing Left to Say But Goodbye + Protected AAC audio file + Alternative + + + 0 + Moth + Protected AAC audio file + Alternative + + + 0 + Show Me How to Live (Live at the Quart Festival) + Protected AAC audio file + Alternative + + + 0 + Band Members Discuss Tracks from "Revelations" + Protected MPEG-4 video file + Alternative + + + + + + + 9 + BackBeat + + + 12 + 9 + BackBeat Soundtrack + + + 0 + Money + MPEG audio file + Rock And Roll + + + 0 + Long Tall Sally + MPEG audio file + Rock And Roll + + + 0 + Bad Boy + MPEG audio file + Rock And Roll + + + 0 + Twist And Shout + MPEG audio file + Rock And Roll + + + 0 + Please Mr. Postman + MPEG audio file + Rock And Roll + + + 0 + C'Mon Everybody + MPEG audio file + Rock And Roll + + + 0 + Rock 'N' Roll Music + MPEG audio file + Rock And Roll + + + 0 + Slow Down + MPEG audio file + Rock And Roll + + + 0 + Roadrunner + MPEG audio file + Rock And Roll + + + 0 + Carol + MPEG audio file + Rock And Roll + + + 0 + Good Golly Miss Molly + MPEG audio file + Rock And Roll + + + 0 + 20 Flight Rock + MPEG audio file + Rock And Roll + + + + + + + 10 + Billy Cobham + + + 13 + 10 + The Best Of Billy Cobham + + + 0 + Quadrant + MPEG audio file + Jazz + + + 0 + Snoopy's search-Red baron + MPEG audio file + Jazz + + + 0 + Spanish moss-"A sound portrait"-Spanish moss + MPEG audio file + Jazz + + + 0 + Moon germs + MPEG audio file + Jazz + + + 0 + Stratus + MPEG audio file + Jazz + + + 0 + The pleasant pheasant + MPEG audio file + Jazz + + + 0 + Solo-Panhandler + MPEG audio file + Jazz + + + 0 + Do what cha wanna + MPEG audio file + Jazz + + + + + + + 11 + Black Label Society + + + 14 + 11 + Alcohol Fueled Brewtality Live! [Disc 1] + + + 0 + Intro/ Low Down + MPEG audio file + Metal + + + 0 + 13 Years Of Grief + MPEG audio file + Metal + + + 0 + Stronger Than Death + MPEG audio file + Metal + + + 0 + All For You + MPEG audio file + Metal + + + 0 + Super Terrorizer + MPEG audio file + Metal + + + 0 + Phoney Smile Fake Hellos + MPEG audio file + Metal + + + 0 + Lost My Better Half + MPEG audio file + Metal + + + 0 + Bored To Tears + MPEG audio file + Metal + + + 0 + A.N.D.R.O.T.A.Z. + MPEG audio file + Metal + + + 0 + Born To Booze + MPEG audio file + Metal + + + 0 + World Of Trouble + MPEG audio file + Metal + + + 0 + No More Tears + MPEG audio file + Metal + + + 0 + The Begining... At Last + MPEG audio file + Metal + + + + + 15 + 11 + Alcohol Fueled Brewtality Live! [Disc 2] + + + 0 + Heart Of Gold + MPEG audio file + Metal + + + 0 + Snowblind + MPEG audio file + Metal + + + 0 + Like A Bird + MPEG audio file + Metal + + + 0 + Blood In The Wall + MPEG audio file + Metal + + + 0 + The Beginning...At Last + MPEG audio file + Metal + + + + + + + 12 + Black Sabbath + + + 16 + 12 + Black Sabbath + + + 0 + Black Sabbath + MPEG audio file + Metal + + + 0 + The Wizard + MPEG audio file + Metal + + + 0 + Behind The Wall Of Sleep + MPEG audio file + Metal + + + 0 + N.I.B. + MPEG audio file + Metal + + + 0 + Evil Woman + MPEG audio file + Metal + + + 0 + Sleeping Village + MPEG audio file + Metal + + + 0 + Warning + MPEG audio file + Metal + + + + + 17 + 12 + Black Sabbath Vol. 4 (Remaster) + + + 0 + Wheels Of Confusion / The Straightener + MPEG audio file + Metal + + + 0 + Tomorrow's Dream + MPEG audio file + Metal + + + 0 + Changes + MPEG audio file + Metal + + + 0 + FX + MPEG audio file + Metal + + + 0 + Supernaut + MPEG audio file + Metal + + + 0 + Snowblind + MPEG audio file + Metal + + + 0 + Cornucopia + MPEG audio file + Metal + + + 0 + Laguna Sunrise + MPEG audio file + Metal + + + 0 + St. Vitus Dance + MPEG audio file + Metal + + + 0 + Under The Sun/Every Day Comes and Goes + MPEG audio file + Metal + + + + + + + 13 + Body Count + + + 18 + 13 + Body Count + + + 0 + Smoked Pork + MPEG audio file + Alternative & Punk + + + 0 + Body Count's In The House + MPEG audio file + Alternative & Punk + + + 0 + Now Sports + MPEG audio file + Alternative & Punk + + + 0 + Body Count + MPEG audio file + Alternative & Punk + + + 0 + A Statistic + MPEG audio file + Alternative & Punk + + + 0 + Bowels Of The Devil + MPEG audio file + Alternative & Punk + + + 0 + The Real Problem + MPEG audio file + Alternative & Punk + + + 0 + KKK Bitch + MPEG audio file + Alternative & Punk + + + 0 + D Note + MPEG audio file + Alternative & Punk + + + 0 + Voodoo + MPEG audio file + Alternative & Punk + + + 0 + The Winner Loses + MPEG audio file + Alternative & Punk + + + 0 + There Goes The Neighborhood + MPEG audio file + Alternative & Punk + + + 0 + Oprah + MPEG audio file + Alternative & Punk + + + 0 + Evil Dick + MPEG audio file + Alternative & Punk + + + 0 + Body Count Anthem + MPEG audio file + Alternative & Punk + + + 0 + Momma's Gotta Die Tonight + MPEG audio file + Alternative & Punk + + + 0 + Freedom Of Speech + MPEG audio file + Alternative & Punk + + + + + + + 14 + Bruce Dickinson + + + 19 + 14 + Chemical Wedding + + + 0 + King In Crimson + MPEG audio file + Metal + + + 0 + Chemical Wedding + MPEG audio file + Metal + + + 0 + The Tower + MPEG audio file + Metal + + + 0 + Killing Floor + MPEG audio file + Metal + + + 0 + Book Of Thel + MPEG audio file + Metal + + + 0 + Gates Of Urizen + MPEG audio file + Metal + + + 0 + Jerusalem + MPEG audio file + Metal + + + 0 + Trupets Of Jericho + MPEG audio file + Metal + + + 0 + Machine Men + MPEG audio file + Metal + + + 0 + The Alchemist + MPEG audio file + Metal + + + 0 + Realword + MPEG audio file + Metal + + + + + + + 15 + Buddy Guy + + + 20 + 15 + The Best Of Buddy Guy - The Millenium Collection + + + 0 + First Time I Met The Blues + MPEG audio file + Blues + + + 0 + Let Me Love You Baby + MPEG audio file + Blues + + + 0 + Stone Crazy + MPEG audio file + Blues + + + 0 + Pretty Baby + MPEG audio file + Blues + + + 0 + When My Left Eye Jumps + MPEG audio file + Blues + + + 0 + Leave My Girl Alone + MPEG audio file + Blues + + + 0 + She Suits Me To A Tee + MPEG audio file + Blues + + + 0 + Keep It To Myself (Aka Keep It To Yourself) + MPEG audio file + Blues + + + 0 + My Time After Awhile + MPEG audio file + Blues + + + 0 + Too Many Ways (Alternate) + MPEG audio file + Blues + + + 0 + Talkin' 'Bout Women Obviously + MPEG audio file + Blues + + + + + + + 16 + Caetano Veloso + + + 21 + 16 + Prenda Minha + + + 0 + Jorge Da Capadócia + MPEG audio file + Latin + + + 0 + Prenda Minha + MPEG audio file + Latin + + + 0 + Meditação + MPEG audio file + Latin + + + 0 + Terra + MPEG audio file + Latin + + + 0 + Eclipse Oculto + MPEG audio file + Latin + + + 0 + Texto "Verdade Tropical" + MPEG audio file + Latin + + + 0 + Bem Devagar + MPEG audio file + Latin + + + 0 + Drão + MPEG audio file + Latin + + + 0 + Saudosismo + MPEG audio file + Latin + + + 0 + Carolina + MPEG audio file + Latin + + + 0 + Sozinho + MPEG audio file + Latin + + + 0 + Esse Cara + MPEG audio file + Latin + + + 0 + Mel + MPEG audio file + Latin + + + 0 + Linha Do Equador + MPEG audio file + Latin + + + 0 + Odara + MPEG audio file + Latin + + + 0 + A Luz De Tieta + MPEG audio file + Latin + + + 0 + Atrás Da Verd-E-Rosa Só Não Vai Quem Já Morreu + MPEG audio file + Latin + + + 0 + Vida Boa + MPEG audio file + Latin + + + + + 22 + 16 + Sozinho Remix Ao Vivo + + + 0 + Sozinho (Hitmakers Classic Mix) + MPEG audio file + Latin + + + 0 + Sozinho (Hitmakers Classic Radio Edit) + MPEG audio file + Latin + + + 0 + Sozinho (Caêdrum 'n' Bass) + MPEG audio file + Latin + + + + + + + 17 + Chico Buarque + + + 23 + 17 + Minha Historia + + + 0 + Carolina + MPEG audio file + Latin + + + 0 + Essa Moça Ta Diferente + MPEG audio file + Latin + + + 0 + Vai Passar + MPEG audio file + Latin + + + 0 + Samba De Orly + MPEG audio file + Latin + + + 0 + Bye, Bye Brasil + MPEG audio file + Latin + + + 0 + Atras Da Porta + MPEG audio file + Latin + + + 0 + Tatuagem + MPEG audio file + Latin + + + 0 + O Que Será (À Flor Da Terra) + MPEG audio file + Latin + + + 0 + Morena De Angola + MPEG audio file + Latin + + + 0 + Apesar De Você + MPEG audio file + Latin + + + 0 + A Banda + MPEG audio file + Latin + + + 0 + Minha Historia + MPEG audio file + Latin + + + 0 + Com Açúcar E Com Afeto + MPEG audio file + Latin + + + 0 + Brejo Da Cruz + MPEG audio file + Latin + + + 0 + Meu Caro Amigo + MPEG audio file + Latin + + + 0 + Geni E O Zepelim + MPEG audio file + Latin + + + 0 + Trocando Em Miúdos + MPEG audio file + Latin + + + 0 + Vai Trabalhar Vagabundo + MPEG audio file + Latin + + + 0 + Gota D'água + MPEG audio file + Latin + + + 0 + Construção / Deus Lhe Pague + MPEG audio file + Latin + + + 0 + Meia-Lua Inteira + MPEG audio file + Latin + + + 0 + Voce e Linda + MPEG audio file + Latin + + + 0 + Um Indio + MPEG audio file + Latin + + + 0 + Podres Poderes + MPEG audio file + Latin + + + 0 + Voce Nao Entende Nada - Cotidiano + MPEG audio file + Latin + + + 0 + O Estrangeiro + MPEG audio file + Latin + + + 0 + Menino Do Rio + MPEG audio file + Latin + + + 0 + Qualquer Coisa + MPEG audio file + Latin + + + 0 + Sampa + MPEG audio file + Latin + + + 0 + Queixa + MPEG audio file + Latin + + + 0 + O Leaozinho + MPEG audio file + Latin + + + 0 + Fora Da Ordem + MPEG audio file + Latin + + + 0 + Terra + MPEG audio file + Latin + + + 0 + Alegria, Alegria + MPEG audio file + Latin + + + + + + + 18 + Chico Science & Nação Zumbi + + + 24 + 18 + Afrociberdelia + + + 0 + Mateus Enter + MPEG audio file + Latin + + + 0 + O Cidadão Do Mundo + MPEG audio file + Latin + + + 0 + Etnia + MPEG audio file + Latin + + + 0 + Quilombo Groove [Instrumental] + MPEG audio file + Latin + + + 0 + Macô + MPEG audio file + Latin + + + 0 + Um Passeio No Mundo Livre + MPEG audio file + Latin + + + 0 + Samba Do Lado + MPEG audio file + Latin + + + 0 + Maracatu Atômico + MPEG audio file + Latin + + + 0 + O Encontro De Isaac Asimov Com Santos Dumont No Céu + MPEG audio file + Latin + + + 0 + Corpo De Lama + MPEG audio file + Latin + + + 0 + Sobremesa + MPEG audio file + Latin + + + 0 + Manguetown + MPEG audio file + Latin + + + 0 + Um Satélite Na Cabeça + MPEG audio file + Latin + + + 0 + Baião Ambiental [Instrumental] + MPEG audio file + Latin + + + 0 + Sangue De Bairro + MPEG audio file + Latin + + + 0 + Enquanto O Mundo Explode + MPEG audio file + Latin + + + 0 + Interlude Zumbi + MPEG audio file + Latin + + + 0 + Criança De Domingo + MPEG audio file + Latin + + + 0 + Amor De Muito + MPEG audio file + Latin + + + 0 + Samidarish [Instrumental] + MPEG audio file + Latin + + + 0 + Maracatu Atômico [Atomic Version] + MPEG audio file + Latin + + + 0 + Maracatu Atômico [Ragga Mix] + MPEG audio file + Latin + + + 0 + Maracatu Atômico [Trip Hop] + MPEG audio file + Latin + + + + + 25 + 18 + Da Lama Ao Caos + + + 0 + Banditismo Por Uma Questa + MPEG audio file + Latin + + + 0 + Banditismo Por Uma Questa + MPEG audio file + Latin + + + 0 + Rios Pontes & Overdrives + MPEG audio file + Latin + + + 0 + Cidade + MPEG audio file + Latin + + + 0 + Praiera + MPEG audio file + Latin + + + 0 + Samba Makossa + MPEG audio file + Latin + + + 0 + Da Lama Ao Caos + MPEG audio file + Latin + + + 0 + Maracatu De Tiro Certeiro + MPEG audio file + Latin + + + 0 + Salustiano Song + MPEG audio file + Latin + + + 0 + Antene Se + MPEG audio file + Latin + + + 0 + Risoflora + MPEG audio file + Latin + + + 0 + Lixo Do Mangue + MPEG audio file + Latin + + + 0 + Computadores Fazem Arte + MPEG audio file + Latin + + + + + + + 19 + Cidade Negra + + + 26 + 19 + Acústico MTV [Live] + + + 0 + Girassol + MPEG audio file + Reggae + + + 0 + A Sombra Da Maldade + MPEG audio file + Reggae + + + 0 + Johnny B. Goode + MPEG audio file + Reggae + + + 0 + Soldado Da Paz + MPEG audio file + Reggae + + + 0 + Firmamento + MPEG audio file + Reggae + + + 0 + Extra + MPEG audio file + Reggae + + + 0 + O Erê + MPEG audio file + Reggae + + + 0 + Podes Crer + MPEG audio file + Reggae + + + 0 + A Estrada + MPEG audio file + Reggae + + + 0 + Berlim + MPEG audio file + Reggae + + + 0 + Já Foi + MPEG audio file + Reggae + + + 0 + Onde Você Mora? + MPEG audio file + Reggae + + + 0 + Pensamento + MPEG audio file + Reggae + + + 0 + Conciliação + MPEG audio file + Reggae + + + 0 + Realidade Virtual + MPEG audio file + Reggae + + + 0 + Mensagem + MPEG audio file + Reggae + + + 0 + A Cor Do Sol + MPEG audio file + Reggae + + + + + 27 + 19 + Cidade Negra - Hits + + + 0 + Onde Você Mora? + MPEG audio file + Reggae + + + 0 + O Erê + MPEG audio file + Reggae + + + 0 + A Sombra Da Maldade + MPEG audio file + Reggae + + + 0 + A Estrada + MPEG audio file + Reggae + + + 0 + Falar A Verdade + MPEG audio file + Reggae + + + 0 + Firmamento + MPEG audio file + Reggae + + + 0 + Pensamento + MPEG audio file + Reggae + + + 0 + Realidade Virtual + MPEG audio file + Reggae + + + 0 + Doutor + MPEG audio file + Reggae + + + 0 + Na Frente Da TV + MPEG audio file + Reggae + + + 0 + Downtown + MPEG audio file + Reggae + + + 0 + Sábado A Noite + MPEG audio file + Reggae + + + 0 + A Cor Do Sol + MPEG audio file + Reggae + + + 0 + Eu Também Quero Beijar + MPEG audio file + Reggae + + + + + + + 20 + Cláudio Zoli + + + 28 + 20 + Na Pista + + + 0 + Noite Do Prazer + MPEG audio file + Latin + + + 0 + À Francesa + MPEG audio file + Latin + + + 0 + Cada Um Cada Um (A Namoradeira) + MPEG audio file + Latin + + + 0 + Linha Do Equador + MPEG audio file + Latin + + + 0 + Amor Demais + MPEG audio file + Latin + + + 0 + Férias + MPEG audio file + Latin + + + 0 + Gostava Tanto De Você + MPEG audio file + Latin + + + 0 + Flor Do Futuro + MPEG audio file + Latin + + + 0 + Felicidade Urgente + MPEG audio file + Latin + + + 0 + Livre Pra Viver + MPEG audio file + Latin + + + + + + + 21 + Various Artists + + + 29 + 21 + Axé Bahia 2001 + + + 0 + Dig-Dig, Lambe-Lambe (Ao Vivo) + MPEG audio file + Pop + + + 0 + Pererê + MPEG audio file + Pop + + + 0 + TriboTchan + MPEG audio file + Pop + + + 0 + Tapa Aqui, Descobre Ali + MPEG audio file + Pop + + + 0 + Daniela + MPEG audio file + Pop + + + 0 + Bate Lata + MPEG audio file + Pop + + + 0 + Garotas do Brasil + MPEG audio file + Pop + + + 0 + Levada do Amor (Ailoviu) + MPEG audio file + Pop + + + 0 + Lavadeira + MPEG audio file + Pop + + + 0 + Reboladeira + MPEG audio file + Pop + + + 0 + É que Nessa Encarnação Eu Nasci Manga + MPEG audio file + Pop + + + 0 + Reggae Tchan + MPEG audio file + Pop + + + 0 + My Love + MPEG audio file + Pop + + + 0 + Latinha de Cerveja + MPEG audio file + Pop + + + + + 32 + 21 + Carnaval 2001 + + + 0 + Vai-Vai 2001 + MPEG audio file + Soundtrack + + + 0 + X-9 2001 + MPEG audio file + Soundtrack + + + 0 + Gavioes 2001 + MPEG audio file + Soundtrack + + + 0 + Nene 2001 + MPEG audio file + Soundtrack + + + 0 + Rosas De Ouro 2001 + MPEG audio file + Soundtrack + + + 0 + Mocidade Alegre 2001 + MPEG audio file + Soundtrack + + + 0 + Camisa Verde 2001 + MPEG audio file + Soundtrack + + + 0 + Leandro De Itaquera 2001 + MPEG audio file + Soundtrack + + + 0 + Tucuruvi 2001 + MPEG audio file + Soundtrack + + + 0 + Aguia De Ouro 2001 + MPEG audio file + Soundtrack + + + 0 + Ipiranga 2001 + MPEG audio file + Soundtrack + + + 0 + Morro Da Casa Verde 2001 + MPEG audio file + Soundtrack + + + 0 + Perola Negra 2001 + MPEG audio file + Soundtrack + + + 0 + Sao Lucas 2001 + MPEG audio file + Soundtrack + + + + + 45 + 21 + Sambas De Enredo 2001 + + + 0 + Imperatriz + MPEG audio file + Latin + + + 0 + Beija-Flor + MPEG audio file + Latin + + + 0 + Viradouro + MPEG audio file + Latin + + + 0 + Mocidade + MPEG audio file + Latin + + + 0 + Unidos Da Tijuca + MPEG audio file + Latin + + + 0 + Salgueiro + MPEG audio file + Latin + + + 0 + Mangueira + MPEG audio file + Latin + + + 0 + União Da Ilha + MPEG audio file + Latin + + + 0 + Grande Rio + MPEG audio file + Latin + + + 0 + Portela + MPEG audio file + Latin + + + 0 + Caprichosos + MPEG audio file + Latin + + + 0 + Tradição + MPEG audio file + Latin + + + 0 + Império Serrano + MPEG audio file + Latin + + + 0 + Tuiuti + MPEG audio file + Latin + + + + + 53 + 21 + Vozes do MPB + + + 0 + Linha de Passe (João Bosco) + MPEG audio file + Latin + + + 0 + Pela Luz dos Olhos Teus (Miúcha e Tom Jobim) + MPEG audio file + Latin + + + 0 + Chão de Giz (Elba Ramalho) + MPEG audio file + Latin + + + 0 + Marina (Dorival Caymmi) + MPEG audio file + Latin + + + 0 + Aquarela (Toquinho) + MPEG audio file + Latin + + + 0 + Coração do Agreste (Fafá de Belém) + MPEG audio file + Latin + + + 0 + Dona (Roupa Nova) + MPEG audio file + Latin + + + 0 + Começaria Tudo Outra Vez (Maria Creuza) + MPEG audio file + Latin + + + 0 + Caçador de Mim (Sá & Guarabyra) + MPEG audio file + Latin + + + 0 + Romaria (Renato Teixeira) + MPEG audio file + Latin + + + 0 + As Rosas Não Falam (Beth Carvalho) + MPEG audio file + Latin + + + 0 + Wave (Os Cariocas) + MPEG audio file + Latin + + + 0 + Garota de Ipanema (Dick Farney) + MPEG audio file + Latin + + + 0 + Preciso Apender a Viver Só (Maysa) + MPEG audio file + Latin + + + + + + + 22 + Led Zeppelin + + + 30 + 22 + BBC Sessions [Disc 1] [Live] + + + 0 + You Shook Me + MPEG audio file + Rock + + + 0 + I Can't Quit You Baby + MPEG audio file + Rock + + + 0 + Communication Breakdown + MPEG audio file + Rock + + + 0 + Dazed and Confused + MPEG audio file + Rock + + + 0 + The Girl I Love She Got Long Black Wavy Hair + MPEG audio file + Rock + + + 0 + What is and Should Never Be + MPEG audio file + Rock + + + 0 + Communication Breakdown(2) + MPEG audio file + Rock + + + 0 + Travelling Riverside Blues + MPEG audio file + Rock + + + 0 + Whole Lotta Love + MPEG audio file + Rock + + + 0 + Somethin' Else + MPEG audio file + Rock + + + 0 + Communication Breakdown(3) + MPEG audio file + Rock + + + 0 + I Can't Quit You Baby(2) + MPEG audio file + Rock + + + 0 + You Shook Me(2) + MPEG audio file + Rock + + + 0 + How Many More Times + MPEG audio file + Rock + + + + + 44 + 22 + Physical Graffiti [Disc 1] + + + 0 + Custard Pie + MPEG audio file + Rock + + + 0 + The Rover + MPEG audio file + Rock + + + 0 + In My Time Of Dying + MPEG audio file + Rock + + + 0 + Houses Of The Holy + MPEG audio file + Rock + + + 0 + Trampled Under Foot + MPEG audio file + Rock + + + 0 + Kashmir + MPEG audio file + Rock + + + + + 127 + 22 + BBC Sessions [Disc 2] [Live] + + + 0 + Immigrant Song + MPEG audio file + Rock + + + 0 + Heartbreaker + MPEG audio file + Rock + + + 0 + Since I've Been Loving You + MPEG audio file + Rock + + + 0 + Black Dog + MPEG audio file + Rock + + + 0 + Dazed And Confused + MPEG audio file + Rock + + + 0 + Stairway To Heaven + MPEG audio file + Rock + + + 0 + Going To California + MPEG audio file + Rock + + + 0 + That's The Way + MPEG audio file + Rock + + + 0 + Whole Lotta Love (Medley) + MPEG audio file + Rock + + + 0 + Thank You + MPEG audio file + Rock + + + + + 128 + 22 + Coda + + + 0 + We're Gonna Groove + MPEG audio file + Rock + + + 0 + Poor Tom + MPEG audio file + Rock + + + 0 + I Can't Quit You Baby + MPEG audio file + Rock + + + 0 + Walter's Walk + MPEG audio file + Rock + + + 0 + Ozone Baby + MPEG audio file + Rock + + + 0 + Darlene + MPEG audio file + Rock + + + 0 + Bonzo's Montreux + MPEG audio file + Rock + + + 0 + Wearing And Tearing + MPEG audio file + Rock + + + + + 129 + 22 + Houses Of The Holy + + + 0 + The Song Remains The Same + MPEG audio file + Rock + + + 0 + The Rain Song + MPEG audio file + Rock + + + 0 + Over The Hills And Far Away + MPEG audio file + Rock + + + 0 + The Crunge + MPEG audio file + Rock + + + 0 + Dancing Days + MPEG audio file + Rock + + + 0 + D'Yer Mak'er + MPEG audio file + Rock + + + 0 + No Quarter + MPEG audio file + Rock + + + 0 + The Ocean + MPEG audio file + Rock + + + + + 130 + 22 + In Through The Out Door + + + 0 + In The Evening + MPEG audio file + Rock + + + 0 + South Bound Saurez + MPEG audio file + Rock + + + 0 + Fool In The Rain + MPEG audio file + Rock + + + 0 + Hot Dog + MPEG audio file + Rock + + + 0 + Carouselambra + MPEG audio file + Rock + + + 0 + All My Love + MPEG audio file + Rock + + + 0 + I'm Gonna Crawl + MPEG audio file + Rock + + + + + 131 + 22 + IV + + + 0 + Black Dog + MPEG audio file + Rock + + + 0 + Rock & Roll + MPEG audio file + Rock + + + 0 + The Battle Of Evermore + MPEG audio file + Rock + + + 0 + Stairway To Heaven + MPEG audio file + Rock + + + 0 + Misty Mountain Hop + MPEG audio file + Rock + + + 0 + Four Sticks + MPEG audio file + Rock + + + 0 + Going To California + MPEG audio file + Rock + + + 0 + When The Levee Breaks + MPEG audio file + Rock + + + + + 132 + 22 + Led Zeppelin I + + + 0 + Good Times Bad Times + MPEG audio file + Rock + + + 0 + Babe I'm Gonna Leave You + MPEG audio file + Rock + + + 0 + You Shook Me + MPEG audio file + Rock + + + 0 + Dazed and Confused + MPEG audio file + Rock + + + 0 + Your Time Is Gonna Come + MPEG audio file + Rock + + + 0 + Black Mountain Side + MPEG audio file + Rock + + + 0 + Communication Breakdown + MPEG audio file + Rock + + + 0 + I Can't Quit You Baby + MPEG audio file + Rock + + + 0 + How Many More Times + MPEG audio file + Rock + + + + + 133 + 22 + Led Zeppelin II + + + 0 + Whole Lotta Love + MPEG audio file + Rock + + + 0 + What Is And What Should Never Be + MPEG audio file + Rock + + + 0 + The Lemon Song + MPEG audio file + Rock + + + 0 + Thank You + MPEG audio file + Rock + + + 0 + Heartbreaker + MPEG audio file + Rock + + + 0 + Living Loving Maid (She's Just A Woman) + MPEG audio file + Rock + + + 0 + Ramble On + MPEG audio file + Rock + + + 0 + Moby Dick + MPEG audio file + Rock + + + 0 + Bring It On Home + MPEG audio file + Rock + + + + + 134 + 22 + Led Zeppelin III + + + 0 + Out On The Tiles + MPEG audio file + Rock + + + 0 + Gallows Pole + MPEG audio file + Rock + + + 0 + Tangerine + MPEG audio file + Rock + + + 0 + That's The Way + MPEG audio file + Rock + + + 0 + Bron-Y-Aur Stomp + MPEG audio file + Rock + + + 0 + Hats Off To (Roy) Harper + MPEG audio file + Rock + + + 0 + Immigrant Song + MPEG audio file + Rock + + + 0 + Friends + MPEG audio file + Rock + + + 0 + Celebration Day + MPEG audio file + Rock + + + 0 + Since I've Been Loving You + MPEG audio file + Rock + + + + + 135 + 22 + Physical Graffiti [Disc 2] + + + 0 + In The Light + MPEG audio file + Rock + + + 0 + Bron-Yr-Aur + MPEG audio file + Rock + + + 0 + Down By The Seaside + MPEG audio file + Rock + + + 0 + Ten Years Gone + MPEG audio file + Rock + + + 0 + Night Flight + MPEG audio file + Rock + + + 0 + The Wanton Song + MPEG audio file + Rock + + + 0 + Boogie With Stu + MPEG audio file + Rock + + + 0 + Black Country Woman + MPEG audio file + Rock + + + 0 + Sick Again + MPEG audio file + Rock + + + + + 136 + 22 + Presence + + + 0 + Achilles Last Stand + MPEG audio file + Rock + + + 0 + For Your Life + MPEG audio file + Rock + + + 0 + Royal Orleans + MPEG audio file + Rock + + + 0 + Nobody's Fault But Mine + MPEG audio file + Rock + + + 0 + Candy Store Rock + MPEG audio file + Rock + + + 0 + Hots On For Nowhere + MPEG audio file + Rock + + + 0 + Tea For One + MPEG audio file + Rock + + + + + 137 + 22 + The Song Remains The Same (Disc 1) + + + 0 + Rock & Roll + MPEG audio file + Rock + + + 0 + Celebration Day + MPEG audio file + Rock + + + 0 + The Song Remains The Same + MPEG audio file + Rock + + + 0 + Rain Song + MPEG audio file + Rock + + + 0 + Dazed And Confused + MPEG audio file + Rock + + + + + 138 + 22 + The Song Remains The Same (Disc 2) + + + 0 + No Quarter + MPEG audio file + Rock + + + 0 + Stairway To Heaven + MPEG audio file + Rock + + + 0 + Moby Dick + MPEG audio file + Rock + + + 0 + Whole Lotta Love + MPEG audio file + Rock + + + + + + + 23 + Frank Zappa & Captain Beefheart + + + 31 + 23 + Bongo Fury + + + 0 + Debra Kadabra + MPEG audio file + Rock + + + 0 + Carolina Hard-Core Ecstasy + MPEG audio file + Rock + + + 0 + Sam With The Showing Scalp Flat Top + MPEG audio file + Rock + + + 0 + Poofter's Froth Wyoming Plans Ahead + MPEG audio file + Rock + + + 0 + 200 Years Old + MPEG audio file + Rock + + + 0 + Cucamonga + MPEG audio file + Rock + + + 0 + Advance Romance + MPEG audio file + Rock + + + 0 + Man With The Woman Head + MPEG audio file + Rock + + + 0 + Muffin Man + MPEG audio file + Rock + + + + + + + 24 + Marcos Valle + + + 33 + 24 + Chill: Brazil (Disc 1) + + + 0 + Guanabara + MPEG audio file + Latin + + + 0 + Mas Que Nada + MPEG audio file + Latin + + + 0 + Vôo Sobre o Horizonte + MPEG audio file + Latin + + + 0 + A Paz + MPEG audio file + Latin + + + 0 + Wave (Vou te Contar) + MPEG audio file + Latin + + + 0 + Água de Beber + MPEG audio file + Latin + + + 0 + Samba da Bençaco + MPEG audio file + Latin + + + 0 + Pode Parar + MPEG audio file + Latin + + + 0 + Menino do Rio + MPEG audio file + Latin + + + 0 + Ando Meio Desligado + MPEG audio file + Latin + + + 0 + Mistério da Raça + MPEG audio file + Latin + + + 0 + All Star + MPEG audio file + Latin + + + 0 + Menina Bonita + MPEG audio file + Latin + + + 0 + Pescador de Ilusões + MPEG audio file + Latin + + + 0 + À Vontade (Live Mix) + MPEG audio file + Latin + + + 0 + Maria Fumaça + MPEG audio file + Latin + + + 0 + Sambassim (dj patife remix) + MPEG audio file + Latin + + + + + + + 25 + Milton Nascimento & Bebeto + + + + 26 + Azymuth + + + + 27 + Gilberto Gil + + + 85 + 27 + As Canções de Eu Tu Eles + + + 0 + Óia Eu Aqui De Novo + MPEG audio file + Soundtrack + + + 0 + Baião Da Penha + MPEG audio file + Soundtrack + + + 0 + Esperando Na Janela + MPEG audio file + Soundtrack + + + 0 + Juazeiro + MPEG audio file + Soundtrack + + + 0 + Último Pau-De-Arara + MPEG audio file + Soundtrack + + + 0 + Asa Branca + MPEG audio file + Soundtrack + + + 0 + Qui Nem Jiló + MPEG audio file + Soundtrack + + + 0 + Assum Preto + MPEG audio file + Soundtrack + + + 0 + Pau-De-Arara + MPEG audio file + Soundtrack + + + 0 + A Volta Da Asa Branca + MPEG audio file + Soundtrack + + + 0 + O Amor Daqui De Casa + MPEG audio file + Soundtrack + + + 0 + As Pegadas Do Amor + MPEG audio file + Soundtrack + + + 0 + Lamento Sertanejo + MPEG audio file + Soundtrack + + + 0 + Casinha Feliz + MPEG audio file + Soundtrack + + + + + 86 + 27 + Quanta Gente Veio Ver (Live) + + + 0 + Introdução (Live) + MPEG audio file + Latin + + + 0 + Palco (Live) + MPEG audio file + Latin + + + 0 + Is This Love (Live) + MPEG audio file + Latin + + + 0 + Stir It Up (Live) + MPEG audio file + Latin + + + 0 + Refavela (Live) + MPEG audio file + Latin + + + 0 + Vendedor De Caranguejo (Live) + MPEG audio file + Latin + + + 0 + Quanta (Live) + MPEG audio file + Latin + + + 0 + Estrela (Live) + MPEG audio file + Latin + + + 0 + Pela Internet (Live) + MPEG audio file + Latin + + + 0 + Cérebro Eletrônico (Live) + MPEG audio file + Latin + + + 0 + Opachorô (Live) + MPEG audio file + Latin + + + 0 + Copacabana (Live) + MPEG audio file + Latin + + + 0 + A Novidade (Live) + MPEG audio file + Latin + + + 0 + Ghandi (Live) + MPEG audio file + Latin + + + 0 + De Ouro E Marfim (Live) + MPEG audio file + Latin + + + + + 87 + 27 + Quanta Gente Veio ver--Bônus De Carnaval + + + 0 + Doce De Carnaval (Candy All) + MPEG audio file + Jazz + + + 0 + Lamento De Carnaval + MPEG audio file + Jazz + + + 0 + Pretinha + MPEG audio file + Jazz + + + + + + + 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 + + + 259 + 36 + Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro + + + 0 + Instinto Colectivo + MPEG audio file + Electronica/Dance + + + 0 + Chapa o Coco + MPEG audio file + Electronica/Dance + + + 0 + Prostituta + MPEG audio file + Electronica/Dance + + + 0 + Eu So Queria Sumir + MPEG audio file + Electronica/Dance + + + 0 + Tres Reis + MPEG audio file + Electronica/Dance + + + 0 + Um Lugar ao Sol + MPEG audio file + Electronica/Dance + + + 0 + Batalha Naval + MPEG audio file + Electronica/Dance + + + 0 + Todo o Carnaval tem seu Fim + MPEG audio file + Electronica/Dance + + + 0 + O Misterio do Samba + MPEG audio file + Electronica/Dance + + + 0 + Armadura + MPEG audio file + Electronica/Dance + + + 0 + Na Ladeira + MPEG audio file + Electronica/Dance + + + 0 + Carimbo + MPEG audio file + Electronica/Dance + + + 0 + Catimbo + MPEG audio file + Electronica/Dance + + + 0 + Funk de Bamba + MPEG audio file + Electronica/Dance + + + 0 + Chega no Suingue + MPEG audio file + Electronica/Dance + + + 0 + Mun-Ra + MPEG audio file + Electronica/Dance + + + 0 + Freestyle Love + MPEG audio file + Electronica/Dance + + + + + + + 37 + Ed Motta + + + 47 + 37 + The Best of Ed Motta + + + 0 + Solução + MPEG audio file + Latin + + + 0 + Manuel + MPEG audio file + Latin + + + 0 + Entre E Ouça + MPEG audio file + Latin + + + 0 + Um Contrato Com Deus + MPEG audio file + Latin + + + 0 + Um Jantar Pra Dois + MPEG audio file + Latin + + + 0 + Vamos Dançar + MPEG audio file + Latin + + + 0 + Um Love + MPEG audio file + Latin + + + 0 + Seis Da Tarde + MPEG audio file + Latin + + + 0 + Baixo Rio + MPEG audio file + Latin + + + 0 + Sombras Do Meu Destino + MPEG audio file + Latin + + + 0 + Do You Have Other Loves? + MPEG audio file + Latin + + + 0 + Agora Que O Dia Acordou + MPEG audio file + Latin + + + 0 + Já!!! + MPEG audio file + Latin + + + 0 + A Rua + MPEG audio file + Latin + + + + + + + 38 + Banda Black Rio + + + + 39 + Fernanda Porto + + + + 40 + Os Cariocas + + + + 41 + Elis Regina + + + 71 + 41 + Elis Regina-Minha História + + + 0 + O Bêbado e a Equilibrista + MPEG audio file + Latin + + + 0 + O Mestre-Sala dos Mares + MPEG audio file + Latin + + + 0 + Atrás da Porta + MPEG audio file + Latin + + + 0 + Dois Pra Lá, Dois Pra Cá + MPEG audio file + Latin + + + 0 + Casa no Campo + MPEG audio file + Latin + + + 0 + Romaria + MPEG audio file + Latin + + + 0 + Alô, Alô, Marciano + MPEG audio file + Latin + + + 0 + Me Deixas Louca + MPEG audio file + Latin + + + 0 + Fascinação + MPEG audio file + Latin + + + 0 + Saudosa Maloca + MPEG audio file + Latin + + + 0 + As Aparências Enganam + MPEG audio file + Latin + + + 0 + Madalena + MPEG audio file + Latin + + + 0 + Maria Rosa + MPEG audio file + Latin + + + 0 + Aprendendo A Jogar + MPEG audio file + Latin + + + + + + + 42 + Milton Nascimento + + + 158 + 42 + Milton Nascimento Ao Vivo + + + 0 + Coração De Estudante + MPEG audio file + Latin + + + 0 + A Noite Do Meu Bem + MPEG audio file + Latin + + + 0 + Paisagem Na Janela + MPEG audio file + Latin + + + 0 + Cuitelinho + MPEG audio file + Latin + + + 0 + Caxangá + MPEG audio file + Latin + + + 0 + Nos Bailes Da Vida + MPEG audio file + Latin + + + 0 + Menestrel Das Alagoas + MPEG audio file + Latin + + + 0 + Brasil + MPEG audio file + Latin + + + 0 + Canção Do Novo Mundo + MPEG audio file + Latin + + + 0 + Um Gosto De Sol + MPEG audio file + Latin + + + 0 + Solar + MPEG audio file + Latin + + + 0 + Para Lennon E McCartney + MPEG audio file + Latin + + + 0 + Maria, Maria + MPEG audio file + Latin + + + + + 159 + 42 + Minas + + + 0 + Minas + MPEG audio file + Latin + + + 0 + Fé Cega, Faca Amolada + MPEG audio file + Latin + + + 0 + Beijo Partido + MPEG audio file + Latin + + + 0 + Saudade Dos Aviões Da Panair (Conversando No Bar) + MPEG audio file + Latin + + + 0 + Gran Circo + MPEG audio file + Latin + + + 0 + Ponta de Areia + MPEG audio file + Latin + + + 0 + Trastevere + MPEG audio file + Latin + + + 0 + Idolatrada + MPEG audio file + Latin + + + 0 + Leila (Venha Ser Feliz) + MPEG audio file + Latin + + + 0 + Paula E Bebeto + MPEG audio file + Latin + + + 0 + Simples + MPEG audio file + Latin + + + 0 + Norwegian Wood + MPEG audio file + Latin + + + 0 + Caso Você Queira Saber + MPEG audio file + Latin + + + + + + + 43 + A Cor Do Som + + + + 44 + Kid Abelha + + + + 45 + Sandra De Sá + + + + 46 + Jorge Ben + + + 122 + 46 + Jorge Ben Jor 25 Anos + + + 0 + Engenho De Dentro + MPEG audio file + Latin + + + 0 + Alcohol + MPEG audio file + Latin + + + 0 + Mama Africa + MPEG audio file + Latin + + + 0 + Salve Simpatia + MPEG audio file + Latin + + + 0 + W/Brasil (Chama O Síndico) + MPEG audio file + Latin + + + 0 + País Tropical + MPEG audio file + Latin + + + 0 + Os Alquimistas Estão Chegando + MPEG audio file + Latin + + + 0 + Charles Anjo 45 + MPEG audio file + Latin + + + 0 + Selassiê + MPEG audio file + Latin + + + 0 + Menina Sarará + MPEG audio file + Latin + + + 0 + Que Maravilha + MPEG audio file + Latin + + + 0 + Santa Clara Clareou + MPEG audio file + Latin + + + 0 + Filho Maravilha + MPEG audio file + Latin + + + 0 + Taj Mahal + MPEG audio file + Latin + + + + + + + 47 + Hermeto Pascoal + + + + 48 + Barão Vermelho + + + + 49 + Edson, DJ Marky & DJ Patife Featuring Fernanda Porto + + + + 50 + Metallica + + + 35 + 50 + Garage Inc. (Disc 1) + + + 0 + Free Speech For The Dumb + MPEG audio file + Metal + + + 0 + It's Electric + MPEG audio file + Metal + + + 0 + Sabbra Cadabra + MPEG audio file + Metal + + + 0 + Turn The Page + MPEG audio file + Metal + + + 0 + Die Die My Darling + MPEG audio file + Metal + + + 0 + Loverman + MPEG audio file + Metal + + + 0 + Mercyful Fate + MPEG audio file + Metal + + + 0 + Astronomy + MPEG audio file + Metal + + + 0 + Whiskey In The Jar + MPEG audio file + Metal + + + 0 + Tuesday's Gone + MPEG audio file + Metal + + + 0 + The More I See + MPEG audio file + Metal + + + + + 148 + 50 + Black Album + + + 0 + Enter Sandman + MPEG audio file + Metal + + + 0 + Sad But True + MPEG audio file + Metal + + + 0 + Holier Than Thou + MPEG audio file + Metal + + + 0 + The Unforgiven + MPEG audio file + Metal + + + 0 + Wherever I May Roam + MPEG audio file + Metal + + + 0 + Don't Tread On Me + MPEG audio file + Metal + + + 0 + Through The Never + MPEG audio file + Metal + + + 0 + Nothing Else Matters + MPEG audio file + Metal + + + 0 + Of Wolf And Man + MPEG audio file + Metal + + + 0 + The God That Failed + MPEG audio file + Metal + + + 0 + My Friend Of Misery + MPEG audio file + Metal + + + 0 + The Struggle Within + MPEG audio file + Metal + + + + + 149 + 50 + Garage Inc. (Disc 2) + + + 0 + Helpless + MPEG audio file + Metal + + + 0 + The Small Hours + MPEG audio file + Metal + + + 0 + The Wait + MPEG audio file + Metal + + + 0 + Crash Course In Brain Surgery + MPEG audio file + Metal + + + 0 + Last Caress/Green Hell + MPEG audio file + Metal + + + 0 + Am I Evil? + MPEG audio file + Metal + + + 0 + Blitzkrieg + MPEG audio file + Metal + + + 0 + Breadfan + MPEG audio file + Metal + + + 0 + The Prince + MPEG audio file + Metal + + + 0 + Stone Cold Crazy + MPEG audio file + Metal + + + 0 + So What + MPEG audio file + Metal + + + 0 + Killing Time + MPEG audio file + Metal + + + 0 + Overkill + MPEG audio file + Metal + + + 0 + Damage Case + MPEG audio file + Metal + + + 0 + Stone Dead Forever + MPEG audio file + Metal + + + 0 + Too Late Too Late + MPEG audio file + Metal + + + + + 150 + 50 + Kill 'Em All + + + 0 + Hit The Lights + MPEG audio file + Metal + + + 0 + The Four Horsemen + MPEG audio file + Metal + + + 0 + Motorbreath + MPEG audio file + Metal + + + 0 + Jump In The Fire + MPEG audio file + Metal + + + 0 + (Anesthesia) Pulling Teeth + MPEG audio file + Metal + + + 0 + Whiplash + MPEG audio file + Metal + + + 0 + Phantom Lord + MPEG audio file + Metal + + + 0 + No Remorse + MPEG audio file + Metal + + + 0 + Seek & Destroy + MPEG audio file + Metal + + + 0 + Metal Militia + MPEG audio file + Metal + + + + + 151 + 50 + Load + + + 0 + Ain't My Bitch + MPEG audio file + Metal + + + 0 + 2 X 4 + MPEG audio file + Metal + + + 0 + The House Jack Built + MPEG audio file + Metal + + + 0 + Until It Sleeps + MPEG audio file + Metal + + + 0 + King Nothing + MPEG audio file + Metal + + + 0 + Hero Of The Day + MPEG audio file + Metal + + + 0 + Bleeding Me + MPEG audio file + Metal + + + 0 + Cure + MPEG audio file + Metal + + + 0 + Poor Twisted Me + MPEG audio file + Metal + + + 0 + Wasted My Hate + MPEG audio file + Metal + + + 0 + Mama Said + MPEG audio file + Metal + + + 0 + Thorn Within + MPEG audio file + Metal + + + 0 + Ronnie + MPEG audio file + Metal + + + 0 + The Outlaw Torn + MPEG audio file + Metal + + + + + 152 + 50 + Master Of Puppets + + + 0 + Battery + MPEG audio file + Metal + + + 0 + Master Of Puppets + MPEG audio file + Metal + + + 0 + The Thing That Should Not Be + MPEG audio file + Metal + + + 0 + Welcome Home (Sanitarium) + MPEG audio file + Metal + + + 0 + Disposable Heroes + MPEG audio file + Metal + + + 0 + Leper Messiah + MPEG audio file + Metal + + + 0 + Orion + MPEG audio file + Metal + + + 0 + Damage Inc. + MPEG audio file + Metal + + + + + 153 + 50 + ReLoad + + + 0 + Fuel + MPEG audio file + Metal + + + 0 + The Memory Remains + MPEG audio file + Metal + + + 0 + Devil's Dance + MPEG audio file + Metal + + + 0 + The Unforgiven II + MPEG audio file + Metal + + + 0 + Better Than You + MPEG audio file + Metal + + + 0 + Slither + MPEG audio file + Metal + + + 0 + Carpe Diem Baby + MPEG audio file + Metal + + + 0 + Bad Seed + MPEG audio file + Metal + + + 0 + Where The Wild Things Are + MPEG audio file + Metal + + + 0 + Prince Charming + MPEG audio file + Metal + + + 0 + Low Man's Lyric + MPEG audio file + Metal + + + 0 + Attitude + MPEG audio file + Metal + + + 0 + Fixxxer + MPEG audio file + Metal + + + + + 154 + 50 + Ride The Lightning + + + 0 + Fight Fire With Fire + MPEG audio file + Metal + + + 0 + Ride The Lightning + MPEG audio file + Metal + + + 0 + For Whom The Bell Tolls + MPEG audio file + Metal + + + 0 + Fade To Black + MPEG audio file + Metal + + + 0 + Trapped Under Ice + MPEG audio file + Metal + + + 0 + Escape + MPEG audio file + Metal + + + 0 + Creeping Death + MPEG audio file + Metal + + + 0 + The Call Of Ktulu + MPEG audio file + Metal + + + + + 155 + 50 + St. Anger + + + 0 + Frantic + MPEG audio file + Metal + + + 0 + St. Anger + MPEG audio file + Metal + + + 0 + Some Kind Of Monster + MPEG audio file + Metal + + + 0 + Dirty Window + MPEG audio file + Metal + + + 0 + Invisible Kid + MPEG audio file + Metal + + + 0 + My World + MPEG audio file + Metal + + + 0 + Shoot Me Again + MPEG audio file + Metal + + + 0 + Sweet Amber + MPEG audio file + Metal + + + 0 + The Unnamed Feeling + MPEG audio file + Metal + + + 0 + Purify + MPEG audio file + Metal + + + 0 + All Within My Hands + MPEG audio file + Metal + + + + + 156 + 50 + ...And Justice For All + + + 0 + Blackened + MPEG audio file + Metal + + + 0 + ...And Justice For All + MPEG audio file + Metal + + + 0 + Eye Of The Beholder + MPEG audio file + Metal + + + 0 + One + MPEG audio file + Metal + + + 0 + The Shortest Straw + MPEG audio file + Metal + + + 0 + Harvester Of Sorrow + MPEG audio file + Metal + + + 0 + The Frayed Ends Of Sanity + MPEG audio file + Metal + + + 0 + To Live Is To Die + MPEG audio file + Metal + + + 0 + Dyers Eve + MPEG audio file + Metal + + + + + + + 51 + Queen + + + 36 + 51 + Greatest Hits II + + + 0 + A Kind Of Magic + MPEG audio file + Rock + + + 0 + Under Pressure + MPEG audio file + Rock + + + 0 + Radio GA GA + MPEG audio file + Rock + + + 0 + I Want It All + MPEG audio file + Rock + + + 0 + I Want To Break Free + MPEG audio file + Rock + + + 0 + Innuendo + MPEG audio file + Rock + + + 0 + It's A Hard Life + MPEG audio file + Rock + + + 0 + Breakthru + MPEG audio file + Rock + + + 0 + Who Wants To Live Forever + MPEG audio file + Rock + + + 0 + Headlong + MPEG audio file + Rock + + + 0 + The Miracle + MPEG audio file + Rock + + + 0 + I'm Going Slightly Mad + MPEG audio file + Rock + + + 0 + The Invisible Man + MPEG audio file + Rock + + + 0 + Hammer To Fall + MPEG audio file + Rock + + + 0 + Friends Will Be Friends + MPEG audio file + Rock + + + 0 + The Show Must Go On + MPEG audio file + Rock + + + 0 + One Vision + MPEG audio file + Rock + + + + + 185 + 51 + Greatest Hits I + + + 0 + Bohemian Rhapsody + MPEG audio file + Rock + + + 0 + Another One Bites The Dust + MPEG audio file + Rock + + + 0 + Killer Queen + MPEG audio file + Rock + + + 0 + Fat Bottomed Girls + MPEG audio file + Rock + + + 0 + Bicycle Race + MPEG audio file + Rock + + + 0 + You're My Best Friend + MPEG audio file + Rock + + + 0 + Don't Stop Me Now + MPEG audio file + Rock + + + 0 + Save Me + MPEG audio file + Rock + + + 0 + Crazy Little Thing Called Love + MPEG audio file + Rock + + + 0 + Somebody To Love + MPEG audio file + Rock + + + 0 + Now I'm Here + MPEG audio file + Rock + + + 0 + Good Old-Fashioned Lover Boy + MPEG audio file + Rock + + + 0 + Play The Game + MPEG audio file + Rock + + + 0 + Flash + MPEG audio file + Rock + + + 0 + Seven Seas Of Rhye + MPEG audio file + Rock + + + 0 + We Will Rock You + MPEG audio file + Rock + + + 0 + We Are The Champions + MPEG audio file + Rock + + + + + 186 + 51 + News Of The World + + + 0 + We Will Rock You + MPEG audio file + Rock + + + 0 + We Are The Champions + MPEG audio file + Rock + + + 0 + Sheer Heart Attack + MPEG audio file + Rock + + + 0 + All Dead, All Dead + MPEG audio file + Rock + + + 0 + Spread Your Wings + MPEG audio file + Rock + + + 0 + Fight From The Inside + MPEG audio file + Rock + + + 0 + Get Down, Make Love + MPEG audio file + Rock + + + 0 + Sleep On The Sidewalk + MPEG audio file + Rock + + + 0 + Who Needs You + MPEG audio file + Rock + + + 0 + It's Late + MPEG audio file + Rock + + + 0 + My Melancholy Blues + MPEG audio file + Rock + + + + + + + 52 + Kiss + + + 37 + 52 + Greatest Kiss + + + 0 + Detroit Rock City + MPEG audio file + Rock + + + 0 + Black Diamond + MPEG audio file + Rock + + + 0 + Hard Luck Woman + MPEG audio file + Rock + + + 0 + Sure Know Something + MPEG audio file + Rock + + + 0 + Love Gun + MPEG audio file + Rock + + + 0 + Deuce + MPEG audio file + Rock + + + 0 + Goin' Blind + MPEG audio file + Rock + + + 0 + Shock Me + MPEG audio file + Rock + + + 0 + Do You Love Me + MPEG audio file + Rock + + + 0 + She + MPEG audio file + Rock + + + 0 + I Was Made For Loving You + MPEG audio file + Rock + + + 0 + Shout It Out Loud + MPEG audio file + Rock + + + 0 + God Of Thunder + MPEG audio file + Rock + + + 0 + Calling Dr. Love + MPEG audio file + Rock + + + 0 + Beth + MPEG audio file + Rock + + + 0 + Strutter + MPEG audio file + Rock + + + 0 + Rock And Roll All Nite + MPEG audio file + Rock + + + 0 + Cold Gin + MPEG audio file + Rock + + + 0 + Plaster Caster + MPEG audio file + Rock + + + 0 + God Gave Rock 'n' Roll To You + MPEG audio file + Rock + + + + + 126 + 52 + Unplugged [Live] + + + 0 + Comin' Home + MPEG audio file + Rock + + + 0 + Plaster Caster + MPEG audio file + Rock + + + 0 + Goin' Blind + MPEG audio file + Rock + + + 0 + Do You Love Me + MPEG audio file + Rock + + + 0 + Domino + MPEG audio file + Rock + + + 0 + Sure Know Something + MPEG audio file + Rock + + + 0 + A World Without Heroes + MPEG audio file + Rock + + + 0 + Rock Bottom + MPEG audio file + Rock + + + 0 + See You Tonight + MPEG audio file + Rock + + + 0 + I Still Love You + MPEG audio file + Rock + + + 0 + Every Time I Look At You + MPEG audio file + Rock + + + 0 + 2,000 Man + MPEG audio file + Rock + + + 0 + Beth + MPEG audio file + Rock + + + 0 + Nothin' To Lose + MPEG audio file + Rock + + + 0 + Rock And Roll All Nite + MPEG audio file + Rock + + + + + + + 53 + Spyro Gyra + + + 38 + 53 + Heart of the Night + + + 0 + Heart of the Night + MPEG audio file + Jazz + + + 0 + De La Luz + MPEG audio file + Jazz + + + 0 + Westwood Moon + MPEG audio file + Jazz + + + 0 + Midnight + MPEG audio file + Jazz + + + 0 + Playtime + MPEG audio file + Jazz + + + 0 + Surrender + MPEG audio file + Jazz + + + 0 + Valentino's + MPEG audio file + Jazz + + + 0 + Believe + MPEG audio file + Jazz + + + 0 + As We Sleep + MPEG audio file + Jazz + + + 0 + When Evening Falls + MPEG audio file + Jazz + + + 0 + J Squared + MPEG audio file + Jazz + + + 0 + Best Thing + MPEG audio file + Jazz + + + + + 204 + 53 + Morning Dance + + + 0 + Morning Dance + MPEG audio file + Jazz + + + 0 + Jubilee + MPEG audio file + Jazz + + + 0 + Rasul + MPEG audio file + Jazz + + + 0 + Song For Lorraine + MPEG audio file + Jazz + + + 0 + Starburst + MPEG audio file + Jazz + + + 0 + Heliopolis + MPEG audio file + Jazz + + + 0 + It Doesn't Matter + MPEG audio file + Jazz + + + 0 + Little Linda + MPEG audio file + Jazz + + + 0 + End Of Romanticism + MPEG audio file + Jazz + + + + + + + 54 + Green Day + + + 39 + 54 + International Superhits + + + 0 + Maria + MPEG audio file + Alternative & Punk + + + 0 + Poprocks And Coke + MPEG audio file + Alternative & Punk + + + 0 + Longview + MPEG audio file + Alternative & Punk + + + 0 + Welcome To Paradise + MPEG audio file + Alternative & Punk + + + 0 + Basket Case + MPEG audio file + Alternative & Punk + + + 0 + When I Come Around + MPEG audio file + Alternative & Punk + + + 0 + She + MPEG audio file + Alternative & Punk + + + 0 + J.A.R. (Jason Andrew Relva) + MPEG audio file + Alternative & Punk + + + 0 + Geek Stink Breath + MPEG audio file + Alternative & Punk + + + 0 + Brain Stew + MPEG audio file + Alternative & Punk + + + 0 + Jaded + MPEG audio file + Alternative & Punk + + + 0 + Walking Contradiction + MPEG audio file + Alternative & Punk + + + 0 + Stuck With Me + MPEG audio file + Alternative & Punk + + + 0 + Hitchin' A Ride + MPEG audio file + Alternative & Punk + + + 0 + Good Riddance (Time Of Your Life) + MPEG audio file + Alternative & Punk + + + 0 + Redundant + MPEG audio file + Alternative & Punk + + + 0 + Nice Guys Finish Last + MPEG audio file + Alternative & Punk + + + 0 + Minority + MPEG audio file + Alternative & Punk + + + 0 + Warning + MPEG audio file + Alternative & Punk + + + 0 + Waiting + MPEG audio file + Alternative & Punk + + + 0 + Macy's Day Parade + MPEG audio file + Alternative & Punk + + + + + 89 + 54 + American Idiot + + + 0 + American Idiot + MPEG audio file + Alternative & Punk + + + 0 + Jesus Of Suburbia / City Of The Damned / I Don't Care / Dearly Beloved / Tales Of Another Broken Home + MPEG audio file + Alternative & Punk + + + 0 + Holiday + MPEG audio file + Alternative & Punk + + + 0 + Boulevard Of Broken Dreams + MPEG audio file + Alternative & Punk + + + 0 + Are We The Waiting + MPEG audio file + Alternative & Punk + + + 0 + St. Jimmy + MPEG audio file + Alternative & Punk + + + 0 + Give Me Novacaine + MPEG audio file + Alternative & Punk + + + 0 + She's A Rebel + MPEG audio file + Alternative & Punk + + + 0 + Extraordinary Girl + MPEG audio file + Alternative & Punk + + + 0 + Letterbomb + MPEG audio file + Alternative & Punk + + + 0 + Wake Me Up When September Ends + MPEG audio file + Alternative & Punk + + + 0 + Homecoming / The Death Of St. Jimmy / East 12th St. / Nobody Likes You / Rock And Roll Girlfriend / We're Coming Home Again + MPEG audio file + Alternative & Punk + + + 0 + Whatsername + MPEG audio file + Alternative & Punk + + + + + + + 55 + David Coverdale + + + 40 + 55 + Into The Light + + + 0 + Into The Light + MPEG audio file + Rock + + + 0 + River Song + MPEG audio file + Rock + + + 0 + She Give Me ... + MPEG audio file + Rock + + + 0 + Don't You Cry + MPEG audio file + Rock + + + 0 + Love Is Blind + MPEG audio file + Rock + + + 0 + Slave + MPEG audio file + Rock + + + 0 + Cry For Love + MPEG audio file + Rock + + + 0 + Living On Love + MPEG audio file + Rock + + + 0 + Midnight Blue + MPEG audio file + Rock + + + 0 + Too Many Tears + MPEG audio file + Rock + + + 0 + Don't Lie To Me + MPEG audio file + Rock + + + 0 + Wherever You May Go + MPEG audio file + Rock + + + + + + + 56 + Gonzaguinha + + + 41 + 56 + Meus Momentos + + + 0 + Grito De Alerta + MPEG audio file + Latin + + + 0 + Não Dá Mais Pra Segurar (Explode Coração) + MPEG audio file + Latin + + + 0 + Começaria Tudo Outra Vez + MPEG audio file + Latin + + + 0 + O Que É O Que É ? + MPEG audio file + Latin + + + 0 + Sangrando + MPEG audio file + Latin + + + 0 + Diga Lá, Coração + MPEG audio file + Latin + + + 0 + Lindo Lago Do Amor + MPEG audio file + Latin + + + 0 + Eu Apenas Queria Que Voçê Soubesse + MPEG audio file + Latin + + + 0 + Com A Perna No Mundo + MPEG audio file + Latin + + + 0 + E Vamos À Luta + MPEG audio file + Latin + + + 0 + Um Homem Também Chora (Guerreiro Menino) + MPEG audio file + Latin + + + 0 + Comportamento Geral + MPEG audio file + Latin + + + 0 + Ponto De Interrogação + MPEG audio file + Latin + + + 0 + Espere Por Mim, Morena + MPEG audio file + Latin + + + + + + + 57 + Os Mutantes + + + 42 + 57 + Minha História + + + 0 + Balada Do Louco + MPEG audio file + Alternative & Punk + + + 0 + Ando Meio Desligado + MPEG audio file + Alternative & Punk + + + 0 + Top Top + MPEG audio file + Alternative & Punk + + + 0 + Baby + MPEG audio file + Alternative & Punk + + + 0 + A E O Z + MPEG audio file + Alternative & Punk + + + 0 + Panis Et Circenses + MPEG audio file + Alternative & Punk + + + 0 + Chão De Estrelas + MPEG audio file + Alternative & Punk + + + 0 + Vida De Cachorro + MPEG audio file + Alternative & Punk + + + 0 + Bat Macumba + MPEG audio file + Alternative & Punk + + + 0 + Desculpe Babe + MPEG audio file + Alternative & Punk + + + 0 + Rita Lee + MPEG audio file + Alternative & Punk + + + 0 + Posso Perder Minha Mulher, Minha Mãe, Desde Que Eu Tenha O Rock And Roll + MPEG audio file + Alternative & Punk + + + 0 + Banho De Lua + MPEG audio file + Alternative & Punk + + + 0 + Meu Refrigerador Não Funciona + MPEG audio file + Alternative & Punk + + + + + + + 58 + Deep Purple + + + 43 + 58 + MK III The Final Concerts [Disc 1] + + + 0 + Burn + MPEG audio file + Rock + + + 0 + Stormbringer + MPEG audio file + Rock + + + 0 + Gypsy + MPEG audio file + Rock + + + 0 + Lady Double Dealer + MPEG audio file + Rock + + + 0 + Mistreated + MPEG audio file + Rock + + + 0 + Smoke On The Water + MPEG audio file + Rock + + + 0 + You Fool No One + MPEG audio file + Rock + + + + + 50 + 58 + The Final Concerts (Disc 2) + + + 0 + Space Truckin' + MPEG audio file + Rock + + + 0 + Going Down / Highway Star + MPEG audio file + Rock + + + 0 + Mistreated (Alternate Version) + MPEG audio file + Rock + + + 0 + You Fool No One (Alternate Version) + MPEG audio file + Rock + + + + + 58 + 58 + Come Taste The Band + + + 0 + Comin' Home + MPEG audio file + Rock + + + 0 + Lady Luck + MPEG audio file + Rock + + + 0 + Gettin' Tighter + MPEG audio file + Rock + + + 0 + Dealer + MPEG audio file + Rock + + + 0 + I Need Love + MPEG audio file + Rock + + + 0 + Drifter + MPEG audio file + Rock + + + 0 + Love Child + MPEG audio file + Rock + + + 0 + This Time Around / Owed to 'G' [Instrumental] + MPEG audio file + Rock + + + 0 + You Keep On Moving + MPEG audio file + Rock + + + + + 59 + 58 + Deep Purple In Rock + + + 0 + Speed King + MPEG audio file + Rock + + + 0 + Bloodsucker + MPEG audio file + Rock + + + 0 + Child In Time + MPEG audio file + Rock + + + 0 + Flight Of The Rat + MPEG audio file + Rock + + + 0 + Into The Fire + MPEG audio file + Rock + + + 0 + Living Wreck + MPEG audio file + Rock + + + 0 + Hard Lovin' Man + MPEG audio file + Rock + + + + + 60 + 58 + Fireball + + + 0 + Fireball + MPEG audio file + Rock + + + 0 + No No No + MPEG audio file + Rock + + + 0 + Strange Kind Of Woman + MPEG audio file + Rock + + + 0 + Anyone's Daughter + MPEG audio file + Rock + + + 0 + The Mule + MPEG audio file + Rock + + + 0 + Fools + MPEG audio file + Rock + + + 0 + No One Came + MPEG audio file + Rock + + + + + 61 + 58 + Knocking at Your Back Door: The Best Of Deep Purple in the 80's + + + 0 + Knocking At Your Back Door + MPEG audio file + Rock + + + 0 + Bad Attitude + MPEG audio file + Rock + + + 0 + Child In Time (Son Of Aleric - Instrumental) + MPEG audio file + Rock + + + 0 + Nobody's Home + MPEG audio file + Rock + + + 0 + Black Night + MPEG audio file + Rock + + + 0 + Perfect Strangers + MPEG audio file + Rock + + + 0 + The Unwritten Law + MPEG audio file + Rock + + + 0 + Call Of The Wild + MPEG audio file + Rock + + + 0 + Hush + MPEG audio file + Rock + + + 0 + Smoke On The Water + MPEG audio file + Rock + + + 0 + Space Trucking + MPEG audio file + Rock + + + + + 62 + 58 + Machine Head + + + 0 + Highway Star + MPEG audio file + Rock + + + 0 + Maybe I'm A Leo + MPEG audio file + Rock + + + 0 + Pictures Of Home + MPEG audio file + Rock + + + 0 + Never Before + MPEG audio file + Rock + + + 0 + Smoke On The Water + MPEG audio file + Rock + + + 0 + Lazy + MPEG audio file + Rock + + + 0 + Space Truckin' + MPEG audio file + Rock + + + + + 63 + 58 + Purpendicular + + + 0 + Vavoom : Ted The Mechanic + MPEG audio file + Rock + + + 0 + Loosen My Strings + MPEG audio file + Rock + + + 0 + Soon Forgotten + MPEG audio file + Rock + + + 0 + Sometimes I Feel Like Screaming + MPEG audio file + Rock + + + 0 + Cascades : I'm Not Your Lover + MPEG audio file + Rock + + + 0 + The Aviator + MPEG audio file + Rock + + + 0 + Rosa's Cantina + MPEG audio file + Rock + + + 0 + A Castle Full Of Rascals + MPEG audio file + Rock + + + 0 + A Touch Away + MPEG audio file + Rock + + + 0 + Hey Cisco + MPEG audio file + Rock + + + 0 + Somebody Stole My Guitar + MPEG audio file + Rock + + + 0 + The Purpendicular Waltz + MPEG audio file + Rock + + + + + 64 + 58 + Slaves And Masters + + + 0 + King Of Dreams + MPEG audio file + Rock + + + 0 + The Cut Runs Deep + MPEG audio file + Rock + + + 0 + Fire In The Basement + MPEG audio file + Rock + + + 0 + Truth Hurts + MPEG audio file + Rock + + + 0 + Breakfast In Bed + MPEG audio file + Rock + + + 0 + Love Conquers All + MPEG audio file + Rock + + + 0 + Fortuneteller + MPEG audio file + Rock + + + 0 + Too Much Is Not Enough + MPEG audio file + Rock + + + 0 + Wicked Ways + MPEG audio file + Rock + + + + + 65 + 58 + Stormbringer + + + 0 + Stormbringer + MPEG audio file + Rock + + + 0 + Love Don't Mean a Thing + MPEG audio file + Rock + + + 0 + Holy Man + MPEG audio file + Rock + + + 0 + Hold On + MPEG audio file + Rock + + + 0 + Lady Double Dealer + MPEG audio file + Rock + + + 0 + You Can't Do it Right (With the One You Love) + MPEG audio file + Rock + + + 0 + High Ball Shooter + MPEG audio file + Rock + + + 0 + The Gypsy + MPEG audio file + Rock + + + 0 + Soldier Of Fortune + MPEG audio file + Rock + + + + + 66 + 58 + The Battle Rages On + + + 0 + The Battle Rages On + MPEG audio file + Rock + + + 0 + Lick It Up + MPEG audio file + Rock + + + 0 + Anya + MPEG audio file + Rock + + + 0 + Talk About Love + MPEG audio file + Rock + + + 0 + Time To Kill + MPEG audio file + Rock + + + 0 + Ramshackle Man + MPEG audio file + Rock + + + 0 + A Twist In The Tail + MPEG audio file + Rock + + + 0 + Nasty Piece Of Work + MPEG audio file + Rock + + + 0 + Solitaire + MPEG audio file + Rock + + + 0 + One Man's Meat + MPEG audio file + Rock + + + + + + + 59 + Santana + + + 46 + 59 + Supernatural + + + 0 + (Da Le) Yaleo + MPEG audio file + Rock + + + 0 + Love Of My Life + MPEG audio file + Rock + + + 0 + Put Your Lights On + MPEG audio file + Rock + + + 0 + Africa Bamba + MPEG audio file + Rock + + + 0 + Smooth + MPEG audio file + Rock + + + 0 + Do You Like The Way + MPEG audio file + Rock + + + 0 + Maria Maria + MPEG audio file + Rock + + + 0 + Migra + MPEG audio file + Rock + + + 0 + Corazon Espinado + MPEG audio file + Rock + + + 0 + Wishing It Was + MPEG audio file + Rock + + + 0 + El Farol + MPEG audio file + Rock + + + 0 + Primavera + MPEG audio file + Rock + + + 0 + The Calling + MPEG audio file + Rock + + + + + 197 + 59 + Santana - As Years Go By + + + 0 + Jingo + MPEG audio file + Rock + + + 0 + El Corazon Manda + MPEG audio file + Rock + + + 0 + La Puesta Del Sol + MPEG audio file + Rock + + + 0 + Persuasion + MPEG audio file + Rock + + + 0 + As The Years Go by + MPEG audio file + Rock + + + 0 + Soul Sacrifice + MPEG audio file + Rock + + + 0 + Fried Neckbones And Home Fries + MPEG audio file + Rock + + + 0 + Santana Jam + MPEG audio file + Rock + + + + + 198 + 59 + Santana Live + + + 0 + Evil Ways + MPEG audio file + Rock + + + 0 + We've Got To Get Together/Jingo + MPEG audio file + Rock + + + 0 + Rock Me + MPEG audio file + Rock + + + 0 + Just Ain't Good Enough + MPEG audio file + Rock + + + 0 + Funky Piano + MPEG audio file + Rock + + + 0 + The Way You Do To Mer + MPEG audio file + Rock + + + + + + + 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 + + + 48 + 68 + The Essential Miles Davis [Disc 1] + + + 0 + Now's The Time + MPEG audio file + Jazz + + + 0 + Jeru + MPEG audio file + Jazz + + + 0 + Compulsion + MPEG audio file + Jazz + + + 0 + Tempus Fugit + MPEG audio file + Jazz + + + 0 + Walkin' + MPEG audio file + Jazz + + + 0 + 'Round Midnight + MPEG audio file + Jazz + + + 0 + Bye Bye Blackbird + MPEG audio file + Jazz + + + 0 + New Rhumba + MPEG audio file + Jazz + + + 0 + Generique + MPEG audio file + Jazz + + + 0 + Summertime + MPEG audio file + Jazz + + + 0 + So What + MPEG audio file + Jazz + + + 0 + The Pan Piper + MPEG audio file + Jazz + + + 0 + Someday My Prince Will Come + MPEG audio file + Jazz + + + + + 49 + 68 + The Essential Miles Davis [Disc 2] + + + 0 + My Funny Valentine (Live) + MPEG audio file + Jazz + + + 0 + E.S.P. + MPEG audio file + Jazz + + + 0 + Nefertiti + MPEG audio file + Jazz + + + 0 + Petits Machins (Little Stuff) + MPEG audio file + Jazz + + + 0 + Miles Runs The Voodoo Down + MPEG audio file + Jazz + + + 0 + Little Church (Live) + MPEG audio file + Jazz + + + 0 + Black Satin + MPEG audio file + Jazz + + + 0 + Jean Pierre (Live) + MPEG audio file + Jazz + + + 0 + Time After Time + MPEG audio file + Jazz + + + 0 + Portia + MPEG audio file + Jazz + + + + + 157 + 68 + Miles Ahead + + + 0 + Springsville + MPEG audio file + Jazz + + + 0 + The Maids Of Cadiz + MPEG audio file + Jazz + + + 0 + The Duke + MPEG audio file + Jazz + + + 0 + My Ship + MPEG audio file + Jazz + + + 0 + Miles Ahead + MPEG audio file + Jazz + + + 0 + Blues For Pablo + MPEG audio file + Jazz + + + 0 + New Rhumba + MPEG audio file + Jazz + + + 0 + The Meaning Of The Blues + MPEG audio file + Jazz + + + 0 + Lament + MPEG audio file + Jazz + + + 0 + I Don't Wanna Be Kissed (By Anyone But You) + MPEG audio file + Jazz + + + 0 + Springsville (Alternate Take) + MPEG audio file + Jazz + + + 0 + Blues For Pablo (Alternate Take) + MPEG audio file + Jazz + + + 0 + The Meaning Of The Blues/Lament (Alternate Take) + MPEG audio file + Jazz + + + 0 + I Don't Wanna Be Kissed (By Anyone But You) (Alternate Take) + MPEG audio file + Jazz + + + + + + + 69 + Gene Krupa + + + 51 + 69 + Up An' Atom + + + 0 + Jeepers Creepers + MPEG audio file + Jazz + + + 0 + Blue Rythm Fantasy + MPEG audio file + Jazz + + + 0 + Drum Boogie + MPEG audio file + Jazz + + + 0 + Let Me Off Uptown + MPEG audio file + Jazz + + + 0 + Leave Us Leap + MPEG audio file + Jazz + + + 0 + Opus No.1 + MPEG audio file + Jazz + + + 0 + Boogie Blues + MPEG audio file + Jazz + + + 0 + How High The Moon + MPEG audio file + Jazz + + + 0 + Disc Jockey Jump + MPEG audio file + Jazz + + + 0 + Up An' Atom + MPEG audio file + Jazz + + + 0 + Bop Boogie + MPEG audio file + Jazz + + + 0 + Lemon Drop + MPEG audio file + Jazz + + + 0 + Coronation Drop + MPEG audio file + Jazz + + + 0 + Overtime + MPEG audio file + Jazz + + + 0 + Imagination + MPEG audio file + Jazz + + + 0 + Don't Take Your Love From Me + MPEG audio file + Jazz + + + 0 + Midget + MPEG audio file + Jazz + + + 0 + I'm Coming Virginia + MPEG audio file + Jazz + + + 0 + Payin' Them Dues Blues + MPEG audio file + Jazz + + + 0 + Jungle Drums + MPEG audio file + Jazz + + + 0 + Showcase + MPEG audio file + Jazz + + + 0 + Swedish Schnapps + MPEG audio file + Jazz + + + + + + + 70 + Toquinho & Vinícius + + + 52 + 70 + Vinícius De Moraes - Sem Limite + + + 0 + Samba Da Bênção + MPEG audio file + Bossa Nova + + + 0 + Pot-Pourri N.º 4 + MPEG audio file + Bossa Nova + + + 0 + Onde Anda Você + MPEG audio file + Bossa Nova + + + 0 + Samba Da Volta + MPEG audio file + Bossa Nova + + + 0 + Canto De Ossanha + MPEG audio file + Bossa Nova + + + 0 + Pot-Pourri N.º 5 + MPEG audio file + Bossa Nova + + + 0 + Formosa + MPEG audio file + Bossa Nova + + + 0 + Como É Duro Trabalhar + MPEG audio file + Bossa Nova + + + 0 + Minha Namorada + MPEG audio file + Bossa Nova + + + 0 + Por Que Será + MPEG audio file + Bossa Nova + + + 0 + Berimbau + MPEG audio file + Bossa Nova + + + 0 + Deixa + MPEG audio file + Bossa Nova + + + 0 + Pot-Pourri N.º 2 + MPEG audio file + Bossa Nova + + + 0 + Samba Em Prelúdio + MPEG audio file + Bossa Nova + + + 0 + Carta Ao Tom 74 + MPEG audio file + Bossa Nova + + + + + + + 71 + Vinícius De Moraes & Baden Powell + + + + 72 + Vinícius De Moraes + + + 247 + 72 + Vinicius De Moraes + + + 0 + Pela Luz Dos Olhos Teus + MPEG audio file + Latin + + + 0 + A Bencao E Outros + MPEG audio file + Latin + + + 0 + Tudo Na Mais Santa Paz + MPEG audio file + Latin + + + 0 + O Velho E Aflor + MPEG audio file + Latin + + + 0 + Cotidiano N 2 + MPEG audio file + Latin + + + 0 + Adeus + MPEG audio file + Latin + + + 0 + Samba Pra Endrigo + MPEG audio file + Latin + + + 0 + So Por Amor + MPEG audio file + Latin + + + 0 + Meu Pranto Rolou + MPEG audio file + Latin + + + 0 + Mulher Carioca + MPEG audio file + Latin + + + 0 + Um Homem Chamado Alfredo + MPEG audio file + Latin + + + 0 + Samba Do Jato + MPEG audio file + Latin + + + 0 + Oi, La + MPEG audio file + Latin + + + 0 + Vinicius, Poeta Do Encontro + MPEG audio file + Latin + + + 0 + Soneto Da Separacao + MPEG audio file + Latin + + + + + + + 73 + Vinícius E Qurteto Em Cy + + + + 74 + Vinícius E Odette Lara + + + + 75 + Vinicius, Toquinho & Quarteto Em Cy + + + + 76 + Creedence Clearwater Revival + + + 54 + 76 + Chronicle, Vol. 1 + + + 0 + Susie Q + MPEG audio file + Rock + + + 0 + I Put A Spell On You + MPEG audio file + Rock + + + 0 + Proud Mary + MPEG audio file + Rock + + + 0 + Bad Moon Rising + MPEG audio file + Rock + + + 0 + Lodi + MPEG audio file + Rock + + + 0 + Green River + MPEG audio file + Rock + + + 0 + Commotion + MPEG audio file + Rock + + + 0 + Down On The Corner + MPEG audio file + Rock + + + 0 + Fortunate Son + MPEG audio file + Rock + + + 0 + Travelin' Band + MPEG audio file + Rock + + + 0 + Who'll Stop The Rain + MPEG audio file + Rock + + + 0 + Up Around The Bend + MPEG audio file + Rock + + + 0 + Run Through The Jungle + MPEG audio file + Rock + + + 0 + Lookin' Out My Back Door + MPEG audio file + Rock + + + 0 + Long As I Can See The Light + MPEG audio file + Rock + + + 0 + I Heard It Through The Grapevine + MPEG audio file + Rock + + + 0 + Have You Ever Seen The Rain? + MPEG audio file + Rock + + + 0 + Hey Tonight + MPEG audio file + Rock + + + 0 + Sweet Hitch-Hiker + MPEG audio file + Rock + + + 0 + Someday Never Comes + MPEG audio file + Rock + + + + + 55 + 76 + Chronicle, Vol. 2 + + + 0 + Walking On The Water + MPEG audio file + Rock + + + 0 + Suzie-Q, Pt. 2 + MPEG audio file + Rock + + + 0 + Born On The Bayou + MPEG audio file + Rock + + + 0 + Good Golly Miss Molly + MPEG audio file + Rock + + + 0 + Tombstone Shadow + MPEG audio file + Rock + + + 0 + Wrote A Song For Everyone + MPEG audio file + Rock + + + 0 + Night Time Is The Right Time + MPEG audio file + Rock + + + 0 + Cotton Fields + MPEG audio file + Rock + + + 0 + It Came Out Of The Sky + MPEG audio file + Rock + + + 0 + Don't Look Now + MPEG audio file + Rock + + + 0 + The Midnight Special + MPEG audio file + Rock + + + 0 + Before You Accuse Me + MPEG audio file + Rock + + + 0 + My Baby Left Me + MPEG audio file + Rock + + + 0 + Pagan Baby + MPEG audio file + Rock + + + 0 + (Wish I Could) Hideaway + MPEG audio file + Rock + + + 0 + It's Just A Thought + MPEG audio file + Rock + + + 0 + Molina + MPEG audio file + Rock + + + 0 + Born To Move + MPEG audio file + Rock + + + 0 + Lookin' For A Reason + MPEG audio file + Rock + + + 0 + Hello Mary Lou + MPEG audio file + Rock + + + + + + + 77 + Cássia Eller + + + 56 + 77 + Cássia Eller - Coleção Sem Limite [Disc 2] + + + 0 + Gatas Extraordinárias + MPEG audio file + Latin + + + 0 + Brasil + MPEG audio file + Latin + + + 0 + Eu Sou Neguinha (Ao Vivo) + MPEG audio file + Latin + + + 0 + Geração Coca-Cola (Ao Vivo) + MPEG audio file + Latin + + + 0 + Lanterna Dos Afogados + MPEG audio file + Latin + + + 0 + Coroné Antonio Bento + MPEG audio file + Latin + + + 0 + Você Passa, Eu Acho Graça (Ao Vivo) + MPEG audio file + Latin + + + 0 + Meu Mundo Fica Completo (Com Você) + MPEG audio file + Latin + + + 0 + 1° De Julho + MPEG audio file + Latin + + + 0 + Música Urbana 2 + MPEG audio file + Latin + + + 0 + Vida Bandida (Ao Vivo) + MPEG audio file + Latin + + + 0 + Palavras Ao Vento + MPEG audio file + Latin + + + 0 + Não Sei O Que Eu Quero Da Vida + MPEG audio file + Latin + + + 0 + Woman Is The Nigger Of The World (Ao Vivo) + MPEG audio file + Latin + + + 0 + Juventude Transviada (Ao Vivo) + MPEG audio file + Latin + + + + + 57 + 77 + Cássia Eller - Sem Limite [Disc 1] + + + 0 + Malandragem + MPEG audio file + Latin + + + 0 + O Segundo Sol + MPEG audio file + Latin + + + 0 + Smells Like Teen Spirit (Ao Vivo) + MPEG audio file + Latin + + + 0 + E.C.T. + MPEG audio file + Latin + + + 0 + Todo Amor Que Houver Nesta Vida + MPEG audio file + Latin + + + 0 + Metrô. Linha 743 + MPEG audio file + Latin + + + 0 + Nós (Ao Vivo) + MPEG audio file + Latin + + + 0 + Na Cadência Do Samba + MPEG audio file + Latin + + + 0 + Admirável Gado Novo + MPEG audio file + Latin + + + 0 + Eleanor Rigby + MPEG audio file + Latin + + + 0 + Socorro + MPEG audio file + Latin + + + 0 + Blues Da Piedade + MPEG audio file + Latin + + + 0 + Rubens + MPEG audio file + Latin + + + 0 + Não Deixe O Samba Morrer - Cassia Eller e Alcione + MPEG audio file + Latin + + + 0 + Mis Penas Lloraba Yo (Ao Vivo) Soy Gitano (Tangos) + MPEG audio file + Latin + + + + + + + 78 + Def Leppard + + + 67 + 78 + Vault: Def Leppard's Greatest Hits + + + 0 + Pour Some Sugar On Me + MPEG audio file + Rock + + + 0 + Photograph + MPEG audio file + Rock + + + 0 + Love Bites + MPEG audio file + Rock + + + 0 + Let's Get Rocked + MPEG audio file + Rock + + + 0 + Two Steps Behind [Acoustic Version] + MPEG audio file + Rock + + + 0 + Animal + MPEG audio file + Rock + + + 0 + Heaven Is + MPEG audio file + Rock + + + 0 + Rocket + MPEG audio file + Rock + + + 0 + When Love & Hate Collide + MPEG audio file + Rock + + + 0 + Action + MPEG audio file + Rock + + + 0 + Make Love Like A Man + MPEG audio file + Rock + + + 0 + Armageddon It + MPEG audio file + Rock + + + 0 + Have You Ever Needed Someone So Bad + MPEG audio file + Rock + + + 0 + Rock Of Ages + MPEG audio file + Rock + + + 0 + Hysteria + MPEG audio file + Rock + + + 0 + Bringin' On The Heartbreak + MPEG audio file + Rock + + + + + + + 79 + Dennis Chambers + + + 68 + 79 + Outbreak + + + 0 + Roll Call + MPEG audio file + Jazz + + + 0 + Otay + MPEG audio file + Jazz + + + 0 + Groovus Interruptus + MPEG audio file + Jazz + + + 0 + Paris On Mine + MPEG audio file + Jazz + + + 0 + In Time + MPEG audio file + Jazz + + + 0 + Plan B + MPEG audio file + Jazz + + + 0 + Outbreak + MPEG audio file + Jazz + + + 0 + Baltimore, DC + MPEG audio file + Jazz + + + 0 + Talkin Loud and Saying Nothin + MPEG audio file + Jazz + + + + + + + 80 + Djavan + + + 69 + 80 + Djavan Ao Vivo - Vol. 02 + + + 0 + Pétala + MPEG audio file + Latin + + + 0 + Meu Bem-Querer + MPEG audio file + Latin + + + 0 + Cigano + MPEG audio file + Latin + + + 0 + Boa Noite + MPEG audio file + Latin + + + 0 + Fato Consumado + MPEG audio file + Latin + + + 0 + Faltando Um Pedaço + MPEG audio file + Latin + + + 0 + Álibi + MPEG audio file + Latin + + + 0 + Esquinas + MPEG audio file + Latin + + + 0 + Se... + MPEG audio file + Latin + + + 0 + Eu Te Devoro + MPEG audio file + Latin + + + 0 + Lilás + MPEG audio file + Latin + + + 0 + Acelerou + MPEG audio file + Latin + + + 0 + Um Amor Puro + MPEG audio file + Latin + + + + + 70 + 80 + Djavan Ao Vivo - Vol. 1 + + + 0 + Samurai + MPEG audio file + Latin + + + 0 + Nem Um Dia + MPEG audio file + Latin + + + 0 + Oceano + MPEG audio file + Latin + + + 0 + Açai + MPEG audio file + Latin + + + 0 + Serrado + MPEG audio file + Latin + + + 0 + Flor De Lis + MPEG audio file + Latin + + + 0 + Amar É Tudo + MPEG audio file + Latin + + + 0 + Azul + MPEG audio file + Latin + + + 0 + Seduzir + MPEG audio file + Latin + + + 0 + A Carta + MPEG audio file + Latin + + + 0 + Sina + MPEG audio file + Latin + + + 0 + Acelerou + MPEG audio file + Latin + + + 0 + Um Amor Puro + MPEG audio file + Latin + + + + + + + 81 + Eric Clapton + + + 72 + 81 + The Cream Of Clapton + + + 0 + Layla + MPEG audio file + Blues + + + 0 + Badge + MPEG audio file + Blues + + + 0 + I Feel Free + MPEG audio file + Blues + + + 0 + Sunshine Of Your Love + MPEG audio file + Blues + + + 0 + Crossroads + MPEG audio file + Blues + + + 0 + Strange Brew + MPEG audio file + Blues + + + 0 + White Room + MPEG audio file + Blues + + + 0 + Bell Bottom Blues + MPEG audio file + Blues + + + 0 + Cocaine + MPEG audio file + Blues + + + 0 + I Shot The Sheriff + MPEG audio file + Blues + + + 0 + After Midnight + MPEG audio file + Blues + + + 0 + Swing Low Sweet Chariot + MPEG audio file + Blues + + + 0 + Lay Down Sally + MPEG audio file + Blues + + + 0 + Knockin On Heavens Door + MPEG audio file + Blues + + + 0 + Wonderful Tonight + MPEG audio file + Blues + + + 0 + Let It Grow + MPEG audio file + Blues + + + 0 + Promises + MPEG audio file + Blues + + + 0 + I Can't Stand It + MPEG audio file + Blues + + + + + 73 + 81 + Unplugged + + + 0 + A Novidade + MPEG audio file + Latin + + + 0 + Tenho Sede + MPEG audio file + Latin + + + 0 + Refazenda + MPEG audio file + Latin + + + 0 + Realce + MPEG audio file + Latin + + + 0 + Esotérico + MPEG audio file + Latin + + + 0 + Drão + MPEG audio file + Latin + + + 0 + A Paz + MPEG audio file + Latin + + + 0 + Beira Mar + MPEG audio file + Latin + + + 0 + Sampa + MPEG audio file + Latin + + + 0 + Parabolicamará + MPEG audio file + Latin + + + 0 + Tempo Rei + MPEG audio file + Latin + + + 0 + Expresso 2222 + MPEG audio file + Latin + + + 0 + Aquele Abraço + MPEG audio file + Latin + + + 0 + Palco + MPEG audio file + Latin + + + 0 + Toda Menina Baiana + MPEG audio file + Latin + + + 0 + Sítio Do Pica-Pau Amarelo + MPEG audio file + Latin + + + 0 + Signe + MPEG audio file + Blues + + + 0 + Before You Accuse Me + MPEG audio file + Blues + + + 0 + Hey Hey + MPEG audio file + Blues + + + 0 + Tears In Heaven + MPEG audio file + Blues + + + 0 + Lonely Stranger + MPEG audio file + Blues + + + 0 + Nobody Knows You When You're Down & Out + MPEG audio file + Blues + + + 0 + Layla + MPEG audio file + Blues + + + 0 + Running On Faith + MPEG audio file + Blues + + + 0 + Walkin' Blues + MPEG audio file + Blues + + + 0 + Alberta + MPEG audio file + Blues + + + 0 + San Francisco Bay Blues + MPEG audio file + Blues + + + 0 + Malted Milk + MPEG audio file + Blues + + + 0 + Old Love + MPEG audio file + Blues + + + 0 + Rollin' And Tumblin' + MPEG audio file + Blues + + + + + + + 82 + Faith No More + + + 74 + 82 + Album Of The Year + + + 0 + Collision + MPEG audio file + Alternative & Punk + + + 0 + Stripsearch + MPEG audio file + Alternative & Punk + + + 0 + Last Cup Of Sorrow + MPEG audio file + Alternative & Punk + + + 0 + Naked In Front Of The Computer + MPEG audio file + Alternative & Punk + + + 0 + Helpless + MPEG audio file + Alternative & Punk + + + 0 + Mouth To Mouth + MPEG audio file + Alternative & Punk + + + 0 + Ashes To Ashes + MPEG audio file + Alternative & Punk + + + 0 + She Loves Me Not + MPEG audio file + Alternative & Punk + + + 0 + Got That Feeling + MPEG audio file + Alternative & Punk + + + 0 + Paths Of Glory + MPEG audio file + Alternative & Punk + + + 0 + Home Sick Home + MPEG audio file + Alternative & Punk + + + 0 + Pristina + MPEG audio file + Alternative & Punk + + + + + 75 + 82 + Angel Dust + + + 0 + Smaller And Smaller + MPEG audio file + Alternative & Punk + + + 0 + Everything's Ruined + MPEG audio file + Alternative & Punk + + + 0 + Malpractice + MPEG audio file + Alternative & Punk + + + 0 + Kindergarten + MPEG audio file + Alternative & Punk + + + 0 + Be Aggressive + MPEG audio file + Alternative & Punk + + + 0 + A Small Victory + MPEG audio file + Alternative & Punk + + + 0 + Crack Hitler + MPEG audio file + Alternative & Punk + + + 0 + Jizzlobber + MPEG audio file + Alternative & Punk + + + 0 + Midnight Cowboy + MPEG audio file + Alternative & Punk + + + 0 + Easy + MPEG audio file + Alternative & Punk + + + 0 + Land Of Sunshine + MPEG audio file + Alternative & Punk + + + 0 + Caffeine + MPEG audio file + Alternative & Punk + + + 0 + Midlife Crisis + MPEG audio file + Alternative & Punk + + + 0 + RV + MPEG audio file + Alternative & Punk + + + + + 76 + 82 + King For A Day Fool For A Lifetime + + + 0 + Get Out + MPEG audio file + Rock + + + 0 + Ricochet + MPEG audio file + Rock + + + 0 + Evidence + MPEG audio file + Rock + + + 0 + The Gentle Art Of Making Enemies + MPEG audio file + Rock + + + 0 + Star A.D. + MPEG audio file + Rock + + + 0 + Cuckoo For Caca + MPEG audio file + Rock + + + 0 + Caralho Voador + MPEG audio file + Rock + + + 0 + Ugly In The Morning + MPEG audio file + Rock + + + 0 + Digging The Grave + MPEG audio file + Rock + + + 0 + Take This Bottle + MPEG audio file + Rock + + + 0 + King For A Day + MPEG audio file + Rock + + + 0 + What A Day + MPEG audio file + Rock + + + 0 + The Last To Know + MPEG audio file + Rock + + + 0 + Just A Man + MPEG audio file + Rock + + + 0 + Absolute Zero + MPEG audio file + Rock + + + + + 77 + 82 + The Real Thing + + + 0 + From Out Of Nowhere + MPEG audio file + Alternative & Punk + + + 0 + Epic + MPEG audio file + Alternative & Punk + + + 0 + Falling To Pieces + MPEG audio file + Alternative & Punk + + + 0 + Surprise! You're Dead! + MPEG audio file + Alternative & Punk + + + 0 + Zombie Eaters + MPEG audio file + Alternative & Punk + + + 0 + The Real Thing + MPEG audio file + Alternative & Punk + + + 0 + Underwater Love + MPEG audio file + Alternative & Punk + + + 0 + The Morning After + MPEG audio file + Alternative & Punk + + + 0 + Woodpecker From Mars + MPEG audio file + Alternative & Punk + + + 0 + War Pigs + MPEG audio file + Alternative & Punk + + + 0 + Edge Of The World + MPEG audio file + Alternative & Punk + + + + + + + 83 + Falamansa + + + 78 + 83 + Deixa Entrar + + + 0 + Deixa Entrar + MPEG audio file + Latin + + + 0 + Falamansa Song + MPEG audio file + Latin + + + 0 + Xote Dos Milagres + MPEG audio file + Latin + + + 0 + Rindo À Toa + MPEG audio file + Latin + + + 0 + Confidência + MPEG audio file + Latin + + + 0 + Forró De Tóquio + MPEG audio file + Latin + + + 0 + Zeca Violeiro + MPEG audio file + Latin + + + 0 + Avisa + MPEG audio file + Latin + + + 0 + Principiando/Decolagem + MPEG audio file + Latin + + + 0 + Asas + MPEG audio file + Latin + + + 0 + Medo De Escuro + MPEG audio file + Latin + + + 0 + Oração + MPEG audio file + Latin + + + 0 + Minha Gata + MPEG audio file + Latin + + + 0 + Desaforo + MPEG audio file + Latin + + + + + + + 84 + Foo Fighters + + + 79 + 84 + In Your Honor [Disc 1] + + + 0 + In Your Honor + MPEG audio file + Rock + + + 0 + No Way Back + MPEG audio file + Rock + + + 0 + Best Of You + MPEG audio file + Rock + + + 0 + DOA + MPEG audio file + Rock + + + 0 + Hell + MPEG audio file + Rock + + + 0 + The Last Song + MPEG audio file + Rock + + + 0 + Free Me + MPEG audio file + Rock + + + 0 + Resolve + MPEG audio file + Rock + + + 0 + The Deepest Blues Are Black + MPEG audio file + Rock + + + 0 + End Over End + MPEG audio file + Rock + + + + + 80 + 84 + In Your Honor [Disc 2] + + + 0 + Still + MPEG audio file + Rock + + + 0 + What If I Do? + MPEG audio file + Rock + + + 0 + Miracle + MPEG audio file + Rock + + + 0 + Another Round + MPEG audio file + Rock + + + 0 + Friend Of A Friend + MPEG audio file + Rock + + + 0 + Over And Out + MPEG audio file + Rock + + + 0 + On The Mend + MPEG audio file + Rock + + + 0 + Virginia Moon + MPEG audio file + Rock + + + 0 + Cold Day In The Sun + MPEG audio file + Rock + + + 0 + Razor + MPEG audio file + Rock + + + + + 81 + 84 + One By One + + + 0 + All My Life + MPEG audio file + Alternative & Punk + + + 0 + Low + MPEG audio file + Alternative & Punk + + + 0 + Have It All + MPEG audio file + Alternative & Punk + + + 0 + Times Like These + MPEG audio file + Alternative & Punk + + + 0 + Disenchanted Lullaby + MPEG audio file + Alternative & Punk + + + 0 + Tired Of You + MPEG audio file + Alternative & Punk + + + 0 + Halo + MPEG audio file + Alternative & Punk + + + 0 + Lonely As You + MPEG audio file + Alternative & Punk + + + 0 + Overdrive + MPEG audio file + Alternative & Punk + + + 0 + Burn Away + MPEG audio file + Alternative & Punk + + + 0 + Come Back + MPEG audio file + Alternative & Punk + + + + + 82 + 84 + The Colour And The Shape + + + 0 + Doll + MPEG audio file + Rock + + + 0 + Monkey Wrench + MPEG audio file + Rock + + + 0 + Hey, Johnny Park! + MPEG audio file + Rock + + + 0 + My Poor Brain + MPEG audio file + Rock + + + 0 + Wind Up + MPEG audio file + Rock + + + 0 + Up In Arms + MPEG audio file + Rock + + + 0 + My Hero + MPEG audio file + Rock + + + 0 + See You + MPEG audio file + Rock + + + 0 + Enough Space + MPEG audio file + Rock + + + 0 + February Stars + MPEG audio file + Rock + + + 0 + Everlong + MPEG audio file + Rock + + + 0 + Walking After You + MPEG audio file + Rock + + + 0 + New Way Home + MPEG audio file + Rock + + + + + + + 85 + Frank Sinatra + + + 83 + 85 + My Way: The Best Of Frank Sinatra [Disc 1] + + + 0 + My Way + MPEG audio file + Easy Listening + + + 0 + Strangers In The Night + MPEG audio file + Easy Listening + + + 0 + New York, New York + MPEG audio file + Easy Listening + + + 0 + I Get A Kick Out Of You + MPEG audio file + Easy Listening + + + 0 + Something Stupid + MPEG audio file + Easy Listening + + + 0 + Moon River + MPEG audio file + Easy Listening + + + 0 + What Now My Love + MPEG audio file + Easy Listening + + + 0 + Summer Love + MPEG audio file + Easy Listening + + + 0 + For Once In My Life + MPEG audio file + Easy Listening + + + 0 + Love And Marriage + MPEG audio file + Easy Listening + + + 0 + They Can't Take That Away From Me + MPEG audio file + Easy Listening + + + 0 + My Kind Of Town + MPEG audio file + Easy Listening + + + 0 + Fly Me To The Moon + MPEG audio file + Easy Listening + + + 0 + I've Got You Under My Skin + MPEG audio file + Easy Listening + + + 0 + The Best Is Yet To Come + MPEG audio file + Easy Listening + + + 0 + It Was A Very Good Year + MPEG audio file + Easy Listening + + + 0 + Come Fly With Me + MPEG audio file + Easy Listening + + + 0 + That's Life + MPEG audio file + Easy Listening + + + 0 + The Girl From Ipanema + MPEG audio file + Easy Listening + + + 0 + The Lady Is A Tramp + MPEG audio file + Easy Listening + + + 0 + Bad, Bad Leroy Brown + MPEG audio file + Easy Listening + + + 0 + Mack The Knife + MPEG audio file + Easy Listening + + + 0 + Loves Been Good To Me + MPEG audio file + Easy Listening + + + 0 + L.A. Is My Lady + MPEG audio file + Easy Listening + + + + + + + 86 + Funk Como Le Gusta + + + 84 + 86 + Roda De Funk + + + 0 + Entrando Na Sua (Intro) + MPEG audio file + Latin + + + 0 + Nervosa + MPEG audio file + Latin + + + 0 + Funk De Bamba (Com Fernanda Abreu) + MPEG audio file + Latin + + + 0 + Call Me At Cleo´s + MPEG audio file + Latin + + + 0 + Olhos Coloridos (Com Sandra De Sá) + MPEG audio file + Latin + + + 0 + Zambação + MPEG audio file + Latin + + + 0 + Funk Hum + MPEG audio file + Latin + + + 0 + Forty Days (Com DJ Hum) + MPEG audio file + Latin + + + 0 + Balada Da Paula + MPEG audio file + Latin + + + 0 + Dujji + MPEG audio file + Latin + + + 0 + Meu Guarda-Chuva + MPEG audio file + Latin + + + 0 + Motéis + MPEG audio file + Latin + + + 0 + Whistle Stop + MPEG audio file + Latin + + + 0 + 16 Toneladas + MPEG audio file + Latin + + + 0 + Divirta-Se (Saindo Da Sua) + MPEG audio file + Latin + + + 0 + Forty Days Instrumental + MPEG audio file + Latin + + + + + + + 87 + Godsmack + + + 88 + 87 + Faceless + + + 0 + Straight Out Of Line + MPEG audio file + Metal + + + 0 + Faceless + MPEG audio file + Metal + + + 0 + Changes + MPEG audio file + Metal + + + 0 + Make Me Believe + MPEG audio file + Metal + + + 0 + I Stand Alone + MPEG audio file + Metal + + + 0 + Re-Align + MPEG audio file + Metal + + + 0 + I Fucking Hate You + MPEG audio file + Metal + + + 0 + Releasing The Demons + MPEG audio file + Metal + + + 0 + Dead And Broken + MPEG audio file + Metal + + + 0 + I Am + MPEG audio file + Metal + + + 0 + The Awakening + MPEG audio file + Metal + + + 0 + Serenity + MPEG audio file + Metal + + + + + + + 88 + Guns N' Roses + + + 90 + 88 + Appetite for Destruction + + + 0 + Welcome to the Jungle + Protected AAC audio file + Rock + + + 0 + It's So Easy + Protected AAC audio file + Rock + + + 0 + Nightrain + Protected AAC audio file + Rock + + + 0 + Out Ta Get Me + Protected AAC audio file + Rock + + + 0 + Mr. Brownstone + Protected AAC audio file + Rock + + + 0 + Paradise City + Protected AAC audio file + Rock + + + 0 + My Michelle + Protected AAC audio file + Rock + + + 0 + Think About You + Protected AAC audio file + Rock + + + 0 + Sweet Child O' Mine + Protected AAC audio file + Rock + + + 0 + You're Crazy + Protected AAC audio file + Rock + + + 0 + Anything Goes + Protected AAC audio file + Rock + + + 0 + Rocket Queen + Protected AAC audio file + Rock + + + + + 91 + 88 + Use Your Illusion I + + + 0 + Right Next Door to Hell + Protected AAC audio file + Rock + + + 0 + Dust N' Bones + Protected AAC audio file + Rock + + + 0 + Live and Let Die + Protected AAC audio file + Rock + + + 0 + Don't Cry (Original) + Protected AAC audio file + Rock + + + 0 + Perfect Crime + Protected AAC audio file + Rock + + + 0 + You Ain't the First + Protected AAC audio file + Rock + + + 0 + Bad Obsession + Protected AAC audio file + Rock + + + 0 + Back off Bitch + Protected AAC audio file + Rock + + + 0 + Double Talkin' Jive + Protected AAC audio file + Rock + + + 0 + November Rain + Protected AAC audio file + Rock + + + 0 + The Garden + Protected AAC audio file + Rock + + + 0 + Garden of Eden + Protected AAC audio file + Rock + + + 0 + Don't Damn Me + Protected AAC audio file + Rock + + + 0 + Bad Apples + Protected AAC audio file + Rock + + + 0 + Dead Horse + Protected AAC audio file + Rock + + + 0 + Coma + Protected AAC audio file + Rock + + + + + 92 + 88 + Use Your Illusion II + + + 0 + Civil War + MPEG audio file + Metal + + + 0 + 14 Years + MPEG audio file + Metal + + + 0 + Yesterdays + MPEG audio file + Metal + + + 0 + Knockin' On Heaven's Door + MPEG audio file + Metal + + + 0 + Get In The Ring + MPEG audio file + Metal + + + 0 + Shotgun Blues + MPEG audio file + Metal + + + 0 + Breakdown + MPEG audio file + Metal + + + 0 + Pretty Tied Up + MPEG audio file + Metal + + + 0 + Locomotive + MPEG audio file + Metal + + + 0 + So Fine + MPEG audio file + Metal + + + 0 + Estranged + MPEG audio file + Metal + + + 0 + You Could Be Mine + MPEG audio file + Metal + + + 0 + Don't Cry + MPEG audio file + Metal + + + 0 + My World + MPEG audio file + Metal + + + + + + + 89 + Incognito + + + 93 + 89 + Blue Moods + + + 0 + Colibri + MPEG audio file + Jazz + + + 0 + Love Is The Colour + MPEG audio file + Jazz + + + 0 + Magnetic Ocean + MPEG audio file + Jazz + + + 0 + Deep Waters + MPEG audio file + Jazz + + + 0 + L'Arc En Ciel De Miles + MPEG audio file + Jazz + + + 0 + Gypsy + MPEG audio file + Jazz + + + 0 + Journey Into Sunlight + MPEG audio file + Jazz + + + 0 + Sunchild + MPEG audio file + Jazz + + + 0 + Millenium + MPEG audio file + Jazz + + + 0 + Thinking 'Bout Tomorrow + MPEG audio file + Jazz + + + 0 + Jacob's Ladder + MPEG audio file + Jazz + + + 0 + She Wears Black + MPEG audio file + Jazz + + + 0 + Dark Side Of The Cog + MPEG audio file + Jazz + + + + + + + 90 + Iron Maiden + + + 94 + 90 + A Matter of Life and Death + + + 0 + Different World + Protected AAC audio file + Rock + + + 0 + These Colours Don't Run + Protected AAC audio file + Rock + + + 0 + Brighter Than a Thousand Suns + Protected AAC audio file + Rock + + + 0 + The Pilgrim + Protected AAC audio file + Rock + + + 0 + The Longest Day + Protected AAC audio file + Rock + + + 0 + Out of the Shadows + Protected AAC audio file + Rock + + + 0 + The Reincarnation of Benjamin Breeg + Protected AAC audio file + Rock + + + 0 + For the Greater Good of God + Protected AAC audio file + Rock + + + 0 + Lord of Light + Protected AAC audio file + Rock + + + 0 + The Legacy + Protected AAC audio file + Rock + + + 0 + Hallowed Be Thy Name (Live) [Non Album Bonus Track] + Protected AAC audio file + Rock + + + + + 95 + 90 + A Real Dead One + + + 0 + The Number Of The Beast + MPEG audio file + Metal + + + 0 + The Trooper + MPEG audio file + Metal + + + 0 + Prowler + MPEG audio file + Metal + + + 0 + Transylvania + MPEG audio file + Metal + + + 0 + Remember Tomorrow + MPEG audio file + Metal + + + 0 + Where Eagles Dare + MPEG audio file + Metal + + + 0 + Sanctuary + MPEG audio file + Metal + + + 0 + Running Free + MPEG audio file + Metal + + + 0 + Run To The Hilss + MPEG audio file + Metal + + + 0 + 2 Minutes To Midnight + MPEG audio file + Metal + + + 0 + Iron Maiden + MPEG audio file + Metal + + + 0 + Hallowed Be Thy Name + MPEG audio file + Metal + + + + + 96 + 90 + A Real Live One + + + 0 + Be Quick Or Be Dead + MPEG audio file + Metal + + + 0 + From Here To Eternity + MPEG audio file + Metal + + + 0 + Can I Play With Madness + MPEG audio file + Metal + + + 0 + Wasting Love + MPEG audio file + Metal + + + 0 + Tailgunner + MPEG audio file + Metal + + + 0 + The Evil That Men Do + MPEG audio file + Metal + + + 0 + Afraid To Shoot Strangers + MPEG audio file + Metal + + + 0 + Bring Your Daughter... To The Slaughter + MPEG audio file + Metal + + + 0 + Heaven Can Wait + MPEG audio file + Metal + + + 0 + The Clairvoyant + MPEG audio file + Metal + + + 0 + Fear Of The Dark + MPEG audio file + Metal + + + + + 97 + 90 + Brave New World + + + 0 + The Wicker Man + MPEG audio file + Rock + + + 0 + Ghost Of The Navigator + MPEG audio file + Rock + + + 0 + Brave New World + MPEG audio file + Rock + + + 0 + Blood Brothers + MPEG audio file + Rock + + + 0 + The Mercenary + MPEG audio file + Rock + + + 0 + Dream Of Mirrors + MPEG audio file + Rock + + + 0 + The Fallen Angel + MPEG audio file + Rock + + + 0 + The Nomad + MPEG audio file + Rock + + + 0 + Out Of The Silent Planet + MPEG audio file + Rock + + + 0 + The Thin Line Between Love & Hate + MPEG audio file + Rock + + + + + 98 + 90 + Dance Of Death + + + 0 + Wildest Dreams + MPEG audio file + Heavy Metal + + + 0 + Rainmaker + MPEG audio file + Heavy Metal + + + 0 + No More Lies + MPEG audio file + Heavy Metal + + + 0 + Montsegur + MPEG audio file + Heavy Metal + + + 0 + Dance Of Death + MPEG audio file + Heavy Metal + + + 0 + Gates Of Tomorrow + MPEG audio file + Heavy Metal + + + 0 + New Frontier + MPEG audio file + Heavy Metal + + + 0 + Paschendale + MPEG audio file + Heavy Metal + + + 0 + Face In The Sand + MPEG audio file + Heavy Metal + + + 0 + Age Of Innocence + MPEG audio file + Heavy Metal + + + 0 + Journeyman + MPEG audio file + Heavy Metal + + + + + 99 + 90 + Fear Of The Dark + + + 0 + Be Quick Or Be Dead + MPEG audio file + Rock + + + 0 + From Here To Eternity + MPEG audio file + Rock + + + 0 + Afraid To Shoot Strangers + MPEG audio file + Rock + + + 0 + Fear Is The Key + MPEG audio file + Rock + + + 0 + Childhood's End + MPEG audio file + Rock + + + 0 + Wasting Love + MPEG audio file + Rock + + + 0 + The Fugitive + MPEG audio file + Rock + + + 0 + Chains Of Misery + MPEG audio file + Rock + + + 0 + The Apparition + MPEG audio file + Rock + + + 0 + Judas Be My Guide + MPEG audio file + Rock + + + 0 + Weekend Warrior + MPEG audio file + Rock + + + 0 + Fear Of The Dark + MPEG audio file + Rock + + + + + 100 + 90 + Iron Maiden + + + 0 + 01 - Prowler + MPEG audio file + Blues + + + 0 + 02 - Sanctuary + MPEG audio file + Blues + + + 0 + 03 - Remember Tomorrow + MPEG audio file + Blues + + + 0 + 04 - Running Free + MPEG audio file + Blues + + + 0 + 05 - Phantom of the Opera + MPEG audio file + Blues + + + 0 + 06 - Transylvania + MPEG audio file + Blues + + + 0 + 07 - Strange World + MPEG audio file + Blues + + + 0 + 08 - Charlotte the Harlot + MPEG audio file + Blues + + + 0 + 09 - Iron Maiden + MPEG audio file + Blues + + + + + 101 + 90 + Killers + + + 0 + The Ides Of March + MPEG audio file + Heavy Metal + + + 0 + Wrathchild + MPEG audio file + Heavy Metal + + + 0 + Murders In The Rue Morgue + MPEG audio file + Heavy Metal + + + 0 + Another Life + MPEG audio file + Heavy Metal + + + 0 + Genghis Khan + MPEG audio file + Heavy Metal + + + 0 + Innocent Exile + MPEG audio file + Heavy Metal + + + 0 + Killers + MPEG audio file + Heavy Metal + + + 0 + Prodigal Son + MPEG audio file + Heavy Metal + + + 0 + Purgatory + MPEG audio file + Heavy Metal + + + 0 + Drifter + MPEG audio file + Heavy Metal + + + + + 102 + 90 + Live After Death + + + 0 + Intro- Churchill S Speech + MPEG audio file + Heavy Metal + + + 0 + Aces High + MPEG audio file + Heavy Metal + + + 0 + 2 Minutes To Midnight + MPEG audio file + Metal + + + 0 + The Trooper + MPEG audio file + Metal + + + 0 + Revelations + MPEG audio file + Metal + + + 0 + Flight Of Icarus + MPEG audio file + Metal + + + 0 + Rime Of The Ancient Mariner + MPEG audio file + Metal + + + 0 + Powerslave + MPEG audio file + Metal + + + 0 + The Number Of The Beast + MPEG audio file + Metal + + + 0 + Hallowed Be Thy Name + MPEG audio file + Metal + + + 0 + Iron Maiden + MPEG audio file + Metal + + + 0 + Run To The Hills + MPEG audio file + Metal + + + 0 + Running Free + MPEG audio file + Metal + + + 0 + Wrathchild + MPEG audio file + Heavy Metal + + + 0 + Acacia Avenue + MPEG audio file + Heavy Metal + + + 0 + Children Of The Damned + MPEG audio file + Heavy Metal + + + 0 + Die With Your Boots On + MPEG audio file + Heavy Metal + + + 0 + Phantom Of The Opera + MPEG audio file + Heavy Metal + + + + + 103 + 90 + Live At Donington 1992 (Disc 1) + + + 0 + Be Quick Or Be Dead + MPEG audio file + Rock + + + 0 + The Number Of The Beast + MPEG audio file + Rock + + + 0 + Wrathchild + MPEG audio file + Rock + + + 0 + From Here To Eternity + MPEG audio file + Rock + + + 0 + Can I Play With Madness + MPEG audio file + Rock + + + 0 + Wasting Love + MPEG audio file + Rock + + + 0 + Tailgunner + MPEG audio file + Rock + + + 0 + The Evil That Men Do + MPEG audio file + Rock + + + 0 + Afraid To Shoot Strangers + MPEG audio file + Rock + + + 0 + Fear Of The Dark + MPEG audio file + Rock + + + + + 104 + 90 + Live At Donington 1992 (Disc 2) + + + 0 + Bring Your Daughter... To The Slaughter... + MPEG audio file + Rock + + + 0 + The Clairvoyant + MPEG audio file + Rock + + + 0 + Heaven Can Wait + MPEG audio file + Rock + + + 0 + Run To The Hills + MPEG audio file + Rock + + + 0 + 2 Minutes To Midnight + MPEG audio file + Rock + + + 0 + Iron Maiden + MPEG audio file + Rock + + + 0 + Hallowed Be Thy Name + MPEG audio file + Rock + + + 0 + The Trooper + MPEG audio file + Rock + + + 0 + Sanctuary + MPEG audio file + Rock + + + 0 + Running Free + MPEG audio file + Rock + + + + + 105 + 90 + No Prayer For The Dying + + + 0 + Tailgunner + MPEG audio file + Metal + + + 0 + Holy Smoke + MPEG audio file + Metal + + + 0 + No Prayer For The Dying + MPEG audio file + Metal + + + 0 + Public Enema Number One + MPEG audio file + Metal + + + 0 + Fates Warning + MPEG audio file + Metal + + + 0 + The Assassin + MPEG audio file + Metal + + + 0 + Run Silent Run Deep + MPEG audio file + Metal + + + 0 + Hooks In You + MPEG audio file + Metal + + + 0 + Bring Your Daughter... ...To The Slaughter + MPEG audio file + Metal + + + 0 + Mother Russia + MPEG audio file + Metal + + + + + 106 + 90 + Piece Of Mind + + + 0 + Where Eagles Dare + MPEG audio file + Metal + + + 0 + Revelations + MPEG audio file + Metal + + + 0 + Flight Of The Icarus + MPEG audio file + Metal + + + 0 + Die With Your Boots On + MPEG audio file + Metal + + + 0 + The Trooper + MPEG audio file + Metal + + + 0 + Still Life + MPEG audio file + Metal + + + 0 + Quest For Fire + MPEG audio file + Metal + + + 0 + Sun And Steel + MPEG audio file + Metal + + + 0 + To Tame A Land + MPEG audio file + Metal + + + + + 107 + 90 + Powerslave + + + 0 + Aces High + MPEG audio file + Metal + + + 0 + 2 Minutes To Midnight + MPEG audio file + Metal + + + 0 + Losfer Words + MPEG audio file + Metal + + + 0 + Flash of The Blade + MPEG audio file + Metal + + + 0 + Duelists + MPEG audio file + Metal + + + 0 + Back in the Village + MPEG audio file + Metal + + + 0 + Powerslave + MPEG audio file + Metal + + + 0 + Rime of the Ancient Mariner + MPEG audio file + Metal + + + + + 108 + 90 + Rock In Rio [CD1] + + + 0 + Intro + MPEG audio file + Metal + + + 0 + The Wicker Man + MPEG audio file + Metal + + + 0 + Ghost Of The Navigator + MPEG audio file + Metal + + + 0 + Brave New World + MPEG audio file + Metal + + + 0 + Wrathchild + MPEG audio file + Metal + + + 0 + 2 Minutes To Midnight + MPEG audio file + Metal + + + 0 + Blood Brothers + MPEG audio file + Metal + + + 0 + Sign Of The Cross + MPEG audio file + Metal + + + 0 + The Mercenary + MPEG audio file + Metal + + + 0 + The Trooper + MPEG audio file + Metal + + + + + 109 + 90 + Rock In Rio [CD2] + + + 0 + Dream Of Mirrors + MPEG audio file + Rock + + + 0 + The Clansman + MPEG audio file + Rock + + + 0 + The Evil That Men Do + MPEG audio file + Metal + + + 0 + Fear Of The Dark + MPEG audio file + Rock + + + 0 + Iron Maiden + MPEG audio file + Rock + + + 0 + The Number Of The Beast + MPEG audio file + Rock + + + 0 + Hallowed Be Thy Name + MPEG audio file + Rock + + + 0 + Sanctuary + MPEG audio file + Rock + + + 0 + Run To The Hills + MPEG audio file + Rock + + + + + 110 + 90 + Seventh Son of a Seventh Son + + + 0 + Moonchild + MPEG audio file + Metal + + + 0 + Infinite Dreams + MPEG audio file + Metal + + + 0 + Can I Play With Madness + MPEG audio file + Metal + + + 0 + The Evil That Men Do + MPEG audio file + Metal + + + 0 + Seventh Son of a Seventh Son + MPEG audio file + Metal + + + 0 + The Prophecy + MPEG audio file + Metal + + + 0 + The Clairvoyant + MPEG audio file + Metal + + + 0 + Only the Good Die Young + MPEG audio file + Metal + + + + + 111 + 90 + Somewhere in Time + + + 0 + Caught Somewhere in Time + MPEG audio file + Metal + + + 0 + Wasted Years + MPEG audio file + Metal + + + 0 + Sea of Madness + MPEG audio file + Metal + + + 0 + Heaven Can Wait + MPEG audio file + Metal + + + 0 + Stranger in a Strange Land + MPEG audio file + Metal + + + 0 + Alexander the Great + MPEG audio file + Metal + + + 0 + De Ja Vu + MPEG audio file + Metal + + + 0 + The Loneliness of the Long Dis + MPEG audio file + Metal + + + + + 112 + 90 + The Number of The Beast + + + 0 + 22 Acacia Avenue + MPEG audio file + Metal + + + 0 + Children of the Damned + MPEG audio file + Metal + + + 0 + Gangland + MPEG audio file + Metal + + + 0 + Hallowed Be Thy Name + MPEG audio file + Metal + + + 0 + Invaders + MPEG audio file + Metal + + + 0 + Run to the Hills + MPEG audio file + Metal + + + 0 + The Number Of The Beast + MPEG audio file + Rock + + + 0 + The Prisoner + MPEG audio file + Metal + + + + + 113 + 90 + The X Factor + + + 0 + Sign Of The Cross + MPEG audio file + Rock + + + 0 + Lord Of The Flies + MPEG audio file + Rock + + + 0 + Man On The Edge + MPEG audio file + Rock + + + 0 + Fortunes Of War + MPEG audio file + Rock + + + 0 + Look For The Truth + MPEG audio file + Rock + + + 0 + The Aftermath + MPEG audio file + Rock + + + 0 + Judgement Of Heaven + MPEG audio file + Rock + + + 0 + Blood On The World's Hands + MPEG audio file + Rock + + + 0 + The Edge Of Darkness + MPEG audio file + Rock + + + 0 + 2 A.M. + MPEG audio file + Rock + + + 0 + The Unbeliever + MPEG audio file + Rock + + + + + 114 + 90 + Virtual XI + + + 0 + Futureal + MPEG audio file + Rock + + + 0 + The Angel And The Gambler + MPEG audio file + Rock + + + 0 + Lightning Strikes Twice + MPEG audio file + Rock + + + 0 + The Clansman + MPEG audio file + Rock + + + 0 + When Two Worlds Collide + MPEG audio file + Rock + + + 0 + The Educated Fool + MPEG audio file + Rock + + + 0 + Don't Look To The Eyes Of A Stranger + MPEG audio file + Rock + + + 0 + Como Estais Amigos + MPEG audio file + Rock + + + + + + + 91 + James Brown + + + 115 + 91 + Sex Machine + + + 0 + Please Please Please + MPEG audio file + R&B/Soul + + + 0 + Think + MPEG audio file + R&B/Soul + + + 0 + Night Train + MPEG audio file + R&B/Soul + + + 0 + Out Of Sight + MPEG audio file + R&B/Soul + + + 0 + Papa's Got A Brand New Bag Pt.1 + MPEG audio file + R&B/Soul + + + 0 + I Got You (I Feel Good) + MPEG audio file + R&B/Soul + + + 0 + It's A Man's Man's Man's World + MPEG audio file + R&B/Soul + + + 0 + Cold Sweat + MPEG audio file + R&B/Soul + + + 0 + Say It Loud, I'm Black And I'm Proud Pt.1 + MPEG audio file + R&B/Soul + + + 0 + Get Up (I Feel Like Being A) Sex Machine + MPEG audio file + R&B/Soul + + + 0 + Hey America + MPEG audio file + R&B/Soul + + + 0 + Make It Funky Pt.1 + MPEG audio file + R&B/Soul + + + 0 + I'm A Greedy Man Pt.1 + MPEG audio file + R&B/Soul + + + 0 + Get On The Good Foot + MPEG audio file + R&B/Soul + + + 0 + Get Up Offa That Thing + MPEG audio file + R&B/Soul + + + 0 + It's Too Funky In Here + MPEG audio file + R&B/Soul + + + 0 + Living In America + MPEG audio file + R&B/Soul + + + 0 + I'm Real + MPEG audio file + R&B/Soul + + + 0 + Hot Pants Pt.1 + MPEG audio file + R&B/Soul + + + 0 + Soul Power (Live) + MPEG audio file + R&B/Soul + + + + + + + 92 + Jamiroquai + + + 116 + 92 + Emergency On Planet Earth + + + 0 + When You Gonna Learn (Digeridoo) + MPEG audio file + Rock + + + 0 + Too Young To Die + MPEG audio file + Rock + + + 0 + Hooked Up + MPEG audio file + Rock + + + 0 + If I Like It, I Do It + MPEG audio file + Rock + + + 0 + Music Of The Wind + MPEG audio file + Rock + + + 0 + Emergency On Planet Earth + MPEG audio file + Rock + + + 0 + Whatever It Is, I Just Can't Stop + MPEG audio file + Rock + + + 0 + Blow Your Mind + MPEG audio file + Rock + + + 0 + Revolution 1993 + MPEG audio file + Rock + + + 0 + Didgin' Out + MPEG audio file + Rock + + + + + 117 + 92 + Synkronized + + + 0 + Canned Heat + MPEG audio file + R&B/Soul + + + 0 + Planet Home + MPEG audio file + R&B/Soul + + + 0 + Black Capricorn Day + MPEG audio file + R&B/Soul + + + 0 + Soul Education + MPEG audio file + R&B/Soul + + + 0 + Failling + MPEG audio file + R&B/Soul + + + 0 + Destitute Illusions + MPEG audio file + R&B/Soul + + + 0 + Supersonic + MPEG audio file + R&B/Soul + + + 0 + Butterfly + MPEG audio file + R&B/Soul + + + 0 + Were Do We Go From Here + MPEG audio file + R&B/Soul + + + 0 + King For A Day + MPEG audio file + R&B/Soul + + + 0 + Deeper Underground + MPEG audio file + R&B/Soul + + + + + 118 + 92 + The Return Of The Space Cowboy + + + 0 + Just Another Story + MPEG audio file + Electronica/Dance + + + 0 + Stillness In Time + MPEG audio file + Electronica/Dance + + + 0 + Half The Man + MPEG audio file + Electronica/Dance + + + 0 + Light Years + MPEG audio file + Electronica/Dance + + + 0 + Manifest Destiny + MPEG audio file + Electronica/Dance + + + 0 + The Kids + MPEG audio file + Electronica/Dance + + + 0 + Mr. Moon + MPEG audio file + Electronica/Dance + + + 0 + Scam + MPEG audio file + Electronica/Dance + + + 0 + Journey To Arnhemland + MPEG audio file + Electronica/Dance + + + 0 + Morning Glory + MPEG audio file + Electronica/Dance + + + 0 + Space Cowboy + MPEG audio file + Electronica/Dance + + + + + + + 93 + JET + + + 119 + 93 + Get Born + + + 0 + Last Chance + MPEG audio file + Alternative & Punk + + + 0 + Are You Gonna Be My Girl + MPEG audio file + Alternative & Punk + + + 0 + Rollover D.J. + MPEG audio file + Alternative & Punk + + + 0 + Look What You've Done + MPEG audio file + Alternative & Punk + + + 0 + Get What You Need + MPEG audio file + Alternative & Punk + + + 0 + Move On + MPEG audio file + Alternative & Punk + + + 0 + Radio Song + MPEG audio file + Alternative & Punk + + + 0 + Get Me Outta Here + MPEG audio file + Alternative & Punk + + + 0 + Cold Hard Bitch + MPEG audio file + Alternative & Punk + + + 0 + Come Around Again + MPEG audio file + Alternative & Punk + + + 0 + Take It Or Leave It + MPEG audio file + Alternative & Punk + + + 0 + Lazy Gun + MPEG audio file + Alternative & Punk + + + 0 + Timothy + MPEG audio file + Alternative & Punk + + + + + + + 94 + Jimi Hendrix + + + 120 + 94 + Are You Experienced? + + + 0 + Foxy Lady + MPEG audio file + Rock + + + 0 + Manic Depression + MPEG audio file + Rock + + + 0 + Red House + MPEG audio file + Rock + + + 0 + Can You See Me + MPEG audio file + Rock + + + 0 + Love Or Confusion + MPEG audio file + Rock + + + 0 + I Don't Live Today + MPEG audio file + Rock + + + 0 + May This Be Love + MPEG audio file + Rock + + + 0 + Fire + MPEG audio file + Rock + + + 0 + Third Stone From The Sun + MPEG audio file + Rock + + + 0 + Remember + MPEG audio file + Rock + + + 0 + Are You Experienced? + MPEG audio file + Rock + + + 0 + Hey Joe + MPEG audio file + Rock + + + 0 + Stone Free + MPEG audio file + Rock + + + 0 + Purple Haze + MPEG audio file + Rock + + + 0 + 51st Anniversary + MPEG audio file + Rock + + + 0 + The Wind Cries Mary + MPEG audio file + Rock + + + 0 + Highway Chile + MPEG audio file + Rock + + + + + + + 95 + Joe Satriani + + + 121 + 95 + Surfing with the Alien (Remastered) + + + 0 + Surfing with the Alien + Protected AAC audio file + Rock + + + 0 + Ice 9 + Protected AAC audio file + Rock + + + 0 + Crushing Day + Protected AAC audio file + Rock + + + 0 + Always With Me, Always With You + Protected AAC audio file + Rock + + + 0 + Satch Boogie + Protected AAC audio file + Rock + + + 0 + Hill of the Skull + Protected AAC audio file + Rock + + + 0 + Circles + Protected AAC audio file + Rock + + + 0 + Lords of Karma + Protected AAC audio file + Rock + + + 0 + Midnight + Protected AAC audio file + Rock + + + 0 + Echo + Protected AAC audio file + Rock + + + + + + + 96 + Jota Quest + + + 123 + 96 + Jota Quest-1995 + + + 0 + Rapidamente + MPEG audio file + Latin + + + 0 + As Dores do Mundo + MPEG audio file + Latin + + + 0 + Vou Pra Ai + MPEG audio file + Latin + + + 0 + My Brother + MPEG audio file + Latin + + + 0 + Há Quanto Tempo + MPEG audio file + Latin + + + 0 + Vício + MPEG audio file + Latin + + + 0 + Encontrar Alguém + MPEG audio file + Latin + + + 0 + Dance Enquanto é Tempo + MPEG audio file + Latin + + + 0 + A Tarde + MPEG audio file + Latin + + + 0 + Always Be All Right + MPEG audio file + Latin + + + 0 + Sem Sentido + MPEG audio file + Latin + + + 0 + Onibusfobia + MPEG audio file + Latin + + + + + + + 97 + João Suplicy + + + 124 + 97 + Cafezinho + + + 0 + Pura Elegancia + MPEG audio file + World + + + 0 + Choramingando + MPEG audio file + World + + + 0 + Por Merecer + MPEG audio file + World + + + 0 + No Futuro + MPEG audio file + World + + + 0 + Voce Inteira + MPEG audio file + World + + + 0 + Cuando A Noite Vai Chegando + MPEG audio file + World + + + 0 + Naquele Dia + MPEG audio file + World + + + 0 + Equinocio + MPEG audio file + World + + + 0 + Papelão + MPEG audio file + World + + + 0 + Cuando Eu For Pro Ceu + MPEG audio file + World + + + 0 + Do Nosso Amor + MPEG audio file + World + + + 0 + Borogodo + MPEG audio file + World + + + 0 + Cafezinho + MPEG audio file + World + + + 0 + Enquanto O Dia Não Vem + MPEG audio file + World + + + + + + + 98 + Judas Priest + + + 125 + 98 + Living After Midnight + + + 0 + The Green Manalishi + MPEG audio file + Metal + + + 0 + Living After Midnight + MPEG audio file + Metal + + + 0 + Breaking The Law (Live) + MPEG audio file + Metal + + + 0 + Hot Rockin' + MPEG audio file + Metal + + + 0 + Heading Out To The Highway (Live) + MPEG audio file + Metal + + + 0 + The Hellion + MPEG audio file + Metal + + + 0 + Electric Eye + MPEG audio file + Metal + + + 0 + You've Got Another Thing Comin' + MPEG audio file + Metal + + + 0 + Turbo Lover + MPEG audio file + Metal + + + 0 + Freewheel Burning + MPEG audio file + Metal + + + 0 + Some Heads Are Gonna Roll + MPEG audio file + Metal + + + 0 + Metal Meltdown + MPEG audio file + Metal + + + 0 + Ram It Down + MPEG audio file + Metal + + + 0 + Diamonds And Rust (Live) + MPEG audio file + Metal + + + 0 + Victim Of Change (Live) + MPEG audio file + Metal + + + 0 + Tyrant (Live) + MPEG audio file + Metal + + + + + + + 99 + Legião Urbana + + + 139 + 99 + A TempestadeTempestade Ou O Livro Dos Dias + + + 0 + Natália + MPEG audio file + Latin + + + 0 + L'Avventura + MPEG audio file + Latin + + + 0 + Música De Trabalho + MPEG audio file + Latin + + + 0 + Longe Do Meu Lado + MPEG audio file + Latin + + + 0 + A Via Láctea + MPEG audio file + Latin + + + 0 + Música Ambiente + MPEG audio file + Latin + + + 0 + Aloha + MPEG audio file + Latin + + + 0 + Soul Parsifal + MPEG audio file + Latin + + + 0 + Dezesseis + MPEG audio file + Latin + + + 0 + Mil Pedaços + MPEG audio file + Latin + + + 0 + Leila + MPEG audio file + Latin + + + 0 + 1º De Julho + MPEG audio file + Latin + + + 0 + Esperando Por Mim + MPEG audio file + Latin + + + 0 + Quando Você Voltar + MPEG audio file + Latin + + + 0 + O Livro Dos Dias + MPEG audio file + Latin + + + + + 140 + 99 + Mais Do Mesmo + + + 0 + Será + MPEG audio file + Latin + + + 0 + Ainda É Cedo + MPEG audio file + Latin + + + 0 + Geração Coca-Cola + MPEG audio file + Latin + + + 0 + Eduardo E Mônica + MPEG audio file + Latin + + + 0 + Tempo Perdido + MPEG audio file + Latin + + + 0 + Indios + MPEG audio file + Latin + + + 0 + Que País É Este + MPEG audio file + Latin + + + 0 + Faroeste Caboclo + MPEG audio file + Latin + + + 0 + Há Tempos + MPEG audio file + Latin + + + 0 + Pais E Filhos + MPEG audio file + Latin + + + 0 + Meninos E Meninas + MPEG audio file + Latin + + + 0 + Vento No Litoral + MPEG audio file + Latin + + + 0 + Perfeição + MPEG audio file + Latin + + + 0 + Giz + MPEG audio file + Latin + + + 0 + Dezesseis + MPEG audio file + Latin + + + 0 + Antes Das Seis + MPEG audio file + Latin + + + + + + + 100 + Lenny Kravitz + + + 141 + 100 + Greatest Hits + + + 0 + Still Of The Night + MPEG audio file + Metal + + + 0 + Here I Go Again + MPEG audio file + Metal + + + 0 + Is This Love + MPEG audio file + Metal + + + 0 + Love Ain't No Stranger + MPEG audio file + Metal + + + 0 + Looking For Love + MPEG audio file + Metal + + + 0 + Now You're Gone + MPEG audio file + Metal + + + 0 + Slide It In + MPEG audio file + Metal + + + 0 + Slow An' Easy + MPEG audio file + Metal + + + 0 + Judgement Day + MPEG audio file + Metal + + + 0 + You're Gonna Break My Hart Again + MPEG audio file + Metal + + + 0 + The Deeper The Love + MPEG audio file + Metal + + + 0 + Crying In The Rain + MPEG audio file + Metal + + + 0 + Fool For Your Loving + MPEG audio file + Metal + + + 0 + Sweet Lady Luck + MPEG audio file + Metal + + + 0 + Are You Gonna Go My Way + MPEG audio file + Rock + + + 0 + Fly Away + MPEG audio file + Rock + + + 0 + Rock And Roll Is Dead + MPEG audio file + Rock + + + 0 + Again + MPEG audio file + Rock + + + 0 + It Ain't Over 'Til It's Over + MPEG audio file + Rock + + + 0 + Can't Get You Off My Mind + MPEG audio file + Rock + + + 0 + Mr. Cab Driver + MPEG audio file + Rock + + + 0 + American Woman + MPEG audio file + Rock + + + 0 + Stand By My Woman + MPEG audio file + Rock + + + 0 + Always On The Run + MPEG audio file + Rock + + + 0 + Heaven Help + MPEG audio file + Rock + + + 0 + I Belong To You + MPEG audio file + Rock + + + 0 + Believe + MPEG audio file + Rock + + + 0 + Let Love Rule + MPEG audio file + Rock + + + 0 + Black Velveteen + MPEG audio file + Rock + + + 0 + Johnny B. Goode + MPEG audio file + Reggae + + + 0 + Don't Look Back + MPEG audio file + Reggae + + + 0 + Jah Seh No + MPEG audio file + Reggae + + + 0 + I'm The Toughest + MPEG audio file + Reggae + + + 0 + Nothing But Love + MPEG audio file + Reggae + + + 0 + Buk-In-Hamm Palace + MPEG audio file + Reggae + + + 0 + Bush Doctor + MPEG audio file + Reggae + + + 0 + Wanted Dread And Alive + MPEG audio file + Reggae + + + 0 + Mystic Man + MPEG audio file + Reggae + + + 0 + Coming In Hot + MPEG audio file + Reggae + + + 0 + Pick Myself Up + MPEG audio file + Reggae + + + 0 + Crystal Ball + MPEG audio file + Reggae + + + 0 + Equal Rights Downpresser Man + MPEG audio file + Reggae + + + 0 + Holding Back The Years + MPEG audio file + Rock + + + 0 + Money's Too Tight To Mention + MPEG audio file + Rock + + + 0 + The Right Thing + MPEG audio file + Rock + + + 0 + It's Only Love + MPEG audio file + Rock + + + 0 + A New Flame + MPEG audio file + Rock + + + 0 + You've Got It + MPEG audio file + Rock + + + 0 + If You Don't Know Me By Now + MPEG audio file + Rock + + + 0 + Stars + MPEG audio file + Rock + + + 0 + Something Got Me Started + MPEG audio file + Rock + + + 0 + Thrill Me + MPEG audio file + Rock + + + 0 + Your Mirror + MPEG audio file + Rock + + + 0 + For Your Babies + MPEG audio file + Rock + + + 0 + So Beautiful + MPEG audio file + Rock + + + 0 + Angel + MPEG audio file + Rock + + + 0 + Fairground + MPEG audio file + Rock + + + + + + + 101 + Lulu Santos + + + 142 + 101 + Lulu Santos - RCA 100 Anos De Música - Álbum 01 + + + 0 + Assim Caminha A Humanidade + MPEG audio file + Latin + + + 0 + Um Pro Outro + MPEG audio file + Latin + + + 0 + Casa + MPEG audio file + Latin + + + 0 + Condição + MPEG audio file + Latin + + + 0 + Satisfação + MPEG audio file + Latin + + + 0 + Brumário + MPEG audio file + Latin + + + 0 + Sábado À Noite + MPEG audio file + Latin + + + 0 + A Cura + MPEG audio file + Latin + + + 0 + Atrás Do Trio Elétrico + MPEG audio file + Latin + + + 0 + Tudo Bem + MPEG audio file + Latin + + + 0 + Toda Forma De Amor + MPEG audio file + Latin + + + 0 + Sereia + MPEG audio file + Latin + + + 0 + Se Você Pensa + MPEG audio file + Latin + + + 0 + Lá Vem O Sol (Here Comes The Sun) + MPEG audio file + Latin + + + + + 143 + 101 + Lulu Santos - RCA 100 Anos De Música - Álbum 02 + + + 0 + Honolulu + MPEG audio file + Latin + + + 0 + Dancin´Days + MPEG audio file + Latin + + + 0 + Aviso Aos Navegantes + MPEG audio file + Latin + + + 0 + Hyperconectividade + MPEG audio file + Latin + + + 0 + O Descobridor Dos Sete Mares + MPEG audio file + Latin + + + 0 + Um Certo Alguém + MPEG audio file + Latin + + + 0 + Fullgás + MPEG audio file + Latin + + + 0 + Aquilo + MPEG audio file + Latin + + + 0 + Senta A Pua + MPEG audio file + Latin + + + 0 + Ro-Que-Se-Da-Ne + MPEG audio file + Latin + + + 0 + Tudo Igual + MPEG audio file + Latin + + + 0 + Fogo De Palha + MPEG audio file + Latin + + + 0 + Assaltaram A Gramática + MPEG audio file + Latin + + + 0 + O Último Romântico (Ao Vivo) + MPEG audio file + Latin + + + + + + + 102 + Marillion + + + 144 + 102 + Misplaced Childhood + + + 0 + White Feather + MPEG audio file + Rock + + + 0 + Pseudo Silk Kimono + MPEG audio file + Rock + + + 0 + Kayleigh + MPEG audio file + Rock + + + 0 + Lavender + MPEG audio file + Rock + + + 0 + Bitter Suite: Brief Encounter / Lost Weekend / Blue Angel + MPEG audio file + Rock + + + 0 + Heart Of Lothian: Wide Boy / Curtain Call + MPEG audio file + Rock + + + 0 + Waterhole (Expresso Bongo) + MPEG audio file + Rock + + + 0 + Lords Of The Backstage + MPEG audio file + Rock + + + 0 + Blind Curve: Vocal Under A Bloodlight / Passing Strangers / Mylo / Perimeter Walk / Threshold + MPEG audio file + Rock + + + 0 + Childhoods End? + MPEG audio file + Rock + + + + + + + 103 + Marisa Monte + + + 145 + 103 + Barulhinho Bom + + + 0 + Arrepio + MPEG audio file + Latin + + + 0 + Magamalabares + MPEG audio file + Latin + + + 0 + Chuva No Brejo + MPEG audio file + Latin + + + 0 + Cérebro Eletrônico + MPEG audio file + Latin + + + 0 + Tempos Modernos + MPEG audio file + Latin + + + 0 + Maraçá + MPEG audio file + Latin + + + 0 + Blanco + MPEG audio file + Latin + + + 0 + Panis Et Circenses + MPEG audio file + Latin + + + 0 + De Noite Na Cama + MPEG audio file + Latin + + + 0 + Beija Eu + MPEG audio file + Latin + + + 0 + Give Me Love + MPEG audio file + Latin + + + 0 + Ainda Lembro + MPEG audio file + Latin + + + 0 + A Menina Dança + MPEG audio file + Latin + + + 0 + Dança Da Solidão + MPEG audio file + Latin + + + 0 + Ao Meu Redor + MPEG audio file + Latin + + + 0 + Bem Leve + MPEG audio file + Latin + + + 0 + Segue O Seco + MPEG audio file + Latin + + + 0 + O Xote Das Meninas + MPEG audio file + Latin + + + + + + + 104 + Marvin Gaye + + + 146 + 104 + Seek And Shall Find: More Of The Best (1963-1981) + + + 0 + Wherever I Lay My Hat + MPEG audio file + R&B/Soul + + + 0 + Get My Hands On Some Lovin' + MPEG audio file + R&B/Soul + + + 0 + No Good Without You + MPEG audio file + R&B/Soul + + + 0 + You've Been A Long Time Coming + MPEG audio file + R&B/Soul + + + 0 + When I Had Your Love + MPEG audio file + R&B/Soul + + + 0 + You're What's Happening (In The World Today) + MPEG audio file + R&B/Soul + + + 0 + Loving You Is Sweeter Than Ever + MPEG audio file + R&B/Soul + + + 0 + It's A Bitter Pill To Swallow + MPEG audio file + R&B/Soul + + + 0 + Seek And You Shall Find + MPEG audio file + R&B/Soul + + + 0 + Gonna Keep On Tryin' Till I Win Your Love + MPEG audio file + R&B/Soul + + + 0 + Gonna Give Her All The Love I've Got + MPEG audio file + R&B/Soul + + + 0 + I Wish It Would Rain + MPEG audio file + R&B/Soul + + + 0 + Abraham, Martin And John + MPEG audio file + R&B/Soul + + + 0 + Save The Children + MPEG audio file + R&B/Soul + + + 0 + You Sure Love To Ball + MPEG audio file + R&B/Soul + + + 0 + Ego Tripping Out + MPEG audio file + R&B/Soul + + + 0 + Praise + MPEG audio file + R&B/Soul + + + 0 + Heavy Love Affair + MPEG audio file + R&B/Soul + + + + + + + 105 + Men At Work + + + 147 + 105 + The Best Of Men At Work + + + 0 + Down Under + MPEG audio file + Rock + + + 0 + Overkill + MPEG audio file + Rock + + + 0 + Be Good Johnny + MPEG audio file + Rock + + + 0 + Everything I Need + MPEG audio file + Rock + + + 0 + Down by the Sea + MPEG audio file + Rock + + + 0 + Who Can It Be Now? + MPEG audio file + Rock + + + 0 + It's a Mistake + MPEG audio file + Rock + + + 0 + Dr. Heckyll & Mr. Jive + MPEG audio file + Rock + + + 0 + Shakes and Ladders + MPEG audio file + Rock + + + 0 + No Sign of Yesterday + MPEG audio file + Rock + + + + + + + 106 + Motörhead + + + 160 + 106 + Ace Of Spades + + + 0 + Ace Of Spades + MPEG audio file + Metal + + + 0 + Love Me Like A Reptile + MPEG audio file + Metal + + + 0 + Shoot You In The Back + MPEG audio file + Metal + + + 0 + Live To Win + MPEG audio file + Metal + + + 0 + Fast And Loose + MPEG audio file + Metal + + + 0 + (We Are) The Road Crew + MPEG audio file + Metal + + + 0 + Fire Fire + MPEG audio file + Metal + + + 0 + Jailbait + MPEG audio file + Metal + + + 0 + Dance + MPEG audio file + Metal + + + 0 + Bite The Bullet + MPEG audio file + Metal + + + 0 + The Chase Is Better Than The Catch + MPEG audio file + Metal + + + 0 + The Hammer + MPEG audio file + Metal + + + 0 + Dirty Love + MPEG audio file + Metal + + + 0 + Please Don't Touch + MPEG audio file + Metal + + + 0 + Emergency + MPEG audio file + Metal + + + + + + + 107 + Motörhead & Girlschool + + + + 108 + Mônica Marianno + + + 161 + 108 + Demorou... + + + 0 + Kir Royal + MPEG audio file + World + + + 0 + O Que Vai Em Meu Coração + MPEG audio file + World + + + 0 + Aos Leões + MPEG audio file + World + + + 0 + Dois Índios + MPEG audio file + World + + + 0 + Noite Negra + MPEG audio file + World + + + 0 + Beijo do Olhar + MPEG audio file + World + + + 0 + É Fogo + MPEG audio file + World + + + 0 + Já Foi + MPEG audio file + World + + + 0 + Só Se For Pelo Cabelo + MPEG audio file + World + + + 0 + No Clima + MPEG audio file + World + + + 0 + A Moça e a Chuva + MPEG audio file + World + + + 0 + Demorou! + MPEG audio file + World + + + + + + + 109 + Mötley Crüe + + + 162 + 109 + Motley Crue Greatest Hits + + + 0 + Bitter Pill + MPEG audio file + Metal + + + 0 + Enslaved + MPEG audio file + Metal + + + 0 + Girls, Girls, Girls + MPEG audio file + Metal + + + 0 + Kickstart My Heart + MPEG audio file + Metal + + + 0 + Wild Side + MPEG audio file + Metal + + + 0 + Glitter + MPEG audio file + Metal + + + 0 + Dr. Feelgood + MPEG audio file + Metal + + + 0 + Same Ol' Situation + MPEG audio file + Metal + + + 0 + Home Sweet Home + MPEG audio file + Metal + + + 0 + Afraid + MPEG audio file + Metal + + + 0 + Don't Go Away Mad (Just Go Away) + MPEG audio file + Metal + + + 0 + Without You + MPEG audio file + Metal + + + 0 + Smokin' in The Boys Room + MPEG audio file + Metal + + + 0 + Primal Scream + MPEG audio file + Metal + + + 0 + Too Fast For Love + MPEG audio file + Metal + + + 0 + Looks That Kill + MPEG audio file + Metal + + + 0 + Shout At The Devil + MPEG audio file + Metal + + + + + + + 110 + Nirvana + + + 163 + 110 + From The Muddy Banks Of The Wishkah [Live] + + + 0 + Intro + MPEG audio file + Rock + + + 0 + School + MPEG audio file + Rock + + + 0 + Drain You + MPEG audio file + Rock + + + 0 + Aneurysm + MPEG audio file + Rock + + + 0 + Smells Like Teen Spirit + MPEG audio file + Rock + + + 0 + Been A Son + MPEG audio file + Rock + + + 0 + Lithium + MPEG audio file + Rock + + + 0 + Sliver + MPEG audio file + Rock + + + 0 + Spank Thru + MPEG audio file + Rock + + + 0 + Scentless Apprentice + MPEG audio file + Rock + + + 0 + Heart-Shaped Box + MPEG audio file + Rock + + + 0 + Milk It + MPEG audio file + Rock + + + 0 + Negative Creep + MPEG audio file + Rock + + + 0 + Polly + MPEG audio file + Rock + + + 0 + Breed + MPEG audio file + Rock + + + 0 + Tourette's + MPEG audio file + Rock + + + 0 + Blew + MPEG audio file + Rock + + + + + 164 + 110 + Nevermind + + + 0 + Smells Like Teen Spirit + MPEG audio file + Rock + + + 0 + In Bloom + MPEG audio file + Rock + + + 0 + Come As You Are + MPEG audio file + Rock + + + 0 + Breed + MPEG audio file + Rock + + + 0 + Lithium + MPEG audio file + Rock + + + 0 + Polly + MPEG audio file + Rock + + + 0 + Territorial Pissings + MPEG audio file + Rock + + + 0 + Drain You + MPEG audio file + Rock + + + 0 + Lounge Act + MPEG audio file + Rock + + + 0 + Stay Away + MPEG audio file + Rock + + + 0 + On A Plain + MPEG audio file + Rock + + + 0 + Something In The Way + MPEG audio file + Rock + + + + + + + 111 + O Terço + + + 165 + 111 + Compositores + + + 0 + Time + MPEG audio file + Rock + + + 0 + P.S.Apareça + MPEG audio file + Rock + + + 0 + Sangue Latino + MPEG audio file + Rock + + + 0 + Folhas Secas + MPEG audio file + Rock + + + 0 + Poeira + MPEG audio file + Rock + + + 0 + Mágica + MPEG audio file + Rock + + + 0 + Quem Mata A Mulher Mata O Melhor + MPEG audio file + Rock + + + 0 + Mundaréu + MPEG audio file + Rock + + + 0 + O Braço Da Minha Guitarra + MPEG audio file + Rock + + + 0 + Deus + MPEG audio file + Rock + + + 0 + Mãe Terra + MPEG audio file + Rock + + + 0 + Às Vezes + MPEG audio file + Rock + + + 0 + Menino De Rua + MPEG audio file + Rock + + + 0 + Prazer E Fé + MPEG audio file + Rock + + + 0 + Elza + MPEG audio file + Rock + + + + + + + 112 + Olodum + + + 166 + 112 + Olodum + + + 0 + Requebra + MPEG audio file + Latin + + + 0 + Nossa Gente (Avisa Là) + MPEG audio file + Latin + + + 0 + Olodum - Alegria Geral + MPEG audio file + Latin + + + 0 + Madagáscar Olodum + MPEG audio file + Latin + + + 0 + Faraó Divindade Do Egito + MPEG audio file + Latin + + + 0 + Todo Amor (Asas Da Liberdade) + MPEG audio file + Latin + + + 0 + Denúncia + MPEG audio file + Latin + + + 0 + Olodum, A Banda Do Pelô + MPEG audio file + Latin + + + 0 + Cartao Postal + MPEG audio file + Latin + + + 0 + Jeito Faceiro + MPEG audio file + Latin + + + 0 + Revolta Olodum + MPEG audio file + Latin + + + 0 + Reggae Odoyá + MPEG audio file + Latin + + + 0 + Protesto Do Olodum (Ao Vivo) + MPEG audio file + Latin + + + 0 + Olodum - Smile (Instrumental) + MPEG audio file + Latin + + + + + + + 113 + Os Paralamas Do Sucesso + + + 167 + 113 + Acústico MTV + + + 0 + Vulcão Dub - Fui Eu + MPEG audio file + Latin + + + 0 + O Trem Da Juventude + MPEG audio file + Latin + + + 0 + Manguetown + MPEG audio file + Latin + + + 0 + Um Amor, Um Lugar + MPEG audio file + Latin + + + 0 + Bora-Bora + MPEG audio file + Latin + + + 0 + Vai Valer + MPEG audio file + Latin + + + 0 + I Feel Good (I Got You) - Sossego + MPEG audio file + Latin + + + 0 + Uns Dias + MPEG audio file + Latin + + + 0 + Sincero Breu + MPEG audio file + Latin + + + 0 + Meu Erro + MPEG audio file + Latin + + + 0 + Selvagem + MPEG audio file + Latin + + + 0 + Brasília 5:31 + MPEG audio file + Latin + + + 0 + Tendo A Lua + MPEG audio file + Latin + + + 0 + Que País É Este + MPEG audio file + Latin + + + 0 + Navegar Impreciso + MPEG audio file + Latin + + + 0 + Feira Moderna + MPEG audio file + Latin + + + 0 + Tequila - Lourinha Bombril (Parate Y Mira) + MPEG audio file + Latin + + + 0 + Vamo Batê Lata + MPEG audio file + Latin + + + 0 + Life During Wartime + MPEG audio file + Latin + + + 0 + Nebulosa Do Amor + MPEG audio file + Latin + + + 0 + Caleidoscópio + MPEG audio file + Latin + + + + + 168 + 113 + Arquivo II + + + 0 + Trac Trac + MPEG audio file + Latin + + + 0 + Tendo A Lua + MPEG audio file + Latin + + + 0 + Mensagen De Amor (2000) + MPEG audio file + Latin + + + 0 + Lourinha Bombril + MPEG audio file + Latin + + + 0 + La Bella Luna + MPEG audio file + Latin + + + 0 + Busca Vida + MPEG audio file + Latin + + + 0 + Uma Brasileira + MPEG audio file + Latin + + + 0 + Luis Inacio (300 Picaretas) + MPEG audio file + Latin + + + 0 + Saber Amar + MPEG audio file + Latin + + + 0 + Ela Disse Adeus + MPEG audio file + Latin + + + 0 + O Amor Nao Sabe Esperar + MPEG audio file + Latin + + + 0 + Aonde Quer Que Eu Va + MPEG audio file + Latin + + + + + 169 + 113 + Arquivo Os Paralamas Do Sucesso + + + 0 + Caleidoscópio + MPEG audio file + Latin + + + 0 + Óculos + MPEG audio file + Latin + + + 0 + Cinema Mudo + MPEG audio file + Latin + + + 0 + Alagados + MPEG audio file + Latin + + + 0 + Lanterna Dos Afogados + MPEG audio file + Latin + + + 0 + Melô Do Marinheiro + MPEG audio file + Latin + + + 0 + Vital E Sua Moto + MPEG audio file + Latin + + + 0 + O Beco + MPEG audio file + Latin + + + 0 + Meu Erro + MPEG audio file + Latin + + + 0 + Perplexo + MPEG audio file + Latin + + + 0 + Me Liga + MPEG audio file + Latin + + + 0 + Quase Um Segundo + MPEG audio file + Latin + + + 0 + Selvagem + MPEG audio file + Latin + + + 0 + Romance Ideal + MPEG audio file + Latin + + + 0 + Será Que Vai Chover? + MPEG audio file + Latin + + + 0 + SKA + MPEG audio file + Latin + + + + + + + 114 + Ozzy Osbourne + + + 170 + 114 + Bark at the Moon (Remastered) + + + 0 + Bark at the Moon + Protected AAC audio file + Rock + + + + + 171 + 114 + Blizzard of Ozz + + + 0 + I Don't Know + Protected AAC audio file + Rock + + + 0 + Crazy Train + Protected AAC audio file + Rock + + + + + 172 + 114 + Diary of a Madman (Remastered) + + + 0 + Flying High Again + Protected AAC audio file + Rock + + + + + 173 + 114 + No More Tears (Remastered) + + + 0 + Mama, I'm Coming Home + Protected AAC audio file + Rock + + + 0 + No More Tears + Protected AAC audio file + Rock + + + + + 174 + 114 + Tribute + + + 0 + I Don't Know + MPEG audio file + Metal + + + 0 + Crazy Train + MPEG audio file + Metal + + + 0 + Believer + MPEG audio file + Metal + + + 0 + Mr. Crowley + MPEG audio file + Metal + + + 0 + Flying High Again + MPEG audio file + Metal + + + 0 + Relvelation (Mother Earth) + MPEG audio file + Metal + + + 0 + Steal Away (The Night) + MPEG audio file + Metal + + + 0 + Suicide Solution (With Guitar Solo) + MPEG audio file + Metal + + + 0 + Iron Man + MPEG audio file + Metal + + + 0 + Children Of The Grave + MPEG audio file + Metal + + + 0 + Paranoid + MPEG audio file + Metal + + + 0 + Goodbye To Romance + MPEG audio file + Metal + + + 0 + No Bone Movies + MPEG audio file + Metal + + + 0 + Dee + MPEG audio file + Metal + + + + + 256 + 114 + Speak of the Devil + + + 0 + Sympton of the Universe + Protected AAC audio file + Rock + + + 0 + Snowblind + Protected AAC audio file + Rock + + + 0 + Black Sabbath + Protected AAC audio file + Rock + + + 0 + Fairies Wear Boots + Protected AAC audio file + Rock + + + 0 + War Pigs + Protected AAC audio file + Rock + + + 0 + The Wizard + Protected AAC audio file + Rock + + + 0 + N.I.B. + Protected AAC audio file + Rock + + + 0 + Sweet Leaf + Protected AAC audio file + Rock + + + 0 + Never Say Die + Protected AAC audio file + Rock + + + 0 + Sabbath, Bloody Sabbath + Protected AAC audio file + Rock + + + 0 + Iron Man/Children of the Grave + Protected AAC audio file + Rock + + + 0 + Paranoid + Protected AAC audio file + Rock + + + + + + + 115 + Page & Plant + + + 175 + 115 + Walking Into Clarksdale + + + 0 + Shining In The Light + MPEG audio file + Rock + + + 0 + When The World Was Young + MPEG audio file + Rock + + + 0 + Upon A Golden Horse + MPEG audio file + Rock + + + 0 + Blue Train + MPEG audio file + Rock + + + 0 + Please Read The Letter + MPEG audio file + Rock + + + 0 + Most High + MPEG audio file + Rock + + + 0 + Heart In Your Hand + MPEG audio file + Rock + + + 0 + Walking Into Clarksdale + MPEG audio file + Rock + + + 0 + Burning Up + MPEG audio file + Rock + + + 0 + When I Was A Child + MPEG audio file + Rock + + + 0 + House Of Love + MPEG audio file + Rock + + + 0 + Sons Of Freedom + MPEG audio file + Rock + + + + + + + 116 + Passengers + + + 176 + 116 + Original Soundtracks 1 + + + 0 + United Colours + MPEG audio file + Soundtrack + + + 0 + Slug + MPEG audio file + Soundtrack + + + 0 + Your Blue Room + MPEG audio file + Soundtrack + + + 0 + Always Forever Now + MPEG audio file + Soundtrack + + + 0 + A Different Kind Of Blue + MPEG audio file + Soundtrack + + + 0 + Beach Sequence + MPEG audio file + Soundtrack + + + 0 + Miss Sarajevo + MPEG audio file + Soundtrack + + + 0 + Ito Okashi + MPEG audio file + Soundtrack + + + 0 + One Minute Warning + MPEG audio file + Soundtrack + + + 0 + Corpse (These Chains Are Way Too Long) + MPEG audio file + Soundtrack + + + 0 + Elvis Ate America + MPEG audio file + Soundtrack + + + 0 + Plot 180 + MPEG audio file + Soundtrack + + + 0 + Theme From The Swan + MPEG audio file + Soundtrack + + + 0 + Theme From Let's Go Native + MPEG audio file + Soundtrack + + + + + + + 117 + Paul D'Ianno + + + 177 + 117 + The Beast Live + + + 0 + Wrathchild + MPEG audio file + Rock + + + 0 + Killers + MPEG audio file + Rock + + + 0 + Prowler + MPEG audio file + Rock + + + 0 + Murders In The Rue Morgue + MPEG audio file + Rock + + + 0 + Women In Uniform + MPEG audio file + Rock + + + 0 + Remember Tomorrow + MPEG audio file + Rock + + + 0 + Sanctuary + MPEG audio file + Rock + + + 0 + Running Free + MPEG audio file + Rock + + + 0 + Phantom Of The Opera + MPEG audio file + Rock + + + 0 + Iron Maiden + MPEG audio file + Rock + + + + + + + 118 + Pearl Jam + + + 178 + 118 + Live On Two Legs [Live] + + + 0 + Corduroy + MPEG audio file + Rock + + + 0 + Given To Fly + MPEG audio file + Rock + + + 0 + Hail, Hail + MPEG audio file + Rock + + + 0 + Daughter + MPEG audio file + Rock + + + 0 + Elderly Woman Behind The Counter In A Small Town + MPEG audio file + Rock + + + 0 + Untitled + MPEG audio file + Rock + + + 0 + MFC + MPEG audio file + Rock + + + 0 + Go + MPEG audio file + Rock + + + 0 + Red Mosquito + MPEG audio file + Rock + + + 0 + Even Flow + MPEG audio file + Rock + + + 0 + Off He Goes + MPEG audio file + Rock + + + 0 + Nothingman + MPEG audio file + Rock + + + 0 + Do The Evolution + MPEG audio file + Rock + + + 0 + Better Man + MPEG audio file + Rock + + + 0 + Black + MPEG audio file + Rock + + + 0 + F*Ckin' Up + MPEG audio file + Rock + + + + + 179 + 118 + Pearl Jam + + + 0 + Life Wasted + MPEG audio file + Alternative & Punk + + + 0 + World Wide Suicide + MPEG audio file + Alternative & Punk + + + 0 + Comatose + MPEG audio file + Alternative & Punk + + + 0 + Severed Hand + MPEG audio file + Alternative & Punk + + + 0 + Marker In The Sand + MPEG audio file + Alternative & Punk + + + 0 + Parachutes + MPEG audio file + Alternative & Punk + + + 0 + Unemployable + MPEG audio file + Alternative & Punk + + + 0 + Big Wave + MPEG audio file + Alternative & Punk + + + 0 + Gone + MPEG audio file + Alternative & Punk + + + 0 + Wasted Reprise + MPEG audio file + Alternative & Punk + + + 0 + Army Reserve + MPEG audio file + Alternative & Punk + + + 0 + Come Back + MPEG audio file + Alternative & Punk + + + 0 + Inside Job + MPEG audio file + Alternative & Punk + + + + + 180 + 118 + Riot Act + + + 0 + Can't Keep + MPEG audio file + Rock + + + 0 + Save You + MPEG audio file + Rock + + + 0 + Love Boat Captain + MPEG audio file + Rock + + + 0 + Cropduster + MPEG audio file + Rock + + + 0 + Ghost + MPEG audio file + Rock + + + 0 + I Am Mine + MPEG audio file + Rock + + + 0 + Thumbing My Way + MPEG audio file + Rock + + + 0 + You Are + MPEG audio file + Rock + + + 0 + Get Right + MPEG audio file + Rock + + + 0 + Green Disease + MPEG audio file + Rock + + + 0 + Help Help + MPEG audio file + Rock + + + 0 + Bushleager + MPEG audio file + Rock + + + 0 + 1/2 Full + MPEG audio file + Rock + + + 0 + Arc + MPEG audio file + Rock + + + 0 + All or None + MPEG audio file + Rock + + + + + 181 + 118 + Ten + + + 0 + Once + MPEG audio file + Rock + + + 0 + Evenflow + MPEG audio file + Rock + + + 0 + Alive + MPEG audio file + Rock + + + 0 + Why Go + MPEG audio file + Rock + + + 0 + Black + MPEG audio file + Rock + + + 0 + Jeremy + MPEG audio file + Rock + + + 0 + Oceans + MPEG audio file + Rock + + + 0 + Porch + MPEG audio file + Rock + + + 0 + Garden + MPEG audio file + Rock + + + 0 + Deep + MPEG audio file + Rock + + + 0 + Release + MPEG audio file + Rock + + + + + 182 + 118 + Vs. + + + 0 + Go + MPEG audio file + Rock + + + 0 + Animal + MPEG audio file + Rock + + + 0 + Daughter + MPEG audio file + Rock + + + 0 + Glorified G + MPEG audio file + Rock + + + 0 + Dissident + MPEG audio file + Rock + + + 0 + W.M.A. + MPEG audio file + Rock + + + 0 + Blood + MPEG audio file + Rock + + + 0 + Rearviewmirror + MPEG audio file + Rock + + + 0 + Rats + MPEG audio file + Rock + + + 0 + Elderly Woman Behind The Counter In A Small Town + MPEG audio file + Rock + + + 0 + Leash + MPEG audio file + Rock + + + 0 + Indifference + MPEG audio file + Rock + + + + + + + 119 + Peter Tosh + + + + 120 + Pink Floyd + + + 183 + 120 + Dark Side Of The Moon + + + 0 + Speak To Me/Breathe + MPEG audio file + Rock + + + 0 + On The Run + MPEG audio file + Rock + + + 0 + Time + MPEG audio file + Rock + + + 0 + The Great Gig In The Sky + MPEG audio file + Rock + + + 0 + Money + MPEG audio file + Rock + + + 0 + Us And Them + MPEG audio file + Rock + + + 0 + Any Colour You Like + MPEG audio file + Rock + + + 0 + Brain Damage + MPEG audio file + Rock + + + 0 + Eclipse + MPEG audio file + Rock + + + + + + + 121 + Planet Hemp + + + 184 + 121 + Os Cães Ladram Mas A Caravana Não Pára + + + 0 + ZeroVinteUm + MPEG audio file + Hip Hop/Rap + + + 0 + Queimando Tudo + MPEG audio file + Hip Hop/Rap + + + 0 + Hip Hop Rio + MPEG audio file + Hip Hop/Rap + + + 0 + Bossa + MPEG audio file + Hip Hop/Rap + + + 0 + 100% HardCore + MPEG audio file + Hip Hop/Rap + + + 0 + Biruta + MPEG audio file + Hip Hop/Rap + + + 0 + Mão Na Cabeça + MPEG audio file + Hip Hop/Rap + + + 0 + O Bicho Tá Pregando + MPEG audio file + Hip Hop/Rap + + + 0 + Adoled (Ocean) + MPEG audio file + Hip Hop/Rap + + + 0 + Seus Amigos + MPEG audio file + Hip Hop/Rap + + + 0 + Paga Pau + MPEG audio file + Hip Hop/Rap + + + 0 + Rappers Reais + MPEG audio file + Hip Hop/Rap + + + 0 + Nega Do Cabelo Duro + MPEG audio file + Hip Hop/Rap + + + 0 + Hemp Family + MPEG audio file + Hip Hop/Rap + + + 0 + Quem Me Cobrou? + MPEG audio file + Hip Hop/Rap + + + 0 + Se Liga + MPEG audio file + Hip Hop/Rap + + + + + + + 122 + R.E.M. Feat. Kate Pearson + + + 187 + 122 + Out Of Time + + + 0 + Shiny Happy People + MPEG audio file + Alternative & Punk + + + 0 + Me In Honey + MPEG audio file + Alternative & Punk + + + 0 + Radio Song + MPEG audio file + Alternative & Punk + + + 0 + Losing My Religion + MPEG audio file + Alternative & Punk + + + 0 + Low + MPEG audio file + Alternative & Punk + + + 0 + Near Wild Heaven + MPEG audio file + Alternative & Punk + + + 0 + Endgame + MPEG audio file + Alternative & Punk + + + 0 + Belong + MPEG audio file + Alternative & Punk + + + 0 + Half A World Away + MPEG audio file + Alternative & Punk + + + 0 + Texarkana + MPEG audio file + Alternative & Punk + + + 0 + Country Feedback + MPEG audio file + Alternative & Punk + + + + + + + 123 + R.E.M. Feat. KRS-One + + + + 124 + R.E.M. + + + 188 + 124 + Green + + + 0 + Pop Song 89 + MPEG audio file + Alternative & Punk + + + 0 + Get Up + MPEG audio file + Alternative & Punk + + + 0 + You Are The Everything + MPEG audio file + Alternative & Punk + + + 0 + Stand + MPEG audio file + Alternative & Punk + + + 0 + World Leader Pretend + MPEG audio file + Alternative & Punk + + + 0 + The Wrong Child + MPEG audio file + Alternative & Punk + + + 0 + Orange Crush + MPEG audio file + Alternative & Punk + + + 0 + Turn You Inside-Out + MPEG audio file + Alternative & Punk + + + 0 + Hairshirt + MPEG audio file + Alternative & Punk + + + 0 + I Remember California + MPEG audio file + Alternative & Punk + + + 0 + Untitled + MPEG audio file + Alternative & Punk + + + + + 189 + 124 + New Adventures In Hi-Fi + + + 0 + How The West Was Won And Where It Got Us + MPEG audio file + Rock + + + 0 + The Wake-Up Bomb + MPEG audio file + Rock + + + 0 + New Test Leper + MPEG audio file + Rock + + + 0 + Undertow + MPEG audio file + Rock + + + 0 + E-Bow The Letter + MPEG audio file + Rock + + + 0 + Leave + MPEG audio file + Rock + + + 0 + Departure + MPEG audio file + Rock + + + 0 + Bittersweet Me + MPEG audio file + Rock + + + 0 + Be Mine + MPEG audio file + Rock + + + 0 + Binky The Doormat + MPEG audio file + Rock + + + 0 + Zither + MPEG audio file + Rock + + + 0 + So Fast, So Numb + MPEG audio file + Rock + + + 0 + Low Desert + MPEG audio file + Rock + + + 0 + Electrolite + MPEG audio file + Rock + + + + + 190 + 124 + The Best Of R.E.M.: The IRS Years + + + 0 + Carnival Of Sorts + MPEG audio file + Alternative & Punk + + + 0 + Radio Free Aurope + MPEG audio file + Alternative & Punk + + + 0 + Perfect Circle + MPEG audio file + Alternative & Punk + + + 0 + Talk About The Passion + MPEG audio file + Alternative & Punk + + + 0 + So Central Rain + MPEG audio file + Alternative & Punk + + + 0 + Don't Go Back To Rockville + MPEG audio file + Alternative & Punk + + + 0 + Pretty Persuasion + MPEG audio file + Alternative & Punk + + + 0 + Green Grow The Rushes + MPEG audio file + Alternative & Punk + + + 0 + Can't Get There From Here + MPEG audio file + Alternative & Punk + + + 0 + Driver 8 + MPEG audio file + Alternative & Punk + + + 0 + Fall On Me + MPEG audio file + Alternative & Punk + + + 0 + I Believe + MPEG audio file + Alternative & Punk + + + 0 + Cuyahoga + MPEG audio file + Alternative & Punk + + + 0 + The One I Love + MPEG audio file + Alternative & Punk + + + 0 + The Finest Worksong + MPEG audio file + Alternative & Punk + + + 0 + It's The End Of The World As We Know It (And I Feel Fine) + MPEG audio file + Alternative & Punk + + + + + + + 125 + Raimundos + + + 191 + 125 + Cesta Básica + + + 0 + Infeliz Natal + MPEG audio file + Alternative & Punk + + + 0 + A Sua + MPEG audio file + Alternative & Punk + + + 0 + Papeau Nuky Doe + MPEG audio file + Alternative & Punk + + + 0 + Merry Christmas + MPEG audio file + Alternative & Punk + + + 0 + Bodies + MPEG audio file + Alternative & Punk + + + 0 + Puteiro Em João Pessoa + MPEG audio file + Alternative & Punk + + + 0 + Esporrei Na Manivela + MPEG audio file + Alternative & Punk + + + 0 + Bê-a-Bá + MPEG audio file + Alternative & Punk + + + 0 + Cajueiro + MPEG audio file + Alternative & Punk + + + 0 + Palhas Do Coqueiro + MPEG audio file + Alternative & Punk + + + + + + + 126 + Raul Seixas + + + 192 + 126 + Raul Seixas + + + 0 + Maluco Beleza + MPEG audio file + Rock + + + 0 + O Dia Em Que A Terra Parou + MPEG audio file + Rock + + + 0 + No Fundo Do Quintal Da Escola + MPEG audio file + Rock + + + 0 + O Segredo Do Universo + MPEG audio file + Rock + + + 0 + As Profecias + MPEG audio file + Rock + + + 0 + Mata Virgem + MPEG audio file + Rock + + + 0 + Sapato 36 + MPEG audio file + Rock + + + 0 + Todo Mundo Explica + MPEG audio file + Rock + + + 0 + Que Luz É Essa + MPEG audio file + Rock + + + 0 + Diamante De Mendigo + MPEG audio file + Rock + + + 0 + Negócio É + MPEG audio file + Rock + + + 0 + Muita Estrela, Pouca Constelação + MPEG audio file + Rock + + + 0 + Século XXI + MPEG audio file + Rock + + + 0 + Rock Das Aranhas (Ao Vivo) (Live) + MPEG audio file + Rock + + + + + + + 127 + Red Hot Chili Peppers + + + 193 + 127 + Blood Sugar Sex Magik + + + 0 + The Power Of Equality + MPEG audio file + Alternative & Punk + + + 0 + If You Have To Ask + MPEG audio file + Alternative & Punk + + + 0 + Breaking The Girl + MPEG audio file + Alternative & Punk + + + 0 + Funky Monks + MPEG audio file + Alternative & Punk + + + 0 + Suck My Kiss + MPEG audio file + Alternative & Punk + + + 0 + I Could Have Lied + MPEG audio file + Alternative & Punk + + + 0 + Mellowship Slinky In B Major + MPEG audio file + Alternative & Punk + + + 0 + The Righteous & The Wicked + MPEG audio file + Alternative & Punk + + + 0 + Give It Away + MPEG audio file + Alternative & Punk + + + 0 + Blood Sugar Sex Magik + MPEG audio file + Alternative & Punk + + + 0 + Under The Bridge + MPEG audio file + Alternative & Punk + + + 0 + Naked In The Rain + MPEG audio file + Alternative & Punk + + + 0 + Apache Rose Peacock + MPEG audio file + Alternative & Punk + + + 0 + The Greeting Song + MPEG audio file + Alternative & Punk + + + 0 + My Lovely Man + MPEG audio file + Alternative & Punk + + + 0 + Sir Psycho Sexy + MPEG audio file + Alternative & Punk + + + 0 + They're Red Hot + MPEG audio file + Alternative & Punk + + + + + 194 + 127 + By The Way + + + 0 + By The Way + MPEG audio file + Rock + + + 0 + Universally Speaking + MPEG audio file + Rock + + + 0 + This Is The Place + MPEG audio file + Rock + + + 0 + Dosed + MPEG audio file + Rock + + + 0 + Don't Forget Me + MPEG audio file + Rock + + + 0 + The Zephyr Song + MPEG audio file + Rock + + + 0 + Can't Stop + MPEG audio file + Rock + + + 0 + I Could Die For You + MPEG audio file + Rock + + + 0 + Midnight + MPEG audio file + Rock + + + 0 + Throw Away Your Television + MPEG audio file + Rock + + + 0 + Cabron + MPEG audio file + Rock + + + 0 + Tear + MPEG audio file + Rock + + + 0 + On Mercury + MPEG audio file + Rock + + + 0 + Minor Thing + MPEG audio file + Rock + + + 0 + Warm Tape + MPEG audio file + Rock + + + 0 + Venice Queen + MPEG audio file + Rock + + + + + 195 + 127 + Californication + + + 0 + Around The World + MPEG audio file + Rock + + + 0 + Parallel Universe + MPEG audio file + Rock + + + 0 + Scar Tissue + MPEG audio file + Rock + + + 0 + Otherside + MPEG audio file + Rock + + + 0 + Get On Top + MPEG audio file + Rock + + + 0 + Californication + MPEG audio file + Rock + + + 0 + Easily + MPEG audio file + Rock + + + 0 + Porcelain + MPEG audio file + Rock + + + 0 + Emit Remmus + MPEG audio file + Rock + + + 0 + I Like Dirt + MPEG audio file + Rock + + + 0 + This Velvet Glove + MPEG audio file + Rock + + + 0 + Savior + MPEG audio file + Rock + + + 0 + Purple Stain + MPEG audio file + Rock + + + 0 + Right On Time + MPEG audio file + Rock + + + 0 + Road Trippin' + MPEG audio file + Rock + + + + + + + 128 + Rush + + + 196 + 128 + Retrospective I (1974-1980) + + + 0 + The Spirit Of Radio + MPEG audio file + Rock + + + 0 + The Trees + MPEG audio file + Rock + + + 0 + Something For Nothing + MPEG audio file + Rock + + + 0 + Freewill + MPEG audio file + Rock + + + 0 + Xanadu + MPEG audio file + Rock + + + 0 + Bastille Day + MPEG audio file + Rock + + + 0 + By-Tor And The Snow Dog + MPEG audio file + Rock + + + 0 + Anthem + MPEG audio file + Rock + + + 0 + Closer To The Heart + MPEG audio file + Rock + + + 0 + 2112 Overture + MPEG audio file + Rock + + + 0 + The Temples Of Syrinx + MPEG audio file + Rock + + + 0 + La Villa Strangiato + MPEG audio file + Rock + + + 0 + Fly By Night + MPEG audio file + Rock + + + 0 + Finding My Way + MPEG audio file + Rock + + + + + + + 129 + Simply Red + + + + 130 + Skank + + + 199 + 130 + Maquinarama + + + 0 + Água E Fogo + MPEG audio file + Rock + + + 0 + Três Lados + MPEG audio file + Rock + + + 0 + Ela Desapareceu + MPEG audio file + Rock + + + 0 + Balada Do Amor Inabalável + MPEG audio file + Rock + + + 0 + Canção Noturna + MPEG audio file + Rock + + + 0 + Muçulmano + MPEG audio file + Rock + + + 0 + Maquinarama + MPEG audio file + Rock + + + 0 + Rebelião + MPEG audio file + Rock + + + 0 + A Última Guerra + MPEG audio file + Rock + + + 0 + Fica + MPEG audio file + Rock + + + 0 + Ali + MPEG audio file + Rock + + + 0 + Preto Damião + MPEG audio file + Rock + + + + + 200 + 130 + O Samba Poconé + + + 0 + É Uma Partida De Futebol + MPEG audio file + Rock + + + 0 + Eu Disse A Ela + MPEG audio file + Rock + + + 0 + Zé Trindade + MPEG audio file + Rock + + + 0 + Garota Nacional + MPEG audio file + Rock + + + 0 + Tão Seu + MPEG audio file + Rock + + + 0 + Sem Terra + MPEG audio file + Rock + + + 0 + Os Exilados + MPEG audio file + Rock + + + 0 + Um Dia Qualquer + MPEG audio file + Rock + + + 0 + Los Pretos + MPEG audio file + Rock + + + 0 + Sul Da América + MPEG audio file + Rock + + + 0 + Poconé + MPEG audio file + Rock + + + + + + + 131 + Smashing Pumpkins + + + 201 + 131 + Judas 0: B-Sides and Rarities + + + 0 + Lucky 13 + MPEG audio file + Alternative & Punk + + + 0 + Aeroplane Flies High + MPEG audio file + Alternative & Punk + + + 0 + Because You Are + MPEG audio file + Alternative & Punk + + + 0 + Slow Dawn + MPEG audio file + Alternative & Punk + + + 0 + Believe + MPEG audio file + Alternative & Punk + + + 0 + My Mistake + MPEG audio file + Alternative & Punk + + + 0 + Marquis In Spades + MPEG audio file + Alternative & Punk + + + 0 + Here's To The Atom Bomb + MPEG audio file + Alternative & Punk + + + 0 + Sparrow + MPEG audio file + Alternative & Punk + + + 0 + Waiting + MPEG audio file + Alternative & Punk + + + 0 + Saturnine + MPEG audio file + Alternative & Punk + + + 0 + Rock On + MPEG audio file + Alternative & Punk + + + 0 + Set The Ray To Jerry + MPEG audio file + Alternative & Punk + + + 0 + Winterlong + MPEG audio file + Alternative & Punk + + + 0 + Soot & Stars + MPEG audio file + Alternative & Punk + + + 0 + Blissed & Gone + MPEG audio file + Alternative & Punk + + + + + 202 + 131 + Rotten Apples: Greatest Hits + + + 0 + Siva + MPEG audio file + Alternative & Punk + + + 0 + Rhinocerous + MPEG audio file + Alternative & Punk + + + 0 + Drown + MPEG audio file + Alternative & Punk + + + 0 + Cherub Rock + MPEG audio file + Alternative & Punk + + + 0 + Today + MPEG audio file + Alternative & Punk + + + 0 + Disarm + MPEG audio file + Alternative & Punk + + + 0 + Landslide + MPEG audio file + Alternative & Punk + + + 0 + Bullet With Butterfly Wings + MPEG audio file + Alternative & Punk + + + 0 + 1979 + MPEG audio file + Alternative & Punk + + + 0 + Zero + MPEG audio file + Alternative & Punk + + + 0 + Tonight, Tonight + MPEG audio file + Alternative & Punk + + + 0 + Eye + MPEG audio file + Alternative & Punk + + + 0 + Ava Adore + MPEG audio file + Alternative & Punk + + + 0 + Perfect + MPEG audio file + Alternative & Punk + + + 0 + The Everlasting Gaze + MPEG audio file + Alternative & Punk + + + 0 + Stand Inside Your Love + MPEG audio file + Alternative & Punk + + + 0 + Real Love + MPEG audio file + Alternative & Punk + + + 0 + [Untitled] + MPEG audio file + Alternative & Punk + + + + + + + 132 + Soundgarden + + + 203 + 132 + A-Sides + + + 0 + Nothing To Say + MPEG audio file + Rock + + + 0 + Flower + MPEG audio file + Rock + + + 0 + Loud Love + MPEG audio file + Rock + + + 0 + Hands All Over + MPEG audio file + Rock + + + 0 + Get On The Snake + MPEG audio file + Rock + + + 0 + Jesus Christ Pose + MPEG audio file + Rock + + + 0 + Outshined + MPEG audio file + Rock + + + 0 + Rusty Cage + MPEG audio file + Rock + + + 0 + Spoonman + MPEG audio file + Rock + + + 0 + The Day I Tried To Live + MPEG audio file + Rock + + + 0 + Black Hole Sun + MPEG audio file + Rock + + + 0 + Fell On Black Days + MPEG audio file + Rock + + + 0 + Pretty Noose + MPEG audio file + Rock + + + 0 + Burden In My Hand + MPEG audio file + Rock + + + 0 + Blow Up The Outside World + MPEG audio file + Rock + + + 0 + Ty Cobb + MPEG audio file + Rock + + + 0 + Bleed Together + MPEG audio file + Rock + + + + + + + 133 + Stevie Ray Vaughan & Double Trouble + + + 205 + 133 + In Step + + + 0 + The House Is Rockin' + MPEG audio file + Blues + + + 0 + Crossfire + MPEG audio file + Blues + + + 0 + Tightrope + MPEG audio file + Blues + + + 0 + Let Me Love You Baby + MPEG audio file + Blues + + + 0 + Leave My Girl Alone + MPEG audio file + Blues + + + 0 + Travis Walk + MPEG audio file + Blues + + + 0 + Wall Of Denial + MPEG audio file + Blues + + + 0 + Scratch-N-Sniff + MPEG audio file + Blues + + + 0 + Love Me Darlin' + MPEG audio file + Blues + + + 0 + Riviera Paradise + MPEG audio file + Blues + + + + + + + 134 + Stone Temple Pilots + + + 206 + 134 + Core + + + 0 + Dead And Bloated + MPEG audio file + Rock + + + 0 + Sex Type Thing + MPEG audio file + Rock + + + 0 + Wicked Garden + MPEG audio file + Rock + + + 0 + No Memory + MPEG audio file + Rock + + + 0 + Sin + MPEG audio file + Rock + + + 0 + Naked Sunday + MPEG audio file + Rock + + + 0 + Creep + MPEG audio file + Rock + + + 0 + Piece Of Pie + MPEG audio file + Rock + + + 0 + Plush + MPEG audio file + Rock + + + 0 + Wet My Bed + MPEG audio file + Rock + + + 0 + Crackerman + MPEG audio file + Rock + + + 0 + Where The River Goes + MPEG audio file + Rock + + + + + + + 135 + System Of A Down + + + 207 + 135 + Mezmerize + + + 0 + Soldier Side - Intro + MPEG audio file + Metal + + + 0 + B.Y.O.B. + MPEG audio file + Metal + + + 0 + Revenga + MPEG audio file + Metal + + + 0 + Cigaro + MPEG audio file + Metal + + + 0 + Radio/Video + MPEG audio file + Metal + + + 0 + This Cocaine Makes Me Feel Like I'm On This Song + MPEG audio file + Metal + + + 0 + Violent Pornography + MPEG audio file + Metal + + + 0 + Question! + MPEG audio file + Metal + + + 0 + Sad Statue + MPEG audio file + Metal + + + 0 + Old School Hollywood + MPEG audio file + Metal + + + 0 + Lost in Hollywood + MPEG audio file + Metal + + + + + + + 136 + Terry Bozzio, Tony Levin & Steve Stevens + + + 208 + 136 + [1997] Black Light Syndrome + + + 0 + The Sun Road + MPEG audio file + Rock + + + 0 + Dark Corners + MPEG audio file + Rock + + + 0 + Duende + MPEG audio file + Rock + + + 0 + Black Light Syndrome + MPEG audio file + Rock + + + 0 + Falling in Circles + MPEG audio file + Rock + + + 0 + Book of Hours + MPEG audio file + Rock + + + 0 + Chaos-Control + MPEG audio file + Rock + + + + + + + 137 + The Black Crowes + + + 209 + 137 + Live [Disc 1] + + + 0 + Midnight From The Inside Out + MPEG audio file + Blues + + + 0 + Sting Me + MPEG audio file + Blues + + + 0 + Thick & Thin + MPEG audio file + Blues + + + 0 + Greasy Grass River + MPEG audio file + Blues + + + 0 + Sometimes Salvation + MPEG audio file + Blues + + + 0 + Cursed Diamonds + MPEG audio file + Blues + + + 0 + Miracle To Me + MPEG audio file + Blues + + + 0 + Wiser Time + MPEG audio file + Blues + + + 0 + Girl From A Pawnshop + MPEG audio file + Blues + + + 0 + Cosmic Fiend + MPEG audio file + Blues + + + + + 210 + 137 + Live [Disc 2] + + + 0 + Black Moon Creeping + MPEG audio file + Blues + + + 0 + High Head Blues + MPEG audio file + Blues + + + 0 + Title Song + MPEG audio file + Blues + + + 0 + She Talks To Angels + MPEG audio file + Blues + + + 0 + Twice As Hard + MPEG audio file + Blues + + + 0 + Lickin' + MPEG audio file + Blues + + + 0 + Soul Singing + MPEG audio file + Blues + + + 0 + Hard To Handle + MPEG audio file + Blues + + + 0 + Remedy + MPEG audio file + Blues + + + + + + + 138 + The Clash + + + 211 + 138 + The Singles + + + 0 + White Riot + MPEG audio file + Alternative & Punk + + + 0 + Remote Control + MPEG audio file + Alternative & Punk + + + 0 + Complete Control + MPEG audio file + Alternative & Punk + + + 0 + Clash City Rockers + MPEG audio file + Alternative & Punk + + + 0 + (White Man) In Hammersmith Palais + MPEG audio file + Alternative & Punk + + + 0 + Tommy Gun + MPEG audio file + Alternative & Punk + + + 0 + English Civil War + MPEG audio file + Alternative & Punk + + + 0 + I Fought The Law + MPEG audio file + Alternative & Punk + + + 0 + London Calling + MPEG audio file + Alternative & Punk + + + 0 + Train In Vain + MPEG audio file + Alternative & Punk + + + 0 + Bankrobber + MPEG audio file + Alternative & Punk + + + 0 + The Call Up + MPEG audio file + Alternative & Punk + + + 0 + Hitsville UK + MPEG audio file + Alternative & Punk + + + 0 + The Magnificent Seven + MPEG audio file + Alternative & Punk + + + 0 + This Is Radio Clash + MPEG audio file + Alternative & Punk + + + 0 + Know Your Rights + MPEG audio file + Alternative & Punk + + + 0 + Rock The Casbah + MPEG audio file + Alternative & Punk + + + 0 + Should I Stay Or Should I Go + MPEG audio file + Alternative & Punk + + + + + + + 139 + The Cult + + + 212 + 139 + Beyond Good And Evil + + + 0 + Rise + MPEG audio file + Rock + + + 0 + Take The Power + MPEG audio file + Rock + + + 0 + Breathe + MPEG audio file + Rock + + + 0 + Nico + MPEG audio file + Rock + + + 0 + American Gothic + MPEG audio file + Rock + + + 0 + Ashes And Ghosts + MPEG audio file + Rock + + + 0 + Shape The Sky + MPEG audio file + Rock + + + 0 + Speed Of Light + MPEG audio file + Rock + + + 0 + True Believers + MPEG audio file + Rock + + + 0 + My Bridges Burn + MPEG audio file + Rock + + + 0 + War (The Process) + MPEG audio file + Rock + + + 0 + The Saint + MPEG audio file + Rock + + + + + 213 + 139 + Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK] + + + 0 + She Sells Sanctuary + MPEG audio file + Rock + + + 0 + Fire Woman + MPEG audio file + Rock + + + 0 + Lil' Evil + MPEG audio file + Rock + + + 0 + Spirit Walker + MPEG audio file + Rock + + + 0 + The Witch + MPEG audio file + Rock + + + 0 + Revolution + MPEG audio file + Rock + + + 0 + Wild Hearted Son + MPEG audio file + Rock + + + 0 + Love Removal Machine + MPEG audio file + Rock + + + 0 + Rain + MPEG audio file + Rock + + + 0 + Edie (Ciao Baby) + MPEG audio file + Rock + + + 0 + Heart Of Soul + MPEG audio file + Rock + + + 0 + Love + MPEG audio file + Rock + + + 0 + Wild Flower + MPEG audio file + Rock + + + 0 + Go West + MPEG audio file + Rock + + + 0 + Resurrection Joe + MPEG audio file + Rock + + + 0 + Sun King + MPEG audio file + Rock + + + 0 + Sweet Soul Sister + MPEG audio file + Rock + + + 0 + Earth Mofo + MPEG audio file + Rock + + + + + + + 140 + The Doors + + + 214 + 140 + The Doors + + + 0 + Break on Through + MPEG audio file + Rock + + + 0 + Soul Kitchen + MPEG audio file + Rock + + + 0 + The Crystal Ship + MPEG audio file + Rock + + + 0 + Twentienth Century Fox + MPEG audio file + Rock + + + 0 + Alabama Song + MPEG audio file + Rock + + + 0 + Light My Fire + MPEG audio file + Rock + + + 0 + Back Door Man + MPEG audio file + Rock + + + 0 + I Looked At You + MPEG audio file + Rock + + + 0 + End Of The Night + MPEG audio file + Rock + + + 0 + Take It As It Comes + MPEG audio file + Rock + + + 0 + The End + MPEG audio file + Rock + + + + + + + 141 + The Police + + + 215 + 141 + The Police Greatest Hits + + + 0 + Roxanne + MPEG audio file + Rock + + + 0 + Can't Stand Losing You + MPEG audio file + Rock + + + 0 + Message in a Bottle + MPEG audio file + Rock + + + 0 + Walking on the Moon + MPEG audio file + Rock + + + 0 + Don't Stand so Close to Me + MPEG audio file + Rock + + + 0 + De Do Do Do, De Da Da Da + MPEG audio file + Rock + + + 0 + Every Little Thing She Does is Magic + MPEG audio file + Rock + + + 0 + Invisible Sun + MPEG audio file + Rock + + + 0 + Spirit's in the Material World + MPEG audio file + Rock + + + 0 + Every Breath You Take + MPEG audio file + Rock + + + 0 + King Of Pain + MPEG audio file + Rock + + + 0 + Wrapped Around Your Finger + MPEG audio file + Rock + + + 0 + Don't Stand So Close to Me '86 + MPEG audio file + Rock + + + 0 + Message in a Bottle (new classic rock mix) + MPEG audio file + Rock + + + + + + + 142 + The Rolling Stones + + + 216 + 142 + Hot Rocks, 1964-1971 (Disc 1) + + + 0 + Time Is On My Side + MPEG audio file + Rock + + + 0 + Heart Of Stone + MPEG audio file + Rock + + + 0 + Play With Fire + MPEG audio file + Rock + + + 0 + Satisfaction + MPEG audio file + Rock + + + 0 + As Tears Go By + MPEG audio file + Rock + + + 0 + Get Off Of My Cloud + MPEG audio file + Rock + + + 0 + Mother's Little Helper + MPEG audio file + Rock + + + 0 + 19th Nervous Breakdown + MPEG audio file + Rock + + + 0 + Paint It Black + MPEG audio file + Rock + + + 0 + Under My Thumb + MPEG audio file + Rock + + + 0 + Ruby Tuesday + MPEG audio file + Rock + + + 0 + Let's Spend The Night Together + MPEG audio file + Rock + + + + + 217 + 142 + No Security + + + 0 + Intro + MPEG audio file + Rock + + + 0 + You Got Me Rocking + MPEG audio file + Rock + + + 0 + Gimmie Shelters + MPEG audio file + Rock + + + 0 + Flip The Switch + MPEG audio file + Rock + + + 0 + Memory Motel + MPEG audio file + Rock + + + 0 + Corinna + MPEG audio file + Rock + + + 0 + Saint Of Me + MPEG audio file + Rock + + + 0 + Wainting On A Friend + MPEG audio file + Rock + + + 0 + Sister Morphine + MPEG audio file + Rock + + + 0 + Live With Me + MPEG audio file + Rock + + + 0 + Respectable + MPEG audio file + Rock + + + 0 + Thief In The Night + MPEG audio file + Rock + + + 0 + The Last Time + MPEG audio file + Rock + + + 0 + Out Of Control + MPEG audio file + Rock + + + + + 218 + 142 + Voodoo Lounge + + + 0 + Love Is Strong + MPEG audio file + Rock + + + 0 + You Got Me Rocking + MPEG audio file + Rock + + + 0 + Sparks Will Fly + MPEG audio file + Rock + + + 0 + The Worst + MPEG audio file + Rock + + + 0 + New Faces + MPEG audio file + Rock + + + 0 + Moon Is Up + MPEG audio file + Rock + + + 0 + Out Of Tears + MPEG audio file + Rock + + + 0 + I Go Wild + MPEG audio file + Rock + + + 0 + Brand New Car + MPEG audio file + Rock + + + 0 + Sweethearts Together + MPEG audio file + Rock + + + 0 + Suck On The Jugular + MPEG audio file + Rock + + + 0 + Blinded By Rainbows + MPEG audio file + Rock + + + 0 + Baby Break It Down + MPEG audio file + Rock + + + 0 + Thru And Thru + MPEG audio file + Rock + + + 0 + Mean Disposition + MPEG audio file + Rock + + + + + + + 143 + The Tea Party + + + 219 + 143 + Tangents + + + 0 + Walking Wounded + MPEG audio file + Alternative & Punk + + + 0 + Temptation + MPEG audio file + Alternative & Punk + + + 0 + The Messenger + MPEG audio file + Alternative & Punk + + + 0 + Psychopomp + MPEG audio file + Alternative & Punk + + + 0 + Sister Awake + MPEG audio file + Alternative & Punk + + + 0 + The Bazaar + MPEG audio file + Alternative & Punk + + + 0 + Save Me (Remix) + MPEG audio file + Alternative & Punk + + + 0 + Fire In The Head + MPEG audio file + Alternative & Punk + + + 0 + Release + MPEG audio file + Alternative & Punk + + + 0 + Heaven Coming Down + MPEG audio file + Alternative & Punk + + + 0 + The River (Remix) + MPEG audio file + Alternative & Punk + + + 0 + Babylon + MPEG audio file + Alternative & Punk + + + 0 + Waiting On A Sign + MPEG audio file + Alternative & Punk + + + 0 + Life Line + MPEG audio file + Alternative & Punk + + + 0 + Paint It Black + MPEG audio file + Alternative & Punk + + + + + 220 + 143 + Transmission + + + 0 + Temptation + MPEG audio file + Alternative & Punk + + + 0 + Army Ants + MPEG audio file + Alternative & Punk + + + 0 + Psychopomp + MPEG audio file + Alternative & Punk + + + 0 + Gyroscope + MPEG audio file + Alternative & Punk + + + 0 + Alarum + MPEG audio file + Alternative & Punk + + + 0 + Release + MPEG audio file + Alternative & Punk + + + 0 + Transmission + MPEG audio file + Alternative & Punk + + + 0 + Babylon + MPEG audio file + Alternative & Punk + + + 0 + Pulse + MPEG audio file + Alternative & Punk + + + 0 + Emerald + MPEG audio file + Alternative & Punk + + + 0 + Aftermath + MPEG audio file + Alternative & Punk + + + + + + + 144 + The Who + + + 221 + 144 + My Generation - The Very Best Of The Who + + + 0 + I Can't Explain + MPEG audio file + Rock + + + 0 + Anyway, Anyhow, Anywhere + MPEG audio file + Rock + + + 0 + My Generation + MPEG audio file + Rock + + + 0 + Substitute + MPEG audio file + Rock + + + 0 + I'm A Boy + MPEG audio file + Rock + + + 0 + Boris The Spider + MPEG audio file + Rock + + + 0 + Happy Jack + MPEG audio file + Rock + + + 0 + Pictures Of Lily + MPEG audio file + Rock + + + 0 + I Can See For Miles + MPEG audio file + Rock + + + 0 + Magic Bus + MPEG audio file + Rock + + + 0 + Pinball Wizard + MPEG audio file + Rock + + + 0 + The Seeker + MPEG audio file + Rock + + + 0 + Baba O'Riley + MPEG audio file + Rock + + + 0 + Won't Get Fooled Again (Full Length Version) + MPEG audio file + Rock + + + 0 + Let's See Action + MPEG audio file + Rock + + + 0 + 5.15 + MPEG audio file + Rock + + + 0 + Join Together + MPEG audio file + Rock + + + 0 + Squeeze Box + MPEG audio file + Rock + + + 0 + Who Are You (Single Edit Version) + MPEG audio file + Rock + + + 0 + You Better You Bet + MPEG audio file + Rock + + + + + + + 145 + Tim Maia + + + 222 + 145 + Serie Sem Limite (Disc 1) + + + 0 + Primavera + MPEG audio file + Latin + + + 0 + Chocolate + MPEG audio file + Latin + + + 0 + Azul Da Cor Do Mar + MPEG audio file + Latin + + + 0 + O Descobridor Dos Sete Mares + MPEG audio file + Latin + + + 0 + Até Que Enfim Encontrei Você + MPEG audio file + Latin + + + 0 + Coroné Antonio Bento + MPEG audio file + Latin + + + 0 + New Love + MPEG audio file + Latin + + + 0 + Não Vou Ficar + MPEG audio file + Latin + + + 0 + Música No Ar + MPEG audio file + Latin + + + 0 + Salve Nossa Senhora + MPEG audio file + Latin + + + 0 + Você Fugiu + MPEG audio file + Latin + + + 0 + Cristina Nº 2 + MPEG audio file + Latin + + + 0 + Compadre + MPEG audio file + Latin + + + 0 + Over Again + MPEG audio file + Latin + + + 0 + Réu Confesso + MPEG audio file + Latin + + + + + 223 + 145 + Serie Sem Limite (Disc 2) + + + 0 + O Que Me Importa + MPEG audio file + Latin + + + 0 + Gostava Tanto De Você + MPEG audio file + Latin + + + 0 + Você + MPEG audio file + Latin + + + 0 + Não Quero Dinheiro + MPEG audio file + Latin + + + 0 + Eu Amo Você + MPEG audio file + Latin + + + 0 + A Festa Do Santo Reis + MPEG audio file + Latin + + + 0 + I Don't Know What To Do With Myself + MPEG audio file + Latin + + + 0 + Padre Cícero + MPEG audio file + Latin + + + 0 + Nosso Adeus + MPEG audio file + Latin + + + 0 + Canário Do Reino + MPEG audio file + Latin + + + 0 + Preciso Ser Amado + MPEG audio file + Latin + + + 0 + Balanço + MPEG audio file + Latin + + + 0 + Preciso Aprender A Ser Só + MPEG audio file + Latin + + + 0 + Esta É A Canção + MPEG audio file + Latin + + + 0 + Formigueiro + MPEG audio file + Latin + + + + + + + 146 + Titãs + + + 224 + 146 + Acústico + + + 0 + Comida + MPEG audio file + Alternative & Punk + + + 0 + Go Back + MPEG audio file + Alternative & Punk + + + 0 + Prá Dizer Adeus + MPEG audio file + Alternative & Punk + + + 0 + Família + MPEG audio file + Alternative & Punk + + + 0 + Os Cegos Do Castelo + MPEG audio file + Alternative & Punk + + + 0 + O Pulso + MPEG audio file + Alternative & Punk + + + 0 + Marvin + MPEG audio file + Alternative & Punk + + + 0 + Nem 5 Minutos Guardados + MPEG audio file + Alternative & Punk + + + 0 + Flores + MPEG audio file + Alternative & Punk + + + 0 + Palavras + MPEG audio file + Alternative & Punk + + + 0 + Hereditário + MPEG audio file + Alternative & Punk + + + 0 + A Melhor Forma + MPEG audio file + Alternative & Punk + + + 0 + Cabeça Dinossauro + MPEG audio file + Alternative & Punk + + + 0 + 32 Dentes + MPEG audio file + Alternative & Punk + + + 0 + Bichos Escrotos (Vinheta) + MPEG audio file + Alternative & Punk + + + 0 + Não Vou Lutar + MPEG audio file + Alternative & Punk + + + 0 + Homem Primata (Vinheta) + MPEG audio file + Alternative & Punk + + + 0 + Homem Primata + MPEG audio file + Alternative & Punk + + + 0 + Polícia (Vinheta) + MPEG audio file + Alternative & Punk + + + 0 + Querem Meu Sangue + MPEG audio file + Alternative & Punk + + + 0 + Diversão + MPEG audio file + Alternative & Punk + + + 0 + Televisão + MPEG audio file + Alternative & Punk + + + + + 225 + 146 + Volume Dois + + + 0 + Sonifera Ilha + MPEG audio file + Alternative & Punk + + + 0 + Lugar Nenhum + MPEG audio file + Alternative & Punk + + + 0 + Sua Impossivel Chance + MPEG audio file + Alternative & Punk + + + 0 + Desordem + MPEG audio file + Alternative & Punk + + + 0 + Não Vou Me Adaptar + MPEG audio file + Alternative & Punk + + + 0 + Domingo + MPEG audio file + Alternative & Punk + + + 0 + Amanhã Não Se Sabe + MPEG audio file + Alternative & Punk + + + 0 + Caras Como Eu + MPEG audio file + Alternative & Punk + + + 0 + Senhora E Senhor + MPEG audio file + Alternative & Punk + + + 0 + Era Uma Vez + MPEG audio file + Alternative & Punk + + + 0 + Miséria + MPEG audio file + Alternative & Punk + + + 0 + Insensível + MPEG audio file + Alternative & Punk + + + 0 + Eu E Ela + MPEG audio file + Alternative & Punk + + + 0 + Toda Cor + MPEG audio file + Alternative & Punk + + + 0 + É Preciso Saber Viver + MPEG audio file + Alternative & Punk + + + 0 + Senhor Delegado/Eu Não Aguento + MPEG audio file + Alternative & Punk + + + + + + + 147 + Battlestar Galactica + + + 226 + 147 + Battlestar Galactica: The Story So Far + + + 0 + Battlestar Galactica: The Story So Far + Protected MPEG-4 video file + Science Fiction + + + + + 227 + 147 + Battlestar Galactica, Season 3 + + + 0 + Occupation / Precipice + Protected MPEG-4 video file + TV Shows + + + 0 + Exodus, Pt. 1 + Protected MPEG-4 video file + TV Shows + + + 0 + Exodus, Pt. 2 + Protected MPEG-4 video file + TV Shows + + + 0 + Collaborators + Protected MPEG-4 video file + TV Shows + + + 0 + Torn + Protected MPEG-4 video file + TV Shows + + + 0 + A Measure of Salvation + Protected MPEG-4 video file + Science Fiction + + + 0 + Hero + Protected MPEG-4 video file + Science Fiction + + + 0 + Unfinished Business + Protected MPEG-4 video file + Science Fiction + + + 0 + The Passage + Protected MPEG-4 video file + Science Fiction + + + 0 + The Eye of Jupiter + Protected MPEG-4 video file + Science Fiction + + + 0 + Rapture + Protected MPEG-4 video file + Science Fiction + + + 0 + Taking a Break from All Your Worries + Protected MPEG-4 video file + Science Fiction + + + 0 + The Woman King + Protected MPEG-4 video file + Science Fiction + + + 0 + A Day In the Life + Protected MPEG-4 video file + Science Fiction + + + 0 + Dirty Hands + Protected MPEG-4 video file + Science Fiction + + + 0 + Maelstrom + Protected MPEG-4 video file + Science Fiction + + + 0 + The Son Also Rises + Protected MPEG-4 video file + Science Fiction + + + 0 + Crossroads, Pt. 1 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + Crossroads, Pt. 2 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + + + + + 148 + Heroes + + + 228 + 148 + Heroes, Season 1 + + + 0 + .07% + Protected MPEG-4 video file + Drama + + + 0 + Five Years Gone + Protected MPEG-4 video file + Drama + + + 0 + The Hard Part + Protected MPEG-4 video file + Drama + + + 0 + Landslide + Protected MPEG-4 video file + Drama + + + 0 + How to Stop an Exploding Man + Protected MPEG-4 video file + Drama + + + 0 + Genesis + Protected MPEG-4 video file + TV Shows + + + 0 + Don't Look Back + Protected MPEG-4 video file + Drama + + + 0 + One Giant Leap + Protected MPEG-4 video file + Drama + + + 0 + Collision + Protected MPEG-4 video file + Drama + + + 0 + Hiros + Protected MPEG-4 video file + Drama + + + 0 + Better Halves + Protected MPEG-4 video file + Drama + + + 0 + Nothing to Hide + Protected MPEG-4 video file + TV Shows + + + 0 + Seven Minutes to Midnight + Protected MPEG-4 video file + Drama + + + 0 + Homecoming + Protected MPEG-4 video file + Drama + + + 0 + Six Months Ago + Protected MPEG-4 video file + TV Shows + + + 0 + Fallout + Protected MPEG-4 video file + Drama + + + 0 + The Fix + Protected MPEG-4 video file + Drama + + + 0 + Distractions + Protected MPEG-4 video file + Drama + + + 0 + Run! + Protected MPEG-4 video file + Drama + + + 0 + Unexpected + Protected MPEG-4 video file + Drama + + + 0 + Company Man + Protected MPEG-4 video file + Drama + + + 0 + Company Man + Protected MPEG-4 video file + Drama + + + 0 + Parasite + Protected MPEG-4 video file + Drama + + + + + + + 149 + Lost + + + 229 + 149 + Lost, Season 3 + + + 0 + The Brig + Protected MPEG-4 video file + Drama + + + 0 + The Man Behind the Curtain + Protected MPEG-4 video file + Drama + + + 0 + Greatest Hits + Protected MPEG-4 video file + Drama + + + 0 + Through a Looking Glass + Protected MPEG-4 video file + Drama + + + 0 + A Tale of Two Cities + Protected MPEG-4 video file + TV Shows + + + 0 + The Glass Ballerina + Protected MPEG-4 video file + Drama + + + 0 + Further Instructions + Protected MPEG-4 video file + TV Shows + + + 0 + Every Man for Himself + Protected MPEG-4 video file + Drama + + + 0 + The Cost of Living + Protected MPEG-4 video file + TV Shows + + + 0 + I Do + Protected MPEG-4 video file + TV Shows + + + 0 + Not In Portland + Protected MPEG-4 video file + Drama + + + 0 + Not In Portland + Protected MPEG-4 video file + Drama + + + 0 + Flashes Before Your Eyes + Protected MPEG-4 video file + Drama + + + 0 + Lost Survival Guide + Protected MPEG-4 video file + Drama + + + 0 + Stranger In a Strange Land + Protected MPEG-4 video file + Drama + + + 0 + Tricia Tanaka Is Dead + Protected MPEG-4 video file + Drama + + + 0 + Enter 77 + Protected MPEG-4 video file + Drama + + + 0 + Par Avion + Protected MPEG-4 video file + Drama + + + 0 + The Man from Tallahassee + Protected MPEG-4 video file + Drama + + + 0 + Exposé + Protected MPEG-4 video file + Drama + + + 0 + Left Behind + Protected MPEG-4 video file + Drama + + + 0 + One of Us + Protected MPEG-4 video file + Drama + + + 0 + Catch-22 + Protected MPEG-4 video file + Drama + + + 0 + D.O.C. + Protected MPEG-4 video file + Drama + + + 0 + Through the Looking Glass, Pt. 2 + Protected MPEG-4 video file + Drama + + + 0 + Through the Looking Glass, Pt. 1 + Protected MPEG-4 video file + Drama + + + + + 230 + 149 + Lost, Season 1 + + + 0 + Lost (Pilot, Part 1) [Premiere] + Protected MPEG-4 video file + TV Shows + + + 0 + Lost (Pilot, Part 2) + Protected MPEG-4 video file + TV Shows + + + 0 + Tabula Rasa + Protected MPEG-4 video file + TV Shows + + + 0 + Walkabout + Protected MPEG-4 video file + TV Shows + + + 0 + White Rabbit + Protected MPEG-4 video file + TV Shows + + + 0 + House of the Rising Sun + Protected MPEG-4 video file + TV Shows + + + 0 + The Moth + Protected MPEG-4 video file + TV Shows + + + 0 + Confidence Man + Protected MPEG-4 video file + TV Shows + + + 0 + Solitary + Protected MPEG-4 video file + TV Shows + + + 0 + Raised By Another + Protected MPEG-4 video file + TV Shows + + + 0 + All the Best Cowboys Have Daddy Issues + Protected MPEG-4 video file + TV Shows + + + 0 + Whatever the Case May Be + Protected MPEG-4 video file + TV Shows + + + 0 + Hearts and Minds + Protected MPEG-4 video file + TV Shows + + + 0 + Special + Protected MPEG-4 video file + TV Shows + + + 0 + Homecoming + Protected MPEG-4 video file + TV Shows + + + 0 + Outlaws + Protected MPEG-4 video file + TV Shows + + + 0 + ...In Translation + Protected MPEG-4 video file + TV Shows + + + 0 + Numbers + Protected MPEG-4 video file + TV Shows + + + 0 + Deus Ex Machina + Protected MPEG-4 video file + TV Shows + + + 0 + Do No Harm + Protected MPEG-4 video file + TV Shows + + + 0 + The Greater Good + Protected MPEG-4 video file + TV Shows + + + 0 + Born to Run + Protected MPEG-4 video file + TV Shows + + + 0 + Exodus (Part 1) + Protected MPEG-4 video file + TV Shows + + + 0 + Exodus (Part 2) [Season Finale] + Protected MPEG-4 video file + TV Shows + + + 0 + Exodus (Part 3) [Season Finale] + Protected MPEG-4 video file + TV Shows + + + + + 231 + 149 + Lost, Season 2 + + + 0 + Man of Science, Man of Faith (Premiere) + Protected MPEG-4 video file + TV Shows + + + 0 + Adrift + Protected MPEG-4 video file + TV Shows + + + 0 + Orientation + Protected MPEG-4 video file + TV Shows + + + 0 + Everybody Hates Hugo + Protected MPEG-4 video file + TV Shows + + + 0 + ...And Found + Protected MPEG-4 video file + TV Shows + + + 0 + Abandoned + Protected MPEG-4 video file + TV Shows + + + 0 + The Other 48 Days + Protected MPEG-4 video file + TV Shows + + + 0 + Collision + Protected MPEG-4 video file + TV Shows + + + 0 + What Kate Did + Protected MPEG-4 video file + TV Shows + + + 0 + The 23rd Psalm + Protected MPEG-4 video file + TV Shows + + + 0 + The Hunting Party + Protected MPEG-4 video file + Drama + + + 0 + Fire + Water + Protected MPEG-4 video file + Drama + + + 0 + The Long Con + Protected MPEG-4 video file + TV Shows + + + 0 + One of Them + Protected MPEG-4 video file + Drama + + + 0 + Maternity Leave + Protected MPEG-4 video file + Drama + + + 0 + The Whole Truth + Protected MPEG-4 video file + Drama + + + 0 + Lockdown + Protected MPEG-4 video file + Drama + + + 0 + Dave + Protected MPEG-4 video file + TV Shows + + + 0 + S.O.S. + Protected MPEG-4 video file + TV Shows + + + 0 + Two for the Road + Protected MPEG-4 video file + Drama + + + 0 + "?" + Protected MPEG-4 video file + TV Shows + + + 0 + Three Minutes + Protected MPEG-4 video file + TV Shows + + + 0 + Live Together, Die Alone, Pt. 1 + Protected MPEG-4 video file + Drama + + + 0 + Live Together, Die Alone, Pt. 2 + Protected MPEG-4 video file + TV Shows + + + + + 261 + 149 + LOST, Season 4 + + + 0 + Past, Present, and Future + Protected MPEG-4 video file + Drama + + + 0 + The Beginning of the End + Protected MPEG-4 video file + Drama + + + 0 + LOST Season 4 Trailer + Protected MPEG-4 video file + Drama + + + 0 + LOST In 8:15 + Protected MPEG-4 video file + Drama + + + 0 + Confirmed Dead + Protected MPEG-4 video file + Drama + + + 0 + The Economist + Protected MPEG-4 video file + Drama + + + 0 + Eggtown + Protected MPEG-4 video file + TV Shows + + + 0 + The Constant + Protected MPEG-4 video file + Drama + + + 0 + The Other Woman + Protected MPEG-4 video file + Drama + + + 0 + Ji Yeon + Protected MPEG-4 video file + TV Shows + + + 0 + Meet Kevin Johnson + Protected MPEG-4 video file + TV Shows + + + 0 + The Shape of Things to Come + Protected MPEG-4 video file + Drama + + + 0 + Something Nice Back Home + Protected MPEG-4 video file + Drama + + + 0 + Cabin Fever + Protected MPEG-4 video file + Drama + + + 0 + There's No Place Like Home, Pt. 1 + Protected MPEG-4 video file + Drama + + + 0 + There's No Place Like Home, Pt. 2 + Protected MPEG-4 video file + Drama + + + 0 + There's No Place Like Home, Pt. 3 + Protected MPEG-4 video file + Drama + + + + + + + 150 + U2 + + + 232 + 150 + Achtung Baby + + + 0 + Zoo Station + MPEG audio file + Rock + + + 0 + Even Better Than The Real Thing + MPEG audio file + Rock + + + 0 + One + MPEG audio file + Rock + + + 0 + Until The End Of The World + MPEG audio file + Rock + + + 0 + Who's Gonna Ride Your Wild Horses + MPEG audio file + Rock + + + 0 + So Cruel + MPEG audio file + Rock + + + 0 + The Fly + MPEG audio file + Rock + + + 0 + Mysterious Ways + MPEG audio file + Rock + + + 0 + Tryin' To Throw Your Arms Around The World + MPEG audio file + Rock + + + 0 + Ultraviolet (Light My Way) + MPEG audio file + Rock + + + 0 + Acrobat + MPEG audio file + Rock + + + 0 + Love Is Blindness + MPEG audio file + Rock + + + + + 233 + 150 + All That You Can't Leave Behind + + + 0 + Beautiful Day + MPEG audio file + Rock + + + 0 + Stuck In A Moment You Can't Get Out Of + MPEG audio file + Rock + + + 0 + Elevation + MPEG audio file + Rock + + + 0 + Walk On + MPEG audio file + Rock + + + 0 + Kite + MPEG audio file + Rock + + + 0 + In A Little While + MPEG audio file + Rock + + + 0 + Wild Honey + MPEG audio file + Rock + + + 0 + Peace On Earth + MPEG audio file + Rock + + + 0 + When I Look At The World + MPEG audio file + Rock + + + 0 + New York + MPEG audio file + Rock + + + 0 + Grace + MPEG audio file + Rock + + + + + 234 + 150 + B-Sides 1980-1990 + + + 0 + The Three Sunrises + MPEG audio file + Rock + + + 0 + Spanish Eyes + MPEG audio file + Rock + + + 0 + Sweetest Thing + MPEG audio file + Rock + + + 0 + Love Comes Tumbling + MPEG audio file + Rock + + + 0 + Bass Trap + MPEG audio file + Rock + + + 0 + Dancing Barefoot + MPEG audio file + Rock + + + 0 + Everlasting Love + MPEG audio file + Rock + + + 0 + Unchained Melody + MPEG audio file + Rock + + + 0 + Walk To The Water + MPEG audio file + Rock + + + 0 + Luminous Times (Hold On To Love) + MPEG audio file + Rock + + + 0 + Hallelujah Here She Comes + MPEG audio file + Rock + + + 0 + Silver And Gold + MPEG audio file + Rock + + + 0 + Endless Deep + MPEG audio file + Rock + + + 0 + A Room At The Heartbreak Hotel + MPEG audio file + Rock + + + 0 + Trash, Trampoline And The Party Girl + MPEG audio file + Rock + + + + + 235 + 150 + How To Dismantle An Atomic Bomb + + + 0 + Vertigo + MPEG audio file + Rock + + + 0 + Miracle Drug + MPEG audio file + Rock + + + 0 + Sometimes You Can't Make It On Your Own + MPEG audio file + Rock + + + 0 + Love And Peace Or Else + MPEG audio file + Rock + + + 0 + City Of Blinding Lights + MPEG audio file + Rock + + + 0 + All Because Of You + MPEG audio file + Rock + + + 0 + A Man And A Woman + MPEG audio file + Rock + + + 0 + Crumbs From Your Table + MPEG audio file + Rock + + + 0 + One Step Closer + MPEG audio file + Rock + + + 0 + Original Of The Species + MPEG audio file + Rock + + + 0 + Yahweh + MPEG audio file + Rock + + + + + 236 + 150 + Pop + + + 0 + Please + MPEG audio file + Rock + + + 0 + Wake Up Dead Man + MPEG audio file + Rock + + + 0 + Discotheque + MPEG audio file + Rock + + + 0 + Do You Feel Loved + MPEG audio file + Rock + + + 0 + Mofo + MPEG audio file + Rock + + + 0 + If God Will Send His Angels + MPEG audio file + Rock + + + 0 + Staring At The Sun + MPEG audio file + Rock + + + 0 + Last Night On Earth + MPEG audio file + Rock + + + 0 + Gone + MPEG audio file + Rock + + + 0 + Miami + MPEG audio file + Rock + + + 0 + The Playboy Mansion + MPEG audio file + Rock + + + 0 + If You Wear That Velvet Dress + MPEG audio file + Rock + + + + + 237 + 150 + Rattle And Hum + + + 0 + Helter Skelter + MPEG audio file + Rock + + + 0 + Van Diemen's Land + MPEG audio file + Rock + + + 0 + Desire + MPEG audio file + Rock + + + 0 + Hawkmoon 269 + MPEG audio file + Rock + + + 0 + All Along The Watchtower + MPEG audio file + Rock + + + 0 + I Still Haven't Found What I'm Looking for + MPEG audio file + Rock + + + 0 + Freedom For My People + MPEG audio file + Rock + + + 0 + Silver And Gold + MPEG audio file + Rock + + + 0 + Pride (In The Name Of Love) + MPEG audio file + Rock + + + 0 + Angel Of Harlem + MPEG audio file + Rock + + + 0 + Love Rescue Me + MPEG audio file + Rock + + + 0 + When Love Comes To Town + MPEG audio file + Rock + + + 0 + Heartland + MPEG audio file + Rock + + + 0 + God Part II + MPEG audio file + Rock + + + 0 + The Star Spangled Banner + MPEG audio file + Rock + + + 0 + Bullet The Blue Sky + MPEG audio file + Rock + + + 0 + All I Want Is You + MPEG audio file + Rock + + + + + 238 + 150 + The Best Of 1980-1990 + + + 0 + Pride (In The Name Of Love) + MPEG audio file + Rock + + + 0 + New Year's Day + MPEG audio file + Rock + + + 0 + With Or Without You + MPEG audio file + Rock + + + 0 + I Still Haven't Found What I'm Looking For + MPEG audio file + Rock + + + 0 + Sunday Bloody Sunday + MPEG audio file + Rock + + + 0 + Bad + MPEG audio file + Rock + + + 0 + Where The Streets Have No Name + MPEG audio file + Rock + + + 0 + I Will Follow + MPEG audio file + Rock + + + 0 + The Unforgettable Fire + MPEG audio file + Rock + + + 0 + Sweetest Thing + MPEG audio file + Rock + + + 0 + Desire + MPEG audio file + Rock + + + 0 + When Love Comes To Town + MPEG audio file + Rock + + + 0 + Angel Of Harlem + MPEG audio file + Rock + + + 0 + All I Want Is You + MPEG audio file + Rock + + + + + 239 + 150 + War + + + 0 + Sunday Bloody Sunday + MPEG audio file + Rock + + + 0 + Seconds + MPEG audio file + Rock + + + 0 + New Year's Day + MPEG audio file + Rock + + + 0 + Like A Song... + MPEG audio file + Rock + + + 0 + Drowning Man + MPEG audio file + Rock + + + 0 + The Refugee + MPEG audio file + Rock + + + 0 + Two Hearts Beat As One + MPEG audio file + Rock + + + 0 + Red Light + MPEG audio file + Rock + + + 0 + Surrender + MPEG audio file + Rock + + + 0 + "40" + MPEG audio file + Rock + + + + + 240 + 150 + Zooropa + + + 0 + Zooropa + MPEG audio file + Rock + + + 0 + Babyface + MPEG audio file + Rock + + + 0 + Numb + MPEG audio file + Rock + + + 0 + Lemon + MPEG audio file + Rock + + + 0 + Stay (Faraway, So Close!) + MPEG audio file + Rock + + + 0 + Daddy's Gonna Pay For Your Crashed Car + MPEG audio file + Rock + + + 0 + Some Days Are Better Than Others + MPEG audio file + Rock + + + 0 + The First Time + MPEG audio file + Rock + + + 0 + Dirty Day + MPEG audio file + Rock + + + 0 + The Wanderer + MPEG audio file + Rock + + + + + 255 + 150 + Instant Karma: The Amnesty International Campaign to Save Darfur + + + 0 + Instant Karma + Protected AAC audio file + Pop + + + 0 + #9 Dream + Protected AAC audio file + Pop + + + 0 + Mother + Protected AAC audio file + Pop + + + 0 + Give Peace a Chance + Protected AAC audio file + Pop + + + 0 + Cold Turkey + Protected AAC audio file + Pop + + + 0 + Whatever Gets You Thru the Night + Protected AAC audio file + Pop + + + 0 + I'm Losing You + Protected AAC audio file + Pop + + + 0 + Gimme Some Truth + Protected AAC audio file + Pop + + + 0 + Oh, My Love + Protected AAC audio file + Pop + + + 0 + Imagine + Protected AAC audio file + Pop + + + 0 + Nobody Told Me + Protected AAC audio file + Pop + + + 0 + Jealous Guy + Protected AAC audio file + Pop + + + 0 + Working Class Hero + Protected AAC audio file + Pop + + + 0 + Power to the People + Protected AAC audio file + Pop + + + 0 + Imagine + Protected AAC audio file + Pop + + + 0 + Beautiful Boy + Protected AAC audio file + Pop + + + 0 + Isolation + Protected AAC audio file + Pop + + + 0 + Watching the Wheels + Protected AAC audio file + Pop + + + 0 + Grow Old With Me + Protected AAC audio file + Pop + + + 0 + Gimme Some Truth + Protected AAC audio file + Pop + + + 0 + [Just Like] Starting Over + Protected AAC audio file + Pop + + + 0 + God + Protected AAC audio file + Pop + + + 0 + Real Love + Protected AAC audio file + Pop + + + + + + + 151 + UB40 + + + 241 + 151 + UB40 The Best Of - Volume Two [UK] + + + 0 + Breakfast In Bed + MPEG audio file + Reggae + + + 0 + Where Did I Go Wrong + MPEG audio file + Reggae + + + 0 + I Would Do For You + MPEG audio file + Reggae + + + 0 + Homely Girl + MPEG audio file + Reggae + + + 0 + Here I Am (Come And Take Me) + MPEG audio file + Reggae + + + 0 + Kingston Town + MPEG audio file + Reggae + + + 0 + Wear You To The Ball + MPEG audio file + Reggae + + + 0 + (I Can't Help) Falling In Love With You + MPEG audio file + Reggae + + + 0 + Higher Ground + MPEG audio file + Reggae + + + 0 + Bring Me Your Cup + MPEG audio file + Reggae + + + 0 + C'est La Vie + MPEG audio file + Reggae + + + 0 + Reggae Music + MPEG audio file + Reggae + + + 0 + Superstition + MPEG audio file + Reggae + + + 0 + Until My Dying Day + MPEG audio file + Reggae + + + + + + + 152 + Van Halen + + + 242 + 152 + Diver Down + + + 0 + Where Have All The Good Times Gone? + MPEG audio file + Rock + + + 0 + Hang 'Em High + MPEG audio file + Rock + + + 0 + Cathedral + MPEG audio file + Rock + + + 0 + Secrets + MPEG audio file + Rock + + + 0 + Intruder + MPEG audio file + Rock + + + 0 + (Oh) Pretty Woman + MPEG audio file + Rock + + + 0 + Dancing In The Street + MPEG audio file + Rock + + + 0 + Little Guitars (Intro) + MPEG audio file + Rock + + + 0 + Little Guitars + MPEG audio file + Rock + + + 0 + Big Bad Bill (Is Sweet William Now) + MPEG audio file + Rock + + + 0 + The Full Bug + MPEG audio file + Rock + + + 0 + Happy Trails + MPEG audio file + Rock + + + + + 243 + 152 + The Best Of Van Halen, Vol. I + + + 0 + Eruption + MPEG audio file + Rock + + + 0 + Ain't Talkin' 'bout Love + MPEG audio file + Rock + + + 0 + Runnin' With The Devil + MPEG audio file + Rock + + + 0 + Dance the Night Away + MPEG audio file + Rock + + + 0 + And the Cradle Will Rock... + MPEG audio file + Rock + + + 0 + Unchained + MPEG audio file + Rock + + + 0 + Jump + MPEG audio file + Rock + + + 0 + Panama + MPEG audio file + Rock + + + 0 + Why Can't This Be Love + MPEG audio file + Rock + + + 0 + Dreams + MPEG audio file + Rock + + + 0 + When It's Love + MPEG audio file + Rock + + + 0 + Poundcake + MPEG audio file + Rock + + + 0 + Right Now + MPEG audio file + Rock + + + 0 + Can't Stop Loving You + MPEG audio file + Rock + + + 0 + Humans Being + MPEG audio file + Rock + + + 0 + Can't Get This Stuff No More + MPEG audio file + Rock + + + 0 + Me Wise Magic + MPEG audio file + Rock + + + + + 244 + 152 + Van Halen + + + 0 + Runnin' With The Devil + MPEG audio file + Rock + + + 0 + Eruption + MPEG audio file + Rock + + + 0 + You Really Got Me + MPEG audio file + Rock + + + 0 + Ain't Talkin' 'Bout Love + MPEG audio file + Rock + + + 0 + I'm The One + MPEG audio file + Rock + + + 0 + Jamie's Cryin' + MPEG audio file + Rock + + + 0 + Atomic Punk + MPEG audio file + Rock + + + 0 + Feel Your Love Tonight + MPEG audio file + Rock + + + 0 + Little Dreamer + MPEG audio file + Rock + + + 0 + Ice Cream Man + MPEG audio file + Rock + + + 0 + On Fire + MPEG audio file + Rock + + + + + 245 + 152 + Van Halen III + + + 0 + Neworld + MPEG audio file + Rock + + + 0 + Without You + MPEG audio file + Rock + + + 0 + One I Want + MPEG audio file + Rock + + + 0 + From Afar + MPEG audio file + Rock + + + 0 + Dirty Water Dog + MPEG audio file + Rock + + + 0 + Once + MPEG audio file + Rock + + + 0 + Fire in the Hole + MPEG audio file + Rock + + + 0 + Josephina + MPEG audio file + Rock + + + 0 + Year to the Day + MPEG audio file + Rock + + + 0 + Primary + MPEG audio file + Rock + + + 0 + Ballot or the Bullet + MPEG audio file + Rock + + + 0 + How Many Say I + MPEG audio file + Rock + + + + + + + 153 + Velvet Revolver + + + 246 + 153 + Contraband + + + 0 + Fall To Pieces + MPEG audio file + Rock + + + 0 + Headspace + MPEG audio file + Rock + + + 0 + Superhuman + MPEG audio file + Rock + + + 0 + Set Me Free + MPEG audio file + Rock + + + 0 + You Got No Right + MPEG audio file + Rock + + + 0 + Slither + MPEG audio file + Rock + + + 0 + Dirty Little Thing + MPEG audio file + Rock + + + 0 + Loving The Alien + MPEG audio file + Rock + + + 0 + Sucker Train Blues + MPEG audio file + Rock + + + 0 + Do It For The Kids + MPEG audio file + Rock + + + 0 + Big Machine + MPEG audio file + Rock + + + 0 + Illegal I Song + MPEG audio file + Rock + + + 0 + Spectacle + MPEG audio file + Rock + + + + + + + 154 + Whitesnake + + + + 155 + Zeca Pagodinho + + + 248 + 155 + Ao Vivo [IMPORT] + + + 0 + Faixa Amarela + MPEG audio file + Latin + + + 0 + Posso Até Me Apaixonar + MPEG audio file + Latin + + + 0 + Não Sou Mais Disso + MPEG audio file + Latin + + + 0 + Vivo Isolado Do Mundo + MPEG audio file + Latin + + + 0 + Coração Em Desalinho + MPEG audio file + Latin + + + 0 + Seu Balancê + MPEG audio file + Latin + + + 0 + Vai Adiar + MPEG audio file + Latin + + + 0 + Rugas + MPEG audio file + Latin + + + 0 + Feirinha da Pavuna/Luz do Repente/Bagaço da Laranja + MPEG audio file + Latin + + + 0 + Sem Essa de Malandro Agulha + MPEG audio file + Latin + + + 0 + Chico Não Vai na Corimba + MPEG audio file + Latin + + + 0 + Papel Principal + MPEG audio file + Latin + + + 0 + Saudade Louca + MPEG audio file + Latin + + + 0 + Camarão que Dorme e Onda Leva + MPEG audio file + Latin + + + 0 + Sapopemba e Maxambomba + MPEG audio file + Latin + + + 0 + Minha Fé + MPEG audio file + Latin + + + 0 + Lua de Ogum + MPEG audio file + Latin + + + 0 + Samba pras moças + MPEG audio file + Latin + + + 0 + Verdade + MPEG audio file + Latin + + + + + + + 156 + The Office + + + 249 + 156 + The Office, Season 1 + + + 0 + The Office: An American Workplace (Pilot) + Protected MPEG-4 video file + TV Shows + + + 0 + Diversity Day + Protected MPEG-4 video file + TV Shows + + + 0 + Health Care + Protected MPEG-4 video file + TV Shows + + + 0 + The Alliance + Protected MPEG-4 video file + TV Shows + + + 0 + Basketball + Protected MPEG-4 video file + TV Shows + + + 0 + Hot Girl + Protected MPEG-4 video file + TV Shows + + + + + 250 + 156 + The Office, Season 2 + + + 0 + The Dundies + Protected MPEG-4 video file + TV Shows + + + 0 + Sexual Harassment + Protected MPEG-4 video file + TV Shows + + + 0 + Office Olympics + Protected MPEG-4 video file + TV Shows + + + 0 + The Fire + Protected MPEG-4 video file + TV Shows + + + 0 + Halloween + Protected MPEG-4 video file + TV Shows + + + 0 + The Fight + Protected MPEG-4 video file + TV Shows + + + 0 + The Client + Protected MPEG-4 video file + TV Shows + + + 0 + Performance Review + Protected MPEG-4 video file + TV Shows + + + 0 + Email Surveillance + Protected MPEG-4 video file + TV Shows + + + 0 + Christmas Party + Protected MPEG-4 video file + TV Shows + + + 0 + Booze Cruise + Protected MPEG-4 video file + TV Shows + + + 0 + The Injury + Protected MPEG-4 video file + TV Shows + + + 0 + The Secret + Protected MPEG-4 video file + TV Shows + + + 0 + The Carpet + Protected MPEG-4 video file + TV Shows + + + 0 + Boys and Girls + Protected MPEG-4 video file + TV Shows + + + 0 + Valentine's Day + Protected MPEG-4 video file + TV Shows + + + 0 + Dwight's Speech + Protected MPEG-4 video file + TV Shows + + + 0 + Take Your Daughter to Work Day + Protected MPEG-4 video file + TV Shows + + + 0 + Michael's Birthday + Protected MPEG-4 video file + TV Shows + + + 0 + Drug Testing + Protected MPEG-4 video file + TV Shows + + + 0 + Conflict Resolution + Protected MPEG-4 video file + TV Shows + + + 0 + Casino Night - Season Finale + Protected MPEG-4 video file + TV Shows + + + + + 251 + 156 + The Office, Season 3 + + + 0 + Gay Witch Hunt + Protected MPEG-4 video file + TV Shows + + + 0 + The Convention + Protected MPEG-4 video file + TV Shows + + + 0 + The Coup + Protected MPEG-4 video file + TV Shows + + + 0 + Grief Counseling + Protected MPEG-4 video file + TV Shows + + + 0 + The Initiation + Protected MPEG-4 video file + TV Shows + + + 0 + Diwali + Protected MPEG-4 video file + TV Shows + + + 0 + Branch Closing + Protected MPEG-4 video file + TV Shows + + + 0 + The Merger + Protected MPEG-4 video file + TV Shows + + + 0 + The Convict + Protected MPEG-4 video file + Comedy + + + 0 + A Benihana Christmas, Pts. 1 & 2 + Protected MPEG-4 video file + Comedy + + + 0 + Back from Vacation + Protected MPEG-4 video file + Comedy + + + 0 + Traveling Salesmen + Protected MPEG-4 video file + Comedy + + + 0 + Producer's Cut: The Return + Protected MPEG-4 video file + Comedy + + + 0 + Ben Franklin + Protected MPEG-4 video file + Comedy + + + 0 + Phyllis's Wedding + Protected MPEG-4 video file + Comedy + + + 0 + Business School + Protected MPEG-4 video file + Comedy + + + 0 + Cocktails + Protected MPEG-4 video file + Comedy + + + 0 + The Negotiation + Protected MPEG-4 video file + Comedy + + + 0 + Safety Training + Protected MPEG-4 video file + Comedy + + + 0 + Product Recall + Protected MPEG-4 video file + Comedy + + + 0 + Women's Appreciation + Protected MPEG-4 video file + Comedy + + + 0 + Beach Games + Protected MPEG-4 video file + Comedy + + + 0 + The Job + Protected MPEG-4 video file + Comedy + + + 0 + Branch Closing + Protected MPEG-4 video file + Comedy + + + 0 + The Return + Protected MPEG-4 video file + Comedy + + + + + + + 157 + Dread Zeppelin + + + 252 + 157 + Un-Led-Ed + + + 0 + Your Time Is Gonna Come + Protected AAC audio file + Rock + + + + + + + 158 + Battlestar Galactica (Classic) + + + 253 + 158 + Battlestar Galactica (Classic), Season 1 + + + 0 + Battlestar Galactica, Pt. 1 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + Battlestar Galactica, Pt. 2 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + Battlestar Galactica, Pt. 3 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + Lost Planet of the Gods, Pt. 1 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + Lost Planet of the Gods, Pt. 2 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + The Lost Warrior + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + The Long Patrol + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + The Gun On Ice Planet Zero, Pt. 1 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + The Gun On Ice Planet Zero, Pt. 2 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + The Magnificent Warriors + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + The Young Lords + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + The Living Legend, Pt. 1 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + The Living Legend, Pt. 2 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + Fire In Space + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + War of the Gods, Pt. 1 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + War of the Gods, Pt. 2 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + The Man With Nine Lives + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + Murder On the Rising Star + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + Greetings from Earth, Pt. 1 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + Greetings from Earth, Pt. 2 + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + Baltar's Escape + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + Experiment In Terra + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + Take the Celestra + Protected MPEG-4 video file + Sci Fi & Fantasy + + + 0 + The Hand of God + Protected MPEG-4 video file + Sci Fi & Fantasy + + + + + + + 159 + Aquaman + + + 254 + 159 + Aquaman + + + 0 + Pilot + Protected MPEG-4 video file + TV Shows + + + + + + + 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 + + + 257 + 179 + 20th Century Masters - The Millennium Collection: The Best of Scorpions + + + 0 + Rock You Like a Hurricane + Protected AAC audio file + Rock + + + 0 + No One Like You + Protected AAC audio file + Rock + + + 0 + The Zoo + Protected AAC audio file + Rock + + + 0 + Loving You Sunday Morning + Protected AAC audio file + Rock + + + 0 + Still Loving You + Protected AAC audio file + Rock + + + 0 + Big City Nights + Protected AAC audio file + Rock + + + 0 + Believe in Love + Protected AAC audio file + Rock + + + 0 + Rhythm of Love + Protected AAC audio file + Rock + + + 0 + I Can't Explain + Protected AAC audio file + Rock + + + 0 + Tease Me Please Me + Protected AAC audio file + Rock + + + 0 + Wind of Change + Protected AAC audio file + Rock + + + 0 + Send Me an Angel + Protected AAC audio file + Rock + + + + + + + 180 + House Of Pain + + + 258 + 180 + House of Pain + + + 0 + Jump Around + MPEG audio file + Hip Hop/Rap + + + 0 + Salutations + MPEG audio file + Hip Hop/Rap + + + 0 + Put Your Head Out + MPEG audio file + Hip Hop/Rap + + + 0 + Top O' The Morning To Ya + MPEG audio file + Hip Hop/Rap + + + 0 + Commercial 1 + MPEG audio file + Hip Hop/Rap + + + 0 + House And The Rising Sun + MPEG audio file + Hip Hop/Rap + + + 0 + Shamrocks And Shenanigans + MPEG audio file + Hip Hop/Rap + + + 0 + House Of Pain Anthem + MPEG audio file + Hip Hop/Rap + + + 0 + Danny Boy, Danny Boy + MPEG audio file + Hip Hop/Rap + + + 0 + Guess Who's Back + MPEG audio file + Hip Hop/Rap + + + 0 + Commercial 2 + MPEG audio file + Hip Hop/Rap + + + 0 + Put On Your Shit Kickers + MPEG audio file + Hip Hop/Rap + + + 0 + Come And Get Some Of This + MPEG audio file + Hip Hop/Rap + + + 0 + Life Goes On + MPEG audio file + Hip Hop/Rap + + + 0 + One For The Road + MPEG audio file + Hip Hop/Rap + + + 0 + Feel It + MPEG audio file + Hip Hop/Rap + + + 0 + All My Love + MPEG audio file + Hip Hop/Rap + + + 0 + Jump Around (Pete Rock Remix) + MPEG audio file + Hip Hop/Rap + + + 0 + Shamrocks And Shenanigans (Boom Shalock Lock Boom/Butch Vig Mix) + MPEG audio file + Hip Hop/Rap + + + + + + + 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 + + + 260 + 196 + Cake: B-Sides and Rarities + + + 0 + War Pigs + Purchased AAC audio file + Alternative + + + + + + + 197 + Aisha Duo + + + 262 + 197 + Quiet Songs + + + 0 + Amanda + AAC audio file + Jazz + + + 0 + Despertar + AAC audio file + Jazz + + + + + + + 198 + Habib Koité and Bamada + + + 263 + 198 + Muso Ko + + + 0 + Din Din Wo (Little Child) + AAC audio file + World + + + 0 + I Ka Barra (Your Work) + AAC audio file + World + + + + + + + 199 + Karsh Kale + + + 264 + 199 + Realize + + + 0 + Distance + AAC audio file + Electronica/Dance + + + 0 + One Step Beyond + AAC audio file + Electronica/Dance + + + + + + + 200 + The Posies + + + 265 + 200 + Every Kind of Light + + + 0 + I Guess You're Right + AAC audio file + Rock + + + 0 + Love Comes + AAC audio file + Rock + + + + + + + 201 + Luciana Souza/Romero Lubambo + + + 266 + 201 + Duos II + + + 0 + Muita Bobeira + AAC audio file + Latin + + + + + + + 202 + Aaron Goldberg + + + 267 + 202 + Worlds + + + 0 + OAM's Blues + AAC audio file + Jazz + + + + + + + 203 + Nicolaus Esterhazy Sinfonia + + + 268 + 203 + The Best of Beethoven + + + 0 + Symphony No. 3 in E-flat major, Op. 55, "Eroica" - Scherzo: Allegro Vivace + AAC audio file + Classical + + + + + + + 204 + Temple of the Dog + + + 269 + 204 + Temple of the Dog + + + 0 + Say Hello 2 Heaven + Protected AAC audio file + Alternative + + + 0 + Reach Down + Protected AAC audio file + Alternative + + + 0 + Hunger Strike + Protected AAC audio file + Alternative + + + 0 + Pushin Forward Back + Protected AAC audio file + Alternative + + + 0 + Call Me a Dog + Protected AAC audio file + Alternative + + + 0 + Times of Trouble + Protected AAC audio file + Alternative + + + 0 + Wooden Jesus + Protected AAC audio file + Alternative + + + 0 + Your Savior + Protected AAC audio file + Alternative + + + 0 + Four Walled World + Protected AAC audio file + Alternative + + + 0 + All Night Thing + Protected AAC audio file + Alternative + + + + + + + 205 + Chris Cornell + + + 270 + 205 + Carry On + + + 0 + No Such Thing + Protected AAC audio file + Alternative + + + 0 + Poison Eye + Protected AAC audio file + Alternative + + + 0 + Arms Around Your Love + Protected AAC audio file + Alternative + + + 0 + Safe and Sound + Protected AAC audio file + Alternative + + + 0 + She'll Never Be Your Man + Protected AAC audio file + Alternative + + + 0 + Ghosts + Protected AAC audio file + Alternative + + + 0 + Killing Birds + Protected AAC audio file + Alternative + + + 0 + Billie Jean + Protected AAC audio file + Alternative + + + 0 + Scar On the Sky + Protected AAC audio file + Alternative + + + 0 + Your Soul Today + Protected AAC audio file + Alternative + + + 0 + Finally Forever + Protected AAC audio file + Alternative + + + 0 + Silence the Voices + Protected AAC audio file + Alternative + + + 0 + Disappearing Act + Protected AAC audio file + Alternative + + + 0 + You Know My Name + Protected AAC audio file + Alternative + + + + + + + 206 + Alberto Turco & Nova Schola Gregoriana + + + 272 + 206 + Adorate Deum: Gregorian Chant from the Proper of the Mass + + + 0 + Intoitus: Adorate Deum + Protected AAC audio file + Classical + + + + + + + 207 + Richard Marlow & The Choir of Trinity College, Cambridge + + + 273 + 207 + Allegri: Miserere + + + 0 + Miserere mei, Deus + Protected AAC audio file + Classical + + + + + + + 208 + English Concert & Trevor Pinnock + + + 274 + 208 + Pachelbel: Canon & Gigue + + + 0 + Canon and Gigue in D Major: I. Canon + Protected AAC audio file + Classical + + + + + 315 + 208 + Handel: Music for the Royal Fireworks (Original Version 1749) + + + 0 + Music for the Royal Fireworks, HWV351 (1749): La Réjouissance + Protected AAC audio file + Classical + + + + + + + 209 + Anne-Sophie Mutter, Herbert Von Karajan & Wiener Philharmoniker + + + 275 + 209 + Vivaldi: The Four Seasons + + + 0 + Concerto No. 1 in E Major, RV 269 "Spring": I. Allegro + Protected AAC audio file + Classical + + + + + + + 210 + Hilary Hahn, Jeffrey Kahane, Los Angeles Chamber Orchestra & Margaret Batjer + + + 276 + 210 + Bach: Violin Concertos + + + 0 + Concerto for 2 Violins in D Minor, BWV 1043: I. Vivace + Protected AAC audio file + Classical + + + + + + + 211 + Wilhelm Kempff + + + 277 + 211 + Bach: Goldberg Variations + + + 0 + Aria Mit 30 Veränderungen, BWV 988 "Goldberg Variations": Aria + Protected AAC audio file + Classical + + + + + + + 212 + Yo-Yo Ma + + + 278 + 212 + Bach: The Cello Suites + + + 0 + Suite for Solo Cello No. 1 in G Major, BWV 1007: I. Prélude + Protected AAC audio file + Classical + + + + + + + 213 + Scholars Baroque Ensemble + + + 279 + 213 + Handel: The Messiah (Highlights) + + + 0 + The Messiah: Behold, I Tell You a Mystery... The Trumpet Shall Sound + Protected AAC audio file + Classical + + + + + + + 214 + Academy of St. Martin in the Fields & Sir Neville Marriner + + + 280 + 214 + The World of Classical Favourites + + + 0 + Solomon HWV 67: The Arrival of the Queen of Sheba + Protected AAC audio file + Classical + + + 0 + Fantasia On Greensleeves + Protected AAC audio file + Classical + + + + + + + 215 + Academy of St. Martin in the Fields Chamber Ensemble & Sir Neville Marriner + + + 281 + 215 + Sir Neville Marriner: A Celebration + + + 0 + "Eine Kleine Nachtmusik" Serenade In G, K. 525: I. Allegro + Protected AAC audio file + Classical + + + + + + + 216 + Berliner Philharmoniker, Claudio Abbado & Sabine Meyer + + + 282 + 216 + Mozart: Wind Concertos + + + 0 + Concerto for Clarinet in A Major, K. 622: II. Adagio + Protected AAC audio file + Classical + + + + + + + 217 + Royal Philharmonic Orchestra & Sir Thomas Beecham + + + 283 + 217 + Haydn: Symphonies 99 - 104 + + + 0 + Symphony No. 104 in D Major "London": IV. Finale: Spiritoso + Purchased AAC audio file + Classical + + + + + + + 218 + Orchestre Révolutionnaire et Romantique & John Eliot Gardiner + + + 284 + 218 + Beethoven: Symhonies Nos. 5 & 6 + + + 0 + Symphony No.5 in C Minor: I. Allegro con brio + Protected AAC audio file + Classical + + + + + + + 219 + Britten Sinfonia, Ivor Bolton & Lesley Garrett + + + 285 + 219 + A Soprano Inspired + + + 0 + Ave Maria + Protected AAC audio file + Classical + + + + + + + 220 + Chicago Symphony Chorus, Chicago Symphony Orchestra & Sir Georg Solti + + + 286 + 220 + Great Opera Choruses + + + 0 + Nabucco: Chorus, "Va, Pensiero, Sull'ali Dorate" + Protected AAC audio file + Classical + + + + + + + 221 + Sir Georg Solti & Wiener Philharmoniker + + + 287 + 221 + Wagner: Favourite Overtures + + + 0 + Die Walküre: The Ride of the Valkyries + Protected AAC audio file + Classical + + + + + + + 222 + Academy of St. Martin in the Fields, John Birch, Sir Neville Marriner & Sylvia McNair + + + 288 + 222 + Fauré: Requiem, Ravel: Pavane & Others + + + 0 + Requiem, Op.48: 4. Pie Jesu + Protected AAC audio file + Classical + + + + + + + 223 + London Symphony Orchestra & Sir Charles Mackerras + + + 289 + 223 + Tchaikovsky: The Nutcracker + + + 0 + The Nutcracker, Op. 71a, Act II: Scene 14: Pas de deux: Dance of the Prince & the Sugar-Plum Fairy + Protected AAC audio file + Classical + + + + + + + 224 + Barry Wordsworth & BBC Concert Orchestra + + + 290 + 224 + The Last Night of the Proms + + + 0 + Nimrod (Adagio) from Variations On an Original Theme, Op. 36 "Enigma" + Protected AAC audio file + Classical + + + + + + + 225 + Herbert Von Karajan, Mirella Freni & Wiener Philharmoniker + + + 291 + 225 + Puccini: Madama Butterfly - Highlights + + + 0 + Madama Butterfly: Un Bel Dì Vedremo + Protected AAC audio file + Classical + + + + + + + 226 + Eugene Ormandy + + + 292 + 226 + Holst: The Planets, Op. 32 & Vaughan Williams: Fantasies + + + 0 + Jupiter, the Bringer of Jollity + Protected AAC audio file + Classical + + + + + 311 + 226 + Strauss: Waltzes + + + 0 + On the Beautiful Blue Danube + Protected AAC audio file + Classical + + + + + 343 + 226 + Respighi:Pines of Rome + + + 0 + Pini Di Roma (Pinien Von Rom) \ I Pini Della Via Appia + Protected AAC audio file + Classical + + + + + + + 227 + Luciano Pavarotti + + + 293 + 227 + Pavarotti's Opera Made Easy + + + 0 + Turandot, Act III, Nessun dorma! + Protected AAC audio file + Classical + + + + + + + 228 + Leonard Bernstein & New York Philharmonic + + + 294 + 228 + Great Performances - Barber's Adagio and Other Romantic Favorites for Strings + + + 0 + Adagio for Strings from the String Quartet, Op. 11 + Protected AAC audio file + Classical + + + + + + + 229 + Boston Symphony Orchestra & Seiji Ozawa + + + 295 + 229 + Carmina Burana + + + 0 + Carmina Burana: O Fortuna + Protected AAC audio file + Classical + + + + + + + 230 + Aaron Copland & London Symphony Orchestra + + + 296 + 230 + A Copland Celebration, Vol. I + + + 0 + Fanfare for the Common Man + Protected AAC audio file + Classical + + + + + + + 231 + Ton Koopman + + + 297 + 231 + Bach: Toccata & Fugue in D Minor + + + 0 + Toccata and Fugue in D Minor, BWV 565: I. Toccata + Protected AAC audio file + Classical + + + + + + + 232 + Sergei Prokofiev & Yuri Temirkanov + + + 298 + 232 + Prokofiev: Symphony No.1 + + + 0 + Symphony No.1 in D Major, Op.25 "Classical", Allegro Con Brio + Protected AAC audio file + Classical + + + + + + + 233 + Chicago Symphony Orchestra & Fritz Reiner + + + 299 + 233 + Scheherazade + + + 0 + Scheherazade, Op. 35: I. The Sea and Sindbad's Ship + Protected AAC audio file + Classical + + + + + + + 234 + Orchestra of The Age of Enlightenment + + + 300 + 234 + Bach: The Brandenburg Concertos + + + 0 + Concerto No.2 in F Major, BWV1047, I. Allegro + Protected AAC audio file + Classical + + + + + + + 235 + Emanuel Ax, Eugene Ormandy & Philadelphia Orchestra + + + 301 + 235 + Chopin: Piano Concertos Nos. 1 & 2 + + + 0 + Concerto for Piano No. 2 in F Minor, Op. 21: II. Larghetto + Protected AAC audio file + Classical + + + + + + + 236 + James Levine + + + 302 + 236 + Mascagni: Cavalleria Rusticana + + + 0 + Cavalleria Rusticana \ Act \ Intermezzo Sinfonico + Protected AAC audio file + Classical + + + + + + + 237 + Berliner Philharmoniker & Hans Rosbaud + + + 303 + 237 + Sibelius: Finlandia + + + 0 + Karelia Suite, Op.11: 2. Ballade (Tempo Di Menuetto) + Protected AAC audio file + Classical + + + + + + + 238 + Maurizio Pollini + + + 304 + 238 + Beethoven Piano Sonatas: Moonlight & Pastorale + + + 0 + Piano Sonata No. 14 in C Sharp Minor, Op. 27, No. 2, "Moonlight": I. Adagio sostenuto + Protected AAC audio file + Classical + + + + + + + 239 + Academy of St. Martin in the Fields, Sir Neville Marriner & William Bennett + + + + 240 + Gustav Mahler + + + 305 + 240 + Great Recordings of the Century - Mahler: Das Lied von der Erde + + + 0 + Das Lied Von Der Erde, Von Der Jugend + Protected AAC audio file + Classical + + + + + + + 241 + Felix Schmidt, London Symphony Orchestra & Rafael Frühbeck de Burgos + + + 306 + 241 + Elgar: Cello Concerto & Vaughan Williams: Fantasias + + + 0 + Concerto for Cello and Orchestra in E minor, Op. 85: I. Adagio - Moderato + Protected AAC audio file + Classical + + + + + + + 242 + Edo de Waart & San Francisco Symphony + + + 307 + 242 + Adams, John: The Chairman Dances + + + 0 + Two Fanfares for Orchestra: II. Short Ride in a Fast Machine + Protected AAC audio file + Classical + + + + + + + 243 + Antal Doráti & London Symphony Orchestra + + + 308 + 243 + Tchaikovsky: 1812 Festival Overture, Op.49, Capriccio Italien & Beethoven: Wellington's Victory + + + 0 + Wellington's Victory or the Battle Symphony, Op.91: 2. Symphony of Triumph + Protected AAC audio file + Classical + + + + + + + 244 + Choir Of Westminster Abbey & Simon Preston + + + 309 + 244 + Palestrina: Missa Papae Marcelli & Allegri: Miserere + + + 0 + Missa Papae Marcelli: Kyrie + Protected AAC audio file + Classical + + + + + + + 245 + Michael Tilson Thomas & San Francisco Symphony + + + 310 + 245 + Prokofiev: Romeo & Juliet + + + 0 + Romeo et Juliette: No. 11 - Danse des Chevaliers + Protected AAC audio file + Classical + + + + + 312 + 245 + Berlioz: Symphonie Fantastique + + + 0 + Symphonie Fantastique, Op. 14: V. Songe d'une nuit du sabbat + Protected AAC audio file + Classical + + + + + + + 246 + Chor der Wiener Staatsoper, Herbert Von Karajan & Wiener Philharmoniker + + + 313 + 246 + Bizet: Carmen Highlights + + + 0 + Carmen: Overture + Protected AAC audio file + Classical + + + + + + + 247 + The King's Singers + + + 314 + 247 + English Renaissance + + + 0 + Lamentations of Jeremiah, First Set \ Incipit Lamentatio + Protected AAC audio file + Classical + + + 0 + Sing Joyfully + Protected AAC audio file + Classical + + + + + + + 248 + Berliner Philharmoniker & Herbert Von Karajan + + + 316 + 248 + Grieg: Peer Gynt Suites & Sibelius: Pelléas et Mélisande + + + 0 + Peer Gynt Suite No.1, Op.46: 1. Morning Mood + Protected AAC audio file + Classical + + + + + 320 + 248 + Mozart: Symphonies Nos. 40 & 41 + + + 0 + Symphony No. 41 in C Major, K. 551, "Jupiter": IV. Molto allegro + Protected AAC audio file + Classical + + + + + 336 + 248 + Prokofiev: Symphony No.5 & Stravinksy: Le Sacre Du Printemps + + + 0 + Le Sacre Du Printemps: I.iv. Spring Rounds + Protected AAC audio file + Classical + + + + + + + 249 + Sir Georg Solti, Sumi Jo & Wiener Philharmoniker + + + 317 + 249 + Mozart Gala: Famous Arias + + + 0 + Die Zauberflöte, K.620: "Der Hölle Rache Kocht in Meinem Herze" + Protected AAC audio file + Opera + + + + + + + 250 + Christopher O'Riley + + + 318 + 250 + SCRIABIN: Vers la flamme + + + 0 + SCRIABIN: Prelude in B Major, Op. 11, No. 11 + Purchased AAC audio file + Classical + + + + + + + 251 + Fretwork + + + 319 + 251 + Armada: Music from the Courts of England and Spain + + + 0 + Pavan, Lachrimae Antiquae + Protected AAC audio file + Classical + + + + + + + 252 + Amy Winehouse + + + 321 + 252 + Back to Black + + + 0 + Rehab + Protected AAC audio file + R&B/Soul + + + 0 + You Know I'm No Good + Protected AAC audio file + R&B/Soul + + + 0 + Me & Mr. Jones + Protected AAC audio file + R&B/Soul + + + 0 + Just Friends + Protected AAC audio file + R&B/Soul + + + 0 + Back to Black + Protected AAC audio file + R&B/Soul + + + 0 + Love Is a Losing Game + Protected AAC audio file + R&B/Soul + + + 0 + Tears Dry On Their Own + Protected AAC audio file + R&B/Soul + + + 0 + Wake Up Alone + Protected AAC audio file + R&B/Soul + + + 0 + Some Unholy War + Protected AAC audio file + R&B/Soul + + + 0 + He Can Only Hold Her + Protected AAC audio file + R&B/Soul + + + 0 + You Know I'm No Good (feat. Ghostface Killah) + Protected AAC audio file + R&B/Soul + + + 0 + Rehab (Hot Chip Remix) + Protected AAC audio file + R&B/Soul + + + + + 322 + 252 + Frank + + + 0 + Intro / Stronger Than Me + Protected AAC audio file + Pop + + + 0 + You Sent Me Flying / Cherry + Protected AAC audio file + Pop + + + 0 + F**k Me Pumps + Protected AAC audio file + Pop + + + 0 + I Heard Love Is Blind + Protected AAC audio file + Pop + + + 0 + (There Is) No Greater Love (Teo Licks) + Protected AAC audio file + Pop + + + 0 + In My Bed + Protected AAC audio file + Pop + + + 0 + Take the Box + Protected AAC audio file + Pop + + + 0 + October Song + Protected AAC audio file + Pop + + + 0 + What Is It About Men + Protected AAC audio file + Pop + + + 0 + Help Yourself + Protected AAC audio file + Pop + + + 0 + Amy Amy Amy (Outro) + Protected AAC audio file + Pop + + + + + + + 253 + Calexico + + + 323 + 253 + Carried to Dust (Bonus Track Version) + + + 0 + Slowness + Protected AAC audio file + Alternative + + + + + + + 254 + Otto Klemperer & Philharmonia Orchestra + + + 324 + 254 + Beethoven: Symphony No. 6 'Pastoral' Etc. + + + 0 + Prometheus Overture, Op. 43 + Purchased AAC audio file + Classical + + + + + + + 255 + Yehudi Menuhin + + + 325 + 255 + Bartok: Violin & Viola Concertos + + + 0 + Sonata for Solo Violin: IV: Presto + Purchased AAC audio file + Classical + + + + + + + 256 + Philharmonia Orchestra & Sir Neville Marriner + + + 326 + 256 + Mendelssohn: A Midsummer Night's Dream + + + 0 + A Midsummer Night's Dream, Op.61 Incidental Music: No.7 Notturno + Protected AAC audio file + Classical + + + + + + + 257 + Academy of St. Martin in the Fields, Sir Neville Marriner & Thurston Dart + + + 327 + 257 + Bach: Orchestral Suites Nos. 1 - 4 + + + 0 + Suite No. 3 in D, BWV 1068: III. Gavotte I & II + Protected AAC audio file + Classical + + + + + + + 258 + Les Arts Florissants & William Christie + + + 328 + 258 + Charpentier: Divertissements, Airs & Concerts + + + 0 + Concert pour 4 Parties de V**les, H. 545: I. Prelude + Protected AAC audio file + Classical + + + + + + + 259 + The 12 Cellists of The Berlin Philharmonic + + + 329 + 259 + South American Getaway + + + 0 + Adios nonino + Protected AAC audio file + Classical + + + + + + + 260 + Adrian Leaper & Doreen de Feis + + + 330 + 260 + Górecki: Symphony No. 3 + + + 0 + Symphony No. 3 Op. 36 for Orchestra and Soprano "Symfonia Piesni Zalosnych" \ Lento E Largo - Tranquillissimo + Protected AAC audio file + Classical + + + + + + + 261 + Roger Norrington, London Classical Players + + + 331 + 261 + Purcell: The Fairy Queen + + + 0 + Act IV, Symphony + Protected AAC audio file + Classical + + + + + + + 262 + Charles Dutoit & L'Orchestre Symphonique de Montréal + + + 332 + 262 + The Ultimate Relexation Album + + + 0 + 3 Gymnopédies: No.1 - Lent Et Grave, No.3 - Lent Et Douloureux + Protected AAC audio file + Classical + + + + + + + 263 + Equale Brass Ensemble, John Eliot Gardiner & Munich Monteverdi Orchestra and Choir + + + 333 + 263 + Purcell: Music for the Queen Mary + + + 0 + Music for the Funeral of Queen Mary: VI. "Thou Knowest, Lord, the Secrets of Our Hearts" + Protected AAC audio file + Classical + + + + + + + 264 + Kent Nagano and Orchestre de l'Opéra de Lyon + + + 334 + 264 + Weill: The Seven Deadly Sins + + + 0 + Symphony No. 2: III. Allegro vivace + Protected AAC audio file + Classical + + + + + + + 265 + Julian Bream + + + 335 + 265 + J.S. Bach: Chaconne, Suite in E Minor, Partita in E Major & Prelude, Fugue and Allegro + + + 0 + Partita in E Major, BWV 1006A: I. Prelude + Protected AAC audio file + Classical + + + + + + + 266 + Martin Roscoe + + + 337 + 266 + Szymanowski: Piano Works, Vol. 1 + + + 0 + Metopes, Op. 29: Calypso + Protected AAC audio file + Classical + + + + + + + 267 + Göteborgs Symfoniker & Neeme Järvi + + + 338 + 267 + Nielsen: The Six Symphonies + + + 0 + Symphony No. 2, Op. 16 - "The Four Temperaments": II. Allegro Comodo e Flemmatico + Protected AAC audio file + Classical + + + + + + + 268 + Itzhak Perlman + + + 339 + 268 + Great Recordings of the Century: Paganini's 24 Caprices + + + 0 + 24 Caprices, Op. 1, No. 24, for Solo Violin, in A Minor + Protected AAC audio file + Classical + + + + + + + 269 + Michele Campanella + + + 340 + 269 + Liszt - 12 Études D'Execution Transcendante + + + 0 + Étude 1, In C Major - Preludio (Presto) - Liszt + Purchased AAC audio file + Classical + + + + + + + 270 + Gerald Moore + + + 341 + 270 + Great Recordings of the Century - Shubert: Schwanengesang, 4 Lieder + + + 0 + Erlkonig, D.328 + Protected AAC audio file + Classical + + + + + + + 271 + Mela Tenenbaum, Pro Musica Prague & Richard Kapp + + + 342 + 271 + Locatelli: Concertos for Violin, Strings and Continuo, Vol. 3 + + + 0 + Concerto for Violin, Strings and Continuo in G Major, Op. 3, No. 9: I. Allegro + Purchased AAC audio file + Classical + + + + + + + 272 + Emerson String Quartet + + + 344 + 272 + Schubert: The Late String Quartets & String Quintet (3 CD's) + + + 0 + String Quartet No. 12 in C Minor, D. 703 "Quartettsatz": II. Andante - Allegro assai + Protected AAC audio file + Classical + + + + + + + 273 + C. Monteverdi, Nigel Rogers - Chiaroscuro; London Baroque; London Cornett & Sackbu + + + 345 + 273 + Monteverdi: L'Orfeo + + + 0 + L'orfeo, Act 3, Sinfonia (Orchestra) + Protected AAC audio file + Classical + + + + + + + 274 + Nash Ensemble + + + 346 + 274 + Mozart: Chamber Music + + + 0 + Quintet for Horn, Violin, 2 Violas, and Cello in E Flat Major, K. 407/386c: III. Allegro + Protected AAC audio file + Classical + + + + + + + 275 + Philip Glass Ensemble + + + 347 + 275 + Koyaanisqatsi (Soundtrack from the Motion Picture) + + + 0 + Koyaanisqatsi + Protected AAC audio file + Soundtrack + + + + + + \ No newline at end of file