diff options
author | Mart Lubbers | 2015-02-06 08:39:37 +0100 |
---|---|---|
committer | Mart Lubbers | 2015-02-06 08:39:37 +0100 |
commit | 379b6353396ca2401241d714733d570629835ffe (patch) | |
tree | 26652c854a79c627b5f50bc8ac26f9b84f8e196d /files/practicum | |
parent | Merge branch 'master' of https://github.com/dopefishh/fp1 (diff) |
added practicum files, updated gitignore
Diffstat (limited to 'files/practicum')
224 files changed, 48249 insertions, 0 deletions
diff --git a/files/practicum/AVLTreeTest.icl b/files/practicum/AVLTreeTest.icl new file mode 100644 index 0000000..8f91031 --- /dev/null +++ b/files/practicum/AVLTreeTest.icl @@ -0,0 +1,9 @@ +module AVLTreeTest
+
+import StdEnv, StdAVLTree, Subs
+
+// Test alle mogelijkheden:
+Start = filter (not o isAVLTree) (map (foldr deleteAVLTree tree) (subs elementen))
+where
+ elementen = [3,2,1,0,1,2,3,2,1,0,1,2,3]
+ tree = foldr insertAVLTree mkAVLLeaf elementen
diff --git a/files/practicum/Abalone.icl b/files/practicum/Abalone.icl new file mode 100644 index 0000000..0963415 --- /dev/null +++ b/files/practicum/Abalone.icl @@ -0,0 +1,5 @@ +implementation module Abalone
+
+import StdEnv
+
+Start = 0
diff --git a/files/practicum/BewijsInitTake.icl b/files/practicum/BewijsInitTake.icl new file mode 100644 index 0000000..ef5e9b4 --- /dev/null +++ b/files/practicum/BewijsInitTake.icl @@ -0,0 +1,22 @@ +Zij gegeven: + + init :: [a] -> [a] + init [x] = [] (1) + init [x:xs] = [x:init xs] (2) + + take :: Int [a] -> [a] + take 0 xs = [] (3) + take n [] = [] (4) + take n [x:xs] = [x : take (n-1) xs] (5) + + length :: [a] -> Int + length [] = 0 (6) + length [x:xs] = 1 + length xs (7) + + (f o g) x = f (g x) (8) + +Bewijs de volgende stelling voor alle eindige, niet-lege lijsten xs: + + init xs = take (length xs - 1) xs + +Je mag aannemen dat het Int-bereik onbeperkt is. diff --git a/files/practicum/BewijsMapFlatten.icl b/files/practicum/BewijsMapFlatten.icl new file mode 100644 index 0000000..dc74766 --- /dev/null +++ b/files/practicum/BewijsMapFlatten.icl @@ -0,0 +1,30 @@ +Zij gegeven:
+
+(++) :: [a] [a] -> [a]
+(++) [] xs = xs (1)
+(++) [y:ys] xs = [y : ys ++ xs] (2)
+
+map :: (a -> b) [a] -> [b]
+map f [] = [] (3)
+map f [x:xs] = [f x : map f xs] (4)
+
+flatten :: [[a]] -> [a]
+flatten [] = [] (5)
+flatten [x:xs] = x ++ (flatten xs) (6)
+
+1.
+Te bewijzen:
+ voor iedere functie f, eindige lijst as en bs:
+
+ map f (as ++ bs) = (map f as) ++ (map f bs)
+
+Bewijs:
+
+
+2.
+Te bewijzen:
+ voor iedere functie f, voor iedere eindige lijst xs:
+
+ flatten (map (map f) xs) = map f (flatten xs)
+
+Bewijs:
diff --git a/files/practicum/BewijsMapO.icl b/files/practicum/BewijsMapO.icl new file mode 100644 index 0000000..144a4d6 --- /dev/null +++ b/files/practicum/BewijsMapO.icl @@ -0,0 +1,12 @@ +Zij gegeven: + + map :: (a -> b) [a] -> [b] + map f [] = [] (1) + map f [x:xs] = [f x : map f xs] (2) + + (f o g) x = f (g x) (3) + +Bewijs de volgende stelling voor alle eindige lijsten xs en functies f en g: + + map (f o g) xs = map f (map g xs) + diff --git a/files/practicum/BewijsMeppenEnTippen.icl b/files/practicum/BewijsMeppenEnTippen.icl new file mode 100644 index 0000000..720ff4d --- /dev/null +++ b/files/practicum/BewijsMeppenEnTippen.icl @@ -0,0 +1,29 @@ +Zij gegeven:
+
+:: BTree a = Tip a | Bin (BTree a) (BTree a)
+
+map :: (a -> b) [a] -> [b]
+map f [] = [] (1.)
+map f [x:xs] = [f x : map f xs] (2.)
+
+mapbtree :: (a -> b) (BTree a) -> BTree b
+mapbtree f (Tip a) = Tip (f a) (3.)
+mapbtree f (Bin t1 t2) = Bin (mapbtree f t1) (mapbtree f t2) (4.)
+
+foldbtree :: (a a -> a) (BTree a) -> a
+foldbtree f (Tip x) = x (5.)
+foldbtree f (Bin t1 t2) = f (foldbtree f t1) (foldbtree f t2) (6.)
+
+tips :: (BTree a) -> [a]
+tips t = foldbtree (++) (mapbtree unit t) (7.)
+
+unit :: a -> [a]
+unit x = [x] (8.)
+
+
+Te bewijzen:
+ voor alle functies f, voor alle eindige bomen t:
+
+ map f (tips t) = tips (mapbtree f t)
+
+Bewijs:
diff --git a/files/practicum/BewijsPeano.icl b/files/practicum/BewijsPeano.icl new file mode 100644 index 0000000..9d1bbe3 --- /dev/null +++ b/files/practicum/BewijsPeano.icl @@ -0,0 +1,35 @@ +Zij gegeven: + + :: Nat = Zero | Suc Nat + + (##) :: Nat -> Int + (##) Zero = 0 (1) + (##) (Suc n) = 1 + ##n (2) + +1. Zij bovendien gegeven: + + add :: Nat Nat -> Nat + add Zero n = n (3) + add (Suc m) n = Suc (add m n) (4) + +Bewijs de volgende stelling voor alle Nat m en n: + + ## (add m n) = ##m + ##n + +Bewijs: +------- + + +2. Zij bovendien gegeven: + + mul :: Nat Nat -> Nat + mul m Zero = Zero (5) + mul m (Suc n) = add (mul m n) m (6) + + +Bewijs de volgende stelling voor alle Nat m en n: + + ## (mul m n) = ##m * ##n + +Bewijs: +------- diff --git a/files/practicum/BewijsSubsEnMap.icl b/files/practicum/BewijsSubsEnMap.icl new file mode 100644 index 0000000..43329e3 --- /dev/null +++ b/files/practicum/BewijsSubsEnMap.icl @@ -0,0 +1,33 @@ +Zij gegeven de volgende functie-definities:
+
+subs :: [a] -> [[a]]
+subs [] = [[]] (1.)
+subs [x:xs] = subs xs ++ map (cons x) (subs xs) (2.)
+
+map :: (a -> b) [a] -> [b]
+map f [] = [] (3.)
+map f [x:xs] = [f x : map f xs] (4.)
+
+(++) :: [a] [a] -> [a]
+(++) [] ys = ys (5.)
+(++) [x:xs] ys = [x : xs ++ ys] (6.)
+
+cons :: a [a] -> [a]
+cons x xs = [x : xs] (7.)
+
+
+Bewijs de volgende stelling voor alle functies f en eindige lijsten xs:
+
+ subs (map f xs) = map (map f) (subs xs).
+
+Je kunt gebruik maken van de volgende hulpstellingen (lemma's) die gelden voor alle
+functies f, g en eindige lijsten xs en ys:
+
+map f (xs ++ ys) = map f xs ++ map f ys (8.)
+map g (map f xs) = map (g o f) xs (9.)
+(cons (f a)) o (map f) = (map f) o (cons a) (10.)
+(g o f) x = g (f x) (11.)
+
+
+Bewijs:
+-------
diff --git a/files/practicum/BinSearchTree.dcl b/files/practicum/BinSearchTree.dcl new file mode 100644 index 0000000..2e480bb --- /dev/null +++ b/files/practicum/BinSearchTree.dcl @@ -0,0 +1,7 @@ +definition module BinSearchTree
+
+import StdClass
+import BinTree
+
+is_geordend :: // meest algemene type
+is_gebalanceerd :: // meest algemene type
diff --git a/files/practicum/BinSearchTree.icl b/files/practicum/BinSearchTree.icl new file mode 100644 index 0000000..92e7548 --- /dev/null +++ b/files/practicum/BinSearchTree.icl @@ -0,0 +1,52 @@ +implementation module BinSearchTree
+
+import StdEnv
+import BinTree
+
+z0 = Leaf
+z1 = insertTree 50 z0
+z2 = insertTree 10 z1
+z3 = insertTree 75 z2
+z4 = insertTree 80 z3
+z5 = insertTree 77 z4
+z6 = insertTree 10 z5
+z7 = insertTree 75 z6
+z8 = deleteTree 50 z7
+
+// Uit het diktaat, blz. 73:
+insertTree :: a (Tree a) -> Tree a | Ord a
+insertTree e Leaf = Node e Leaf Leaf
+insertTree e (Node x le ri)
+| e <= x = Node x (insertTree e le) ri
+| e > x = Node x le (insertTree e ri)
+
+deleteTree :: a (Tree a) -> (Tree a) | Eq, Ord a
+deleteTree e Leaf = Leaf
+deleteTree e (Node x le ri)
+| e < x = Node x (deleteTree e le) ri
+| e == x = join le ri
+| e > x = Node x le (deleteTree e ri)
+where
+ join :: (Tree a) (Tree a) -> (Tree a)
+ join Leaf b2 = b2
+ join b1 b2 = Node x b1` b2
+ where
+ (x,b1`) = largest b1
+
+ largest :: (Tree a) -> (a,(Tree a))
+ largest (Node x b1 Leaf) = (x,b1)
+ largest (Node x b1 b2) = (y,Node x b1 b2`)
+ where
+ (y,b2`) = largest b2
+
+
+is_geordend :: // meest algemene type
+is_geordend ...
+
+Start = map is_geordend [t0,t1,t2,t3,t4,t5,t6,t7]
+
+
+is_gebalanceerd :: // meest algemene type
+is_gebalanceerd ...
+
+//Start = map is_gebalanceerd [t0,t1,t2,t3,t4,t5,t6,t7]
diff --git a/files/practicum/BinTree.dcl b/files/practicum/BinTree.dcl new file mode 100644 index 0000000..3b5e444 --- /dev/null +++ b/files/practicum/BinTree.dcl @@ -0,0 +1,16 @@ +definition module BinTree
+
+:: Tree a = Node a (Tree a) (Tree a) | Leaf
+
+t0 :: Tree Int
+t1 :: Tree Int
+t2 :: Tree Int
+t3 :: Tree Int
+t4 :: Tree Int
+t5 :: Tree Int
+t6 :: Tree Int
+t7 :: Tree Int
+
+nodes :: // meest algemene type
+leaves :: // meest algemene type
+diepte :: // meest algemene type
diff --git a/files/practicum/BinTree.icl b/files/practicum/BinTree.icl new file mode 100644 index 0000000..1875e86 --- /dev/null +++ b/files/practicum/BinTree.icl @@ -0,0 +1,38 @@ +implementation module BinTree
+
+import StdEnv
+
+:: Tree a = Node a (Tree a) (Tree a) | Leaf
+
+t0 :: Tree Int
+t0 = Leaf
+t1 :: Tree Int
+t1 = Node 4 t0 t0
+t2 :: Tree Int
+t2 = Node 2 t0 t1
+t3 :: Tree Int
+t3 = Node 5 t2 t0
+t4 :: Tree Int
+t4 = Node 5 t2 t2
+t5 :: Tree Int
+t5 = Node 1 Leaf (Node 2 Leaf (Node 3 Leaf (Node 4 Leaf Leaf)))
+t6 :: Tree Int
+t6 = Node 1 (Node 2 (Node 3 (Node 4 Leaf Leaf) Leaf) Leaf) Leaf
+t7 :: Tree Int
+t7 = Node 4 (Node 1 Leaf Leaf) (Node 5 (Node 2 Leaf Leaf) Leaf)
+
+// 2.
+nodes :: // meest algemene type
+nodes ...
+
+//Start = map nodes [t0,t1,t2,t3,t4,t5,t6,t7]
+
+leaves :: // meest algemene type
+leaves ...
+
+//Start = map leaves [t0,t1,t2,t3,t4,t5,t6,t7]
+
+diepte :: // meest algemene type
+diepte ...
+
+//Start = map diepte [t0,t1,t2,t3,t4,t5,t6,t7]
diff --git a/files/practicum/BinTreeMapEnFold.icl b/files/practicum/BinTreeMapEnFold.icl new file mode 100644 index 0000000..c74a454 --- /dev/null +++ b/files/practicum/BinTreeMapEnFold.icl @@ -0,0 +1,34 @@ +module BinTreeMapEnFold
+
+import StdEnv
+
+:: BTree a = Tip a | Bin (BTree a) (BTree a)
+
+testboom = Bin (Bin (Bin (Tip 1) (Tip 2)) (Tip 3)) (Bin (Bin (Tip 4) (Tip 5)) (Bin (Tip 6) (Bin (Tip 7) (Tip 8))))
+
+mapbtree :: (a -> b) (BTree a) -> BTree b
+mapbtree f (Tip a) = Tip (f a)
+mapbtree f (Bin t1 t2) = Bin (mapbtree f t1) (mapbtree f t2)
+
+foldbtree :: (a a -> a) (BTree a) -> a
+foldbtree f (Tip a) = a
+foldbtree f (Bin t1 t2) = f (foldbtree f t1) (foldbtree f t2)
+
+f1 :: // meest algemene type
+f1 = foldbtree (+)
+
+f2 :: // meest algemene type
+f2 = foldbtree (+) o (mapbtree (const 1))
+
+f3 :: // meest algemene type
+f3 = foldbtree (\x y -> 1 + max x y) o (mapbtree (const 0))
+
+f4 :: // meest algemene type
+f4 = foldbtree (++) o (mapbtree (\x -> [x]))
+
+Start :: (Int,Char,Int,Char,Int,Char,[Int],Char)
+Start = (f1 testboom, '\n'
+ ,f2 testboom, '\n'
+ ,f3 testboom, '\n'
+ ,f4 testboom, '\n'
+ )
diff --git a/files/practicum/BinTreePrint.dcl b/files/practicum/BinTreePrint.dcl new file mode 100644 index 0000000..dd20021 --- /dev/null +++ b/files/practicum/BinTreePrint.dcl @@ -0,0 +1,6 @@ +definition module BinTreePrint
+
+import StdClass
+import BinTree
+
+instance toString (Tree a) | toString a
diff --git a/files/practicum/BinTreePrint.icl b/files/practicum/BinTreePrint.icl new file mode 100644 index 0000000..e2358a6 --- /dev/null +++ b/files/practicum/BinTreePrint.icl @@ -0,0 +1,23 @@ +implementation module BinTreePrint
+
+import StdEnv
+import BinTree
+import TextCompose // als je tree2D implementeert
+
+Start = map (flip (+++) "\n" o toString) [t0,t1,t2,t3,t4,t5,t6,t7]
+
+instance toString (Tree a) | toString a where
+ toString tree = indentTree tree
+// toString tree = tree2D tree
+
+/******************************************************************************************
+ version with indented trees
+******************************************************************************************/
+indentTree :: !(Tree a) -> String | toString a
+indentTree tree = ...
+
+/******************************************************************************************
+ version with TextCompose
+******************************************************************************************/
+tree2D :: !(Tree a) -> String | toString a
+tree2D tree = ...
diff --git a/files/practicum/BinTreeTest.icl b/files/practicum/BinTreeTest.icl new file mode 100644 index 0000000..0cc7b48 --- /dev/null +++ b/files/practicum/BinTreeTest.icl @@ -0,0 +1,42 @@ +module BinTreeTest
+
+/* Test module BinTree
+ Voor werken met Gast:
+ (*) gebruik Environment 'Gast'
+ (*) zet Project Options op 'Basic Values Only' en '2M' Maximum Heap Size
+*/
+
+import gast
+import BinTree
+
+Start
+ = testn 1000
+ (\n -> let n` = abs (n/2) in
+ nodes_vs_leaves n` /\
+ leaves_vs_diepte n` /\
+ True
+ )
+
+nodes_vs_leaves :: Int -> Property
+nodes_vs_leaves n = name "nodes_vs_leaves"
+ (nodes t == leaves t - 1)
+where t = lego_tree n
+
+leaves_vs_diepte :: Int -> Property
+leaves_vs_diepte n = name "leaves_vs_diepte"
+ (leaves t <= 2^(diepte t))
+where t = lego_tree n
+
+// Function to construct semi-random trees, using those from BinTree:
+trees =: [t0,t1,t2,t3,t4,t5,t6,t7]
+nr_of_trees =: length trees
+
+lego_tree :: Int -> Tree Int
+lego_tree 0 = t0
+lego_tree n = glue n (trees !! (n rem nr_of_trees)) (lego_tree (n/10))
+where
+ glue :: !Int !(Tree Int) !(Tree Int) -> Tree Int
+ glue n t Leaf = t
+ glue n t (Node x l r)
+ | isEven n = Node x (glue (n/10) t l) r
+ | otherwise = Node x l (glue (n/10) t r)
diff --git a/files/practicum/BinTreeTraversal.icl b/files/practicum/BinTreeTraversal.icl new file mode 100644 index 0000000..eb1ff04 --- /dev/null +++ b/files/practicum/BinTreeTraversal.icl @@ -0,0 +1,31 @@ +module BinTreeTraversal
+
+import StdEnv
+import BinTree
+
+testboom = Node 10
+ (Node 6
+ (Node 2 Leaf (Node 4 Leaf (Node 5 Leaf Leaf)))
+ (Node 7 Leaf Leaf)
+ )
+ (Node 14
+ (Node 12
+ (Node 11 Leaf Leaf)
+ (Node 13 Leaf Leaf)
+ )
+ (Node 17 Leaf Leaf)
+ )
+
+lijstOplopend :: (Tree a) -> [a]
+lijstOplopend ...
+
+lijstAflopend :: (Tree a) -> [a]
+lijstAflopend ...
+
+lijstNaarBladen :: (Tree a) -> [a]
+lijstNaarBladen ...
+
+Start = (lijstOplopend testboom, '\n'
+ ,lijstAflopend testboom, '\n'
+ ,lijstNaarBladen testboom
+ )
diff --git a/files/practicum/Blokus.icl b/files/practicum/Blokus.icl new file mode 100644 index 0000000..f3bb6d4 --- /dev/null +++ b/files/practicum/Blokus.icl @@ -0,0 +1,4 @@ +implementation module Blokus
+
+import StdEnv
+
diff --git a/files/practicum/BoerZoektVrouw.dcl b/files/practicum/BoerZoektVrouw.dcl new file mode 100644 index 0000000..b5a60cc --- /dev/null +++ b/files/practicum/BoerZoektVrouw.dcl @@ -0,0 +1,15 @@ +definition module BoerZoektVrouw
+
+:: Nr :== Int // 1..N
+
+/* boer_zoekt_vrouw (voorkeuren_mannen,voorkeuren_vrouwen)
+ berekent een 'stable marriage' oplossing tussen de populatie mannen en vrouwen middels het
+ Gale / Shapley algoritme mits de invoer aan de volgende voorwaarden voldoet:
+
+ (1) de lengte N van voorkeuren_mannen is identiek aan de lengte van voorkeuren_vrouwen,
+ en is bovendien een even waarde
+ (2) de voorkeuren van iedere man en iedere vrouw is een permutatie van [1..N]
+
+ De oplossing is een lijst van koppels (man,vrouw) die stabiel is.
+*/
+boer_zoekt_vrouw :: ([[Nr]],[[Nr]]) -> [(Nr,Nr)]
diff --git a/files/practicum/BoerZoektVrouw.icl b/files/practicum/BoerZoektVrouw.icl new file mode 100644 index 0000000..292ba36 --- /dev/null +++ b/files/practicum/BoerZoektVrouw.icl @@ -0,0 +1,3 @@ +implementation module BoerZoektVrouw
+
+import StdEnv
diff --git a/files/practicum/Boggle.icl b/files/practicum/Boggle.icl new file mode 100644 index 0000000..de7e70e --- /dev/null +++ b/files/practicum/Boggle.icl @@ -0,0 +1,4 @@ +module Boggle
+
+import StdEnv
+import GesorteerdBestandNaarBoom
diff --git a/files/practicum/Boid.icl b/files/practicum/Boid.icl new file mode 100644 index 0000000..9182066 --- /dev/null +++ b/files/practicum/Boid.icl @@ -0,0 +1,94 @@ +module Boid
+
+/* Dit raamwerk toont een verzameling boids.
+ Zie voor achtergrondinformatie:
+ http://www.red3d.com/cwr/boids/
+ http://www.vergenet.net/~conrad/boids/pseudocode.html
+ Zet de 'Environment' op 'Object IO' en 'Project Options' op 'No Console'.
+*/
+import StdEnv, StdIO, support
+
+:: BoidSt
+ = { boids :: ![Boid]
+ , colours :: ![Colour]
+ }
+:: Boid
+ = { pos :: !Pos
+ , vel :: !Vel
+ , col :: !Colour
+ }
+
+Start :: *World -> *World
+Start world = startIO SDI {boids=[],colours=flatten (repeat colours)} (openIds 2 `bind` initGUI) [ProcessClose closeProcess] world
+
+initGUI :: [Id] (PSt BoidSt) -> PSt BoidSt
+initGUI [windowId,timerId] pSt=:{ls}
+# (errors,pSt) = seqList [openWindow NilLS window,openTimer undef timer,openMenu undef menu] pSt
+| all ((==) NoError) errors
+ = pSt
+| otherwise = abort "Could not create the entire GUI.\n"
+where
+ window = Window "Boids" NilLS
+ [ WindowClose (noLS closeProcess)
+ , WindowViewSize windowsize
+ , WindowLook True (look ls.boids)
+ , WindowMouse onlyDown Able (noLS1 mouse)
+ , WindowId windowId
+ , WindowPen [PenBack background]
+ ]
+ timer = Timer (ticksPerSecond / 20) NilLS [TimerFunction (noLS1 (const lockstep)),TimerId timerId,TimerSelectState Unable]
+ menu = Menu "&File"
+ ( MenuItem "&Clear" [MenuShortKey 'c',MenuFunction (noLS clear)]
+ :+: MenuSeparator []
+ :+: MenuItem "S&tep" [MenuShortKey 't',MenuFunction (noLS lockstep)]
+ :+: MenuItem "&Go" [MenuShortKey 'g',MenuFunction (noLS (appPIO (enableTimer timerId)))]
+ :+: MenuItem "&Halt" [MenuShortKey 'h',MenuFunction (noLS (appPIO (disableTimer timerId)))]
+ :+: MenuSeparator []
+ :+: MenuItem "&Quit" [MenuShortKey 'q',MenuFunction (noLS closeProcess)]
+ ) []
+ onlyDown mst = case mst of
+ MouseDown _ _ _ = True
+ _ = False
+
+/* look tekent de boids.
+*/ look :: [Boid] SelectState UpdateState *Picture -> *Picture
+ look boids _ {newFrame} picture
+ = foldr (\{pos,col} -> appPicture (fillAt (toPoint2 wsize pos) boidbody o setPenColour col)) (unfill newFrame picture) boids
+ where
+ wsize = rectangleSize newFrame
+
+/* lockstep berekent de volgende toestand van alle boids.
+*/ lockstep pSt=:{ls}
+ = appPIO (setWindowLook windowId True (True,look new_boids)) {pSt & ls={ls & boids = new_boids}}
+ where
+ new_boids = simulatie ls.boids
+
+/* clear wist alle boids.
+*/ clear pSt=:{ls} = appPIO (setWindowLook windowId True (True,look [])) ({pSt & ls={ls & boids=[]}})
+
+/* mouse creeert een nieuwe boid met snelheid nul op de positie van de muis.
+*/ mouse mSt pSt=:{ls=ls=:{boids,colours}}
+ = case mSt of
+ MouseDown pos _ _
+ # (wsize,pSt) = accPIO (getWindowViewFrame windowId) pSt
+ # new = {pos=fromPoint2 (rectangleSize wsize) pos,vel=zero,col=hd colours}
+ # boids = [new:boids]
+ # pSt = {pSt & ls={ls & boids=boids,colours=tl colours}}
+ # pSt = appPIO (setWindowLook windowId True (True,look boids)) pSt
+ = pSt
+ otherwise = pSt
+
+windowsize = {w=640,h=400}
+colours = [Red,Green,Blue,Cyan,Magenta,Yellow,LightGrey,Grey,DarkGrey]
+
+boidbody = circle 3
+background = Black
+threshhold_dist = 0.02
+threshhold_wall = 0.01
+viewing_distance = 0.3
+
+/** Dit is de functie die je zelf moet schrijven.
+ Bereken de volgende toestand voor alle boids in de lijst.
+*/
+simulatie :: [Boid] -> [Boid]
+simulatie ...
diff --git a/files/practicum/BottlesOfBeer.icl b/files/practicum/BottlesOfBeer.icl new file mode 100644 index 0000000..1ebab04 --- /dev/null +++ b/files/practicum/BottlesOfBeer.icl @@ -0,0 +1,11 @@ +module BottlesOfBeer
+
+/* Creeer een applicatie met 'Project:Project Options...' 'Console:Basic Values Only'
+*/
+import StdEnv
+
+Start :: String
+Start = bottles_of_beer ...
+
+bottles_of_beer :: ...
+bottles_of_beer ...
diff --git a/files/practicum/Braille.dcl b/files/practicum/Braille.dcl new file mode 100644 index 0000000..063d349 --- /dev/null +++ b/files/practicum/Braille.dcl @@ -0,0 +1,7 @@ +definition module Braille
+
+toonBrailleTeken :: Char -> [(String,String,String)]
+
+toonBrailleTekst :: [Char] -> [(String,String,String)]
+
+leesBrailleTekst :: [(String,String,String)] -> [Char]
diff --git a/files/practicum/Braille.icl b/files/practicum/Braille.icl new file mode 100644 index 0000000..5f4e6d1 --- /dev/null +++ b/files/practicum/Braille.icl @@ -0,0 +1,12 @@ +implementation module Braille
+
+import StdEnv
+
+toonBrailleTeken :: Char -> [(String,String,String)]
+toonBrailleTeken ...
+
+toonBrailleTekst :: [Char] -> [(String,String,String)]
+toonBrailleTekst ...
+
+leesBrailleTekst :: [(String,String,String)] -> [Char]
+leesBrailleTekst ...
diff --git a/files/practicum/Cijferreeks.icl b/files/practicum/Cijferreeks.icl new file mode 100644 index 0000000..1232ea2 --- /dev/null +++ b/files/practicum/Cijferreeks.icl @@ -0,0 +1,8 @@ +module Cijferreeks
+
+import StdEnv
+
+Start = charsInt ['3210'] == 3210 // het resultaat moet True zijn
+
+charsInt :: ([Char] -> Int)
+charsInt ...
diff --git a/files/practicum/Cijfersom.icl b/files/practicum/Cijfersom.icl new file mode 100644 index 0000000..0de5a44 --- /dev/null +++ b/files/practicum/Cijfersom.icl @@ -0,0 +1,7 @@ +module Cijfersom
+
+import StdEnv
+
+Start = (cijfersom 9876543, cijfersom 1000)
+
+cijfersom :: Int -> Int
diff --git a/files/practicum/Domino.dcl b/files/practicum/Domino.dcl new file mode 100644 index 0000000..51a9092 --- /dev/null +++ b/files/practicum/Domino.dcl @@ -0,0 +1,11 @@ +definition module Domino
+
+:: Steen :== (Int,Int) // (1..N,1..N)
+:: Slang :== [Steen]
+
+N :== 2
+
+/* alle_slangen max
+ levert alle slangen van lengte max op van een dubbel-N spel.
+*/
+alle_slangen :: Int -> [Slang]
diff --git a/files/practicum/Domino.icl b/files/practicum/Domino.icl new file mode 100644 index 0000000..c460273 --- /dev/null +++ b/files/practicum/Domino.icl @@ -0,0 +1,4 @@ +implementation module Domino
+
+import StdEnv
+
diff --git a/files/practicum/Echo.icl b/files/practicum/Echo.icl new file mode 100644 index 0000000..f612086 --- /dev/null +++ b/files/practicum/Echo.icl @@ -0,0 +1,7 @@ +module Echo
+
+import StdEnv
+
+Start :: *World -> *World
+Start world
+ = ...
diff --git a/files/practicum/EersteIsLaatste.icl b/files/practicum/EersteIsLaatste.icl new file mode 100644 index 0000000..7665c5d --- /dev/null +++ b/files/practicum/EersteIsLaatste.icl @@ -0,0 +1,19 @@ +module EersteIsLaatste
+
+import StdEnv
+
+last1 :: [a] -> a
+last1 [x] = x
+last1 [_:xs] = last1 xs
+
+last2 :: ([a] -> a)
+last2 = hd o reverse
+
+// 1.
+// Herschrijf de volgende Start-regels handmatig:
+Start = last1 [1,2,3,4]
+
+Start = last2 [1,2,3,4]
+
+// 2.
+// Verklaar het verschil tussen last1 en last2
diff --git a/files/practicum/EersteOfLaatste.dcl b/files/practicum/EersteOfLaatste.dcl new file mode 100644 index 0000000..cf1d5e7 --- /dev/null +++ b/files/practicum/EersteOfLaatste.dcl @@ -0,0 +1,6 @@ +definition module EersteOfLaatste
+
+eerste2 :: [a] -> [a]
+laatste2 :: [a] -> [a]
+eersten :: Int [a] -> [a]
+laatsten :: Int [a] -> [a]
diff --git a/files/practicum/EersteOfLaatste.icl b/files/practicum/EersteOfLaatste.icl new file mode 100644 index 0000000..bb02c4c --- /dev/null +++ b/files/practicum/EersteOfLaatste.icl @@ -0,0 +1,37 @@ +implementation module EersteOfLaatste
+
+import StdEnv
+
+// 1.
+eerste2 :: [a] -> [a]
+eerste2 ...
+
+laatste2 :: [a] -> [a]
+laatste2 ...
+
+
+// 2.
+// Reduceer de volgende Start-regels met de hand:
+Start = hd (hd (hd [[[1,2,3],[4]],[[5],[6]]]))
+Start = hd (tl [1,2,3,4,5])
+Start = eerste2 [[1],[],[2,3],[4,5,6]]
+Start = laatste2 [[1],[],[2,3],[4,5,6]]
+
+
+// 3.
+eersten :: Int [a] -> [a]
+eersten ...
+
+laatsten :: Int [a] -> [a]
+laatsten ...
+
+// 4.
+// Maak de volgende beweringen af:
+/*
+Voor alle 0 <= n, xs :: [a] : eersten n (eersten n xs) =
+Voor alle 0 <= n, xs :: [a] : eersten n (laatsten n xs) =
+Voor alle 0 <= n, xs :: [a] : laatsten n (eersten n xs) =
+Voor alle 0 <= n, xs :: [a] : laatsten n (laatsten n xs) =
+Voor alle 0 <= m <= n, xs :: [a] : eersten m (eersten n xs) =
+Voor alle 0 <= m <= n, xs :: [a] : length (eersten m xs) ? length (eersten n xs)
+*/
diff --git a/files/practicum/EersteOfLaatsteTest.icl b/files/practicum/EersteOfLaatsteTest.icl new file mode 100644 index 0000000..d6e89f3 --- /dev/null +++ b/files/practicum/EersteOfLaatsteTest.icl @@ -0,0 +1,44 @@ +module EersteOfLaatsteTest
+
+/* Test module EersteOfLaatste
+ Voor werken met Gast:
+ (*) gebruik Environment 'Gast'
+ (*) zet Project Options op 'Basic Values Only'
+*/
+
+import EersteOfLaatste
+import StdEnv
+import gast
+
+Start
+ = testn 1000
+ (\n v ->
+ eerste2_is_eerste_2 v /\
+ laatste2_is_laatste_2 v /\
+ eersten_is_eerste_n n v /\
+ laatsten_is_laatste_n n v /\
+ True
+ )
+
+:: BaseType :== Int
+
+eerste2_is_eerste_2 :: [BaseType] -> Property
+eerste2_is_eerste_2 l = name "eerste2 is eerste twee"
+ ((length l > 1) ==> let l` = eerste2 l in zelfde_deel 2 l` l)
+
+laatste2_is_laatste_2 :: [BaseType] -> Property
+laatste2_is_laatste_2 l = name "laatste2 is laatste twee"
+ ((length l > 1) ==> let l` = laatste2 l in zelfde_deel 2 l` (drop (length l - 2) l))
+
+eersten_is_eerste_n :: Int [BaseType] -> Property
+eersten_is_eerste_n n l = name "eersten is eerste n"
+ ((n >= 0 && n < length l) ==> let l` = eersten n l in zelfde_deel n l` l)
+
+laatsten_is_laatste_n :: Int [BaseType] -> Property
+laatsten_is_laatste_n n l = name "laatsten is laatste n"
+ ((n >= 0 && n < length l) ==> let l` = laatsten n l in zelfde_deel n l` (drop (length l - n) l))
+
+zelfde_deel :: Int [BaseType] [BaseType] -> Bool
+zelfde_deel 0 _ _ = True
+zelfde_deel n [a:as] [b:bs] = a == b && zelfde_deel (n-1) as bs
+zelfde_deel _ _ _ = False
diff --git a/files/practicum/EllipsOmtrek.dcl b/files/practicum/EllipsOmtrek.dcl new file mode 100644 index 0000000..911128a --- /dev/null +++ b/files/practicum/EllipsOmtrek.dcl @@ -0,0 +1,6 @@ +definition module EllipsOmtrek
+
+/* perimeter precision (r1,r2) computes the perimeter of an ellipse with radii r1 and r2.
+ All arguments must be positive Reals.
+*/
+perimeter :: Real (Real,Real) -> Real
diff --git a/files/practicum/EllipsOmtrek.icl b/files/practicum/EllipsOmtrek.icl new file mode 100644 index 0000000..66f04ac --- /dev/null +++ b/files/practicum/EllipsOmtrek.icl @@ -0,0 +1,16 @@ +implementation module EllipsOmtrek
+
+import StdEnv
+
+Start = ( perimeter pr (4.0,3.0) // approximated perimeter of ellipse with radii 4.0 and 3.0
+ , perimeter pr (4.0,4.0) // approximated perimeter of circle with radius 4.0
+ , 2.0 * pi * 4.0 // perimeter of circle with radius 4.0
+ )
+where pr = 0.0001
+
+/* perimeter precision (r1,r2) approximates the perimeter of an ellipse with radii r1 and r2 given
+ the requested precision.
+ All arguments must be positive Reals.
+*/
+perimeter :: Real (Real,Real) -> Real
+perimeter precision (r1,r2) ...
diff --git a/files/practicum/FQL.icl b/files/practicum/FQL.icl new file mode 100644 index 0000000..7d7a029 --- /dev/null +++ b/files/practicum/FQL.icl @@ -0,0 +1,93 @@ +module FQL
+
+import StdEnv
+import StdT
+import Group
+
+:: Nummer = { groep :: String // De naam van de groep
+ , album :: String // De naam van het album
+ , jaar :: Int // Het jaar van uitgave
+ , track :: Int // Track nummer van het nummer (1 ..)
+ , titel :: String // Naam van het nummer
+ , tags :: [String] // Beschrijvende tags van het nummer / album
+ , lengte:: T // Lengte van het nummer
+ , land :: [String] // Land van oorsprong van groep
+ }
+
+Start world
+# (ok,dbs,world) = fopen "Nummers.dbs" FReadText world
+| not ok = abort "Kon bestand 'Nummers.dbs' niet openen."
+# (inhoud,dbs) = filelines dbs
+# (ok,world) = fclose dbs world
+| not ok = abort "Kon bestand 'Nummers.dbs' niet sluiten na lezen."
+# nummersDB = [ { groep = group
+ , album = cd
+ , jaar = toInt year
+ , track = toInt track
+ , titel = title
+ , tags = sort (symbol_separated_list ',' tags)
+ , lengte= fromString length
+ , land = sort (symbol_separated_list ',' countries)
+ }
+ \\ [_,group,cd,year,track,title,tags,length,countries] <- collect (nr_of_fields+1) // verzamel alle elementen van een entry
+ (drop (nr_of_fields+1) // verwijder eerste elementen (headers)
+ (map initString inhoud)) // verwijder alle \n
+ ]
+= (alle_groepen nummersDB,world)
+where
+ nr_of_fields = 8
+
+alle_groepen :: [Nummer] -> [String]
+alle_groepen db = abort "alle_groepen nog niet geimplementeerd\n"
+
+alle_jaarblokken :: [Nummer] -> [String]
+alle_jaarblokken db = abort "alle_jaarblokken nog niet geimplementeerd\n"
+
+alle_albums_van :: String [Nummer] -> [(Int,String)]
+alle_albums_van band db = abort "alle_albums_van nog niet geimplementeerd\n"
+
+alle_tracks :: String String [Nummer] -> [(Int,String,T)]
+alle_tracks cd band db = abort "alle_tracks nog niet geimplementeerd\n"
+
+speelduur_albums :: [Nummer] -> [(T,String,String)]
+speelduur_albums db = abort "speelduur_albums nog niet geimplementeerd\n"
+
+totale_speelduur :: [Nummer] -> T
+totale_speelduur db = abort "totale_speelduur nog niet geimplementeerd\n"
+
+nederlandse_metal :: [Nummer] -> [String]
+nederlandse_metal db = abort "nederlandse_metal nog niet geimplementeerd\n"
+
+
+/* De volgende functies zijn nodig in de Start functie om het bestand 'Nummers.dbs' in te lezen.
+ Je hoeft op dit moment nog niet te begrijpen wat hier staat.
+*/
+
+// filelines leest alle regels in van file.
+filelines :: !*File -> (![String],!*File)
+filelines file
+# (end,file) = fend file
+| end = ([],file)
+# (line,file) = freadline file
+# (lines,file) = filelines file
+= ([line:lines],file)
+
+// initString verwijdert laatste teken aan het einde van een regel.
+initString :: !String -> String
+initString str = str%(0,size str-2)
+
+/* collect n [x_1, ..., x_n, x_{n+1}, ... x_{2n}, ..., x_{mn+1} ... x_{mn+k}]
+ = [[x_1, ..., x_n], [x_{n+1}, ... x_{2n}], ..., [x_{(m-1)n+1} ... x_{mn}]]
+ waar:
+ n > 0 /\ m >= 0 /\ k <= n
+*/
+collect :: !Int ![x] -> [[x]]
+collect n list
+| length groupN < n = []
+| otherwise = [groupN:collect n list`]
+where
+ (groupN,list`) = splitAt n list
+
+symbol_separated_list :: !Char !String -> [String]
+symbol_separated_list c str
+ = filter (\str -> str <> "" && str <> (toString c)) [toString cs \\ cs <- group ((==) c) (fromString str)]
diff --git a/files/practicum/Fibonacci.icl b/files/practicum/Fibonacci.icl new file mode 100644 index 0000000..42bce37 --- /dev/null +++ b/files/practicum/Fibonacci.icl @@ -0,0 +1,23 @@ +module Fibonacci
+
+import StdEnv, EersteOfLaatste
+
+N = 46
+
+// 1.
+fibonacci :: Int -> Int
+fibonacci ...
+
+Start = [fibonacci i \\ i <- [1 .. N]]
+
+
+// 2.
+// Recursieve definitie:
+somLijsten :: // meest algemene type
+somLijsten ...
+
+
+// 3.
+Start = eersten N fibs
+where
+ fibs = [1,1 : somLijsten fibs (tl fibs)]
diff --git a/files/practicum/Figure.dcl b/files/practicum/Figure.dcl new file mode 100644 index 0000000..479ce95 --- /dev/null +++ b/files/practicum/Figure.dcl @@ -0,0 +1,33 @@ +definition module Figure
+
+/** Example library to demonstrate the use of Existential Types.
+ The library implements a simple set of drawing objects.
+
+ Author: Peter Achten
+ Version: April 14 2008
+*/
+import StdPicture
+
+:: Figure
+
+// drawFigure f creates a window in which f is displayed
+drawFigure :: Figure -> *World -> *World
+
+// convenient lifting operations on the methods of a figure to the figure self
+move :: Vector2 Figure -> Figure
+
+// Specialized Figure constructor functions:
+// mkFigures figs combines all figs in left-to-right order
+mkFigures :: [Figure] -> Figure
+
+// line a b draws a line from a to b
+line :: Point2 Point2 -> Figure
+
+// rectangle a b forms a rectangle with diagonal-points a and b
+rectangle :: Point2 Point2 -> Figure
+
+// ellips a b forms an ellips that fits in the rectangle with diagonal-points a and b
+ellips :: Point2 Point2 -> Figure
+
+// text t a shows a text t with left-top corner at a
+text :: String Point2 -> Figure
diff --git a/files/practicum/Figure.icl b/files/practicum/Figure.icl new file mode 100644 index 0000000..fccd7a0 --- /dev/null +++ b/files/practicum/Figure.icl @@ -0,0 +1,89 @@ +implementation module Figure + +/** Example library to demonstrate the use of Existential Types. + The library implements a simple set of drawing objects. + + Author: Peter Achten + Version: April 14 2008 +*/ +import StdEnv, StdIO + +:: Figure = E.s: + { data :: s + , impl :: FigureI s + } +:: FigureI s = { show :: s -> *Picture -> *Picture + , move :: Vector2 s -> s + } + +// drawFigure f creates a window in which f is displayed +drawFigure :: Figure -> *World -> *World +drawFigure figure = startIO SDI Void initGUI [ProcessClose closeProcess] +where + initGUI :: (PSt .ps) -> PSt .ps + initGUI pSt + # (niceFont,pSt) = accPIO (accScreenPicture (openFont {SerifFontDef & fSize=36} `bind` \(_,f) -> return f)) pSt + # wDef = Window "Figure" NilLS + [ WindowClose (noLS closeProcess) + , WindowLook True (look figure) + , WindowPen [PenFont niceFont] + , WindowViewSize maxFixedWindowSize + ] + = snd (openWindow undef wDef pSt) + where + look :: Figure SelectState UpdateState -> *Picture -> *Picture + look figure _ updSt = show figure o unfill updSt.newFrame + +// Lifting methods to functions: +show :: Figure *Picture -> *Picture +show {data,impl} picture = impl.show data picture + +move :: Vector2 Figure -> Figure +move v fig=:{data,impl} = {fig & data=impl.move v data} + +// General Figure constructor function: +mkFigure :: s (FigureI s) -> Figure +mkFigure data impl = { data=data, impl=impl } + +// Specialized Figure constructor functions: +// mkFigures figs combines all figs in left-to-right order +mkFigures :: [Figure] -> Figure +mkFigures figs = mkFigure figs + { show = flip (foldl (flip show)) + , move = \vector -> map (move vector) + } + +// line a b draws a line from a to b +line :: Point2 Point2 -> Figure +line a b = mkFigure (a,b) + { show = \(a,b) = drawLine a b + , move = \v (a,b) = (movePoint v a,movePoint v b) + } + +// rectangle a b forms a rectangle with diagonal-points a and b +rectangle :: Point2 Point2 -> Figure +rectangle a b = mkFigure {corner1=a,corner2=b} + { show = \r = draw r + , move = \v r = {corner1=movePoint v r.corner1,corner2=movePoint v r.corner2} + } + +// ellips a b forms an ellips that fits in the rectangle with diagonal-points a and b +ellips :: Point2 Point2 -> Figure +ellips a b = mkFigure {corner1=a,corner2=b} + { show = \r = let (pos,oval) = toOval r in drawAt pos oval + , move = \v r = {corner1=movePoint v r.corner1,corner2=movePoint v r.corner2} + } +where + toOval :: Rectangle -> (Point2,Oval) + toOval {corner1,corner2}= ({x=cx,y=cy},{oval_rx=abs rx,oval_ry=abs ry}) + where + (rx,ry) = ((corner2.x-corner1.x)/2,(corner2.y-corner1.y)/2) + (cx,cy) = (corner1.x+rx,corner1.y+ry) + +// text t a shows a text t with left-top corner at a +text :: String Point2 -> Figure +text line pos = mkFigure (pos,line) + { show = \(pos,line) = getPenFontMetrics `bind` \fMetrics -> + drawAt {pos & y=pos.y+fMetrics.fAscent+fMetrics.fLeading} line + , move = \v (pos,line) = (movePoint v pos,line) + } diff --git a/files/practicum/Firsts.dcl b/files/practicum/Firsts.dcl new file mode 100644 index 0000000..781477f --- /dev/null +++ b/files/practicum/Firsts.dcl @@ -0,0 +1,3 @@ +definition module Firsts
+
+firsts :: // meest algemene type
diff --git a/files/practicum/Firsts.icl b/files/practicum/Firsts.icl new file mode 100644 index 0000000..9fcddc8 --- /dev/null +++ b/files/practicum/Firsts.icl @@ -0,0 +1,9 @@ +implementation module Firsts
+
+import StdEnv
+
+Start = firsts [1,2,3,4,5]
+
+// Mogelijke oplossing die recursief over tail van de lijst gaat:
+firsts :: // meest algemene type
+firsts ...
diff --git a/files/practicum/Flatten.icl b/files/practicum/Flatten.icl new file mode 100644 index 0000000..2d6d823 --- /dev/null +++ b/files/practicum/Flatten.icl @@ -0,0 +1,14 @@ +module Flatten
+
+import StdEnv
+
+// 1.
+Start = flatten [ [x 0,x 1,x 2], [x 3,x 4], [x 5], [] ]
+
+// 2.
+Start = flatten [ [ [x 0,x 1,x 2], [x 3,x 4] ], [], [ [x 5], [] ] ]
+
+// 3.
+Start = flatten (flatten [ [ [x 0,x 1,x 2], [x 3,x 4] ], [], [ [x 5],[] ] ] )
+
+x i = x +++ toString i
diff --git a/files/practicum/Flipper.icl b/files/practicum/Flipper.icl new file mode 100644 index 0000000..213248a --- /dev/null +++ b/files/practicum/Flipper.icl @@ -0,0 +1,8 @@ +module Flipper
+
+import StdEnv
+
+Start = ( (+) 4 2, flip (+) 4 2 )
+Start = ( (-) 4 2, flip (-) 4 2 )
+Start = ( (*) 4 2, flip (*) 4 2 )
+Start = ( (/) 4 2, flip (/) 4 2 )
diff --git a/files/practicum/Frags.dcl b/files/practicum/Frags.dcl new file mode 100644 index 0000000..b7b5b3c --- /dev/null +++ b/files/practicum/Frags.dcl @@ -0,0 +1,3 @@ +definition module Frags
+
+frags :: // meest algemene type
diff --git a/files/practicum/Frags.icl b/files/practicum/Frags.icl new file mode 100644 index 0000000..f7c373d --- /dev/null +++ b/files/practicum/Frags.icl @@ -0,0 +1,8 @@ +implementation module Frags
+
+import StdEnv
+
+Start = frags [1..5]
+
+frags :: // meest algemene type
+frags ...
diff --git a/files/practicum/FragsTest.icl b/files/practicum/FragsTest.icl new file mode 100644 index 0000000..c146994 --- /dev/null +++ b/files/practicum/FragsTest.icl @@ -0,0 +1,39 @@ +module FragsTest
+
+/* Test module Frags
+ Voor werken met Gast:
+ (*) gebruik Environment 'Gast'
+ (*) zet Project Options op 'Basic Values Only'
+*/
+
+import StdEnv
+import gast
+import Frags
+
+Start = testn 1000
+ ( \xs -> alle_lengtes_komen_voor xs /\
+ alle_elementen_zijn_frag xs /\
+ True
+ )
+
+alle_lengtes_komen_voor :: [Int] -> Property
+alle_lengtes_komen_voor xs = name "alle_lengtes_komen_voor"
+ (let n = length xs
+ in sort (removeDup (map length (frags xs))) == [0..n]
+ )
+
+alle_elementen_zijn_frag :: [Int] -> Property
+alle_elementen_zijn_frag xs = name "alle_elementen_zijn_frag"
+ (and [is_frag f xs \\ f <- frags xs])
+
+/* is_frag fragment lijst is True alleen als fragment een strikte deellijst is
+ van lijst, dwz: de elementen van fragment komen direct achter elkaar in lijst voor.
+*/
+is_frag :: [a] [a] -> Bool | Eq a
+is_frag [] _ = True
+is_frag _ [] = False
+is_frag [f:fs] [x:xs]
+| f == x
+ | is_frag fs xs = True
+ | otherwise = is_frag [f:fs] xs
+| otherwise = is_frag [f:fs] xs
diff --git a/files/practicum/Frequentielijst.dcl b/files/practicum/Frequentielijst.dcl new file mode 100644 index 0000000..8bc0883 --- /dev/null +++ b/files/practicum/Frequentielijst.dcl @@ -0,0 +1,5 @@ +definition module Frequentielijst
+
+import StdOverloaded
+
+frequentielijst :: [a] -> [(a,Int)] | == a
diff --git a/files/practicum/Frequentielijst.icl b/files/practicum/Frequentielijst.icl new file mode 100644 index 0000000..a0f6c58 --- /dev/null +++ b/files/practicum/Frequentielijst.icl @@ -0,0 +1,15 @@ +implementation module Frequentielijst
+
+import StdEnv, FrequentielijstGUI
+
+// Zonder GUI:
+Start = lijst
+// Met GUI:
+Start world = toonFrequentielijst lijst world
+
+lijst = sort (frequentielijst tekst)
+tekst = ['Hello world! Here I am!']
+
+
+frequentielijst :: [a] -> [(a,Int)] | == a
+frequentielijst ...
diff --git a/files/practicum/FrequentielijstGUI.dcl b/files/practicum/FrequentielijstGUI.dcl new file mode 100644 index 0000000..9b13f97 --- /dev/null +++ b/files/practicum/FrequentielijstGUI.dcl @@ -0,0 +1,10 @@ +definition module FrequentielijstGUI
+
+import StdEnv, StdIO
+
+/** toonFrequentielijst [(a_1,f_1) ... (a_n,f_n)] world
+ toont in een staafdiagram de elementen en hun frequentie.
+ Voor n=0 worden alleen de assen van de grafiek getekend.
+*/
+toonFrequentielijst :: [(a,Int)] *World -> *World | toString a
+toonFrequentielijst2 :: [(a,Int)] *World -> *World | toString a
diff --git a/files/practicum/FrequentielijstGUI.icl b/files/practicum/FrequentielijstGUI.icl new file mode 100644 index 0000000..4d29906 --- /dev/null +++ b/files/practicum/FrequentielijstGUI.icl @@ -0,0 +1,89 @@ +implementation module FrequentielijstGUI
+
+import StdEnv, StdIO
+
+toonFrequentielijst :: [(a,Int)] *World -> *World | toString a
+toonFrequentielijst freqs world
+ = startIO SDI Void initGUI [ProcessClose closeProcess] world
+where
+ nrFreqs = length freqs
+ domain = map fst freqs
+ range = map snd freqs
+ (r_min,r_max) = (minList range, maxList range)
+ r_range = if (r_min <> r_max) (toReal (r_max - r_min + 1)) 1.0
+
+ initGUI = snd o (openWindow Void wdef)
+
+ wdef = Window "Frequentielijst" NilLS
+ [ WindowClose (noLS closeProcess)
+ , WindowLook False look
+ ]
+ look _ {newFrame} picture
+ # (fm,picture) = getPenFontMetrics picture
+ # picture = unfill newFrame picture
+ # picture = setPenColour Red picture
+ # picture = drawAt {x=hMargin,y=h-vMargin} {zero & vx=w} picture
+ # picture = drawAt {x=hMargin,y=h-vMargin} {zero & vy=0-h} picture
+ # picture = setPenColour Black picture
+ # picture = seq [bar (fontLineHeight fm,fm.fDescent) af i \\ af <- freqs & i <- [0..]] picture
+ = picture
+ where
+ frameSize = rectangleSize newFrame
+ (w,h) = (frameSize.w,frameSize.h)
+ wbar = (w-hMargin) / nrFreqs
+ height f = toInt (toReal (h-vMargin) * toReal (f-r_min+1) / r_range)
+
+ bar (fh,fd) (a,f) i picture
+ # picture = fill { corner1={x=hMargin+ i *wbar+1,y=h-vMargin}
+ , corner2={x=hMargin+(i+1)*wbar-1,y=h-vMargin-height f}
+ } picture
+ # (aw,picture) = getPenFontStringWidth (toString a) picture
+ # (fw,picture) = getPenFontStringWidth (toString f) picture
+ # picture = undrawAt {x=hMargin + i*wbar + (wbar-aw)/2, y=h-vMargin-fd} (toString a) picture
+ # picture = undrawAt {x=hMargin + i*wbar + (wbar-fw)/2, y=h-vMargin-height f+fh} (toString f) picture
+ = picture
+
+hMargin = 10
+vMargin = 10
+
+toonFrequentielijst2 :: [(a,Int)] *World -> *World | toString a
+toonFrequentielijst2 freqs world
+ = startIO SDI Void initGUI [ProcessClose closeProcess] world
+where
+ nrFreqs = length freqs
+ domain = map fst freqs
+ range = map snd freqs
+ (r_min,r_max) = (minList range, maxList range)
+ r_range = if (r_min <> r_max) (toReal (r_max - r_min + 1)) 1.0
+
+ initGUI = snd o (openWindow Void wdef)
+
+ wdef = Window "Frequentielijst" NilLS
+ [ WindowClose (noLS closeProcess)
+ , WindowLook False look
+ , WindowVScroll (stdScrollFunction Vertical 50)
+ , WindowViewDomain {zero & corner2={x=2^16,y=nrFreqs*20}}
+ ]
+ look _ {newFrame} picture
+ # (fm,picture) = getPenFontMetrics picture
+ # picture = unfill newFrame picture
+ # picture = setPenColour Red picture
+ # picture = drawAt {x=hMargin,y=vMargin} {zero & vx=w} picture
+ # picture = drawAt {x=hMargin,y=vMargin} {zero & vy=nrFreqs*fontLineHeight fm} picture
+ # picture = setPenColour Black picture
+ # picture = seq [bar (fontLineHeight fm,fm.fDescent) af i \\ af <- freqs & i <- [0..]] picture
+ = picture
+ where
+ frameSize = rectangleSize newFrame
+ (w,h) = (frameSize.w,frameSize.h)
+ wbar = (w-hMargin) / nrFreqs
+ height f = toInt (toReal (w-vMargin) * toReal (f-r_min+1) / r_range)
+
+ bar (fh,fd) (a,f) i picture
+ # picture = fill { corner1={y=vMargin+ i *fh,x=hMargin+1}
+ , corner2={y=vMargin+(i+1)*fh,x=hMargin+height f}
+ } picture
+ # (fw,picture) = getPenFontStringWidth (toString f) picture
+ # picture = undrawAt {y=vMargin+(i+1)*fh-fd,x=hMargin + 2} (toString a) picture
+ # picture = undrawAt {y=vMargin+(i+1)*fh-fd,x=hMargin + height f - fw} (toString f) picture
+ = picture
diff --git a/files/practicum/FunctieCompositie.icl b/files/practicum/FunctieCompositie.icl new file mode 100644 index 0000000..a9ab8dd --- /dev/null +++ b/files/practicum/FunctieCompositie.icl @@ -0,0 +1,15 @@ +module FunctieCompositie
+
+import StdEnv
+
+e1 = ((*) 5) o ((+) 1)
+
+e2 = ((+) 1) o ((*) 5)
+
+e3 = ((*) 2) o ((*) 2)
+
+e4 = (min 100) o (max 0)
+
+e5 = ((<) 2) o length
+
+Start = 42
diff --git a/files/practicum/FunctieTypes.icl b/files/practicum/FunctieTypes.icl new file mode 100644 index 0000000..bf9596c --- /dev/null +++ b/files/practicum/FunctieTypes.icl @@ -0,0 +1,19 @@ +module FunctieTypes
+
+import StdEnv
+
+f1 :: Int
+
+f2 :: Int -> Bool
+
+f3 :: Real -> Real
+
+f4 :: Real Real -> Real
+
+f5 :: Real -> (Real -> Real)
+
+f6 :: (Real Real -> Real)
+
+f7 :: (Real -> Real) Real -> Real
+
+Start = 42
diff --git a/files/practicum/Galgje.icl b/files/practicum/Galgje.icl new file mode 100644 index 0000000..8b5dd68 --- /dev/null +++ b/files/practicum/Galgje.icl @@ -0,0 +1,5 @@ +module Galgje
+
+import StdEnv, SimpleFileIO, RandomGetallen
+
+Start = 0
diff --git a/files/practicum/GalgjeWF.dcl b/files/practicum/GalgjeWF.dcl new file mode 100644 index 0000000..a777b95 --- /dev/null +++ b/files/practicum/GalgjeWF.dcl @@ -0,0 +1,5 @@ +definition module GalgjeWF
+
+import iTasks
+
+galgje :: [Workflow]
diff --git a/files/practicum/GenTree.dcl b/files/practicum/GenTree.dcl new file mode 100644 index 0000000..a18a272 --- /dev/null +++ b/files/practicum/GenTree.dcl @@ -0,0 +1,18 @@ +definition module GenTree
+
+import StdClass
+
+:: GenTree a b = Node a [GenTree a b] | Leaf b
+
+:: Either a b = This a | That b
+
+root :: (GenTree a b) -> Either a b
+trees :: (GenTree a b) -> [GenTree a b]
+
+isNodeMember :: a (GenTree a b) -> Bool | Eq a
+isLeafMember :: b (GenTree a b) -> Bool | Eq b
+allNodes :: (GenTree a b) -> [a]
+allLeaves :: (GenTree a b) -> [b]
+allMembers :: (GenTree a a) -> [a]
+
+map2 :: (a -> c,b -> d) (GenTree a b) -> GenTree c d
diff --git a/files/practicum/GenTree.icl b/files/practicum/GenTree.icl new file mode 100644 index 0000000..8fff381 --- /dev/null +++ b/files/practicum/GenTree.icl @@ -0,0 +1,32 @@ +implementation module GenTree
+
+import StdEnv
+
+:: GenTree a b = Node a [GenTree a b] | Leaf b
+:: Either a b = This a | That b
+
+root :: (GenTree a b) -> Either a b
+root ...
+
+trees :: (GenTree a b) -> [GenTree a b]
+trees ...
+
+isNodeMember :: a (GenTree a b) -> Bool | Eq a
+isNodeMember ...
+
+isLeafMember :: b (GenTree a b) -> Bool | Eq b
+isLeafMember ...
+
+allNodes :: (GenTree a b) -> [a]
+allNodes ...
+
+allLeaves :: (GenTree a b) -> [b]
+allLeaves ...
+
+allMembers :: (GenTree a a) -> [a]
+allMembers ...
+
+map2 :: (a -> c,b -> d) (GenTree a b) -> GenTree c d
+map2 ...
+
+Start = allLeaves (Node 5 [Node 3 [Node 6 [Leaf 42.42]],Leaf 3.14])
diff --git a/files/practicum/GenTreePrint.dcl b/files/practicum/GenTreePrint.dcl new file mode 100644 index 0000000..b8c02b5 --- /dev/null +++ b/files/practicum/GenTreePrint.dcl @@ -0,0 +1,6 @@ +definition module GenTreePrint
+
+import StdClass
+import GenTree
+
+instance toString (GenTree a b) | toString a & toString b
diff --git a/files/practicum/GenTreePrint.icl b/files/practicum/GenTreePrint.icl new file mode 100644 index 0000000..09bebe7 --- /dev/null +++ b/files/practicum/GenTreePrint.icl @@ -0,0 +1,21 @@ +implementation module GenTreePrint
+
+import StdEnv
+import GenTree
+import TextCompose
+
+instance toString (GenTree a b) | toString a & toString b where
+ toString tree = indentTree tree
+// toString tree = tree2D tree
+
+/******************************************************************************************
+ version with indented trees
+******************************************************************************************/
+indentTree :: !(GenTree a b) -> String | toString a & toString b
+indentTree tree = ...
+
+/******************************************************************************************
+ version with TextCompose
+******************************************************************************************/
+tree2D :: !(GenTree a b) -> String | toString a & toString b
+tree2D tree = ...
diff --git a/files/practicum/GesorteerdBestandNaarBoom.dcl b/files/practicum/GesorteerdBestandNaarBoom.dcl new file mode 100644 index 0000000..e604521 --- /dev/null +++ b/files/practicum/GesorteerdBestandNaarBoom.dcl @@ -0,0 +1,8 @@ +definition module GesorteerdBestandNaarBoom
+
+import StdFile
+
+:: BTree a // type definitie van binaire zoekboom
+
+readSortedFile :: String *env -> (BTree String,*env) | FileSystem env
+writeSortedFile :: String (BTree String) *env -> *env | FileSystem env
diff --git a/files/practicum/GesorteerdBestandNaarBoom.icl b/files/practicum/GesorteerdBestandNaarBoom.icl new file mode 100644 index 0000000..769b345 --- /dev/null +++ b/files/practicum/GesorteerdBestandNaarBoom.icl @@ -0,0 +1,18 @@ +implementation module GesorteerdBestandNaarBoom
+
+import StdEnv
+import SimpleFileIO
+
+Start :: *World -> (BTree String,*World)
+Start world = readSortedFile pad world
+
+cleanpad :== // padnaam naar je Clean-distributie (directory waarin CleanIDE.exe staat)
+pad :== cleanpad +++ "Examples\\ObjectIO Examples\\scrabble\\Nederlands\\Nederlands_lexicon"
+
+:: BTree a = // type definitie van binaire zoekboom
+
+readSortedFile :: String *env -> (BTree String,*env) | FileSystem env
+readSortedFile ...
+
+writeSortedFile :: String (BTree String) *env -> *env | FileSystem env
+writeSortedFile ...
diff --git a/files/practicum/Group.dcl b/files/practicum/Group.dcl new file mode 100644 index 0000000..2191fee --- /dev/null +++ b/files/practicum/Group.dcl @@ -0,0 +1,4 @@ +definition module Group
+
+// Recursieve variant van group:
+group :: (a -> Bool) [a] -> [[a]]
diff --git a/files/practicum/Group.icl b/files/practicum/Group.icl new file mode 100644 index 0000000..81e6b23 --- /dev/null +++ b/files/practicum/Group.icl @@ -0,0 +1,11 @@ +implementation module Group
+
+import StdEnv
+
+Start = ( group isEven [1 .. 10]
+ , group isOdd [1 .. 10]
+ , group isDigit ['7 Dwergen en 11 princessen zoenden 3 kikkerprinsen.']
+ )
+
+group :: (a -> Bool) [a] -> [[a]]
+group ...
diff --git a/files/practicum/Huffman.icl b/files/practicum/Huffman.icl new file mode 100644 index 0000000..4d3fa44 --- /dev/null +++ b/files/practicum/Huffman.icl @@ -0,0 +1,4 @@ +module Huffman
+
+import StdEnv, SimpleFileIO
+
diff --git a/files/practicum/IKS.icl b/files/practicum/IKS.icl new file mode 100644 index 0000000..cdcdce9 --- /dev/null +++ b/files/practicum/IKS.icl @@ -0,0 +1,40 @@ +module IKS + +import StdEnv +import StdMaybe +import StdDynamic, StdDynamicFileIO + +/** Een interpreter voor IKS. +*/ +// 1. Creeer de dynamics op disk +Start :: *World -> *World +Start world +# (_,world) = writeDynamic "I" (dynamic i :: A. a: a -> a) world + ... += world + +i :: a -> a +i x = x + +k :: a b -> a +k x y = x + +s :: (a -> b -> c) (a -> b) a -> c +s x y z = x z (y z) + + +// 2. Parseren van IKS expressies +:: IKS = I | K | S | N Int | App IKS IKS + +pIKS :: [Char] -> Maybe IKS +pIKS ... + + +// 3. Interpreteren van IKS expressies +interp :: (Dynamic,Dynamic,Dynamic) IKS -> Dynamic +interp ... + + +// 4. console +Start :: *World -> *World +Start ... diff --git a/files/practicum/ImproveEnglishSpelling.txt b/files/practicum/ImproveEnglishSpelling.txt new file mode 100644 index 0000000..8c9d76c --- /dev/null +++ b/files/practicum/ImproveEnglishSpelling.txt @@ -0,0 +1,17 @@ +A plan for the improvement of English spelling
+
+For example, in Year 1 that useless letter 'c' would be dropped to be replaced either by 'k' or 's', and likewise 'x' would no longer be part of the alphabet.
+The only case in which 'c' would be retained would be the 'ch' formation, which will be dealt with later.
+
+Year 2 might reform 'w' spelling, so that 'which' and 'one' would take the same consonant, while Year 3 might
+well abolish 'y' replacing it with 'i' and Year 4 might fix the 'g/j' anomaly once and for all.
+
+Generally, then, the improvement would continue year by year with Year 5 doing away with useless
+double consonants, and Years 6-12 or so modifying vowels and the remaining voiced and unvoiced consonants.
+
+By Year 15 or so, it would finally be possible to make just off the redundant letters 'c', 'y' and 'x'
+-- by now just a memory in the minds of old dodderers -- to replace 'ch', 'sh', and 'th'
+respectively.
+
+Finally, then, after some 20 years of orthographical reform, we would have a logical, coherent spelling in just
+throughout the English-speaking world.
diff --git a/files/practicum/Kaart.dcl b/files/practicum/Kaart.dcl new file mode 100644 index 0000000..d3588f1 --- /dev/null +++ b/files/practicum/Kaart.dcl @@ -0,0 +1,13 @@ +definition module Kaart
+
+import StdEnv
+
+:: Kaart = // maak het type af
+
+instance == Kaart
+instance toString Kaart
+instance fromString Kaart
+
+kaartspel :: [Kaart]
+sorteer_naar_waarde :: [Kaart] -> [Kaart]
+sorteer_naar_kleur :: [Kaart] -> [Kaart]
diff --git a/files/practicum/Kaart.icl b/files/practicum/Kaart.icl new file mode 100644 index 0000000..28d6eaa --- /dev/null +++ b/files/practicum/Kaart.icl @@ -0,0 +1,23 @@ +implementation module Kaart
+
+import StdEnv
+
+Start :: [Kaart]
+Start = sorteer_naar_kleur kaartspel
+
+:: Kaart // maak het type af
+:: Kleur // maak het type af
+:: Waarde // maak het type af
+
+instance == Kaart where // maak de instantie af
+instance toString Kaart where // maak de instantie af
+instance fromString Kaart where // maak de instantie af
+
+kaartspel :: [Kaart]
+kaartspel = // genereer alle kaarten zonder duplicaten
+
+sorteer_naar_waarde :: [Kaart] -> [Kaart]
+sorteer_naar_waarde kaarten = // sorteer naar waarde, dan kleur
+
+sorteer_naar_kleur :: [Kaart] -> [Kaart]
+sorteer_naar_kleur kaarten = // sorteer naar kleur, dan waarde
diff --git a/files/practicum/Kogelbaan.dcl b/files/practicum/Kogelbaan.dcl new file mode 100644 index 0000000..c6fccdb --- /dev/null +++ b/files/practicum/Kogelbaan.dcl @@ -0,0 +1,18 @@ +definition module Kogelbaan
+
+:: T :== Real // T staat voor tijd (s).
+:: V :== Real // R staat voor snelheid (m/s).
+:: A :== Real // A staat voor hoek (radialen).
+:: G :== Real // G staat voor valversnelling (m/s^2).
+:: D :== Real // M staat voor afstand (m).
+
+// De valversnelling g is een 'echte' constante:
+g :: G
+
+v_x :: // geef type van v_x
+v_y :: // geef type van v_y
+x_at :: // geef type van x_at
+y_at :: // geef type van y_at
+h :: // geef type van h
+
+beste_hoek :: V -> ...
diff --git a/files/practicum/Kogelbaan.icl b/files/practicum/Kogelbaan.icl new file mode 100644 index 0000000..7490b38 --- /dev/null +++ b/files/practicum/Kogelbaan.icl @@ -0,0 +1,37 @@ +implementation module Kogelbaan
+
+import StdEnv
+
+:: T :== Real // T staat voor tijd (s).
+:: V :== Real // R staat voor snelheid (m/s).
+:: A :== Real // A staat voor hoek (radialen).
+:: G :== Real // G staat voor valversnelling (m/s^2).
+:: D :== Real // M staat voor afstand (m).
+
+// De valversnelling g is een 'echte' constante:
+g :: G
+g = 9.81
+
+// De gevraagde functies:
+v_x :: // geef type van v_x
+v_x = // geef functievoorschrift van v_x
+
+v_y :: // geef type van v_y
+v_y = // geef functievoorschrift van v_y
+
+x_at :: // geef type van x_at
+x_at = // geef functievoorschrift van x_at
+
+y_at :: // geef type van y_at
+y_at = // geef functievoorschrift van y_at
+
+h :: // geef type van h
+h = // geef functievoorschrift van h
+
+// Het bepalen van de beste hoek uit {0.01*pi, 0.02*pi .. 0.5*pi}:
+Start = beste_hoek 5.0
+
+pi = 3.1415926
+
+beste_hoek :: V -> ...
+beste_hoek v_0 =
diff --git a/files/practicum/Lambda.dcl b/files/practicum/Lambda.dcl new file mode 100644 index 0000000..6ef7257 --- /dev/null +++ b/files/practicum/Lambda.dcl @@ -0,0 +1,20 @@ +definition module Lambda
+
+import StdEnv
+
+:: Term = C Value // constante v (C v)
+ | X Index // variabele x_i (X i)
+ | (@.) infixl 7 Term Term // applicatie (t1 t2) (t1 @. t2)
+ | \. Index Term // abstractie (\x_i . t) (\. i t)
+:: Value :== Int // willekeurige integer waarde
+:: Index :== Int // index (gebruikelijk i >= 0)
+
+instance toString Term
+
+nf :: Term -> Bool
+vars :: Term -> [Index]
+(<:) infixl 6 :: Term (Index,Term) -> Term
+
+normal_order :: Term -> Term
+applicative_order :: Term -> Term
+herschrijf :: (Term -> Term) Term -> Term
diff --git a/files/practicum/Lambda.icl b/files/practicum/Lambda.icl new file mode 100644 index 0000000..25c5405 --- /dev/null +++ b/files/practicum/Lambda.icl @@ -0,0 +1,73 @@ +implementation module Lambda + +import StdEnv + +:: Term = C Value // constante v (C v) + | X Index // variabele x_i (X i) + | (@.) infixl 7 Term Term // applicatie (t1 t2) (t1 @. t2) + | \. Index Term // abstractie (\x_i . t) (\. i t) +:: Value :== Int // willekeurige integer waarde +:: Index :== Int // index (gebruikelijk i >= 0) + +t0 = (C 42) // 42 +t1 = (X 0) // x_0 +t2 = (\.0 (X 0)) // (\x_0 . x_0) +t3 = (\.0 (X 0)) @. (C 42) // (\x_0 . x_0) 42 +t4 = (\.0 ((X 0) @. (X 0))) @. (\.1 ((X 1) @. (X 1))) // (\x_0 . x_0 x_0) (\x_1 . x_1 x_1) +t5 = (\.0 (\.1 (X 0))) // (\x_0 . (\x_1 . x_0)) +t6 = (\.0 (\.1 (X 0))) @. (C 42) @. t4 // ((\x_0 . (\x_1 . x_0)) 42) ((\x_0 . x_0 x_0) (\x_1 . x_1 x_1)) + +terms = [t0, t1, t2, t3, t4, t5, t6] + +instance toString Term where + toString ... + +Start = foldr (\s1 s2 -> s1 +++ "\n" +++ s2) "\n" (map toString terms) + +nf :: Term -> Bool +nf ... + +//Start = map nf terms + + +vars :: Term -> [Index] +vars ... + +//Start = map vars terms + +fresh :: [Term] -> Index +fresh ... + +//Start = fresh terms + + +(<:) infixl 6 :: Term (Index,Term) -> Term +(<:) ... + +//Start = (((X 2) @. t1) @. (\.0 t1)) <: (0,C 50) + +beta_reduce :: Term Term -> Term +beta_reduce ... + +//Start = beta_reduce (\.0 ((X 0) @. (X 0))) (\.0 ((X 0) @. (X 0))) + + +normal_order :: Term -> Term +normal_order ... + +applicative_order :: Term -> Term +applicative_order ... + +/* +Start = ( toString t + , '\n', toString (normal_order t) + , '\n', toString (applicative_order t) + ) +where + t = (\.0 (\.1 (X 0))) @. ((\.0 (X 0)) @. (C 42)) @. (C 50) +*/ + +herschrijf :: (Term -> Term) Term -> Term +herschrijf ... + +//Start = herschrijf normal_order t3 diff --git a/files/practicum/LijstGenerator.dcl b/files/practicum/LijstGenerator.dcl new file mode 100644 index 0000000..4420140 --- /dev/null +++ b/files/practicum/LijstGenerator.dcl @@ -0,0 +1,9 @@ +definition module LijstGenerator
+
+import StdClass
+
+allemaal :: // meest algemene type
+vanaf :: // meest algemene type
+vanaf_met_stap :: // meest algemene type
+vanaf_tot :: // meest algemene type
+vanaf_tot_met_stap :: // meest algemene type
diff --git a/files/practicum/LijstGenerator.icl b/files/practicum/LijstGenerator.icl new file mode 100644 index 0000000..6c3a230 --- /dev/null +++ b/files/practicum/LijstGenerator.icl @@ -0,0 +1,29 @@ +implementation module LijstGenerator
+
+import StdEnv
+
+allemaal :: // meest algemene type
+allemaal x = ...
+
+vanaf :: // meest algemene type
+vanaf x = ...
+
+vanaf_met_stap :: // meest algemene type
+vanaf_met_stap x z = ...
+
+vanaf_tot :: // meest algemene type
+vanaf_tot x y = ...
+
+vanaf_tot_met_stap :: // meest algemene type
+vanaf_tot_met_stap x y z = ...
+
+Start = ( take 10 (allemaal 'H')
+ , '\n'
+ , take 26 (vanaf 'a')
+ , '\n'
+ , take 10 (vanaf_met_stap 0 -2)
+ , '\n'
+ , vanaf_tot 0 10
+ , '\n'
+ , vanaf_tot_met_stap 0 -10 -2
+ )
diff --git a/files/practicum/LijstGenerator2.dcl b/files/practicum/LijstGenerator2.dcl new file mode 100644 index 0000000..97a5e34 --- /dev/null +++ b/files/practicum/LijstGenerator2.dcl @@ -0,0 +1,9 @@ +definition module LijstGenerator2
+
+import StdClass
+
+allemaal :: // meest algemene type
+vanaf :: // meest algemene type
+vanaf_met_stap :: // meest algemene type
+vanaf_tot :: // meest algemene type
+vanaf_tot_met_stap :: // meest algemene type
diff --git a/files/practicum/LijstGenerator2.icl b/files/practicum/LijstGenerator2.icl new file mode 100644 index 0000000..8dd9761 --- /dev/null +++ b/files/practicum/LijstGenerator2.icl @@ -0,0 +1,29 @@ +implementation module LijstGenerator2
+
+import StdEnv
+
+allemaal :: // meest algemene type
+allemaal x = ...
+
+vanaf :: // meest algemene type
+vanaf x = ...
+
+vanaf_met_stap :: // meest algemene type
+vanaf_met_stap x z = ...
+
+vanaf_tot :: // meest algemene type
+vanaf_tot x y = ...
+
+vanaf_tot_met_stap :: // meest algemene type
+vanaf_tot_met_stap x y z= ...
+
+Start = ( take 10 (allemaal 'H')
+ , '\n'
+ , take 26 (vanaf 'a')
+ , '\n'
+ , take 10 (vanaf_met_stap 0 -2)
+ , '\n'
+ , vanaf_tot 0 10
+ , '\n'
+ , vanaf_tot_met_stap 0 -10 -2
+ )
diff --git a/files/practicum/LijstGeneratorTest.icl b/files/practicum/LijstGeneratorTest.icl new file mode 100644 index 0000000..f065e98 --- /dev/null +++ b/files/practicum/LijstGeneratorTest.icl @@ -0,0 +1,73 @@ +module LijstGeneratorTest
+
+/* Test module LijstGenerator
+ Voor werken met Gast:
+ (*) gebruik Environment 'Gast'
+ (*) zet Project Options op 'Basic Values Only' en '2M' Maximum Heap Size
+*/
+
+import gast
+import LijstGenerator
+
+Start
+ = testn 1000
+ (\x y z ->
+ eersten_gelijk x /\
+ vanaf_verhoogt_met_one x /\
+ vanaf_met_stap_verhoogt_met_stap x y /\
+ vanaf_tot_verhoogt_met_one x y /\
+ vanaf_tot_met_stap_verhoogt_met_stap x y z /\
+ vanaf_tot_met_stap_0_is_leeg x y /\
+ True
+ )
+
+max_list_length = 1000
+
+eersten_gelijk :: Int -> Property
+eersten_gelijk x = name "eersten in lijst zijn gelijk"
+ (let l` = take max_list_length (allemaal x)
+ n = length l`
+ in n == max_list_length && all ((==) x) l`
+ )
+
+vanaf_verhoogt_met_one :: Int -> Property
+vanaf_verhoogt_met_one x = name "vanaf verhoogt met one"
+ (let l` = take max_list_length (vanaf x)
+ n = length l`
+ in n == max_list_length && all ((==) one) (verschil l`)
+ )
+
+vanaf_met_stap_verhoogt_met_stap :: Int Int -> Property
+vanaf_met_stap_verhoogt_met_stap x y = name "vanaf_met_stap verhoogt met stap"
+ (let l` = take max_list_length (vanaf_met_stap x y)
+ n = length l`
+ in n == max_list_length && all ((==) y) (verschil l`)
+ )
+
+vanaf_tot_verhoogt_met_one :: Int Int -> Property
+vanaf_tot_verhoogt_met_one x y = name "vanaf_tot verhoogt met one"
+ (let l` = take max_list_length (vanaf_tot x y)
+ n = length l`
+ in if (x > y) (n == 0) (all ((==) one) (verschil l`))
+ )
+
+vanaf_tot_met_stap_verhoogt_met_stap :: Int Int Int -> Property
+vanaf_tot_met_stap_verhoogt_met_stap x y z = name "vanaf_tot_met_stap verhoogt met stap"
+ (ok ==> let l` = take max_list_length (vanaf_tot_met_stap x y z)
+ n = length l`
+ in if (x <= y && z > 0) (all ((==) z) (verschil l`))
+ (if (x >= y && z < 0) (all ((==) z) (verschil l`))
+ (n == 0)
+ )
+ )
+ where ok = z <> 0
+ &&
+ all (\x->x <> abs x || x==0) [abs x, abs y, abs z]
+
+vanaf_tot_met_stap_0_is_leeg :: Int Int -> Property
+vanaf_tot_met_stap_0_is_leeg x y = name "vanaf_tot_met stap 0 is leeg"
+ (isEmpty (vanaf_tot_met_stap x y 0))
+
+verschil :: [a] -> [a] | - a
+verschil [a,b:as] = [b-a : verschil [b:as]]
+verschil _ = []
diff --git a/files/practicum/LijstOverloading.dcl b/files/practicum/LijstOverloading.dcl new file mode 100644 index 0000000..b6f32bc --- /dev/null +++ b/files/practicum/LijstOverloading.dcl @@ -0,0 +1,11 @@ +definition module LijstOverloading
+
+import StdEnv
+
+instance zero [a] | zero a
+instance one [a] | one a
+instance ~ [a] | ~ a
+instance + [a] | + a
+instance - [a] | - a
+instance * [a] | * a
+instance / [a] | / a
diff --git a/files/practicum/LijstOverloading.icl b/files/practicum/LijstOverloading.icl new file mode 100644 index 0000000..5d40186 --- /dev/null +++ b/files/practicum/LijstOverloading.icl @@ -0,0 +1,20 @@ +implementation module LijstOverloading
+
+import StdEnv, LijstGenerator
+
+instance zero [a] | zero a where
+instance one [a] | one a where
+instance ~ [a] | ~ a where
+instance + [a] | + a where
+instance - [a] | - a where
+instance * [a] | * a where
+instance / [a] | / a where
+
+Start = (test [1,2,3], test [1.0,2.0,3.0])
+
+test a = ( zero + a == a && a == a + zero
+ , a - zero == a && a == ~ (zero - a)
+ , one * a == a && a == a * one
+ , a / one == a
+ , ~ (~ a) == a
+ )
diff --git a/files/practicum/LijstTypes.icl b/files/practicum/LijstTypes.icl new file mode 100644 index 0000000..1f5ce0e --- /dev/null +++ b/files/practicum/LijstTypes.icl @@ -0,0 +1,20 @@ +module LijstTypes
+
+import StdEnv
+
+Start = 0
+
+e1 :: [Int]
+e1 =
+
+e2 :: [Bool]
+e2 =
+
+e3 :: [[Int]]
+e3 =
+
+e4 :: [[[Real]]]
+e4 =
+
+e5 :: [Int Int -> Int]
+e5 =
diff --git a/files/practicum/Map.dcl b/files/practicum/Map.dcl new file mode 100644 index 0000000..f3fbe43 --- /dev/null +++ b/files/practicum/Map.dcl @@ -0,0 +1,10 @@ +definition module Map
+
+import BinTree // voor het type Tree en voorbeelden t0 t/m t7
+import Maybe // voor het type Maybe
+
+class Map c :: ... // exporteer deze type constructor class definitie
+
+instance Map []
+instance Map Maybe
+instance Map Tree
diff --git a/files/practicum/Map.icl b/files/practicum/Map.icl new file mode 100644 index 0000000..deccc07 --- /dev/null +++ b/files/practicum/Map.icl @@ -0,0 +1,21 @@ +implementation module Map
+
+import BinTree // voor het type Tree en voorbeelden t0 t/m t7
+import Maybe // voor het type Maybe
+import StdList // voor de standaard map functie
+
+class Map c :: ... // maak deze type constructor class af
+
+instance Map [] where ... // maak deze instance af
+instance Map Maybe where ... // maak deze instance af
+instance Map Tree where ... // maak deze instance af
+
+// voorgegeven functie, specifiek voor Maybe:
+mapMaybe :: (a -> b) (Maybe a) -> Maybe b
+mapMaybe f Nothing = Nothing
+mapMaybe f (Just x) = Just (f x)
+
+// voorgegeven functie, specifiek voor Tree:
+mapTree :: (a -> b) (Tree a) -> Tree b
+mapTree f Leaf = Leaf
+mapTree f (Node x l r) = Node (f x) (mapTree f l) (mapTree f r)
diff --git a/files/practicum/Mappen.icl b/files/practicum/Mappen.icl new file mode 100644 index 0000000..9dfdb72 --- /dev/null +++ b/files/practicum/Mappen.icl @@ -0,0 +1,6 @@ +module Mappen
+
+import StdEnv
+import Map
+
+Start = (Map ((+) 1) (Just 42), Map ((+) 1) [1..10], Map ((+) 1) t7)
diff --git a/files/practicum/Mastermind.icl b/files/practicum/Mastermind.icl new file mode 100644 index 0000000..88cc46d --- /dev/null +++ b/files/practicum/Mastermind.icl @@ -0,0 +1,5 @@ +implementation module Mastermind
+
+import StdEnv, RandomGetallen
+
+Start = 0
diff --git a/files/practicum/MatchStrings.dcl b/files/practicum/MatchStrings.dcl new file mode 100644 index 0000000..527447c --- /dev/null +++ b/files/practicum/MatchStrings.dcl @@ -0,0 +1,8 @@ +definition module MatchStrings
+
+head :: String -> Char
+tail :: String -> String
+is_gelijk :: String String -> Bool
+is_deelstring :: String String -> Bool
+is_deel :: String String -> Bool
+is_match :: String String -> Bool
diff --git a/files/practicum/MatchStrings.icl b/files/practicum/MatchStrings.icl new file mode 100644 index 0000000..3519eb7 --- /dev/null +++ b/files/practicum/MatchStrings.icl @@ -0,0 +1,35 @@ +implementation module MatchStrings
+
+import StdEnv
+
+head :: String -> Char
+head s = abort "head is nog niet geimplementeerd"
+
+tail :: String -> String
+tail s = abort "tail is nog niet geimplementeerd"
+
+is_gelijk :: String String -> Bool
+is_gelijk a b = abort "is_gelijk is nog niet geimplementeerd"
+
+is_deelstring :: String String -> Bool
+is_deelstring a b = abort "is_deelstring is nog niet geimplementeerd"
+
+is_deel :: String String -> Bool
+is_deel a b = abort "is_deel is nog niet geimplementeerd"
+
+is_match :: String String -> Bool
+is_match a b = abort "is_match is nog niet geimplementeerd"
+
+//Start = (head pink_floyd, tail pink_floyd)
+//Start = is_gelijk "" " "
+//Start = is_deelstring "there" pink_floyd
+//Start = is_deelstring "there" marillion
+//Start = is_deel "there" marillion
+//Start = is_deel "she and her" pink_floyd
+//Start = is_deel radiohead pink_floyd
+//Start = is_match "*.here*.here*." pink_floyd
+//Start = is_match ".here.here." pink_floyd
+
+pink_floyd = "Is there anybody in there?"
+marillion = "Just for the record"
+radiohead = "There there"
diff --git a/files/practicum/MatchStringsTest.icl b/files/practicum/MatchStringsTest.icl new file mode 100644 index 0000000..35c2d27 --- /dev/null +++ b/files/practicum/MatchStringsTest.icl @@ -0,0 +1,80 @@ +module MatchStringsTest
+
+/* Test module MatchStrings
+ Voor werken met Gast:
+ (*) gebruik Environment 'Gast'
+ (*) zet Project Options op 'Basic Values Only'
+*/
+
+import StdEnv
+import MatchStrings
+import gast
+
+Start
+ = testn 1000
+ (\s t ->
+ eigenschap_waar_voor_gelijke_argumenten is_gelijk s /\
+ eigenschap_onwaar_voor_groter_argument is_gelijk s /\
+ eigenschap_onwaar_voor_groter_argument is_deelstring s /\
+ eigenschap_waar_voor_gelijke_argumenten is_deelstring s /\
+ eigenschap_waar_voor_gelijk_begin is_deelstring s t /\
+ eigenschap_waar_voor_gelijk_midden is_deelstring s t /\
+ eigenschap_waar_voor_gelijk_eind is_deelstring s t /\
+ eigenschap_onwaar_voor_groter_argument is_deel s /\
+ eigenschap_waar_voor_gelijke_argumenten is_deel s /\
+ eigenschap_waar_voor_gelijk_begin is_deel s t /\
+ eigenschap_waar_voor_gelijk_midden is_deel s t /\
+ eigenschap_waar_voor_gelijk_eind is_deel s t /\
+ eigenschap_waar_voor_uitbreiding is_deel s t /\
+ kleenes_matcht_altijd s /\
+ dots_matcht_zelfde_lengte s /\
+ True
+ )
+
+eigenschap_onwaar_voor_groter_argument :: (String String -> Bool) String -> Property
+eigenschap_onwaar_voor_groter_argument f a
+ = name "eigenschap_onwaar_voor_groter_argument" (not (f (a +++ ".") a))
+
+eigenschap_waar_voor_gelijke_argumenten :: (String String -> Bool) String -> Property
+eigenschap_waar_voor_gelijke_argumenten f a
+ = name "eigenschap_waar_voor_gelijke_argumenten" (f a a)
+
+eigenschap_waar_voor_gelijk_begin :: (String String -> Bool) String String -> Property
+eigenschap_waar_voor_gelijk_begin f a b
+ = name "eigenschap_waar_voor_gelijk_begin" (f a (a +++ b))
+
+eigenschap_waar_voor_gelijk_midden :: (String String -> Bool) String String -> Property
+eigenschap_waar_voor_gelijk_midden f a b
+ = name "eigenschap_waar_voor_gelijk_midden" (f a (b +++ a +++ b))
+
+eigenschap_waar_voor_gelijk_eind :: (String String -> Bool) String String -> Property
+eigenschap_waar_voor_gelijk_eind f a b
+ = name "eigenschap_waar_voor_gelijk_eind" (f a (b +++ a))
+
+eigenschap_waar_voor_uitbreiding :: (String String -> Bool) String String -> Property
+eigenschap_waar_voor_uitbreiding f a extra
+ = name "eigenschap_waar_voor_uitbreiding"
+ ((extra <> "") ==> f a (breid_string_uit extra a))
+
+breid_string_uit :: String String -> String
+breid_string_uit extra string
+ = toString (flatten [[c:cs] \\ c <-: string])
+where
+ cs = fromString extra
+
+kleenes_matcht_altijd :: String -> Property
+kleenes_matcht_altijd s
+ = name "kleenes_matcht_altijd"
+ (ForEach [{# '*' \\ _ <- [1..n]} \\ n <- [1..10]] (flip is_match s))
+
+dots_matcht_zelfde_lengte :: String -> Property
+dots_matcht_zelfde_lengte s
+ = name "dots_matcht_zelfde_lengte"
+ (is_match dots s
+ &&
+ not (is_match ("."+++dots) s)
+ &&
+ not (is_match dots (s+++"."))
+ )
+where
+ dots = {# '.' \\ _ <-: s}
diff --git a/files/practicum/Maybe.dcl b/files/practicum/Maybe.dcl new file mode 100644 index 0000000..500c6ac --- /dev/null +++ b/files/practicum/Maybe.dcl @@ -0,0 +1,4 @@ +definition module Maybe
+
+// Het (Maybe a) type representeert een collectie van hoogstens 1 element
+:: Maybe a = Nothing | Just a
diff --git a/files/practicum/Maybe.icl b/files/practicum/Maybe.icl new file mode 100644 index 0000000..a7c62ce --- /dev/null +++ b/files/practicum/Maybe.icl @@ -0,0 +1 @@ +implementation module Maybe
diff --git a/files/practicum/MetOfZonderCurry.icl b/files/practicum/MetOfZonderCurry.icl new file mode 100644 index 0000000..e65aaab --- /dev/null +++ b/files/practicum/MetOfZonderCurry.icl @@ -0,0 +1,17 @@ +module MetOfZonderCurry
+
+import StdEnv
+
+e1 = curry fst
+
+e2 = curry snd
+
+e3 = uncurry (+)
+
+e4 = uncurry (-)
+
+e5 = uncurry (*)
+
+e6 = uncurry (/)
+
+Start = 42
diff --git a/files/practicum/ModernEnglishSpelling.icl b/files/practicum/ModernEnglishSpelling.icl new file mode 100644 index 0000000..5f24a1d --- /dev/null +++ b/files/practicum/ModernEnglishSpelling.icl @@ -0,0 +1,5 @@ +implementation module ModernEnglishSpelling
+
+import StdEnv
+
+Start =
diff --git a/files/practicum/Nim.dcl b/files/practicum/Nim.dcl new file mode 100644 index 0000000..5d6df82 --- /dev/null +++ b/files/practicum/Nim.dcl @@ -0,0 +1 @@ +definition module Nim
diff --git a/files/practicum/Nim.icl b/files/practicum/Nim.icl new file mode 100644 index 0000000..b9384ec --- /dev/null +++ b/files/practicum/Nim.icl @@ -0,0 +1,3 @@ +implementation module Nim
+
+import StdEnv
diff --git a/files/practicum/NotatieADT.icl b/files/practicum/NotatieADT.icl new file mode 100644 index 0000000..3690ecc --- /dev/null +++ b/files/practicum/NotatieADT.icl @@ -0,0 +1,7 @@ +module NotatieADT
+
+:: Dag = Maandag | Dinsdag | Woensdag | Donderdag | Vrijdag | Zaterdag | Zondag
+:: Nat = Nat Int
+:: Getal = Geheel Nat | Decimaal Real
+:: Functies = F0 Int | F1 (Int -> Int) | F2 (Int Int -> Int)
+:: Void = Void
diff --git a/files/practicum/NotatieDynamics.icl b/files/practicum/NotatieDynamics.icl new file mode 100644 index 0000000..254b384 --- /dev/null +++ b/files/practicum/NotatieDynamics.icl @@ -0,0 +1,25 @@ +module NotatieDynamics
+
+import StdEnv
+import StdDynamic, StdDynamicFileIO
+
+Start = f4 f3
+
+f1 :: // meest algemene type
+f1 (x :: Int) y = x + y
+
+f2 :: // meest algemene type
+f2 (b :: Bool) (e1 :: a) (e2 :: a) = dynamic if b e1 e2 :: a
+
+f3 :: // meest algemene type
+f3 = dynamic map fib [1 ..]
+
+fib 0 = 1
+fib 1 = 1
+fib n = fib (n-1) + fib (n-2)
+
+f4 :: // meest algemene type
+f4 (xs :: [Int]) = take 10 xs
+
+f5 :: // meest algemene type
+f5 = f4 f3
diff --git a/files/practicum/NotatieFuncties.icl b/files/practicum/NotatieFuncties.icl new file mode 100644 index 0000000..87c9b8a --- /dev/null +++ b/files/practicum/NotatieFuncties.icl @@ -0,0 +1,34 @@ +module NotatieFuncties
+
+import StdEnv
+
+f1 :: Int
+f1 = 1 + 5
+
+f2 :: Int
+f2 = (+) 1 5
+
+f3 :: Int Int -> Int
+f3 m n
+| m < n = m
+| otherwise = n
+
+f4 :: String Int -> String
+f4 s n
+| n <= 0 = ""
+| otherwise = s +++ f4 s (n-1)
+
+f5 :: Int Int -> Int
+f5 x 0 = x
+f5 x y = f5 y (x rem y)
+
+f6 :: (Int,Int) -> Int
+f6 x = fst x + snd x
+
+f7 :: (a,b) -> (b,a)
+f7 (a,b) = (b,a)
+
+f8 :: (a,a) -> (a,a)
+f8 x = f7 (f7 x)
+
+Start = f1
diff --git a/files/practicum/NotatieHOF.icl b/files/practicum/NotatieHOF.icl new file mode 100644 index 0000000..65fe29e --- /dev/null +++ b/files/practicum/NotatieHOF.icl @@ -0,0 +1,29 @@ +module NotatieHOF
+
+import StdEnv
+
+f1 :: // geef meest algemene type
+f1 a b = a b
+
+f2 :: // geef meest algemene type
+f2 a b c = a c (b c)
+
+f3 :: // geef meest algemene type
+f3 a b = a (a b)
+
+f4 :: // geef meest algemene type
+f4 a b c = [x \\ x <- [b .. c] | a x]
+
+f5 :: // geef meest algemene type
+f5 a b (c,d) = (a c,b d)
+
+f6 :: // geef meest algemene type
+f6 = f5
+
+f7 :: // geef meest algemene type
+f7 "-" = -
+f7 "+" = +
+f7 "*" = *
+f7 "/" = /
+
+Start = 0
diff --git a/files/practicum/NotatieLijsten.icl b/files/practicum/NotatieLijsten.icl new file mode 100644 index 0000000..4f4dcbb --- /dev/null +++ b/files/practicum/NotatieLijsten.icl @@ -0,0 +1,11 @@ +module NotatieLijsten
+
+Start = f1
+
+l1 = []
+l2 = [1000:[]]
+l3 = [[]]
+l4 = [[]:[]]
+l5 = ['a':['b':['c':['d':['e':[]]]]]]
+l6 = [[1],[],[2,3]:[[4,5,6]]]
+l7 = [[[1,2],[3,4]],[],[[],[],[5,6]]]
diff --git a/files/practicum/NotatieZF.icl b/files/practicum/NotatieZF.icl new file mode 100644 index 0000000..8778794 --- /dev/null +++ b/files/practicum/NotatieZF.icl @@ -0,0 +1,21 @@ +module NotatieZF
+
+import StdEnv
+
+g1 :: // meest algemene type
+g1 as bs = [(a,b) \\ a <- as, b <- bs]
+
+g2 :: // meest algemene type
+g2 as bs = [(a,b) \\ a <- as & b <- bs]
+
+g3 :: // meest algemene type
+g3 as bs = [(a,b) \\ a <- as, b <- bs | a <> b]
+
+g4 :: // meest algemene type
+g4 as bs = [a \\ a <- as, b <- bs | a == b]
+
+g5 :: // meest algemene type
+g5 xss = [x \\ xs <- xss, x <- xs]
+
+g6 :: // meest algemene type
+g6 a xs = [i \\ i <- [0 ..] & x <- xs | a == x]
diff --git a/files/practicum/NouEnOf.icl b/files/practicum/NouEnOf.icl new file mode 100644 index 0000000..cd56213 --- /dev/null +++ b/files/practicum/NouEnOf.icl @@ -0,0 +1,16 @@ +module NouEnOf
+
+import StdEnv
+
+and` = ... all ...
+or` = ... any ...
+
+all_l p = foldl ...
+all_r p = foldr ...
+any_l p = foldl ...
+any_r p = foldr ...
+
+Start = all_l id [False:repeat True ]
+Start = any_l id [True :repeat False]
+Start = all_r id [False:repeat True ]
+Start = any_r id [True :repeat False]
diff --git a/files/practicum/Nummers.dbs b/files/practicum/Nummers.dbs new file mode 100644 index 0000000..764d8cd --- /dev/null +++ b/files/practicum/Nummers.dbs @@ -0,0 +1,43182 @@ +8
+Artist
+CD
+Year
+Track nr
+Track title
+Tags
+Length
+Country
+
+Adele
+19
+2008
+1
+Daydreamer
+pop,debut album
+3:40
+England
+
+Adele
+19
+2008
+10
+My same
+pop,debut album
+3:15
+England
+
+Adele
+19
+2008
+11
+Tired
+pop,debut album
+4:18
+England
+
+Adele
+19
+2008
+12
+Hometown glory
+pop,debut album
+4:31
+England
+
+Adele
+19
+2008
+2
+Best for last
+pop,debut album
+4:18
+England
+
+Adele
+19
+2008
+3
+Chasing pavements
+pop,debut album
+3:30
+England
+
+Adele
+19
+2008
+4
+Cold shoulder
+pop,debut album
+3:11
+England
+
+Adele
+19
+2008
+5
+Crazy for you
+pop,debut album
+3:28
+England
+
+Adele
+19
+2008
+6
+Melt my heart to stone
+pop,debut album
+3:23
+England
+
+Adele
+19
+2008
+7
+First love
+pop,debut album
+3:10
+England
+
+Adele
+19
+2008
+8
+Right as rain
+pop,debut album
+3:17
+England
+
+Adele
+19
+2008
+9
+Make you feel my love
+pop,debut album
+3:32
+England
+
+Adele
+21
+2011
+1
+Rolling in the deep
+pop
+3:49
+England
+
+Adele
+21
+2011
+10
+Lovesong
+pop
+5:16
+England
+
+Adele
+21
+2011
+11
+Someone like you
+pop
+4:47
+England
+
+Adele
+21
+2011
+2
+Rumour has it
+pop
+3:43
+England
+
+Adele
+21
+2011
+3
+Turning tables
+pop
+4:10
+England
+
+Adele
+21
+2011
+4
+Don't you remember
+pop
+4:03
+England
+
+Adele
+21
+2011
+5
+Set fire to the rain
+pop
+4:01
+England
+
+Adele
+21
+2011
+6
+He won't go
+pop
+4:37
+England
+
+Adele
+21
+2011
+7
+Take it all
+pop
+3:48
+England
+
+Adele
+21
+2011
+8
+I'll be waiting
+pop
+4:01
+England
+
+Adele
+21
+2011
+9
+One and only
+pop
+5:48
+England
+
+Afro Celt Sound System
+Seed
+2003
+1
+Cyberia
+folk,afrobeat
+7:41
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Seed
+2003
+10
+Green (nevermore instrumental)
+folk,afrobeat,instrumental
+5:57
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Seed
+2003
+2
+Seed
+folk,afrobeat
+6:25
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Seed
+2003
+3
+Nevermore
+folk,afrobeat
+4:45
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Seed
+2003
+4
+The other side
+folk,afrobeat
+7:01
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Seed
+2003
+5
+Ayub's song / as you were
+folk,afrobeat
+7:31
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Seed
+2003
+6
+Rise
+folk,afrobeat
+3:06
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Seed
+2003
+7
+Rise above it
+folk,afrobeat
+10:11
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Seed
+2003
+8
+Deep channel
+folk,afrobeat
+6:48
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Seed
+2003
+9
+All remains
+folk,afrobeat
+7:30
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 1: sound magic
+1996
+1
+Saor/free - news from nowhere
+folk,afrobeat,instrumental,debut album
+8:21
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 1: sound magic
+1996
+2
+Whirl-y-reel
+folk,afrobeat,instrumental,debut album
+7:21
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 1: sound magic
+1996
+3
+Inion/daughter
+folk,afrobeat,debut album
+4:15
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 1: sound magic
+1996
+4
+Sure-as-not/sure-as-knot
+folk,afrobeat,instrumental,debut album
+9:58
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 1: sound magic
+1996
+5
+Nil cead againn dul abhaile/we cannot go home
+folk,afrobeat,debut album
+7:20
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 1: sound magic
+1996
+6
+Dark moon, high tide
+folk,afrobeat,instrumental,debut album
+4:12
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 1: sound magic
+1996
+7
+Whirl-y-reel 2
+folk,afrobeat,instrumental,debut album
+5:27
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 1: sound magic
+1996
+8
+House of the ancestors
+folk,afrobeat,instrumental,debut album
+8:01
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 1: sound magic
+1996
+9
+Eistigh liomsa sealad/listen to me - saor reprise
+folk,afrobeat,debut album
+10:53
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 2: release
+1999
+1
+Release
+folk,afrobeat
+7:39
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 2: release
+1999
+10
+I think of...
+folk,afrobeat
+4:33
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 2: release
+1999
+11
+Release it (instrumental)
+folk,afrobeat,instrumental
+6:26
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 2: release
+1999
+2
+Lovers of light
+folk,afrobeat,instrumental
+4:03
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 2: release
+1999
+3
+Eireann
+folk,afrobeat
+5:12
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 2: release
+1999
+4
+Urban aire
+folk,afrobeat,instrumental
+2:07
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 2: release
+1999
+5
+Big cat
+folk,afrobeat,instrumental
+7:47
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 2: release
+1999
+6
+Even in my dreams
+folk,afrobeat
+7:07
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 2: release
+1999
+7
+Amber
+folk,afrobeat
+5:27
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 2: release
+1999
+8
+Hypnotica
+folk,afrobeat,instrumental
+7:18
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 2: release
+1999
+9
+Riding the waves
+folk,afrobeat,instrumental
+6:36
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 3: Further in time
+2001
+1
+North
+folk,afrobeat,instrumental
+6:49
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 3: Further in time
+2001
+10
+Persistence of memory
+folk,afrobeat
+4:29
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 3: Further in time
+2001
+11
+The silken whip
+folk,afrobeat,instrumental
+7:18
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 3: Further in time
+2001
+12
+Onwards
+folk,afrobeat
+5:29
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 3: Further in time
+2001
+2
+North 2
+folk,afrobeat,instrumental
+3:01
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 3: Further in time
+2001
+3
+When you're falling
+folk,afrobeat,pop
+5:14
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 3: Further in time
+2001
+4
+Colossus
+folk,afrobeat,instrumental
+6:44
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 3: Further in time
+2001
+5
+Lagan
+folk,afrobeat
+4:04
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 3: Further in time
+2001
+6
+Shadowman
+folk,afrobeat
+6:36
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 3: Further in time
+2001
+7
+Life begin again
+folk,afrobeat
+6:22
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 3: Further in time
+2001
+8
+Further in time
+folk,afrobeat
+6:32
+Ireland,Senegal,Guinea
+
+Afro Celt Sound System
+Volume 3: Further in time
+2001
+9
+Go on through
+folk,afrobeat
+8:03
+Ireland,Senegal,Guinea
+
+After forever
+Decipher - The Album
+2012
+1
+Ex cathedra - ouverture
+gothic,metal,female fronted
+2:02
+Netherlands
+
+After forever
+Decipher - The Album
+2012
+10
+The key
+gothic,metal,female fronted
+4:49
+Netherlands
+
+After forever
+Decipher - The Album
+2012
+11
+Forlorn hope
+gothic,metal,female fronted
+6:23
+Netherlands
+
+After forever
+Decipher - The Album
+2012
+12
+For the time being
+gothic,metal,female fronted
+5:05
+Netherlands
+
+After forever
+Decipher - The Album
+2012
+13
+Who wants to live forever
+gothic,metal,female fronted,cover
+4:49
+Netherlands
+
+After forever
+Decipher - The Album
+2012
+14
+Imperfect tenses (duet with Damian Wilson)
+gothic,metal
+4:11
+Netherlands
+
+After forever
+Decipher - The Album
+2012
+15
+Monolith of doubt (single version)
+gothic,metal,female fronted
+3:33
+Netherlands
+
+After forever
+Decipher - The Album
+2012
+16
+Imperfect tenses (orchestral version)
+gothic,metal
+4:05
+Netherlands
+
+After forever
+Decipher - The Album
+2012
+2
+Monolith of doubt
+gothic,metal,female fronted
+3:32
+Netherlands
+
+After forever
+Decipher - The Album
+2012
+3
+My pledge of allegiance #1
+gothic,metal,female fronted
+6:24
+Netherlands
+
+After forever
+Decipher - The Album
+2012
+4
+Emphasis
+gothic,metal,female fronted
+4:20
+Netherlands
+
+After forever
+Decipher - The Album
+2012
+5
+Intrinsic
+gothic,metal,female fronted
+6:44
+Netherlands
+
+After forever
+Decipher - The Album
+2012
+6
+Zenith
+gothic,metal,female fronted
+4:21
+Netherlands
+
+After forever
+Decipher - The Album
+2012
+7
+Estranged
+gothic,metal,female fronted
+6:57
+Netherlands
+
+After forever
+Decipher - The Album
+2012
+8
+Imperfect tenses
+gothic,metal
+4:08
+Netherlands
+
+After forever
+Decipher - The Album
+2012
+9
+My pledge of allegiance #2
+gothic,metal,female fronted
+5:08
+Netherlands
+
+After forever
+Decipher - The Sessions
+2012
+1
+The key (rough mix)
+gothic,metal,female fronted
+4:44
+Netherlands
+
+After forever
+Decipher - The Sessions
+2012
+10
+Zenith (rough mix)
+gothic,metal,female fronted
+4:20
+Netherlands
+
+After forever
+Decipher - The Sessions
+2012
+11
+Intrinsic (rough mix)
+gothic,metal,female fronted
+6:58
+Netherlands
+
+After forever
+Decipher - The Sessions
+2012
+12
+Who wants to live forever (rough mix)
+gothic,metal,female fronted
+4:49
+Netherlands
+
+After forever
+Decipher - The Sessions
+2012
+13
+Monolith of doubt (demo)
+gothic,metal,female fronted
+3:45
+Netherlands
+
+After forever
+Decipher - The Sessions
+2012
+14
+Emphasis (demo)
+gothic,metal,female fronted
+4:31
+Netherlands
+
+After forever
+Decipher - The Sessions
+2012
+15
+For the time being (demo)
+gothic,metal,female fronted
+5:08
+Netherlands
+
+After forever
+Decipher - The Sessions
+2012
+2
+Monolith of doubt (rough mix)
+gothic,metal,female fronted
+3:33
+Netherlands
+
+After forever
+Decipher - The Sessions
+2012
+3
+My pledge of allegiance #2 (rough mix)
+gothic,metal,female fronted
+5:03
+Netherlands
+
+After forever
+Decipher - The Sessions
+2012
+4
+Emphasis (rough mix)
+gothic,metal,female fronted
+4:18
+Netherlands
+
+After forever
+Decipher - The Sessions
+2012
+5
+Estranged (rough mix)
+gothic,metal,female fronted
+6:54
+Netherlands
+
+After forever
+Decipher - The Sessions
+2012
+6
+My pledge of allegiance #1 (rough mix)
+gothic,metal,female fronted
+6:21
+Netherlands
+
+After forever
+Decipher - The Sessions
+2012
+7
+Imperfect tenses (rough mix)
+gothic,metal
+4:06
+Netherlands
+
+After forever
+Decipher - The Sessions
+2012
+8
+For the time being (rough mix)
+gothic,metal,female fronted
+5:03
+Netherlands
+
+After forever
+Decipher - The Sessions
+2012
+9
+Forlorn hope (rough mix)
+gothic,metal,female fronted
+6:21
+Netherlands
+
+After forever
+Invisible circles
+2004
+1
+Childhood in minor
+gothic,metal,female fronted,instrumental
+1:21
+Netherlands
+
+After forever
+Invisible circles
+2004
+10
+Victim of choices
+gothic,metal,female fronted
+3:22
+Netherlands
+
+After forever
+Invisible circles
+2004
+11
+Reflections
+gothic,metal,female fronted
+5:11
+Netherlands
+
+After forever
+Invisible circles
+2004
+12
+Life's vortex
+gothic,metal,female fronted
+5:53
+Netherlands
+
+After forever
+Invisible circles
+2004
+2
+Beautiful emptiness
+gothic,metal,female fronted
+5:25
+Netherlands
+
+After forever
+Invisible circles
+2004
+3
+Between love and fire
+gothic,metal,female fronted
+4:57
+Netherlands
+
+After forever
+Invisible circles
+2004
+4
+Sins of idealism
+gothic,metal,female fronted
+5:21
+Netherlands
+
+After forever
+Invisible circles
+2004
+5
+Eccentric
+gothic,metal,female fronted
+4:11
+Netherlands
+
+After forever
+Invisible circles
+2004
+6
+Digital deceit
+gothic,metal,female fronted
+5:38
+Netherlands
+
+After forever
+Invisible circles
+2004
+7
+Through square eyes
+gothic,metal,female fronted
+6:23
+Netherlands
+
+After forever
+Invisible circles
+2004
+8
+Blind pain
+gothic,metal,female fronted
+6:47
+Netherlands
+
+After forever
+Invisible circles
+2004
+9
+Two sides
+gothic,metal,female fronted
+4:34
+Netherlands
+
+After forever
+Prison of desire
+2000
+1
+Mea culpa
+gothic,metal,female fronted
+2:00
+Netherlands
+
+After forever
+Prison of desire
+2000
+10
+Ephemeral
+gothic,metal,female fronted
+3:05
+Netherlands
+
+After forever
+Prison of desire
+2000
+11
+Beyond me
+gothic,metal,female fronted
+6:11
+Netherlands
+
+After forever
+Prison of desire
+2000
+2
+Leaden legacy
+gothic,metal,female fronted
+5:07
+Netherlands
+
+After forever
+Prison of desire
+2000
+3
+Semblance of confusion
+gothic,metal,female fronted
+4:09
+Netherlands
+
+After forever
+Prison of desire
+2000
+4
+Black tomb
+gothic,metal,female fronted
+6:29
+Netherlands
+
+After forever
+Prison of desire
+2000
+5
+Follow in the cry
+gothic,metal,female fronted
+4:06
+Netherlands
+
+After forever
+Prison of desire
+2000
+6
+Silence from afar
+gothic,metal,female fronted
+5:52
+Netherlands
+
+After forever
+Prison of desire
+2000
+7
+Inimical chimera
+gothic,metal,female fronted
+5:00
+Netherlands
+
+After forever
+Prison of desire
+2000
+8
+Tortuous Threnody
+gothic,metal,female fronted
+6:13
+Netherlands
+
+After forever
+Prison of desire
+2000
+9
+Yield to temptation
+gothic,metal,female fronted
+5:53
+Netherlands
+
+Air
+Moon safari
+1997
+1
+La femme d'argent
+ambient,electronica,instrumental,debut album
+7:08
+France
+
+Air
+Moon safari
+1997
+10
+Le voyage de Penelope
+ambient,electronica,instrumental,debut album
+3:10
+France
+
+Air
+Moon safari
+1997
+2
+Sexy boy
+ambient,electronica,debut album
+4:57
+France
+
+Air
+Moon safari
+1997
+3
+All I need
+ambient,electronica,debut album
+4:28
+France
+
+Air
+Moon safari
+1997
+4
+Kelly, watch the stars!
+ambient,electronica,debut album
+3:44
+France
+
+Air
+Moon safari
+1997
+5
+Talisman
+ambient,electronica,instrumental,debut album
+4:16
+France
+
+Air
+Moon safari
+1997
+6
+Remember
+ambient,electronica,debut album
+2:34
+France
+
+Air
+Moon safari
+1997
+7
+You make it easy
+ambient,electronica,debut album
+4:00
+France
+
+Air
+Moon safari
+1997
+8
+Ce matin la
+ambient,electronica,instrumental,debut album
+3:38
+France
+
+Air
+Moon safari
+1997
+9
+New star in the sky (chanson pour Solal)
+ambient,electronica,debut album
+5:38
+France
+
+Alanis Morisette
+Jagged little pil
+1995
+1
+All I really want
+rock,pop,debut album
+4:45
+Canada
+
+Alanis Morisette
+Jagged little pil
+1995
+10
+Ironic
+rock,pop,debut album
+3:49
+Canada
+
+Alanis Morisette
+Jagged little pil
+1995
+11
+Not the doctor
+rock,pop,debut album
+3:47
+Canada
+
+Alanis Morisette
+Jagged little pil
+1995
+12
+Wake up
+rock,pop,debut album
+4:53
+Canada
+
+Alanis Morisette
+Jagged little pil
+1995
+13
+You oughta know + bonus
+rock,pop,debut album
+8:11
+Canada
+
+Alanis Morisette
+Jagged little pil
+1995
+2
+You oughta know
+rock,pop,debut album
+4:09
+Canada
+
+Alanis Morisette
+Jagged little pil
+1995
+3
+Perfect
+rock,pop,debut album
+3:08
+Canada
+
+Alanis Morisette
+Jagged little pil
+1995
+4
+Hand in my pocket
+rock,pop,debut album
+3:41
+Canada
+
+Alanis Morisette
+Jagged little pil
+1995
+5
+Right through you
+rock,pop,debut album
+2:55
+Canada
+
+Alanis Morisette
+Jagged little pil
+1995
+6
+Forgiven
+rock,pop,debut album
+5:00
+Canada
+
+Alanis Morisette
+Jagged little pil
+1995
+7
+You learn
+rock,pop,debut album
+3:59
+Canada
+
+Alanis Morisette
+Jagged little pil
+1995
+8
+Head over feet
+rock,pop,debut album
+4:27
+Canada
+
+Alanis Morisette
+Jagged little pil
+1995
+9
+Mary Jane
+rock,pop,debut album
+4:40
+Canada
+
+Alanis Morisette
+Supposed former infatuation junkie
+1998
+1
+Front row
+rock,pop
+4:12
+Canada
+
+Alanis Morisette
+Supposed former infatuation junkie
+1998
+10
+I was hoping
+rock,pop
+3:49
+Canada
+
+Alanis Morisette
+Supposed former infatuation junkie
+1998
+11
+One
+rock,pop
+4:39
+Canada
+
+Alanis Morisette
+Supposed former infatuation junkie
+1998
+12
+Would not come
+rock,pop
+4:04
+Canada
+
+Alanis Morisette
+Supposed former infatuation junkie
+1998
+13
+Unsent
+rock,pop
+4:09
+Canada
+
+Alanis Morisette
+Supposed former infatuation junkie
+1998
+14
+So pure
+rock,pop
+2:50
+Canada
+
+Alanis Morisette
+Supposed former infatuation junkie
+1998
+15
+Joining you
+rock,pop
+4:24
+Canada
+
+Alanis Morisette
+Supposed former infatuation junkie
+1998
+16
+Heart of the house
+rock,pop
+3:45
+Canada
+
+Alanis Morisette
+Supposed former infatuation junkie
+1998
+17
+Your congratulations
+rock,pop
+3:54
+Canada
+
+Alanis Morisette
+Supposed former infatuation junkie
+1998
+2
+Baba
+rock,pop
+4:28
+Canada
+
+Alanis Morisette
+Supposed former infatuation junkie
+1998
+3
+Thank u
+rock,pop
+4:17
+Canada
+
+Alanis Morisette
+Supposed former infatuation junkie
+1998
+4
+Are you still mad
+rock,pop
+4:03
+Canada
+
+Alanis Morisette
+Supposed former infatuation junkie
+1998
+5
+Sympathetic character
+rock,pop
+5:11
+Canada
+
+Alanis Morisette
+Supposed former infatuation junkie
+1998
+6
+That I would be good
+rock,pop
+4:16
+Canada
+
+Alanis Morisette
+Supposed former infatuation junkie
+1998
+7
+The couch
+rock,pop
+5:23
+Canada
+
+Alanis Morisette
+Supposed former infatuation junkie
+1998
+8
+Can't not
+rock,pop
+4:35
+Canada
+
+Alanis Morisette
+Supposed former infatuation junkie
+1998
+9
+Ur
+rock,pop
+3:30
+Canada
+
+Alexander Borodin
+String Quartets Nos.1 and 2
+1993
+1
+String Quartet No.1 - Moderato - Allegro
+classic,string quartet,romantic
+13:13
+Russia
+
+Alexander Borodin
+String Quartets Nos.1 and 2
+1993
+2
+String Quartet No.1 - Andante con moto
+classic,string quartet,romantic
+7:48
+Russia
+
+Alexander Borodin
+String Quartets Nos.1 and 2
+1993
+3
+String Quartet No.1 - Scherzo: Prestissimo
+classic,string quartet,romantic
+5:58
+Russia
+
+Alexander Borodin
+String Quartets Nos.1 and 2
+1993
+4
+String Quartet No.1 - Allegro risoluto
+classic,string quartet,romantic
+10:38
+Russia
+
+Alexander Borodin
+String Quartets Nos.1 and 2
+1993
+5
+String Quartet No.2 - Allegro moderato
+classic,string quartet,romantic
+8:07
+Russia
+
+Alexander Borodin
+String Quartets Nos.1 and 2
+1993
+6
+String Quartet No.2 - Scherzo: Allegro
+classic,string quartet,romantic
+4:46
+Russia
+
+Alexander Borodin
+String Quartets Nos.1 and 2
+1993
+7
+String Quartet No.2 - Notturno: Andante
+classic,string quartet,romantic
+8:24
+Russia
+
+Alexander Borodin
+String Quartets Nos.1 and 2
+1993
+8
+String Quartet No.2 - Finale: Andante - Vivace
+classic,string quartet,romantic
+7:11
+Russia
+
+Alexander Borodin
+Symphonies Nos. 1,2 and 3
+1989
+1
+Symphony No.1 in E-Flat major - (i) Adagio
+classic,symphonic,romantic
+12:21
+Russia
+
+Alexander Borodin
+Symphonies Nos. 1,2 and 3
+1989
+10
+Symphony No.3 in A minor - (ii) Vivo
+classic,symphonic,romantic
+9:47
+Russia
+
+Alexander Borodin
+Symphonies Nos. 1,2 and 3
+1989
+2
+Symphony No.1 in E-Flat major - (ii) Prestissimo
+classic,symphonic,romantic
+7:14
+Russia
+
+Alexander Borodin
+Symphonies Nos. 1,2 and 3
+1989
+3
+Symphony No.1 in E-Flat major - (iii) Andante
+classic,symphonic,romantic
+6:11
+Russia
+
+Alexander Borodin
+Symphonies Nos. 1,2 and 3
+1989
+4
+Symphony No.1 in E-Flat major - (iv) Allegro molto vivo
+classic,symphonic,romantic
+7:09
+Russia
+
+Alexander Borodin
+Symphonies Nos. 1,2 and 3
+1989
+5
+Symphony No.2 in B minor - (i) Allegro
+classic,symphonic,romantic
+6:54
+Russia
+
+Alexander Borodin
+Symphonies Nos. 1,2 and 3
+1989
+6
+Symphony No.2 in B minor - (ii) Prestissimo
+classic,symphonic,romantic
+4:59
+Russia
+
+Alexander Borodin
+Symphonies Nos. 1,2 and 3
+1989
+7
+Symphony No.2 in B minor - (iii) Andante
+classic,symphonic,romantic
+6:35
+Russia
+
+Alexander Borodin
+Symphonies Nos. 1,2 and 3
+1989
+8
+Symphony No.2 in B minor - (iv) Allegro
+classic,symphonic,romantic
+6:52
+Russia
+
+Alexander Borodin
+Symphonies Nos. 1,2 and 3
+1989
+9
+Symphony No.3 in A minor - (i) Moderato assai
+classic,symphonic,romantic
+7:41
+Russia
+
+Amadou & Mariam
+Welcome to Mali
+2008
+1
+Sabali
+pop,afrobeat
+3:16
+Mali
+
+Amadou & Mariam
+Welcome to Mali
+2008
+10
+Unissons nous
+pop,afrobeat
+4:17
+Mali
+
+Amadou & Mariam
+Welcome to Mali
+2008
+11
+Bozos
+pop,afrobeat
+3:46
+Mali
+
+Amadou & Mariam
+Welcome to Mali
+2008
+12
+I follow you (nia na fin)
+pop,afrobeat
+4:02
+Mali
+
+Amadou & Mariam
+Welcome to Mali
+2008
+13
+Welcome to Mali
+pop,afrobeat
+3:20
+Mali
+
+Amadou & Mariam
+Welcome to Mali
+2008
+14
+Batoma
+pop,afrobeat
+4:13
+Mali
+
+Amadou & Mariam
+Welcome to Mali
+2008
+15
+Sebeke
+pop,afrobeat
+11:41
+Mali
+
+Amadou & Mariam
+Welcome to Mali
+2008
+2
+Ce n'est pas bon
+pop,afrobeat
+3:49
+Mali
+
+Amadou & Mariam
+Welcome to Mali
+2008
+3
+Magosa
+pop,afrobeat
+3:43
+Mali
+
+Amadou & Mariam
+Welcome to Mali
+2008
+4
+Djama
+pop,afrobeat
+3:15
+Mali
+
+Amadou & Mariam
+Welcome to Mali
+2008
+5
+Djuru
+pop,afrobeat
+3:35
+Mali
+
+Amadou & Mariam
+Welcome to Mali
+2008
+6
+Je te kiffe
+pop,afrobeat
+4:18
+Mali
+
+Amadou & Mariam
+Welcome to Mali
+2008
+7
+Masiteladi
+pop,afrobeat
+3:56
+Mali
+
+Amadou & Mariam
+Welcome to Mali
+2008
+8
+Africa
+pop,afrobeat
+3:48
+Mali
+
+Amadou & Mariam
+Welcome to Mali
+2008
+9
+Compagnon de la vie
+pop,afrobeat
+3:46
+Mali
+
+Ambrosia
+Life beyond L.A.
+1978
+1
+Life beyond L.A.
+soft rock
+4:45
+U.S.A.
+
+Ambrosia
+Life beyond L.A.
+1978
+10
+Ready for Camarillo
+soft rock
+4:54
+U.S.A.
+
+Ambrosia
+Life beyond L.A.
+1978
+2
+Art beware
+soft rock
+2:15
+U.S.A.
+
+Ambrosia
+Life beyond L.A.
+1978
+3
+Apothecary
+soft rock
+4:49
+U.S.A.
+
+Ambrosia
+Life beyond L.A.
+1978
+4
+If heaven could find me
+soft rock
+4:28
+U.S.A.
+
+Ambrosia
+Life beyond L.A.
+1978
+5
+How much I feel
+soft rock
+4:45
+U.S.A.
+
+Ambrosia
+Life beyond L.A.
+1978
+6
+Dancin' by myself
+soft rock
+4:41
+U.S.A.
+
+Ambrosia
+Life beyond L.A.
+1978
+7
+Angola
+soft rock
+3:47
+U.S.A.
+
+Ambrosia
+Life beyond L.A.
+1978
+8
+Heart to heart
+soft rock
+2:46
+U.S.A.
+
+Ambrosia
+Life beyond L.A.
+1978
+9
+Not as you were
+soft rock
+3:49
+U.S.A.
+
+Anathema
+Judgement
+1999
+1
+Deep
+metal
+4:53
+England
+
+Anathema
+Judgement
+1999
+10
+Emotional winter
+metal
+5:54
+England
+
+Anathema
+Judgement
+1999
+11
+Wings of god
+metal
+6:29
+England
+
+Anathema
+Judgement
+1999
+12
+Anyone, anywhere
+metal
+4:50
+England
+
+Anathema
+Judgement
+1999
+13
+2000 & gone
+metal
+4:50
+England
+
+Anathema
+Judgement
+1999
+2
+Pitiless
+metal
+3:10
+England
+
+Anathema
+Judgement
+1999
+3
+Forgotten hopes
+metal
+3:50
+England
+
+Anathema
+Judgement
+1999
+4
+Destiny is dead
+metal
+1:46
+England
+
+Anathema
+Judgement
+1999
+5
+Make it right (F.F.S.)
+metal
+4:19
+England
+
+Anathema
+Judgement
+1999
+6
+One last goodbye
+metal
+5:23
+England
+
+Anathema
+Judgement
+1999
+7
+Parisienne moonlight
+metal
+2:09
+England
+
+Anathema
+Judgement
+1999
+8
+Judgement
+metal
+4:20
+England
+
+Anathema
+Judgement
+1999
+9
+Don't look too far
+metal
+4:56
+England
+
+And You Will Know Us By The Trail Of Dead
+Source tags & codes
+2002
+1
+Invocation
+alternative,rock,debut album,instrumental,piano
+1:31
+U.S.A.
+
+And You Will Know Us By The Trail Of Dead
+Source tags & codes
+2002
+10
+Days of being wild
+alternative,rock,debut album,noise
+3:26
+U.S.A.
+
+And You Will Know Us By The Trail Of Dead
+Source tags & codes
+2002
+11
+Relative ways
+alternative,rock,debut album
+4:03
+U.S.A.
+
+And You Will Know Us By The Trail Of Dead
+Source tags & codes
+2002
+12
+After the laughter
+alternative,rock,debut album,instrumental
+1:15
+U.S.A.
+
+And You Will Know Us By The Trail Of Dead
+Source tags & codes
+2002
+13
+Source tags & codes
+alternative,rock,debut album
+6:08
+U.S.A.
+
+And You Will Know Us By The Trail Of Dead
+Source tags & codes
+2002
+2
+It was there that I saw you
+alternative,rock,debut album,noise
+3:57
+U.S.A.
+
+And You Will Know Us By The Trail Of Dead
+Source tags & codes
+2002
+3
+Another morning stoner
+alternative,rock,debut album,noise
+4:33
+U.S.A.
+
+And You Will Know Us By The Trail Of Dead
+Source tags & codes
+2002
+4
+Baudelaire
+alternative,rock,debut album,noise
+4:16
+U.S.A.
+
+And You Will Know Us By The Trail Of Dead
+Source tags & codes
+2002
+5
+Homage
+alternative,rock,debut album,noise
+3:29
+U.S.A.
+
+And You Will Know Us By The Trail Of Dead
+Source tags & codes
+2002
+6
+How near how far
+alternative,rock,debut album
+3:54
+U.S.A.
+
+And You Will Know Us By The Trail Of Dead
+Source tags & codes
+2002
+7
+Life is elsewhere
+alternative,rock,debut album
+0:55
+U.S.A.
+
+And You Will Know Us By The Trail Of Dead
+Source tags & codes
+2002
+8
+Heart in the hand of the matter
+alternative,rock,debut album
+4:48
+U.S.A.
+
+And You Will Know Us By The Trail Of Dead
+Source tags & codes
+2002
+9
+Monsoon
+alternative,rock,debut album,noise
+5:53
+U.S.A.
+
+Anderson Bruford Wakeman Howe
+An evening of Yes music plus
+1994
+1
+Benjamin Britten's Young Person's Guide to the Orchestra
+live,instrumental
+1:42
+England
+
+Anderson Bruford Wakeman Howe
+An evening of Yes music plus
+1994
+10
+Themes
+progressive,rock,live
+6:37
+England
+
+Anderson Bruford Wakeman Howe
+An evening of Yes music plus
+1994
+11
+Brother of mine
+progressive,rock,live
+11:18
+England
+
+Anderson Bruford Wakeman Howe
+An evening of Yes music plus
+1994
+12
+Heart of the sunrise
+progressive,rock,live
+10:46
+England
+
+Anderson Bruford Wakeman Howe
+An evening of Yes music plus
+1994
+13
+Order of the universe
+progressive,rock,live
+9:30
+England
+
+Anderson Bruford Wakeman Howe
+An evening of Yes music plus
+1994
+14
+Roundabout
+progressive,rock,live
+9:53
+England
+
+Anderson Bruford Wakeman Howe
+An evening of Yes music plus
+1994
+2
+Jon Anderson solo
+progressive,rock,live
+7:32
+England
+
+Anderson Bruford Wakeman Howe
+An evening of Yes music plus
+1994
+3
+Steve Howe solo
+progressive,rock,live,instrumental,guitar,guitar hero
+9:36
+England
+
+Anderson Bruford Wakeman Howe
+An evening of Yes music plus
+1994
+4
+Rick Wakeman solo
+progressive,rock,live,instrumental,keyboard
+5:37
+England
+
+Anderson Bruford Wakeman Howe
+An evening of Yes music plus
+1994
+5
+Long distance runaround
+progressive,rock,live
+7:11
+England
+
+Anderson Bruford Wakeman Howe
+An evening of Yes music plus
+1994
+6
+Birthright
+progressive,rock,live
+7:24
+England
+
+Anderson Bruford Wakeman Howe
+An evening of Yes music plus
+1994
+7
+And you and I
+progressive,rock,live
+9:54
+England
+
+Anderson Bruford Wakeman Howe
+An evening of Yes music plus
+1994
+8
+Starship trooper
+progressive,rock,live
+12:48
+England
+
+Anderson Bruford Wakeman Howe
+An evening of Yes music plus
+1994
+9
+Close to the edge
+progressive,rock,live
+19:49
+England
+
+Anderson Bruford Wakeman Howe
+Anderson Bruford Wakeman Howe
+1989
+1
+Themes
+progressive,rock
+5:58
+England
+
+Anderson Bruford Wakeman Howe
+Anderson Bruford Wakeman Howe
+1989
+2
+Fist of fire
+progressive,rock
+3:27
+England
+
+Anderson Bruford Wakeman Howe
+Anderson Bruford Wakeman Howe
+1989
+3
+Brother of mine
+progressive,rock
+10:18
+England
+
+Anderson Bruford Wakeman Howe
+Anderson Bruford Wakeman Howe
+1989
+4
+Birthright
+progressive,rock
+6:02
+England
+
+Anderson Bruford Wakeman Howe
+Anderson Bruford Wakeman Howe
+1989
+5
+The meeting
+progressive,rock,tranquil
+4:21
+England
+
+Anderson Bruford Wakeman Howe
+Anderson Bruford Wakeman Howe
+1989
+6
+Quartet
+progressive,rock
+9:22
+England
+
+Anderson Bruford Wakeman Howe
+Anderson Bruford Wakeman Howe
+1989
+7
+Teakbois ('The life and times of Bobby Dread')
+progressive,rock
+7:39
+England
+
+Anderson Bruford Wakeman Howe
+Anderson Bruford Wakeman Howe
+1989
+8
+Order of the universe
+progressive,rock
+9:02
+England
+
+Anderson Bruford Wakeman Howe
+Anderson Bruford Wakeman Howe
+1989
+9
+Let's pretend
+progressive,rock,tranquil
+2:56
+England
+
+Anouk
+For bitter or worse
+2009
+1
+Three days in a row
+rock
+4:14
+Netherlands
+
+Anouk
+For bitter or worse
+2009
+10
+Lovedrunk
+rock
+4:13
+Netherlands
+
+Anouk
+For bitter or worse
+2009
+11
+Faith in my moon
+rock,blues
+5:05
+Netherlands
+
+Anouk
+For bitter or worse
+2009
+12
+For bitter or worse
+rock
+4:15
+Netherlands
+
+Anouk
+For bitter or worse
+2009
+2
+In this world
+rock
+4:10
+Netherlands
+
+Anouk
+For bitter or worse
+2009
+3
+Woman
+rock
+3:51
+Netherlands
+
+Anouk
+For bitter or worse
+2009
+4
+Lay it down
+rock
+3:01
+Netherlands
+
+Anouk
+For bitter or worse
+2009
+5
+8 years
+rock
+3:52
+Netherlands
+
+Anouk
+For bitter or worse
+2009
+6
+My shoes
+rock
+4:28
+Netherlands
+
+Anouk
+For bitter or worse
+2009
+7
+Walk to the bay
+rock
+3:02
+Netherlands
+
+Anouk
+For bitter or worse
+2009
+8
+Today
+rock
+3:27
+Netherlands
+
+Anouk
+For bitter or worse
+2009
+9
+Hold on
+rock
+3:40
+Netherlands
+
+Anouk
+Graduated fool
+2002
+1
+Too long
+rock
+3:54
+Netherlands
+
+Anouk
+Graduated fool
+2002
+10
+I live for you
+rock
+3:40
+Netherlands
+
+Anouk
+Graduated fool
+2002
+11
+Bigger side
+rock
+3:30
+Netherlands
+
+Anouk
+Graduated fool
+2002
+2
+Everything
+rock
+4:20
+Netherlands
+
+Anouk
+Graduated fool
+2002
+3
+Hail
+rock
+3:53
+Netherlands
+
+Anouk
+Graduated fool
+2002
+4
+Who cares
+rock
+4:37
+Netherlands
+
+Anouk
+Graduated fool
+2002
+5
+Graduated fool
+rock
+3:52
+Netherlands
+
+Anouk
+Graduated fool
+2002
+6
+Stop thinking
+rock
+3:04
+Netherlands
+
+Anouk
+Graduated fool
+2002
+7
+No time to waste
+rock
+3:57
+Netherlands
+
+Anouk
+Graduated fool
+2002
+8
+Searching
+rock
+3:56
+Netherlands
+
+Anouk
+Graduated fool
+2002
+9
+Margarita chum
+rock
+4:20
+Netherlands
+
+Anouk
+Sad singalong songs
+2013
+1
+The rules
+soul
+3:58
+Netherlands
+
+Anouk
+Sad singalong songs
+2013
+10
+The black side of my mind
+ballad
+5:14
+Netherlands
+
+Anouk
+Sad singalong songs
+2013
+2
+Pretending as always
+ballad
+3:49
+Netherlands
+
+Anouk
+Sad singalong songs
+2013
+3
+Birds
+ballad
+3:23
+Netherlands
+
+Anouk
+Sad singalong songs
+2013
+4
+The good life
+ballad
+3:31
+Netherlands
+
+Anouk
+Sad singalong songs
+2013
+5
+Are you lonely
+ballad
+3:29
+Netherlands
+
+Anouk
+Sad singalong songs
+2013
+6
+Stardust
+ballad
+3:31
+Netherlands
+
+Anouk
+Sad singalong songs
+2013
+7
+Only a mother
+ballad
+3:54
+Netherlands
+
+Anouk
+Sad singalong songs
+2013
+8
+Kill
+ballad
+4:15
+Netherlands
+
+Anouk
+Sad singalong songs
+2013
+9
+I don't know nothing
+ballad
+3:32
+Netherlands
+
+Anton Bruckner
+Symphony No.7 E major (1881-1883)
+1991
+1
+Allegro moderato
+classic,symphonic
+21:45
+Austria
+
+Anton Bruckner
+Symphony No.7 E major (1881-1883)
+1991
+2
+Adagio. Sehr feierlich und sehr langsam
+classic,symphonic
+24:46
+Austria
+
+Anton Bruckner
+Symphony No.7 E major (1881-1883)
+1991
+3
+Scherzo. Sehr schnell.
+classic,symphonic
+9:33
+Austria
+
+Anton Bruckner
+Symphony No.7 E major (1881-1883)
+1991
+4
+Finale. Bewegt, doch nicht schnell.
+classic,symphonic
+11:45
+Austria
+
+Antonio Vivaldi
+Bassoon concertos
+1989
+1
+Concerto in A Minor for bassoon: strings and continuo (RV 497)
+classic,baroque
+10:15
+Italy
+
+Antonio Vivaldi
+Bassoon concertos
+1989
+2
+Concerto in D Minor for bassoon: strings and continuo (RV 481)
+classic,baroque
+10:55
+Italy
+
+Antonio Vivaldi
+Bassoon concertos
+1989
+3
+Concerto in B Flat Major for bassoon: strings and continuo (RV 501)
+classic,baroque
+9:20
+Italy
+
+Antonio Vivaldi
+Bassoon concertos
+1989
+4
+Concerto in C Major for bassoon: strings and continuo (RV 472)
+classic,baroque
+10:16
+Italy
+
+Antonio Vivaldi
+Bassoon concertos
+1989
+5
+Concerto in E Minor for bassoon: strings and continue (RV 484)
+classic,baroque
+10:27
+Italy
+
+Atoms for peace
+Amok
+2013
+1
+Before your very eyes...
+alternative
+5:47
+England
+
+Atoms for peace
+Amok
+2013
+2
+Default
+alternative
+5:15
+England
+
+Atoms for peace
+Amok
+2013
+3
+Ingenue
+alternative
+4:30
+England
+
+Atoms for peace
+Amok
+2013
+4
+Dropped
+alternative
+4:57
+England
+
+Atoms for peace
+Amok
+2013
+4
+Unless
+alternative
+4:40
+England
+
+Atoms for peace
+Amok
+2013
+5
+Stuck together pieces
+alternative
+5:28
+England
+
+Atoms for peace
+Amok
+2013
+6
+Judge, jury and executioner
+alternative
+3:29
+England
+
+Atoms for peace
+Amok
+2013
+7
+Reverse running
+alternative
+5:06
+England
+
+Atoms for peace
+Amok
+2013
+8
+Amok
+alternative
+5:24
+England
+
+Ayreon
+Actual Fantasy
+1998
+1
+Actual Fantasy
+progressive,metal
+1:35
+Netherlands
+
+Ayreon
+Actual Fantasy
+1998
+10
+The stranger from within (single version)
+progressive,metal
+3:40
+Netherlands
+
+Ayreon
+Actual Fantasy
+1998
+2
+Abbey of synn
+progressive,metal
+9:34
+Netherlands
+
+Ayreon
+Actual Fantasy
+1998
+3
+The stranger from within
+progressive,metal
+7:36
+Netherlands
+
+Ayreon
+Actual Fantasy
+1998
+4
+Computer eyes
+progressive,metal
+7:31
+Netherlands
+
+Ayreon
+Actual Fantasy
+1998
+5
+Beyond the last horizon
+progressive,metal
+7:34
+Netherlands
+
+Ayreon
+Actual Fantasy
+1998
+6
+Far side of the world
+progressive,metal
+6:21
+Netherlands
+
+Ayreon
+Actual Fantasy
+1998
+7
+Back on planet Earth
+progressive,metal
+7:01
+Netherlands
+
+Ayreon
+Actual Fantasy
+1998
+8
+Forevermore
+progressive,metal
+7:15
+Netherlands
+
+Ayreon
+Actual Fantasy
+1998
+9
+The dawn of man
+progressive,metal
+7:30
+Netherlands
+
+Ayreon
+Flight of the migrator
+2000
+1
+Chaos
+progressive,metal,instrumental
+5:10
+Netherlands
+
+Ayreon
+Flight of the migrator
+2000
+2
+Dawn of a million souls
+progressive,metal
+7:45
+Netherlands
+
+Ayreon
+Flight of the migrator
+2000
+3
+Journey on the waves of time
+progressive,metal
+5:47
+Netherlands
+
+Ayreon
+Flight of the migrator
+2000
+4
+To the quasar
+progressive,metal
+8:42
+Netherlands
+
+Ayreon
+Flight of the migrator
+2000
+5
+Into the black hole
+progressive,metal
+10:25
+Netherlands
+
+Ayreon
+Flight of the migrator
+2000
+6
+Through the wormhole
+progressive,metal
+6:05
+Netherlands
+
+Ayreon
+Flight of the migrator
+2000
+7
+Out of the white hole
+progressive,metal
+7:11
+Netherlands
+
+Ayreon
+Flight of the migrator
+2000
+8
+To the solar system
+progressive,metal
+6:11
+Netherlands
+
+Ayreon
+Flight of the migrator
+2000
+9
+The new migrator
+progressive,metal
+8:15
+Netherlands
+
+Ayreon
+Into the electric castle - a space opera
+1998
+1
+Welcome to the new dimension
+progressive,metal
+3:05
+Netherlands
+
+Ayreon
+Into the electric castle - a space opera
+1998
+10
+The castle hall
+progressive,metal
+5:49
+Netherlands
+
+Ayreon
+Into the electric castle - a space opera
+1998
+11
+Tower of hope
+progressive,metal
+4:54
+Netherlands
+
+Ayreon
+Into the electric castle - a space opera
+1998
+12
+Cosmic fusion
+progressive,metal
+7:27
+Netherlands
+
+Ayreon
+Into the electric castle - a space opera
+1998
+13
+The mirror maze
+progressive,metal
+6:34
+Netherlands
+
+Ayreon
+Into the electric castle - a space opera
+1998
+14
+Evil devolution
+progressive,metal
+6:31
+Netherlands
+
+Ayreon
+Into the electric castle - a space opera
+1998
+15
+The two gates
+progressive,metal
+6:28
+Netherlands
+
+Ayreon
+Into the electric castle - a space opera
+1998
+16
+"Forever" of the stars
+progressive,metal
+2:02
+Netherlands
+
+Ayreon
+Into the electric castle - a space opera
+1998
+17
+Another time, another space
+progressive,metal
+5:20
+Netherlands
+
+Ayreon
+Into the electric castle - a space opera
+1998
+2
+Isis and Osiris
+progressive,metal,tranquil
+11:11
+Netherlands
+
+Ayreon
+Into the electric castle - a space opera
+1998
+3
+Amazing flight
+progressive,metal
+10:15
+Netherlands
+
+Ayreon
+Into the electric castle - a space opera
+1998
+4
+Time beyond time
+progressive,metal
+6:05
+Netherlands
+
+Ayreon
+Into the electric castle - a space opera
+1998
+5
+The decision tree (we're alive)
+progressive,metal
+6:24
+Netherlands
+
+Ayreon
+Into the electric castle - a space opera
+1998
+6
+Tunnel of light
+progressive,metal,tranquil,boring
+4:05
+Netherlands
+
+Ayreon
+Into the electric castle - a space opera
+1998
+7
+Across the rainbow bridge
+progressive,metal
+6:20
+Netherlands
+
+Ayreon
+Into the electric castle - a space opera
+1998
+8
+The garden of emotions
+progressive,metal
+9:40
+Netherlands
+
+Ayreon
+Into the electric castle - a space opera
+1998
+9
+Valley of the queens
+progressive,metal,tranquil
+2:25
+Netherlands
+
+Ayreon
+The dream sequencer
+2000
+1
+The dream sequencer
+progressive,metal,instrumental
+5:08
+Netherlands
+
+Ayreon
+The dream sequencer
+2000
+10
+The first man on Earth
+progressive,metal
+7:19
+Netherlands
+
+Ayreon
+The dream sequencer
+2000
+11
+The dream sequencer reprise
+progressive,metal,instrumental
+3:36
+Netherlands
+
+Ayreon
+The dream sequencer
+2000
+2
+My house on Mars
+progressive,metal,boring
+7:49
+Netherlands
+
+Ayreon
+The dream sequencer
+2000
+3
+2084
+progressive,metal
+7:42
+Netherlands
+
+Ayreon
+The dream sequencer
+2000
+4
+One small step
+progressive,metal
+8:46
+Netherlands
+
+Ayreon
+The dream sequencer
+2000
+5
+The shooting company of captain Frans B. Cocq
+progressive,metal
+7:57
+Netherlands
+
+Ayreon
+The dream sequencer
+2000
+6
+Dragon on the sea
+progressive,metal
+7:09
+Netherlands
+
+Ayreon
+The dream sequencer
+2000
+7
+Temple of the cat
+progressive,metal
+4:11
+Netherlands
+
+Ayreon
+The dream sequencer
+2000
+8
+Carried by the wind
+progressive,metal
+3:59
+Netherlands
+
+Ayreon
+The dream sequencer
+2000
+9
+And the druids turn to stone
+progressive,metal,tranquil
+6:36
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+1
+Prologue: the blackboard
+progressive,metal
+1:55
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+10
+Inertia
+progressive,metal
+0:45
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+11
+The theory of everything part 2
+progressive,metal
+1:50
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+12
+The consultation
+progressive,metal
+3:49
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+13
+Diagnosis
+progressive,metal
+2:48
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+14
+The argument 1
+progressive,metal
+0:24
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+15
+The rival's dilemma
+progressive,metal
+2:22
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+16
+Surface tension
+progressive,metal,instrumental
+0:57
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+17
+A reason to live
+progressive,metal
+0:45
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+18
+Potential
+progressive,metal
+3:14
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+19
+Quantum chaos
+progressive,metal,instrumental
+2:09
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+2
+The theory of everything part 1
+progressive,metal
+3:01
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+20
+Dark medicine
+progressive,metal
+1:23
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+21
+Alive!
+progressive,metal
+2:29
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+22
+The prediction
+progressive,metal
+1:05
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+23
+Fluctuations
+progressive,metal,instrumental
+1:01
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+24
+Transformation
+progressive,metal
+3:13
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+25
+Collision
+progressive,metal
+3:26
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+26
+Side effects
+progressive,metal
+2:59
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+27
+Frequency modulation
+progressive,metal,instrumental
+1:44
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+28
+Magnetism
+progressive,metal
+3:54
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+29
+Quid pro quo
+progressive,metal
+3:09
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+3
+Patterns
+progressive,metal,instrumental
+1:03
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+30
+String theory
+progressive,metal,instrumental
+1:29
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+31
+Fortune?
+progressive,metal
+1:36
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+32
+Mirror of dreams
+progressive,metal
+2:30
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+33
+The lighthouse
+progressive,metal
+3:16
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+34
+The argument 2
+progressive,metal
+0:49
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+35
+The parting
+progressive,metal
+3:27
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+36
+The visitation
+progressive,metal
+3:27
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+37
+The breakthrough
+progressive,metal
+2:00
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+38
+The note
+progressive,metal
+1:11
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+39
+The uncertainty principle
+progressive,metal
+2:09
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+4
+The prodigy's world
+progressive,metal
+1:31
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+40
+Dark energy
+progressive,metal,instrumental
+0:44
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+41
+The theory of everything part 3
+progressive,metal
+1:29
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+42
+The blackboard (reprise)
+progressive,metal
+1:13
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+5
+The teacher's discovery
+progressive,metal
+2:59
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+6
+Love and envy
+progressive,metal
+2:39
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+7
+Progressive waves
+progressive,metal,instrumental
+3:16
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+8
+The gift
+progressive,metal
+2:38
+Netherlands
+
+Ayreon
+The theory of everything
+2013
+9
+The eleventh dimension
+progressive,metal,instrumental
+1:46
+Netherlands
+
+Bailter space
+Robot world
+1993
+1
+Begin
+alternative,noise
+3:32
+New Zealand
+
+Bailter space
+Robot world
+1993
+10
+Make
+alternative,noise
+3:33
+New Zealand
+
+Bailter space
+Robot world
+1993
+11
+Remain
+alternative,noise
+4:55
+New Zealand
+
+Bailter space
+Robot world
+1993
+2
+Robot world
+alternative,noise
+4:15
+New Zealand
+
+Bailter space
+Robot world
+1993
+3
+Morning
+alternative,noise
+4:00
+New Zealand
+
+Bailter space
+Robot world
+1993
+4
+Be on time
+alternative,noise
+5:10
+New Zealand
+
+Bailter space
+Robot world
+1993
+5
+Fascination
+alternative,noise
+1:47
+New Zealand
+
+Bailter space
+Robot world
+1993
+6
+Ore
+alternative,noise
+3:31
+New Zealand
+
+Bailter space
+Robot world
+1993
+7
+Get lost
+alternative,noise
+5:59
+New Zealand
+
+Bailter space
+Robot world
+1993
+8
+Eip
+alternative,noise
+3:57
+New Zealand
+
+Bailter space
+Robot world
+1993
+9
+Orbit
+alternative,noise
+4:01
+New Zealand
+
+Barclay James Harvest
+Octoberon
+1976
+1
+The world goes on
+progressive,pop
+6:27
+England
+
+Barclay James Harvest
+Octoberon
+1976
+2
+May day
+progressive
+7:57
+England
+
+Barclay James Harvest
+Octoberon
+1976
+3
+Ra
+progressive
+7:18
+England
+
+Barclay James Harvest
+Octoberon
+1976
+4
+Rock'n roll star
+pop
+5:17
+England
+
+Barclay James Harvest
+Octoberon
+1976
+5
+Polk street rag
+pop
+5:37
+England
+
+Barclay James Harvest
+Octoberon
+1976
+6
+Believe in me
+pop
+4:21
+England
+
+Barclay James Harvest
+Octoberon
+1976
+7
+Suicide?
+progressive,radio play,gloomy
+7:56
+England
+
+Barclay James Harvest
+XII
+1987
+1
+Loving is easy
+rock
+4:00
+England
+
+Barclay James Harvest
+XII
+1987
+10
+Giving it up
+pop,tranquil
+4:35
+England
+
+Barclay James Harvest
+XII
+1987
+11
+The streets of San Francisco
+pop
+5:41
+England
+
+Barclay James Harvest
+XII
+1987
+2
+Berlin
+pop,tranquil
+4:47
+England
+
+Barclay James Harvest
+XII
+1987
+3
+A tale of two sixties
+pop
+3:34
+England
+
+Barclay James Harvest
+XII
+1987
+4
+Turning in circles
+pop
+3:30
+England
+
+Barclay James Harvest
+XII
+1987
+5
+The closed shop
+pop,tranquil
+3:46
+England
+
+Barclay James Harvest
+XII
+1987
+6
+In search of England
+progressive
+4:12
+England
+
+Barclay James Harvest
+XII
+1987
+7
+Sip of wine
+pop
+4:22
+England
+
+Barclay James Harvest
+XII
+1987
+8
+Harbour
+pop
+3:42
+England
+
+Barclay James Harvest
+XII
+1987
+9
+Nova Lepidoptera
+progressive
+5:45
+England
+
+Beck
+Odelay
+1996
+1
+Devils haircut
+alternative
+3:13
+U.S.A.
+
+Beck
+Odelay
+1996
+10
+Sissyneck
+alternative
+4:02
+U.S.A.
+
+Beck
+Odelay
+1996
+11
+Readymade
+alternative
+2:43
+U.S.A.
+
+Beck
+Odelay
+1996
+12
+High 5 (Rock the catskills)
+alternative
+4:10
+U.S.A.
+
+Beck
+Odelay
+1996
+13
+Ramshackle
+alternative
+4:49
+U.S.A.
+
+Beck
+Odelay
+1996
+14
+Diskobox
+alternative
+3:35
+U.S.A.
+
+Beck
+Odelay
+1996
+2
+Hotwax
+alternative
+3:52
+U.S.A.
+
+Beck
+Odelay
+1996
+3
+Lord only knows
+alternative
+4:14
+U.S.A.
+
+Beck
+Odelay
+1996
+4
+The new pollution
+alternative
+3:39
+U.S.A.
+
+Beck
+Odelay
+1996
+5
+Derelict
+alternative
+4:11
+U.S.A.
+
+Beck
+Odelay
+1996
+6
+Novacane
+alternative
+4:38
+U.S.A.
+
+Beck
+Odelay
+1996
+7
+Jack-ass
+alternative
+4:00
+U.S.A.
+
+Beck
+Odelay
+1996
+8
+Where it's at
+alternative
+5:25
+U.S.A.
+
+Beck
+Odelay
+1996
+9
+Minus
+alternative
+2:32
+U.S.A.
+
+Ben Frost & Daníel Bjarnason
+Sólaris
+2011
+1
+We don't need other worlds, we need mirrors
+orchestral,tranquil,gloomy,instrumental
+2:11
+Iceland
+
+Ben Frost & Daníel Bjarnason
+Sólaris
+2011
+10
+Saccades
+orchestral,tranquil,gloomy,instrumental
+6:01
+Iceland
+
+Ben Frost & Daníel Bjarnason
+Sólaris
+2011
+11
+Venia
+orchestral,tranquil,gloomy,instrumental
+6:24
+Iceland
+
+Ben Frost & Daníel Bjarnason
+Sólaris
+2011
+2
+Simulacra I
+orchestral,tranquil,gloomy,instrumental
+5:35
+Iceland
+
+Ben Frost & Daníel Bjarnason
+Sólaris
+2011
+3
+Simulacra II
+orchestral,tranquil,gloomy,instrumental
+7:36
+Iceland
+
+Ben Frost & Daníel Bjarnason
+Sólaris
+2011
+4
+Snow
+orchestral,tranquil,gloomy,instrumental
+1:00
+Iceland
+
+Ben Frost & Daníel Bjarnason
+Sólaris
+2011
+5
+Reyja
+orchestral,tranquil,gloomy,instrumental
+5:05
+Iceland
+
+Ben Frost & Daníel Bjarnason
+Sólaris
+2011
+6
+Cruel miracles
+orchestral,tranquil,gloomy,instrumental
+3:49
+Iceland
+
+Ben Frost & Daníel Bjarnason
+Sólaris
+2011
+7
+Hydrogen sulfide
+orchestral,tranquil,gloomy,instrumental
+2:12
+Iceland
+
+Ben Frost & Daníel Bjarnason
+Sólaris
+2011
+8
+Unbreakable silence
+orchestral,tranquil,gloomy,instrumental
+3:36
+Iceland
+
+Ben Frost & Daníel Bjarnason
+Sólaris
+2011
+9
+You mean more to me than any scientific truth
+orchestral,tranquil,gloomy,instrumental
+2:39
+Iceland
+
+Benjamin Britten
+The young person's guide to the orchestra
+1988
+1
+The young person's guide to the orchestra, op.34
+classic,symphonic
+16:38
+England
+
+Benjamin Britten
+The young person's guide to the orchestra
+1988
+10
+Cantus in memory of Benjamin Britten
+classic,symphonic
+6:38
+England
+
+Benjamin Britten
+The young person's guide to the orchestra
+1988
+2
+Symphony for cello and orchestra, op.68 - allegro maestoso
+classic,symphonic,cello
+12:51
+England
+
+Benjamin Britten
+The young person's guide to the orchestra
+1988
+3
+Symphony for cello and orchestra, op.68 - presto inquieto
+classic,symphonic,cello
+3:36
+England
+
+Benjamin Britten
+The young person's guide to the orchestra
+1988
+4
+Symphony for cello and orchestra, op.68 - adagio
+classic,symphonic,cello
+9:57
+England
+
+Benjamin Britten
+The young person's guide to the orchestra
+1988
+5
+Symphony for cello and orchestra, op.68 - passacaglia, andante allegro
+classic,symphonic,cello
+7:44
+England
+
+Benjamin Britten
+The young person's guide to the orchestra
+1988
+6
+Four sea interludes from Peter Grimes, op.33a - Dawn
+classic,symphonic
+3:20
+England
+
+Benjamin Britten
+The young person's guide to the orchestra
+1988
+7
+Four sea interludes from Peter Grimes, op.33a - Sunday morning
+classic,symphonic
+3:51
+England
+
+Benjamin Britten
+The young person's guide to the orchestra
+1988
+8
+Four sea interludes from Peter Grimes, op.33a - Moonlight
+classic,symphonic
+3:50
+England
+
+Benjamin Britten
+The young person's guide to the orchestra
+1988
+9
+Four sea interludes from Peter Grimes, op.33a - Storm
+classic,symphonic
+4:24
+England
+
+Beth Orton
+Central reservation
+1999
+1
+Stolen car
+pop,debut album
+5:25
+England
+
+Beth Orton
+Central reservation
+1999
+10
+Devil song
+pop,debut album
+5:04
+England
+
+Beth Orton
+Central reservation
+1999
+11
+Feel to believe
+pop,debut album
+4:04
+England
+
+Beth Orton
+Central reservation
+1999
+12
+Central reservation (the then again version)
+pop,debut album
+4:01
+England
+
+Beth Orton
+Central reservation
+1999
+2
+Sweetest decline
+pop,debut album,tranquil
+5:39
+England
+
+Beth Orton
+Central reservation
+1999
+3
+Couldn't cause me harm
+pop,debut album
+4:48
+England
+
+Beth Orton
+Central reservation
+1999
+4
+So much more
+pop,debut album
+5:41
+England
+
+Beth Orton
+Central reservation
+1999
+5
+Pass in time
+pop,debut album,duet,gloomy,tranquil
+7:17
+England
+
+Beth Orton
+Central reservation
+1999
+6
+Central reservation (original version)
+pop,debut album
+4:50
+England
+
+Beth Orton
+Central reservation
+1999
+7
+Stars all seem to weep
+pop,debut album,electronica
+4:39
+England
+
+Beth Orton
+Central reservation
+1999
+8
+Love like laughter
+pop,debut album
+3:07
+England
+
+Beth Orton
+Central reservation
+1999
+9
+Blood red river
+pop,debut album
+4:15
+England
+
+Bettie serveert
+Dust bunnies
+1996
+1
+Geek
+alternative,rock
+3:52
+Netherlands
+
+Bettie serveert
+Dust bunnies
+1996
+10
+Pork & beans
+alternative,rock
+2:58
+Netherlands
+
+Bettie serveert
+Dust bunnies
+1996
+11
+Fallen foster
+alternative,rock
+3:57
+Netherlands
+
+Bettie serveert
+Dust bunnies
+1996
+12
+Co-coward
+alternative,rock
+3:47
+Netherlands
+
+Bettie serveert
+Dust bunnies
+1996
+13
+Heaven
+alternative,rock
+3:32
+Netherlands
+
+Bettie serveert
+Dust bunnies
+1996
+2
+The link
+alternative,rock
+3:09
+Netherlands
+
+Bettie serveert
+Dust bunnies
+1996
+3
+Musher
+alternative,rock
+3:10
+Netherlands
+
+Bettie serveert
+Dust bunnies
+1996
+4
+Dust bunny
+alternative,rock
+2:13
+Netherlands
+
+Bettie serveert
+Dust bunnies
+1996
+5
+What friends?
+alternative,rock
+2:47
+Netherlands
+
+Bettie serveert
+Dust bunnies
+1996
+6
+Misery galore
+alternative,rock
+4:03
+Netherlands
+
+Bettie serveert
+Dust bunnies
+1996
+7
+Story in a nutshell
+alternative,rock
+1:11
+Netherlands
+
+Bettie serveert
+Dust bunnies
+1996
+8
+Sugar the pill
+alternative,rock
+3:59
+Netherlands
+
+Bettie serveert
+Dust bunnies
+1996
+9
+Rudder
+alternative,rock
+2:46
+Netherlands
+
+Biffy Clyro
+Opposites
+2013
+1
+Different people
+alternative,rock
+5:09
+Scotland
+
+Biffy Clyro
+Opposites
+2013
+10
+Skylight
+alternative,rock
+3:44
+Scotland
+
+Biffy Clyro
+Opposites
+2013
+11
+Trumpet or tap
+alternative,rock
+3:56
+Scotland
+
+Biffy Clyro
+Opposites
+2013
+12
+Modern magic formula
+alternative,rock
+3:54
+Scotland
+
+Biffy Clyro
+Opposites
+2013
+13
+The thaw
+alternative,rock
+3:43
+Scotland
+
+Biffy Clyro
+Opposites
+2013
+14
+Picture a knife fight
+alternative,rock
+3:53
+Scotland
+
+Biffy Clyro
+Opposites
+2013
+2
+Black chandelier
+alternative,rock
+4:05
+Scotland
+
+Biffy Clyro
+Opposites
+2013
+3
+Sounds like balloons
+alternative,rock
+3:46
+Scotland
+
+Biffy Clyro
+Opposites
+2013
+4
+Opposite
+alternative,rock
+3:55
+Scotland
+
+Biffy Clyro
+Opposites
+2013
+5
+The joke's on us
+alternative,rock
+3:54
+Scotland
+
+Biffy Clyro
+Opposites
+2013
+6
+Spanish radio
+alternative,rock
+3:51
+Scotland
+
+Biffy Clyro
+Opposites
+2013
+7
+Victory over the sun
+alternative,rock
+3:59
+Scotland
+
+Biffy Clyro
+Opposites
+2013
+8
+Biblical
+alternative,rock
+3:57
+Scotland
+
+Biffy Clyro
+Opposites
+2013
+9
+Stingin' belle
+alternative,rock
+4:26
+Scotland
+
+Bigelf
+Cheat the gallows
+2008
+1
+Gravest show on earth
+progressive,rock
+5:00
+U.S.A.
+
+Bigelf
+Cheat the gallows
+2008
+10
+Counting sheep
+progressive,rock
+11:20
+U.S.A.
+
+Bigelf
+Cheat the gallows
+2008
+2
+Blackball
+progressive,rock
+7:02
+U.S.A.
+
+Bigelf
+Cheat the gallows
+2008
+3
+Money, it's pure evil
+progressive,rock
+3:18
+U.S.A.
+
+Bigelf
+Cheat the gallows
+2008
+4
+The evils of rock & roll
+progressive,rock
+6:37
+U.S.A.
+
+Bigelf
+Cheat the gallows
+2008
+5
+No parachute
+progressive,rock
+3:43
+U.S.A.
+
+Bigelf
+Cheat the gallows
+2008
+6
+The game
+progressive,rock
+5:11
+U.S.A.
+
+Bigelf
+Cheat the gallows
+2008
+7
+Superstar
+progressive,rock
+3:46
+U.S.A.
+
+Bigelf
+Cheat the gallows
+2008
+8
+Race with time
+progressive,rock
+4:28
+U.S.A.
+
+Bigelf
+Cheat the gallows
+2008
+9
+Hydra
+progressive,rock
+6:23
+U.S.A.
+
+Bill Bruford
+Master strokes (1978-1985)
+1986
+1
+Hell's bells
+jazz,drum,instrumental
+3:32
+England
+
+Bill Bruford
+Master strokes (1978-1985)
+1986
+10
+Living space
+jazz,drum,piano,instrumental
+3:53
+England
+
+Bill Bruford
+Master strokes (1978-1985)
+1986
+11
+The drum also waltzes
+jazz,drum,instrumental
+2:53
+England
+
+Bill Bruford
+Master strokes (1978-1985)
+1986
+12
+Split seconds
+jazz,drum,piano,instrumental
+4:39
+England
+
+Bill Bruford
+Master strokes (1978-1985)
+1986
+13
+Fainting in coils
+jazz,drum
+6:34
+England
+
+Bill Bruford
+Master strokes (1978-1985)
+1986
+14
+Beelzebub
+jazz,drum,instrumental
+3:20
+England
+
+Bill Bruford
+Master strokes (1978-1985)
+1986
+15
+The Sahara of snow (Part II)
+jazz,drum,instrumental
+3:30
+England
+
+Bill Bruford
+Master strokes (1978-1985)
+1986
+2
+One of a kind (Part I)
+jazz,drum,instrumental
+2:20
+England
+
+Bill Bruford
+Master strokes (1978-1985)
+1986
+3
+One of a kind (Part II)
+jazz,drum,instrumental
+4:00
+England
+
+Bill Bruford
+Master strokes (1978-1985)
+1986
+4
+Travels with myself - and someone else
+jazz,drum,instrumental
+6:14
+England
+
+Bill Bruford
+Master strokes (1978-1985)
+1986
+5
+Gothic 17
+jazz,drum
+5:07
+England
+
+Bill Bruford
+Master strokes (1978-1985)
+1986
+6
+Palewell park
+jazz,drum,instrumental
+3:59
+England
+
+Bill Bruford
+Master strokes (1978-1985)
+1986
+7
+If you can't stand the heat
+jazz,drum,instrumental
+4:41
+England
+
+Bill Bruford
+Master strokes (1978-1985)
+1986
+8
+Five G
+jazz,drum,instrumental
+4:41
+England
+
+Bill Bruford
+Master strokes (1978-1985)
+1986
+9
+Joe Frazier
+jazz,drum,instrumental
+4:43
+England
+
+Bill Payne
+Cielo Norte
+2005
+1
+Sunday's first light
+instrumental,jazz,ambient,debut album
+7:17
+U.S.A.
+
+Bill Payne
+Cielo Norte
+2005
+10
+South
+instrumental,jazz,ambient,debut album
+4:36
+U.S.A.
+
+Bill Payne
+Cielo Norte
+2005
+11
+Rainbow silence
+instrumental,jazz,ambient,debut album
+4:19
+U.S.A.
+
+Bill Payne
+Cielo Norte
+2005
+12
+Sharing the dream
+instrumental,jazz,ambient,debut album
+9:57
+U.S.A.
+
+Bill Payne
+Cielo Norte
+2005
+13
+Song for Sheryl
+instrumental,jazz,ambient,debut album
+4:24
+U.S.A.
+
+Bill Payne
+Cielo Norte
+2005
+2
+Dance town
+instrumental,jazz,ambient,debut album
+5:33
+U.S.A.
+
+Bill Payne
+Cielo Norte
+2005
+3
+Through the eyes of a child
+instrumental,jazz,ambient,debut album
+4:38
+U.S.A.
+
+Bill Payne
+Cielo Norte
+2005
+4
+Lope
+instrumental,jazz,ambient,debut album
+4:02
+U.S.A.
+
+Bill Payne
+Cielo Norte
+2005
+5
+Gravity
+instrumental,jazz,ambient,debut album
+4:15
+U.S.A.
+
+Bill Payne
+Cielo Norte
+2005
+6
+Your beautiful smile
+instrumental,jazz,ambient,debut album
+4:02
+U.S.A.
+
+Bill Payne
+Cielo Norte
+2005
+7
+The cadence of breath
+instrumental,jazz,ambient,debut album
+7:42
+U.S.A.
+
+Bill Payne
+Cielo Norte
+2005
+8
+Open up
+instrumental,jazz,ambient,debut album
+4:50
+U.S.A.
+
+Bill Payne
+Cielo Norte
+2005
+9
+Northern lights (ghosts in the sky)
+instrumental,jazz,ambient,debut album
+7:21
+U.S.A.
+
+Bill Whelan
+Riverdance
+1995
+1
+Reel around the sun
+folk,irish,instrumental
+8:40
+Ireland
+
+Bill Whelan
+Riverdance
+1995
+10
+Lift the wings
+folk,irish
+4:58
+Ireland
+
+Bill Whelan
+Riverdance
+1995
+11
+Macedonian morning
+folk,instrumental
+2:56
+Ireland
+
+Bill Whelan
+Riverdance
+1995
+12
+Marta's dance/the Russian dervish
+folk,instrumental
+6:03
+Ireland
+
+Bill Whelan
+Riverdance
+1995
+13
+Andalucia
+folk,instrumental,spanish
+4:19
+Ireland
+
+Bill Whelan
+Riverdance
+1995
+14
+Home and the heartland
+folk,irish
+3:25
+Ireland
+
+Bill Whelan
+Riverdance
+1995
+15
+The harvest
+folk,irish,instrumental
+3:38
+Ireland
+
+Bill Whelan
+Riverdance
+1995
+16
+Riverdance remix
+folk,irish
+3:47
+Ireland
+
+Bill Whelan
+Riverdance
+1995
+2
+The heart's cry
+folk,irish
+2:26
+Ireland
+
+Bill Whelan
+Riverdance
+1995
+3
+The countess Cathleen/Women of the Sidhe
+folk,irish,instrumental
+5:42
+Ireland
+
+Bill Whelan
+Riverdance
+1995
+4
+Caoineadh Cu Chulainn (lament)
+folk,irish,instrumental
+4:09
+Ireland
+
+Bill Whelan
+Riverdance
+1995
+5
+Shivna
+folk,irish
+3:38
+Ireland
+
+Bill Whelan
+Riverdance
+1995
+6
+Firedance
+folk,irish,instrumental
+6:02
+Ireland
+
+Bill Whelan
+Riverdance
+1995
+7
+Slip into spring
+folk,irish,instrumental
+3:44
+Ireland
+
+Bill Whelan
+Riverdance
+1995
+8
+Riverdance
+folk,irish
+5:42
+Ireland
+
+Bill Whelan
+Riverdance
+1995
+9
+American wake (the Nova Scotia set)
+folk,irish,instrumental
+3:07
+Ireland
+
+Billy Currie
+Transportation
+1988
+1
+Airlift
+electronica,instrumental,debut album
+6:04
+England
+
+Billy Currie
+Transportation
+1988
+2
+Traveller
+electronica,instrumental,debut album
+3:26
+England
+
+Billy Currie
+Transportation
+1988
+3
+Transportation
+electronica,instrumental,debut album
+8:00
+England
+
+Billy Currie
+Transportation
+1988
+4
+Rakaia River (mountains to sea)
+electronica,instrumental,debut album
+5:10
+England
+
+Billy Currie
+Transportation
+1988
+5
+India
+electronica,instrumental,debut album
+5:20
+England
+
+Billy Currie
+Transportation
+1988
+6
+Perfect flight
+electronica,instrumental,debut album
+4:55
+England
+
+Billy Currie
+Transportation
+1988
+7
+Over-soul
+electronica,instrumental,debut album
+3:20
+England
+
+Billy Currie
+Transportation
+1988
+8
+English home
+electronica,instrumental,debut album
+4:54
+England
+
+Björk
+Debut
+1993
+1
+Human behaviour
+alternative,pop,electronica,debut album
+4:12
+Iceland
+
+Björk
+Debut
+1993
+10
+Violently happy
+alternative,pop,electronica,debut album
+4:58
+Iceland
+
+Björk
+Debut
+1993
+11
+The anchor song
+alternative,pop,electronica,debut album
+3:32
+Iceland
+
+Björk
+Debut
+1993
+12
+Play dead
+alternative,pop,electronica,debut album
+3:57
+Iceland
+
+Björk
+Debut
+1993
+2
+Crying
+alternative,pop,electronica,debut album
+4:49
+Iceland
+
+Björk
+Debut
+1993
+3
+Venus as a boy
+alternative,pop,electronica,debut album
+4:41
+Iceland
+
+Björk
+Debut
+1993
+4
+There's more to life than this
+alternative,pop,electronica,debut album,live
+3:21
+Iceland
+
+Björk
+Debut
+1993
+5
+Like someone in love
+alternative,pop,electronica,debut album
+4:33
+Iceland
+
+Björk
+Debut
+1993
+6
+Big time sensuality
+alternative,pop,electronica,debut album
+3:56
+Iceland
+
+Björk
+Debut
+1993
+7
+One day
+alternative,pop,electronica,debut album
+5:24
+Iceland
+
+Björk
+Debut
+1993
+8
+Aeroplane
+alternative,pop,electronica,debut album
+3:54
+Iceland
+
+Björk
+Debut
+1993
+9
+Come to me
+alternative,pop,electronica,debut album
+4:55
+Iceland
+
+Blaudzun
+Promises of no man's land
+2014
+1
+Euphoria
+alternative
+3:29
+Netherlands
+
+Blaudzun
+Promises of no man's land
+2014
+10
+Ocean floor (from all the stars)
+alternative
+2:48
+Netherlands
+
+Blaudzun
+Promises of no man's land
+2014
+11
+Wingbeat
+alternative
+4:07
+Netherlands
+
+Blaudzun
+Promises of no man's land
+2014
+2
+Promises of no man's land
+alternative
+3:34
+Netherlands
+
+Blaudzun
+Promises of no man's land
+2014
+3
+Too many hopes for july
+alternative
+5:45
+Netherlands
+
+Blaudzun
+Promises of no man's land
+2014
+4
+Hollow people
+alternative
+3:09
+Netherlands
+
+Blaudzun
+Promises of no man's land
+2014
+5
+Kids around (hollow people revisited)
+alternative
+2:02
+Netherlands
+
+Blaudzun
+Promises of no man's land
+2014
+6
+Wasteland
+alternative
+4:06
+Netherlands
+
+Blaudzun
+Promises of no man's land
+2014
+7
+Any cold wind (sweet Selene)
+alternative
+3:58
+Netherlands
+
+Blaudzun
+Promises of no man's land
+2014
+8
+Streets of Babylon
+alternative
+3:54
+Netherlands
+
+Blaudzun
+Promises of no man's land
+2014
+9
+Halcyon
+alternative
+5:25
+Netherlands
+
+Boudewijn de Groot
+Grootste hits
+1973
+1
+Een meisje van zestien
+pop
+2:59
+Netherlands
+
+Boudewijn de Groot
+Grootste hits
+1973
+10
+Waterdrager
+pop
+3:11
+Netherlands
+
+Boudewijn de Groot
+Grootste hits
+1973
+11
+Tante Julia
+pop
+2:48
+Netherlands
+
+Boudewijn de Groot
+Grootste hits
+1973
+12
+Jimmy
+pop
+3:55
+Netherlands
+
+Boudewijn de Groot
+Grootste hits
+1973
+2
+Apocalyps
+pop
+3:33
+Netherlands
+
+Boudewijn de Groot
+Grootste hits
+1973
+3
+Welterusten, mijnheer de president
+pop
+2:32
+Netherlands
+
+Boudewijn de Groot
+Grootste hits
+1973
+4
+Verdronken vlinder
+pop
+2:26
+Netherlands
+
+Boudewijn de Groot
+Grootste hits
+1973
+5
+Testament
+pop
+3:15
+Netherlands
+
+Boudewijn de Groot
+Grootste hits
+1973
+6
+Het land van Maas en Waal
+pop
+3:00
+Netherlands
+
+Boudewijn de Groot
+Grootste hits
+1973
+7
+Onder ons
+pop
+2:09
+Netherlands
+
+Boudewijn de Groot
+Grootste hits
+1973
+8
+Prikkebeen
+pop
+4:13
+Netherlands
+
+Boudewijn de Groot
+Grootste hits
+1973
+9
+Als de rook om je hoofd is verdwenen
+pop
+3:33
+Netherlands
+
+Bozzio, Levin, Stevens
+Situation dangerous
+2000
+1
+Dangerous
+progressive,instrumental
+6:38
+U.S.A.
+
+Bozzio, Levin, Stevens
+Situation dangerous
+2000
+2
+Endless
+progressive,instrumental
+10:09
+U.S.A.
+
+Bozzio, Levin, Stevens
+Situation dangerous
+2000
+3
+Crash
+progressive,instrumental
+5:08
+U.S.A.
+
+Bozzio, Levin, Stevens
+Situation dangerous
+2000
+4
+Spiral
+progressive,instrumental
+4:36
+U.S.A.
+
+Bozzio, Levin, Stevens
+Situation dangerous
+2000
+5
+Melt
+progressive,instrumental
+3:37
+U.S.A.
+
+Bozzio, Levin, Stevens
+Situation dangerous
+2000
+6
+Tragic
+progressive,instrumental
+6:58
+U.S.A.
+
+Bozzio, Levin, Stevens
+Situation dangerous
+2000
+7
+Tziganne
+progressive,instrumental
+4:26
+U.S.A.
+
+Bozzio, Levin, Stevens
+Situation dangerous
+2000
+8
+Lost
+progressive,instrumental
+6:24
+U.S.A.
+
+Bruce Springsteen
+The ghost of Tom Joad
+1995
+1
+The ghost of Tom Joad
+folk,american,tranquil
+4:23
+U.S.A.
+
+Bruce Springsteen
+The ghost of Tom Joad
+1995
+10
+Across the border
+folk,american,tranquil
+5:24
+U.S.A.
+
+Bruce Springsteen
+The ghost of Tom Joad
+1995
+11
+Galveston bay
+folk,american,tranquil
+5:04
+U.S.A.
+
+Bruce Springsteen
+The ghost of Tom Joad
+1995
+12
+My best was never good enough
+folk,american,tranquil
+2:00
+U.S.A.
+
+Bruce Springsteen
+The ghost of Tom Joad
+1995
+2
+Straight time
+folk,american,tranquil
+3:25
+U.S.A.
+
+Bruce Springsteen
+The ghost of Tom Joad
+1995
+3
+Highway 28
+folk,american,tranquil
+3:39
+U.S.A.
+
+Bruce Springsteen
+The ghost of Tom Joad
+1995
+4
+Youngstown
+folk,american,tranquil
+3:52
+U.S.A.
+
+Bruce Springsteen
+The ghost of Tom Joad
+1995
+5
+Sinaloa cowboys
+folk,american,tranquil
+3:51
+U.S.A.
+
+Bruce Springsteen
+The ghost of Tom Joad
+1995
+6
+The line
+folk,american,tranquil
+5:14
+U.S.A.
+
+Bruce Springsteen
+The ghost of Tom Joad
+1995
+7
+Balboa park
+folk,american,tranquil
+3:19
+U.S.A.
+
+Bruce Springsteen
+The ghost of Tom Joad
+1995
+8
+Dry lightning
+folk,american,tranquil
+3:30
+U.S.A.
+
+Bruce Springsteen
+The ghost of Tom Joad
+1995
+9
+The new timer
+folk,american,tranquil
+5:45
+U.S.A.
+
+Bruce Springsteen
+The rising
+2002
+1
+Lonesome day
+rock
+4:08
+U.S.A.
+
+Bruce Springsteen
+The rising
+2002
+10
+The fuse
+rock
+5:37
+U.S.A.
+
+Bruce Springsteen
+The rising
+2002
+11
+Mary's place
+rock
+6:03
+U.S.A.
+
+Bruce Springsteen
+The rising
+2002
+12
+You're missing
+rock
+5:10
+U.S.A.
+
+Bruce Springsteen
+The rising
+2002
+13
+The rising
+rock
+4:50
+U.S.A.
+
+Bruce Springsteen
+The rising
+2002
+14
+Paradise
+rock
+5:39
+U.S.A.
+
+Bruce Springsteen
+The rising
+2002
+15
+My city of ruins
+rock,tranquil
+5:00
+U.S.A.
+
+Bruce Springsteen
+The rising
+2002
+2
+Into the fire
+rock
+5:04
+U.S.A.
+
+Bruce Springsteen
+The rising
+2002
+3
+Waitin' on a sunny day
+rock
+4:18
+U.S.A.
+
+Bruce Springsteen
+The rising
+2002
+4
+Nothing man
+rock,tranquil
+4:23
+U.S.A.
+
+Bruce Springsteen
+The rising
+2002
+5
+Countin' on a miracle
+rock
+4:44
+U.S.A.
+
+Bruce Springsteen
+The rising
+2002
+6
+Empty sky
+rock
+3:34
+U.S.A.
+
+Bruce Springsteen
+The rising
+2002
+7
+Worlds apart
+rock
+6:07
+U.S.A.
+
+Bruce Springsteen
+The rising
+2002
+8
+Let's be friends (skin to skin)
+rock
+4:21
+U.S.A.
+
+Bruce Springsteen
+The rising
+2002
+9
+Further on (up the road)
+rock
+3:52
+U.S.A.
+
+Camille Saint-Saëns
+Symphonie Nr.3 Orgel-Symphonie
+1986
+1
+Symphonie Nr.3 (i)
+classic,symphonic,organ,romantic
+19:26
+France
+
+Camille Saint-Saëns
+Symphonie Nr.3 Orgel-Symphonie
+1986
+2
+Symphonie Nr.3 (ii)
+classic,symphonic,organ,romantic
+7:27
+France
+
+Camille Saint-Saëns
+Symphonie Nr.3 Orgel-Symphonie
+1986
+3
+Symphonie Nr.3 (iii)
+classic,symphonic,organ,romantic
+7:23
+France
+
+Camille Saint-Saëns
+Symphonie Nr.3 Orgel-Symphonie
+1986
+4
+Samson et Dalila - Bacchanale
+classic,symphonic,romantic
+7:11
+France
+
+Camille Saint-Saëns
+Symphonie Nr.3 Orgel-Symphonie
+1986
+5
+Le Déluge - prélude
+classic,symphonic,romantic
+7:32
+France
+
+Camille Saint-Saëns
+Symphonie Nr.3 Orgel-Symphonie
+1986
+6
+Danse Macabre
+classic,symphonic,romantic
+6:47
+France
+
+Carl Nielsen
+Symphonies 1, 2
+2005
+1
+Symphony No. 1 in G Minor, Op. 7- 1. Allegro Orgoglioso
+classic,symphonic
+9:14
+Denmark
+
+Carl Nielsen
+Symphonies 1, 2
+2005
+2
+Symphony No. 1 in G Minor, Op. 7- 2. Andante
+classic,symphonic
+8:11
+Denmark
+
+Carl Nielsen
+Symphonies 1, 2
+2005
+3
+Symphony No. 1 in G Minor, Op. 7- 3. Allegro Comodo
+classic,symphonic
+7:46
+Denmark
+
+Carl Nielsen
+Symphonies 1, 2
+2005
+4
+Symphony No. 1 in G Minor, Op. 7- 4. Finale. Allegro Con Fuoco
+classic,symphonic
+8:20
+Denmark
+
+Carl Nielsen
+Symphonies 1, 2
+2005
+5
+Symphony No. 2, Op. 16 'the Four Temperaments'- 1. Allegro Collerico
+classic,symphonic
+8:52
+Denmark
+
+Carl Nielsen
+Symphonies 1, 2
+2005
+6
+Symphony No. 2, Op. 16 'the Four Temperaments'- 2. Allegro Comodo E Flemmatico
+classic,symphonic
+4:24
+Denmark
+
+Carl Nielsen
+Symphonies 1, 2
+2005
+7
+Symphony No. 2, Op. 16 'the Four Temperaments'- 3. Andante Malincolico
+classic,symphonic
+12:22
+Denmark
+
+Carl Nielsen
+Symphonies 1, 2
+2005
+8
+Symphony No. 2, Op. 16 'the Four Temperaments'- 4. Allegro Sanguinoso
+classic,symphonic
+6:44
+Denmark
+
+Carl Nielsen
+Symphonies 3, 4
+2005
+1
+Symphony No. 3, Op. 27 'espansiva'- 1. Allegro Espansivo
+classic,symphonic
+11:23
+Denmark
+
+Carl Nielsen
+Symphonies 3, 4
+2005
+2
+Symphony No. 3, Op. 27 'espansiva'- 2. Andante Pastorale
+classic,symphonic
+9:43
+Denmark
+
+Carl Nielsen
+Symphonies 3, 4
+2005
+3
+Symphony No. 3, Op. 27 'espansiva'- 3. Allegretto un Poco
+classic,symphonic
+6:35
+Denmark
+
+Carl Nielsen
+Symphonies 3, 4
+2005
+4
+Symphony No. 3, Op. 27 'espansiva'- 4. Finale. Allegro
+classic,symphonic
+9:23
+Denmark
+
+Carl Nielsen
+Symphonies 3, 4
+2005
+5
+Symphony No. 4, Op. 29 'the Inextinguishable'- 1. Allegro
+classic,symphonic
+11:08
+Denmark
+
+Carl Nielsen
+Symphonies 3, 4
+2005
+6
+Symphony No. 4, Op. 29 'the Inextinguishable'- 2. Poco Allegretto
+classic,symphonic
+4:31
+Denmark
+
+Carl Nielsen
+Symphonies 3, 4
+2005
+7
+Symphony No. 4, Op. 29 'the Inextinguishable'- 3. Poco Adagio Quasi Andante
+classic,symphonic
+9:34
+Denmark
+
+Carl Nielsen
+Symphonies 3, 4
+2005
+8
+Symphony No. 4, Op. 29 'the Inextinguishable'- 4. Allegro
+classic,symphonic
+8:47
+Denmark
+
+Carl Nielsen
+Symphonies 5, 6
+2005
+1
+Symphony No. 5, Op. 50- 1. Tempo Giusto
+classic,symphonic
+18:26
+Denmark
+
+Carl Nielsen
+Symphonies 5, 6
+2005
+2
+Symphony No. 5, Op. 50- 2. Allegro
+classic,symphonic
+16:24
+Denmark
+
+Carl Nielsen
+Symphonies 5, 6
+2005
+3
+Symphony No. 6 'semplice'- 1. Tempo Giusto
+classic,symphonic
+13:42
+Denmark
+
+Carl Nielsen
+Symphonies 5, 6
+2005
+4
+Symphony No. 6 'semplice'- 2. Humoreske. Allegretto
+classic,symphonic
+4:08
+Denmark
+
+Carl Nielsen
+Symphonies 5, 6
+2005
+5
+Symphony No. 6 'semplice'- 3. Proposta Seria. Adagio
+classic,symphonic
+6:07
+Denmark
+
+Carl Nielsen
+Symphonies 5, 6
+2005
+6
+Symphony No. 6 'semplice'- 4. Theme & Variations
+classic,symphonic
+10:56
+Denmark
+
+Carl Orff
+Carmina burana
+1988
+1
+Fortune: empress of the world - O Fortune
+classic,choral
+2:39
+Germany
+
+Carl Orff
+Carmina burana
+1988
+10
+On the green - Were the world all mine
+classic,choral
+0:56
+Germany
+
+Carl Orff
+Carmina burana
+1988
+11
+In the tavern - Burning inside
+classic,choral
+2:23
+Germany
+
+Carl Orff
+Carmina burana
+1988
+12
+In the tavern - The roast swan sings
+classic,choral
+3:32
+Germany
+
+Carl Orff
+Carmina burana
+1988
+13
+In the tavern - I am the abbot of fool's paradise
+classic,choral
+1:24
+Germany
+
+Carl Orff
+Carmina burana
+1988
+14
+In the tavern - When we are in the tavern
+classic,choral
+3:03
+Germany
+
+Carl Orff
+Carmina burana
+1988
+15
+The court of love - Love files everywhere
+classic,choral
+3:32
+Germany
+
+Carl Orff
+Carmina burana
+1988
+16
+The court of love - Day: night and everything
+classic,choral
+2:15
+Germany
+
+Carl Orff
+Carmina burana
+1988
+17
+The court of love - There stood a girl
+classic,choral
+2:07
+Germany
+
+Carl Orff
+Carmina burana
+1988
+18
+The court of love - In my heart
+classic,choral
+2:11
+Germany
+
+Carl Orff
+Carmina burana
+1988
+19
+The court of love - If a boy with a girl
+classic,choral
+0:57
+Germany
+
+Carl Orff
+Carmina burana
+1988
+2
+Fortune: empress of the world - I weep at Fortune's wounds
+classic,choral
+2:42
+Germany
+
+Carl Orff
+Carmina burana
+1988
+20
+The court of love - Come! come! do come
+classic,choral
+1:03
+Germany
+
+Carl Orff
+Carmina burana
+1988
+21
+The court of love - In the doubtful scales of my mind
+classic,choral
+2:15
+Germany
+
+Carl Orff
+Carmina burana
+1988
+22
+The court of love - This is the joyful time
+classic,choral
+2:17
+Germany
+
+Carl Orff
+Carmina burana
+1988
+23
+The court of love - Sweetest! Ah!
+classic,choral
+0:45
+Germany
+
+Carl Orff
+Carmina burana
+1988
+24
+Blanchefleur and Helen - Hail: most beautiful
+classic,choral
+1:44
+Germany
+
+Carl Orff
+Carmina burana
+1988
+25
+Fortune: empress of the world - O Fortune
+classic,choral
+2:38
+Germany
+
+Carl Orff
+Carmina burana
+1988
+3
+Spring - Spring's cheerful face
+classic,instrumental
+4:13
+Germany
+
+Carl Orff
+Carmina burana
+1988
+4
+Spring - The sun rules over all
+classic,choral
+2:08
+Germany
+
+Carl Orff
+Carmina burana
+1988
+5
+Spring - See the pleasant
+classic,choral
+2:42
+Germany
+
+Carl Orff
+Carmina burana
+1988
+6
+On the green - Dance
+classic,instrumental
+1:47
+Germany
+
+Carl Orff
+Carmina burana
+1988
+7
+On the green - The noble wood is in flower
+classic,choral
+3:17
+Germany
+
+Carl Orff
+Carmina burana
+1988
+8
+On the green - Shop-keeper: give me colour
+classic,choral
+3:23
+Germany
+
+Carl Orff
+Carmina burana
+1988
+9
+On the green - Round dance
+classic,choral
+4:57
+Germany
+
+Celine Dion
+Falling into you
+1996
+1
+It's all coming back to me now
+pop
+7:37
+Canada
+
+Celine Dion
+Falling into you
+1996
+10
+I love you
+pop
+5:30
+Canada
+
+Celine Dion
+Falling into you
+1996
+11
+If that's what it takes
+pop
+4:12
+Canada
+
+Celine Dion
+Falling into you
+1996
+12
+I don't know
+pop
+4:38
+Canada
+
+Celine Dion
+Falling into you
+1996
+13
+River deep: mountain high
+pop
+4:10
+Canada
+
+Celine Dion
+Falling into you
+1996
+14
+Your light
+pop
+5:14
+Canada
+
+Celine Dion
+Falling into you
+1996
+15
+Call the man
+pop
+6:08
+Canada
+
+Celine Dion
+Falling into you
+1996
+16
+Fly
+pop
+2:58
+Canada
+
+Celine Dion
+Falling into you
+1996
+2
+Because you loved me
+pop
+4:33
+Canada
+
+Celine Dion
+Falling into you
+1996
+3
+Falling into you
+pop
+4:18
+Canada
+
+Celine Dion
+Falling into you
+1996
+4
+Make you happy
+pop
+4:31
+Canada
+
+Celine Dion
+Falling into you
+1996
+5
+Seduces me
+pop
+3:46
+Canada
+
+Celine Dion
+Falling into you
+1996
+6
+All by myself
+pop
+5:12
+Canada
+
+Celine Dion
+Falling into you
+1996
+7
+Declaration of love
+pop
+4:20
+Canada
+
+Celine Dion
+Falling into you
+1996
+8
+Natural woman
+pop
+3:40
+Canada
+
+Celine Dion
+Falling into you
+1996
+9
+Dreamin' of you
+pop
+5:07
+Canada
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+1
+Tiny's tempo
+jazz
+2:57
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+10
+Lover man
+jazz
+3:21
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+11
+The gypsy
+jazz
+3:03
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+12
+Bepop
+jazz
+2:53
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+13
+This is always
+jazz
+3:13
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+14
+Dark shadows
+jazz
+3:08
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+15
+Bird's nest
+jazz
+2:46
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+16
+Cool blues
+jazz
+3:07
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+17
+Donna Lee
+jazz
+2:35
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+18
+Chasin' the bird
+jazz
+2:46
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+19
+Cheryl
+jazz
+3:01
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+2
+Billie's bounce
+jazz
+3:11
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+20
+Buzzy
+jazz
+2:32
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+21
+Milestones
+jazz
+2:39
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+22
+Little Willie leaps
+jazz
+2:53
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+23
+Half Nelson
+jazz
+2:45
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+24
+Slippin' at Bell's
+jazz
+2:24
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+25
+Dexterity
+jazz
+2:59
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+26
+Bongo bop
+jazz
+2:46
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+27
+Dewey square
+jazz
+3:07
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+28
+The hymn
+jazz
+2:29
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+29
+Bird of paradise
+jazz
+3:12
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+3
+Now's the time
+jazz
+3:18
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+30
+Embraceable you
+jazz
+3:22
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+31
+Scrapple from the Apple
+jazz
+2:57
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+32
+My old flame
+jazz
+3:11
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+33
+Out of nowhere
+jazz
+3:50
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+34
+Don't blame me
+jazz
+2:47
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+35
+Barbados
+jazz
+2:30
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+36
+Au-Leu-Cha
+jazz
+2:56
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+37
+Constellation
+jazz
+2:30
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+38
+Parker's mood
+jazz
+3:05
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+39
+Marmaduke
+jazz
+2:45
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+4
+Thrivin' froma riff
+jazz
+2:57
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+40
+Steeplechase
+jazz
+3:06
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+5
+Meandering
+jazz
+3:19
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+6
+Koko
+jazz
+2:57
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+7
+Moose the Mooche
+jazz
+3:04
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+8
+Ornithology
+jazz
+3:02
+U.S.A.
+
+Charlie Parker with Miles Davis
+The Savoy recordings
+2006
+9
+A night in Tunisia
+jazz
+3:06
+U.S.A.
+
+Clannad
+Lore
+1996
+1
+Croí Cróga
+folk,irish
+5:00
+Ireland
+
+Clannad
+Lore
+1996
+10
+Farewell love
+folk,irish
+4:44
+Ireland
+
+Clannad
+Lore
+1996
+11
+Fonn Mhárta
+folk,irish
+3:33
+Ireland
+
+Clannad
+Lore
+1996
+12
+Theme from Harry's game
+folk,irish,instrumental,score
+2:30
+Ireland
+
+Clannad
+Lore
+1996
+13
+Robin (the hooded man)
+folk,irish,score
+2:50
+Ireland
+
+Clannad
+Lore
+1996
+14
+In a lifetime
+folk,irish
+3:09
+Ireland
+
+Clannad
+Lore
+1996
+15
+I will find you
+folk,irish
+5:17
+Ireland
+
+Clannad
+Lore
+1996
+16
+Something to believe in
+folk,irish
+4:47
+Ireland
+
+Clannad
+Lore
+1996
+17
+New grange
+folk,irish
+4:02
+Ireland
+
+Clannad
+Lore
+1996
+2
+Seanchas
+folk,irish
+4:56
+Ireland
+
+Clannad
+Lore
+1996
+3
+A bridge (that carries us over)
+folk,irish
+4:32
+Ireland
+
+Clannad
+Lore
+1996
+4
+From your heart
+folk,irish
+5:14
+Ireland
+
+Clannad
+Lore
+1996
+5
+Alasdair MacColla
+folk,irish
+2:14
+Ireland
+
+Clannad
+Lore
+1996
+6
+Broken pieces
+folk,irish
+4:53
+Ireland
+
+Clannad
+Lore
+1996
+7
+Tráthnóna Beag Aréir
+folk,irish
+6:38
+Ireland
+
+Clannad
+Lore
+1996
+8
+Trail of tears
+folk,irish
+5:17
+Ireland
+
+Clannad
+Lore
+1996
+9
+Dealramh go deo
+folk,irish
+5:05
+Ireland
+
+Classic Rock
+Tee Pee label sampler
+2011
+1
+Ancestors - Invisible white
+progressive,rock,compilation
+7:21
+U.S.A.
+
+Classic Rock
+Tee Pee label sampler
+2011
+10
+Elks - Destined for the sun
+progressive,rock,compilation
+4:46
+U.S.A.
+
+Classic Rock
+Tee Pee label sampler
+2011
+11
+Naam - Icy row
+progressive,rock,compilation
+7:53
+U.S.A.
+
+Classic Rock
+Tee Pee label sampler
+2011
+12
+Assemble head in sunburst sound - By the ripping green
+progressive,rock,compilation
+5:08
+U.S.A.
+
+Classic Rock
+Tee Pee label sampler
+2011
+13
+Imaad Wasif - Our skulls
+progressive,rock,compilation
+2:46
+U.S.A.
+
+Classic Rock
+Tee Pee label sampler
+2011
+2
+Lecherous gaze - Sold
+progressive,rock,compilation
+3:33
+U.S.A.
+
+Classic Rock
+Tee Pee label sampler
+2011
+3
+Quest for fire - Psychic reasons
+progressive,rock,compilation
+5:56
+U.S.A.
+
+Classic Rock
+Tee Pee label sampler
+2011
+4
+Night horse - Hard to bear
+progressive,rock,compilation
+6:30
+U.S.A.
+
+Classic Rock
+Tee Pee label sampler
+2011
+5
+Jason Simon - Good hope road
+progressive,rock,compilation
+6:40
+U.S.A.
+
+Classic Rock
+Tee Pee label sampler
+2011
+6
+Weird owl - Mountains on top of buried stars
+progressive,rock,compilation
+5:36
+U.S.A.
+
+Classic Rock
+Tee Pee label sampler
+2011
+7
+Mirror queen - From earth below
+progressive,rock,compilation
+4:00
+U.S.A.
+
+Classic Rock
+Tee Pee label sampler
+2011
+8
+The main street gospel - Getting through
+progressive,rock,compilation
+4:21
+U.S.A.
+
+Classic Rock
+Tee Pee label sampler
+2011
+9
+The fucking wrath - Blank slate
+progressive,rock,compilation
+4:53
+U.S.A.
+
+Classic rock
+Prognosis 10
+2010
+1
+Tarja - Anteroom (edit)
+progressive,rock,compilation
+4:10
+Finland
+
+Classic rock
+Prognosis 10
+2010
+10
+The windmill - Don't be afraid
+progressive,rock,compilation
+10:05
+Norway
+
+Classic rock
+Prognosis 10
+2010
+2
+Also Eden - Seeing red
+progressive,rock,compilation
+7:15
+England
+
+Classic rock
+Prognosis 10
+2010
+3
+Touchstone - Zinomorph (live)
+progressive,rock,live,compilation
+7:22
+England
+
+Classic rock
+Prognosis 10
+2010
+4
+Hawkwind - Prometheus
+progressive,rock,space,compilation
+5:48
+England
+
+Classic rock
+Prognosis 10
+2010
+5
+Apocalyptica - At the gates of Manala
+progressive,rock,compilation
+7:04
+Finland
+
+Classic rock
+Prognosis 10
+2010
+6
+Talanas - Diaphora
+progressive,rock,compilation
+4:57
+England
+
+Classic rock
+Prognosis 10
+2010
+7
+Syzygy - Vanitas
+progressive,rock,compilation
+6:01
+U.S.A.
+
+Classic rock
+Prognosis 10
+2010
+8
+Jurojin - The equinox
+progressive,rock,compilation
+4:14
+England
+
+Classic rock
+Prognosis 10
+2010
+9
+Enslaved - Ethica odini
+progressive,metal,heavy,compilation
+8:01
+Norway
+
+Classic rock
+Prognosis 2
+2009
+1
+Dream Theater - A rite of passage
+progressive,rock,metal,compilation
+8:36
+U.S.A.
+
+Classic rock
+Prognosis 2
+2009
+10
+Sine star project - Chinese drag queen
+progressive,rock,compilation
+5:51
+England
+
+Classic rock
+Prognosis 2
+2009
+11
+Aquaplanage - The sands of time
+progressive,rock,compilation
+5:33
+England
+
+Classic rock
+Prognosis 2
+2009
+12
+Gazpacho - Tick tock part III
+progressive,rock,tranquil,compilation
+5:28
+Norway
+
+Classic rock
+Prognosis 2
+2009
+2
+Touchstone - Strange days
+progressive,rock,compilation
+4:05
+England
+
+Classic rock
+Prognosis 2
+2009
+3
+Also Eden - Skimming stones
+progressive,rock,tranquil,compilation
+6:58
+England
+
+Classic rock
+Prognosis 2
+2009
+4
+Astra - The river under
+progressive,rock,compilation
+8:38
+U.S.A.
+
+Classic rock
+Prognosis 2
+2009
+5
+Pictorial wand - Face of our fathers
+progressive,rock,compilation
+5:24
+Norway
+
+Classic rock
+Prognosis 2
+2009
+6
+Agah Bahari - Revolving universe
+progressive,rock,compilation
+3:41
+Iran
+
+Classic rock
+Prognosis 2
+2009
+7
+Haken - Black seed
+progressive,rock
+5:37
+England
+
+Classic rock
+Prognosis 2
+2009
+8
+The treat - Anger management
+progressive,rock
+4:34
+England
+
+Classic rock
+Prognosis 2
+2009
+9
+IQ - Ryker skies
+progressive,rock
+4:25
+England
+
+Classic rock
+The butterfly effect
+2012
+1
+Arjen Lucassen - Lost in the new real
+rock
+10:21
+Netherlands
+
+Classic rock
+The butterfly effect
+2012
+2
+Coralspin - Songs of the sleeping giants
+rock
+7:00
+England
+
+Classic rock
+The butterfly effect
+2012
+3
+Dead see apes - Rückstoß gondoliere
+rock,instrumental
+7:48
+England
+
+Classic rock
+The butterfly effect
+2012
+4
+Freedom to glide - Rain (part 1)
+rock
+4:53
+England
+
+Classic rock
+The butterfly effect
+2012
+5
+Indrek Patte - Mount Meggido
+rock
+8:37
+Estonia
+
+Classic rock
+The butterfly effect
+2012
+6
+Jess & The Ancient Ones - Ghost riders
+rock
+7:13
+Finland
+
+Classic rock
+The butterfly effect
+2012
+7
+Sweet Billy Pilgrim - Archaelogy
+rock
+5:21
+England
+
+Classic rock
+The butterfly effect
+2012
+8
+Ordinary Brainwash - Unbirthday
+rock
+7:38
+Poland
+
+Classic rock
+The butterfly effect
+2012
+9
+Galahad - Seize the day
+rock
+8:34
+England
+
+Codeine
+Frigid stars LP
+1990
+1
+D
+alternative,debut album
+4:27
+U.S.A.
+
+Codeine
+Frigid stars LP
+1990
+10
+Pea
+alternative,debut album
+3:38
+U.S.A.
+
+Codeine
+Frigid stars LP
+1990
+2
+Gravel bed
+alternative,debut album
+3:58
+U.S.A.
+
+Codeine
+Frigid stars LP
+1990
+3
+Pickup song
+alternative,debut album
+2:44
+U.S.A.
+
+Codeine
+Frigid stars LP
+1990
+4
+New year's
+alternative,debut album
+3:34
+U.S.A.
+
+Codeine
+Frigid stars LP
+1990
+5
+Second chance
+alternative,debut album
+4:45
+U.S.A.
+
+Codeine
+Frigid stars LP
+1990
+6
+Cave-in
+alternative,debut album
+3:37
+U.S.A.
+
+Codeine
+Frigid stars LP
+1990
+7
+Cigarette machine
+alternative,debut album
+4:42
+U.S.A.
+
+Codeine
+Frigid stars LP
+1990
+8
+Old things
+alternative,debut album
+4:59
+U.S.A.
+
+Codeine
+Frigid stars LP
+1990
+9
+3 Angels
+alternative,debut album
+4:51
+U.S.A.
+
+Coldplay
+Viva la Vida or Death and All His Friends
+2008
+1
+Life in technicolor
+alternative,rock,pop,instrumental
+2:29
+England
+
+Coldplay
+Viva la Vida or Death and All His Friends
+2008
+10
+Death and all his friends
+alternative,rock,pop
+6:18
+England
+
+Coldplay
+Viva la Vida or Death and All His Friends
+2008
+2
+Cemeteries of London
+alternative,rock,pop
+3:21
+England
+
+Coldplay
+Viva la Vida or Death and All His Friends
+2008
+3
+Lost!
+alternative,rock,pop
+3:55
+England
+
+Coldplay
+Viva la Vida or Death and All His Friends
+2008
+4
+42
+alternative,rock,pop
+3:57
+England
+
+Coldplay
+Viva la Vida or Death and All His Friends
+2008
+5
+Lovers in Japan / Reign of love
+alternative,rock,pop
+6:51
+England
+
+Coldplay
+Viva la Vida or Death and All His Friends
+2008
+6
+Yes
+alternative,rock,pop
+7:06
+England
+
+Coldplay
+Viva la Vida or Death and All His Friends
+2008
+7
+Viva la Vida
+alternative,rock,pop
+4:01
+England
+
+Coldplay
+Viva la Vida or Death and All His Friends
+2008
+8
+Violet hill
+alternative,rock,pop
+3:42
+England
+
+Coldplay
+Viva la Vida or Death and All His Friends
+2008
+9
+Strawberry swing
+alternative,rock,pop
+4:09
+England
+
+Coldplay
+X & Y
+2005
+1
+Square one
+alternative,rock,pop
+4:47
+England
+
+Coldplay
+X & Y
+2005
+10
+The hardest part
+alternative,rock,pop
+4:25
+England
+
+Coldplay
+X & Y
+2005
+11
+Swallowed in the sea
+alternative,rock,pop
+3:58
+England
+
+Coldplay
+X & Y
+2005
+12
+Twisted logic
+alternative,rock,pop
+5:01
+England
+
+Coldplay
+X & Y
+2005
+13
+Kingdom come
+alternative,rock,pop
+4:12
+England
+
+Coldplay
+X & Y
+2005
+2
+What if
+alternative,rock,pop
+4:57
+England
+
+Coldplay
+X & Y
+2005
+3
+White shadows
+alternative,rock,pop
+5:28
+England
+
+Coldplay
+X & Y
+2005
+4
+Fix you
+alternative,rock,pop
+4:54
+England
+
+Coldplay
+X & Y
+2005
+5
+Talk
+alternative,rock,pop
+5:11
+England
+
+Coldplay
+X & Y
+2005
+6
+X & Y
+alternative,rock,pop
+4:34
+England
+
+Coldplay
+X & Y
+2005
+7
+Speed of sound
+alternative,rock,pop
+4:48
+England
+
+Coldplay
+X & Y
+2005
+8
+A message
+alternative,rock,pop
+4:45
+England
+
+Coldplay
+X & Y
+2005
+9
+Low
+alternative,rock,pop
+5:32
+England
+
+Cran
+Black black black
+1998
+1
+Abbey reel - The West Clare reel
+folk,irish,instrumental
+2:53
+Ireland
+
+Cran
+Black black black
+1998
+10
+Seacht suailci na maighdine muire
+folk,irish
+5:04
+Ireland
+
+Cran
+Black black black
+1998
+11
+The humours of Ballyloughlin - Liz Kelly's delight - The Kerry jig - Hardiman the fiddler
+folk,irish,instrumental
+4:39
+Ireland
+
+Cran
+Black black black
+1998
+2
+Staimpi
+folk,irish
+3:28
+Ireland
+
+Cran
+Black black black
+1998
+3
+Farewell to Nigg
+folk,irish,instrumental
+5:04
+Ireland
+
+Cran
+Black black black
+1998
+4
+The Dunmore lasses - the Dublin reel
+folk,irish,instrumental
+2:42
+Ireland
+
+Cran
+Black black black
+1998
+5
+Coleraine town
+folk,irish
+3:47
+Ireland
+
+Cran
+Black black black
+1998
+6
+Brendan Tonra's jig - the banks of lough Gowna
+folk,irish,instrumental
+4:05
+Ireland
+
+Cran
+Black black black
+1998
+7
+Black black black is the colour of my true love's hair
+folk,irish,instrumental
+4:05
+Ireland
+
+Cran
+Black black black
+1998
+8
+Willie Taylor
+folk,irish,vocal
+3:47
+Ireland
+
+Cran
+Black black black
+1998
+9
+The return from Fingal - Cathal McConnell's slip jig - Tom Busby's jig
+folk,irish,instrumental
+6:08
+Ireland
+
+Curve
+Come clean
+1997
+1
+Chinese burn
+electronica,alternative,rock
+4:51
+England
+
+Curve
+Come clean
+1997
+10
+Cotton candy
+electronica,alternative,rock
+5:32
+England
+
+Curve
+Come clean
+1997
+11
+Beyond reach
+electronica,alternative,rock
+4:55
+England
+
+Curve
+Come clean
+1997
+12
+Come clean
+electronica,alternative,rock
+2:16
+England
+
+Curve
+Come clean
+1997
+13
+Recovery
+electronica,alternative,rock
+4:48
+England
+
+Curve
+Come clean
+1997
+2
+Coming up roses
+electronica,alternative,rock
+4:31
+England
+
+Curve
+Come clean
+1997
+3
+Something familiar
+electronica,alternative,rock
+4:08
+England
+
+Curve
+Come clean
+1997
+4
+Dog bone
+electronica,alternative,rock
+3:13
+England
+
+Curve
+Come clean
+1997
+5
+Alligators getting up
+electronica,alternative,rock
+4:36
+England
+
+Curve
+Come clean
+1997
+6
+Dirty high
+electronica,alternative,rock
+5:22
+England
+
+Curve
+Come clean
+1997
+7
+Killer baby
+electronica,alternative,rock
+3:55
+England
+
+Curve
+Come clean
+1997
+8
+Sweetback
+electronica,alternative,rock
+4:31
+England
+
+Curve
+Come clean
+1997
+9
+Forgotten sanity
+electronica,alternative,rock
+4:32
+England
+
+Curve
+Gift
+2001
+1
+Hell above water
+electronica,alternative,rock
+4:04
+England
+
+Curve
+Gift
+2001
+10
+Bleeding heart
+electronica,alternative,rock
+4:10
+England
+
+Curve
+Gift
+2001
+2
+Gift
+electronica,alternative,rock
+4:26
+England
+
+Curve
+Gift
+2001
+3
+Want more, need less
+electronica,alternative,rock
+4:35
+England
+
+Curve
+Gift
+2001
+4
+Perish
+electronica,alternative,rock
+5:16
+England
+
+Curve
+Gift
+2001
+5
+Hung up
+electronica,alternative,rock
+5:55
+England
+
+Curve
+Gift
+2001
+6
+Chainmail
+electronica,alternative,rock
+5:11
+England
+
+Curve
+Gift
+2001
+7
+Fly with the high
+electronica,alternative,rock
+3:33
+England
+
+Curve
+Gift
+2001
+8
+My tiled white floor
+electronica,alternative,rock
+5:16
+England
+
+Curve
+Gift
+2001
+9
+Polaroid
+electronica,alternative,rock
+4:01
+England
+
+Daryll-Ann
+Trailer Tales
+2002
+1
+A piece of work (I'm trying her)
+alternative,pop
+4:03
+Netherlands
+
+Daryll-Ann
+Trailer Tales
+2002
+10
+Rosemary girl
+alternative,pop
+3:25
+Netherlands
+
+Daryll-Ann
+Trailer Tales
+2002
+11
+Her manic frame
+alternative,pop
+4:03
+Netherlands
+
+Daryll-Ann
+Trailer Tales
+2002
+12
+Trailer tales
+alternative,pop
+1:54
+Netherlands
+
+Daryll-Ann
+Trailer Tales
+2002
+2
+It's only love
+alternative,pop
+3:14
+Netherlands
+
+Daryll-Ann
+Trailer Tales
+2002
+3
+Serenades for the lonely
+alternative,pop
+3:16
+Netherlands
+
+Daryll-Ann
+Trailer Tales
+2002
+4
+Equally sympathy
+alternative,pop
+4:30
+Netherlands
+
+Daryll-Ann
+Trailer Tales
+2002
+5
+Pines and grenadine
+alternative,pop
+3:02
+Netherlands
+
+Daryll-Ann
+Trailer Tales
+2002
+6
+Marching
+alternative,pop
+2:42
+Netherlands
+
+Daryll-Ann
+Trailer Tales
+2002
+7
+Swords and words
+alternative,pop
+4:15
+Netherlands
+
+Daryll-Ann
+Trailer Tales
+2002
+8
+Old school
+alternative,pop
+2:37
+Netherlands
+
+Daryll-Ann
+Trailer Tales
+2002
+9
+Borderland
+alternative,pop
+3:36
+Netherlands
+
+David Gilmour
+On an island
+2006
+1
+Castellorizon
+guitar,rock,instrumental,guitar hero
+3:54
+England
+
+David Gilmour
+On an island
+2006
+10
+Where we start
+guitar,rock,guitar hero
+6:45
+England
+
+David Gilmour
+On an island
+2006
+2
+On an island
+guitar,rock,guitar hero
+6:47
+England
+
+David Gilmour
+On an island
+2006
+3
+The blue
+guitar,rock,guitar hero
+5:26
+England
+
+David Gilmour
+On an island
+2006
+4
+Take a breath
+guitar,rock,guitar hero
+5:45
+England
+
+David Gilmour
+On an island
+2006
+5
+Red sky at night
+instrumental,guitar hero
+2:51
+England
+
+David Gilmour
+On an island
+2006
+6
+This heaven
+guitar,rock,guitar hero
+4:24
+England
+
+David Gilmour
+On an island
+2006
+7
+Then I close my eyes
+guitar,rock,instrumental,guitar hero
+5:27
+England
+
+David Gilmour
+On an island
+2006
+8
+Smile
+guitar,rock,guitar hero
+4:03
+England
+
+David Gilmour
+On an island
+2006
+9
+A pocketfull of stones
+guitar,rock,guitar hero
+6:17
+England
+
+David Sylvian
+Dead beas on a cake
+1999
+1
+I surrender
+alternative,rock
+9:24
+England
+
+David Sylvian
+Dead beas on a cake
+1999
+10
+Pollen path
+alternative,rock
+3:25
+England
+
+David Sylvian
+Dead beas on a cake
+1999
+11
+All of my mother's names
+alternative,rock
+6:11
+England
+
+David Sylvian
+Dead beas on a cake
+1999
+12
+Wanderlust
+alternative,rock
+6:43
+England
+
+David Sylvian
+Dead beas on a cake
+1999
+13
+Praise
+alternative,rock,boring
+4:02
+England
+
+David Sylvian
+Dead beas on a cake
+1999
+14
+Darkest dreaming
+alternative,rock
+4:01
+England
+
+David Sylvian
+Dead beas on a cake
+1999
+2
+Dobro #1
+alternative,rock
+1:30
+England
+
+David Sylvian
+Dead beas on a cake
+1999
+3
+Midnight sun
+alternative,rock
+4:00
+England
+
+David Sylvian
+Dead beas on a cake
+1999
+4
+Thalhiem
+alternative,rock
+6:07
+England
+
+David Sylvian
+Dead beas on a cake
+1999
+5
+God man
+alternative,rock
+4:02
+England
+
+David Sylvian
+Dead beas on a cake
+1999
+6
+Alphabet angel
+alternative,rock
+2:06
+England
+
+David Sylvian
+Dead beas on a cake
+1999
+7
+Krishna blue
+alternative,rock
+8:08
+England
+
+David Sylvian
+Dead beas on a cake
+1999
+8
+The shining of things
+alternative,rock
+3:09
+England
+
+David Sylvian
+Dead beas on a cake
+1999
+9
+Cafe Europa
+alternative,rock
+6:58
+England
+
+David Sylvian
+Secrets of the beehive
+1987
+1
+September
+alternative,pop,tranquil
+1:18
+England
+
+David Sylvian
+Secrets of the beehive
+1987
+10
+Forbidden colours
+alternative,pop,tranquil
+5:59
+England
+
+David Sylvian
+Secrets of the beehive
+1987
+2
+The boy with the gun
+alternative,pop
+5:19
+England
+
+David Sylvian
+Secrets of the beehive
+1987
+3
+Maria
+alternative,pop,tranquil
+2:50
+England
+
+David Sylvian
+Secrets of the beehive
+1987
+4
+Orpheus
+alternative,pop,tranquil
+4:51
+England
+
+David Sylvian
+Secrets of the beehive
+1987
+5
+The devil's own
+alternative,pop,tranquil
+3:12
+England
+
+David Sylvian
+Secrets of the beehive
+1987
+6
+When poets dreamed of angels
+alternative,pop,tranquil
+4:48
+England
+
+David Sylvian
+Secrets of the beehive
+1987
+7
+Mother and child
+alternative,pop,tranquil
+3:15
+England
+
+David Sylvian
+Secrets of the beehive
+1987
+8
+Let the happiness in
+alternative,pop,tranquil
+5:37
+England
+
+David Sylvian
+Secrets of the beehive
+1987
+9
+Waterfront
+alternative,pop,tranquil
+3:23
+England
+
+David Sylvian and Robert Fripp
+The first day
+1993
+1
+God's monkey
+alternative,rock
+5:01
+England
+
+David Sylvian and Robert Fripp
+The first day
+1993
+2
+Jean the birdman
+alternative,rock
+4:10
+England
+
+David Sylvian and Robert Fripp
+The first day
+1993
+3
+Firepower
+alternative,rock
+10:28
+England
+
+David Sylvian and Robert Fripp
+The first day
+1993
+4
+Brightness falls
+alternative,rock
+6:07
+England
+
+David Sylvian and Robert Fripp
+The first day
+1993
+5
+20th century dreaming (A shaman's song)
+alternative,rock,soundscape
+11:53
+England
+
+David Sylvian and Robert Fripp
+The first day
+1993
+6
+Darshan (The road to graceland)
+alternative,rock,soundscape
+17:19
+England
+
+David Sylvian and Robert Fripp
+The first day
+1993
+7
+Bringing down the light
+alternative,rock,instrumental,tranquil,soundscape
+8:31
+England
+
+De Staat
+I_CON
+2013
+1
+My bad
+alternative,rock
+0:08
+Netherlands
+
+De Staat
+I_CON
+2013
+10
+I'll take you
+alternative,rock
+4:30
+Netherlands
+
+De Staat
+I_CON
+2013
+11
+Down town
+alternative,rock
+3:08
+Netherlands
+
+De Staat
+I_CON
+2013
+12
+Wonderer
+alternative,rock
+4:00
+Netherlands
+
+De Staat
+I_CON
+2013
+13
+The inevitable end
+alternative,rock
+5:23
+Netherlands
+
+De Staat
+I_CON
+2013
+2
+All is dull
+alternative,rock
+3:04
+Netherlands
+
+De Staat
+I_CON
+2013
+3
+Build that, buy that
+alternative,rock
+3:11
+Netherlands
+
+De Staat
+I_CON
+2013
+4
+Devil's blood
+alternative,rock
+4:21
+Netherlands
+
+De Staat
+I_CON
+2013
+5
+Witch doctor
+alternative,rock
+3:27
+Netherlands
+
+De Staat
+I_CON
+2013
+6
+Get it together
+alternative,rock
+3:15
+Netherlands
+
+De Staat
+I_CON
+2013
+7
+Refugee
+alternative,rock
+3:56
+Netherlands
+
+De Staat
+I_CON
+2013
+8
+Make way for the passenger
+alternative,rock
+4:50
+Netherlands
+
+De Staat
+I_CON
+2013
+9
+Input source select
+alternative,rock
+4:03
+Netherlands
+
+Dead can dance
+Anastasis
+2012
+1
+Children of the sun
+folk,mystical
+7:37
+Australia
+
+Dead can dance
+Anastasis
+2012
+2
+Anabasis
+folk,mystical
+6:52
+Australia
+
+Dead can dance
+Anastasis
+2012
+3
+Agape
+folk,mystical
+6:55
+Australia
+
+Dead can dance
+Anastasis
+2012
+4
+Amnesia
+folk,mystical
+6:38
+Australia
+
+Dead can dance
+Anastasis
+2012
+5
+Kiko
+folk,mystical
+8:02
+Australia
+
+Dead can dance
+Anastasis
+2012
+6
+Opium
+folk,mystical
+5:47
+Australia
+
+Dead can dance
+Anastasis
+2012
+7
+Return of the she-king
+folk,mystical
+7:52
+Australia
+
+Dead can dance
+Anastasis
+2012
+8
+All in good time
+folk,mystical
+6:40
+Australia
+
+Deep Purple
+The platinum collection
+2005
+1
+Hush
+hard rock
+4:26
+England
+
+Deep Purple
+The platinum collection
+2005
+10
+Black night
+hard rock
+3:27
+England
+
+Deep Purple
+The platinum collection
+2005
+11
+Speed king
+hard rock
+5:51
+England
+
+Deep Purple
+The platinum collection
+2005
+12
+Flight of the rat
+hard rock
+7:53
+England
+
+Deep Purple
+The platinum collection
+2005
+13
+Child in time
+hard rock
+10:18
+England
+
+Deep Purple
+The platinum collection
+2005
+14
+Fireball
+hard rock
+3:24
+England
+
+Deep Purple
+The platinum collection
+2005
+15
+Strange kind of woman
+hard rock
+3:51
+England
+
+Deep Purple
+The platinum collection
+2005
+16
+Demon's eye
+hard rock
+5:20
+England
+
+Deep Purple
+The platinum collection
+2005
+17
+No one came (1996 remix)
+hard rock
+6:24
+England
+
+Deep Purple
+The platinum collection
+2005
+18
+Highway star (1997 remix)
+hard rock
+6:29
+England
+
+Deep Purple
+The platinum collection
+2005
+19
+Smoke on the water
+hard rock
+5:41
+England
+
+Deep Purple
+The platinum collection
+2005
+2
+Mandrake root
+hard rock
+6:11
+England
+
+Deep Purple
+The platinum collection
+2005
+20
+When a blind man cries (1997 remix)
+rock,ballad,blues
+3:31
+England
+
+Deep Purple
+The platinum collection
+2005
+21
+Space truckin' (1997 remix)
+hard rock
+4:56
+England
+
+Deep Purple
+The platinum collection
+2005
+22
+Lazy (live)
+hard rock,live
+10:33
+England
+
+Deep Purple
+The platinum collection
+2005
+23
+Never before (live)
+hard rock,live
+3:57
+England
+
+Deep Purple
+The platinum collection
+2005
+24
+Woman from Tokyo
+hard rock
+5:49
+England
+
+Deep Purple
+The platinum collection
+2005
+25
+Smooth dancer
+hard rock
+4:09
+England
+
+Deep Purple
+The platinum collection
+2005
+26
+Mary Long
+hard rock
+4:24
+England
+
+Deep Purple
+The platinum collection
+2005
+27
+Burn [single edit]
+hard rock
+4:31
+England
+
+Deep Purple
+The platinum collection
+2005
+28
+Might just take your life
+hard rock
+4:39
+England
+
+Deep Purple
+The platinum collection
+2005
+29
+Coronarias Redig
+hard rock
+4:54
+England
+
+Deep Purple
+The platinum collection
+2005
+3
+Hey Joe
+rock
+7:28
+England
+
+Deep Purple
+The platinum collection
+2005
+30
+Stormbringer
+hard rock
+4:05
+England
+
+Deep Purple
+The platinum collection
+2005
+31
+Hold on
+hard rock
+5:05
+England
+
+Deep Purple
+The platinum collection
+2005
+32
+Soldier of fortune
+hard rock
+3:14
+England
+
+Deep Purple
+The platinum collection
+2005
+33
+Mistreated (live)
+hard rock,live
+11:35
+England
+
+Deep Purple
+The platinum collection
+2005
+34
+You keep on moving
+hard rock
+5:18
+England
+
+Deep Purple
+The platinum collection
+2005
+35
+Love child
+hard rock
+3:05
+England
+
+Deep Purple
+The platinum collection
+2005
+36
+Drifter
+hard rock
+4:00
+England
+
+Deep Purple
+The platinum collection
+2005
+37
+Perfect strangers (live)
+hard rock,live
+6:23
+England
+
+Deep Purple
+The platinum collection
+2005
+38
+Ted the mechanic (live)
+hard rock,live
+4:33
+England
+
+Deep Purple
+The platinum collection
+2005
+39
+Any fule kno that
+hard rock
+4:28
+England
+
+Deep Purple
+The platinum collection
+2005
+4
+Kentucky woman
+rock
+4:42
+England
+
+Deep Purple
+The platinum collection
+2005
+40
+Bludsucker
+hard rock
+4:28
+England
+
+Deep Purple
+The platinum collection
+2005
+41
+Sun goes down
+hard rock
+4:13
+England
+
+Deep Purple
+The platinum collection
+2005
+5
+Wring that neck
+hard rock
+5:12
+England
+
+Deep Purple
+The platinum collection
+2005
+6
+Shield
+rock
+6:03
+England
+
+Deep Purple
+The platinum collection
+2005
+7
+The bird has flown
+hard rock
+2:53
+England
+
+Deep Purple
+The platinum collection
+2005
+8
+Emmaretta
+rock
+3:08
+England
+
+Deep Purple
+The platinum collection
+2005
+9
+Hallelujah
+rock,gospel
+3:41
+England
+
+Dido
+Life for rent
+2003
+1
+White flag
+pop
+4:01
+England
+
+Dido
+Life for rent
+2003
+10
+This land is mine
+pop
+3:46
+England
+
+Dido
+Life for rent
+2003
+11
+See the sun
+pop
+10:35
+England
+
+Dido
+Life for rent
+2003
+2
+Stoned
+pop
+5:55
+England
+
+Dido
+Life for rent
+2003
+3
+Life for rent
+pop
+3:41
+England
+
+Dido
+Life for rent
+2003
+4
+Mary's in India
+pop
+3:41
+England
+
+Dido
+Life for rent
+2003
+5
+See you when you're 40
+pop
+5:20
+England
+
+Dido
+Life for rent
+2003
+6
+Don't leave home
+pop
+3:46
+England
+
+Dido
+Life for rent
+2003
+7
+Who makes you feel
+pop
+4:20
+England
+
+Dido
+Life for rent
+2003
+8
+Sand in my shoes
+pop
+4:59
+England
+
+Dido
+Life for rent
+2003
+9
+Do you have a little time
+pop
+3:55
+England
+
+Dirty three
+Horse stories
+1996
+1
+1000 Miles
+folk,experimental,instrumental
+4:40
+Australia
+
+Dirty three
+Horse stories
+1996
+2
+Sue's last ride
+folk,experimental,instrumental
+7:22
+Australia
+
+Dirty three
+Horse stories
+1996
+3
+Hope
+folk,experimental,instrumental
+4:53
+Australia
+
+Dirty three
+Horse stories
+1996
+4
+I remember a time when once you used to love me
+folk,experimental,instrumental
+6:12
+Australia
+
+Dirty three
+Horse stories
+1996
+5
+At the bar
+folk,experimental,instrumental
+6:39
+Australia
+
+Dirty three
+Horse stories
+1996
+6
+Red
+folk,experimental,instrumental
+3:54
+Australia
+
+Dirty three
+Horse stories
+1996
+7
+Warren's lament
+folk,experimental,instrumental
+8:44
+Australia
+
+Dirty three
+Horse stories
+1996
+8
+Horse
+folk,experimental,instrumental
+5:39
+Australia
+
+Dirty three
+Horse stories
+1996
+9
+I knew it would come to this
+folk,experimental,instrumental
+8:38
+Australia
+
+Diverse artiesten
+Made in Holland
+2005
+1
+Venus (Krezip)
+rock,cover,compilation
+3:20
+Netherlands
+
+Diverse artiesten
+Made in Holland
+2005
+10
+Welterusten, meneer de president (De Dijk)
+rock,cover,compilation
+3:17
+Netherlands
+
+Diverse artiesten
+Made in Holland
+2005
+11
+De bestemming (Marco Borsato remix) (Ferry Corsten)
+rock,cover,compilation
+5:23
+Netherlands
+
+Diverse artiesten
+Made in Holland
+2005
+2
+15 Miljoen mensen (Guus Meeuwis)
+pop,cover,compilation
+4:34
+Netherlands
+
+Diverse artiesten
+Made in Holland
+2005
+3
+Zing, vecht, huil, bid, lach, werk en bewonder (Blof)
+rock,cover,compilation
+4:16
+Netherlands
+
+Diverse artiesten
+Made in Holland
+2005
+4
+De kleur van je hart (Zwart Wit 2005) (Brainpower)
+pop,cover,compilation
+4:35
+Netherlands
+
+Diverse artiesten
+Made in Holland
+2005
+5
+Am I losing you forever? (Trijntje Oosterhuis)
+pop,cover,compilation
+6:04
+Netherlands
+
+Diverse artiesten
+Made in Holland
+2005
+6
+Iedereen is van de wereld (Di-Rect)
+pop,cover,compilation
+3:44
+Netherlands
+
+Diverse artiesten
+Made in Holland
+2005
+7
+Het werd zomer (Jan Smit)
+pop,cover,compilation
+4:07
+Netherlands
+
+Diverse artiesten
+Made in Holland
+2005
+8
+Wat zullen we drinken? (7 dagen lang) (Ali B.)
+pop,cover,compilation
+4:21
+Netherlands
+
+Diverse artiesten
+Made in Holland
+2005
+9
+De glimlach van een kind (Acda en de Munnik)
+pop,cover,compilation
+4:32
+Netherlands
+
+Don Airey
+K2 (Tales of Triumph and Tragedy)
+1988
+1
+Overture
+rock,spoken,instrumental
+3:14
+England
+
+Don Airey
+K2 (Tales of Triumph and Tragedy)
+1988
+10
+Close to the sky
+rock,instrumental
+1:24
+England
+
+Don Airey
+K2 (Tales of Triumph and Tragedy)
+1988
+11
+Blues for J.T.
+instrumental,tranquil
+0:45
+England
+
+Don Airey
+K2 (Tales of Triumph and Tragedy)
+1988
+12
+Julie (if you leave me)
+rock
+4:17
+England
+
+Don Airey
+K2 (Tales of Triumph and Tragedy)
+1988
+13
+Death zone/whiteout
+rock
+7:58
+England
+
+Don Airey
+K2 (Tales of Triumph and Tragedy)
+1988
+14
+Song for Al (Reprise)
+rock
+5:06
+England
+
+Don Airey
+K2 (Tales of Triumph and Tragedy)
+1988
+2
+Sea of dreams (Part I)
+rock
+3:13
+England
+
+Don Airey
+K2 (Tales of Triumph and Tragedy)
+1988
+3
+Sea of dreams (Part II)
+rock
+3:49
+England
+
+Don Airey
+K2 (Tales of Triumph and Tragedy)
+1988
+4
+Voice of the mountain
+rock,instrumental
+1:29
+England
+
+Don Airey
+K2 (Tales of Triumph and Tragedy)
+1988
+5
+Song for Al (instrumental)
+rock,instrumental,ballad
+4:10
+England
+
+Don Airey
+K2 (Tales of Triumph and Tragedy)
+1988
+6
+Bali Lament
+rock
+1:19
+England
+
+Don Airey
+K2 (Tales of Triumph and Tragedy)
+1988
+7
+Ascent to camp 4
+rock,instrumental
+3:22
+England
+
+Don Airey
+K2 (Tales of Triumph and Tragedy)
+1988
+8
+Can't make up your mind
+rock
+4:20
+England
+
+Don Airey
+K2 (Tales of Triumph and Tragedy)
+1988
+9
+Summit fever
+rock
+1:20
+England
+
+Doves
+Some cities
+2005
+1
+Some cities
+alternative,pop
+3:22
+England
+
+Doves
+Some cities
+2005
+10
+Sky starts falling
+alternative,pop
+4:11
+England
+
+Doves
+Some cities
+2005
+11
+Ambition
+alternative,pop
+4:02
+England
+
+Doves
+Some cities
+2005
+2
+Black and white town
+alternative,pop
+4:15
+England
+
+Doves
+Some cities
+2005
+3
+Almost forgot myself
+alternative,pop
+4:42
+England
+
+Doves
+Some cities
+2005
+4
+Snowden
+alternative,pop
+4:12
+England
+
+Doves
+Some cities
+2005
+5
+The storm
+alternative,pop
+4:52
+England
+
+Doves
+Some cities
+2005
+6
+Walk in fire
+alternative,pop
+5:34
+England
+
+Doves
+Some cities
+2005
+7
+One of these days
+alternative,pop
+4:50
+England
+
+Doves
+Some cities
+2005
+8
+Someday soon
+alternative,pop
+4:08
+England
+
+Doves
+Some cities
+2005
+9
+Shadows of Salford
+alternative,pop
+2:44
+England
+
+Doves
+The last broadcast
+2002
+1
+Intro
+alternative,pop,instrumental
+1:17
+England
+
+Doves
+The last broadcast
+2002
+10
+Last broadcast
+alternative,pop
+3:22
+England
+
+Doves
+The last broadcast
+2002
+11
+The sulphur man
+alternative,pop
+4:37
+England
+
+Doves
+The last broadcast
+2002
+12
+Caught by the river
+alternative,pop
+5:55
+England
+
+Doves
+The last broadcast
+2002
+2
+Words
+alternative,pop
+5:42
+England
+
+Doves
+The last broadcast
+2002
+3
+There goes the fear
+alternative,pop
+6:54
+England
+
+Doves
+The last broadcast
+2002
+4
+M62 song
+alternative,pop
+3:48
+England
+
+Doves
+The last broadcast
+2002
+5
+Where we're calling from
+alternative,pop,instrumental
+1:24
+England
+
+Doves
+The last broadcast
+2002
+6
+N.Y.
+alternative,pop
+5:46
+England
+
+Doves
+The last broadcast
+2002
+7
+Satellites
+alternative,pop
+6:50
+England
+
+Doves
+The last broadcast
+2002
+8
+Friday's dust
+alternative,pop,tranquil
+3:35
+England
+
+Doves
+The last broadcast
+2002
+9
+Pounding
+alternative,pop
+4:45
+England
+
+Down
+Over the under
+2007
+1
+Three Suns And One Star
+heavy metal
+5:41
+U.S.A.
+
+Down
+Over the under
+2007
+10
+Pillamyd
+heavy metal
+5:14
+U.S.A.
+
+Down
+Over the under
+2007
+11
+In the thrall of it all
+heavy metal
+6:20
+U.S.A.
+
+Down
+Over the under
+2007
+12
+Nothing in return (walk away)
+heavy metal
+8:56
+U.S.A.
+
+Down
+Over the under
+2007
+13
+Invest in fear
+heavy metal
+5:20
+U.S.A.
+
+Down
+Over the under
+2007
+2
+The Path
+heavy metal
+4:09
+U.S.A.
+
+Down
+Over the under
+2007
+3
+N.O.D.
+heavy metal
+4:00
+U.S.A.
+
+Down
+Over the under
+2007
+4
+I scream
+heavy metal
+3:48
+U.S.A.
+
+Down
+Over the under
+2007
+5
+On march the saints
+heavy metal
+4:10
+U.S.A.
+
+Down
+Over the under
+2007
+6
+Never try
+heavy metal
+4:55
+U.S.A.
+
+Down
+Over the under
+2007
+7
+Mourn
+heavy metal
+4:43
+U.S.A.
+
+Down
+Over the under
+2007
+8
+Beneath the tides
+heavy metal
+5:31
+U.S.A.
+
+Down
+Over the under
+2007
+9
+His majesty the desert
+heavy metal
+2:25
+U.S.A.
+
+Dream Theater
+A change of seasons
+1995
+1
+A change of seasons
+progressive,metal
+23:06
+U.S.A.
+
+Dream Theater
+A change of seasons
+1995
+2
+Funeral for a friend/love lies bleeding
+progressive,metal,cover
+10:49
+U.S.A.
+
+Dream Theater
+A change of seasons
+1995
+3
+Perfect strangers
+progressive,metal,cover
+5:33
+U.S.A.
+
+Dream Theater
+A change of seasons
+1995
+4
+The rover/Achilles last stand/The song remains the same
+progressive,metal,cover
+7:28
+U.S.A.
+
+Dream Theater
+A change of seasons
+1995
+5
+The big medley
+progressive,metal,cover
+10:34
+U.S.A.
+
+Dream Theater
+A dramatic turn of events
+2011
+1
+On the backs of angels
+progressive,metal
+8:42
+U.S.A.
+
+Dream Theater
+A dramatic turn of events
+2011
+2
+Build me up, break me down
+progressive,metal
+6:59
+U.S.A.
+
+Dream Theater
+A dramatic turn of events
+2011
+3
+Lost not forgotten
+progressive,metal
+10:11
+U.S.A.
+
+Dream Theater
+A dramatic turn of events
+2011
+4
+This is the life
+progressive,metal
+6:57
+U.S.A.
+
+Dream Theater
+A dramatic turn of events
+2011
+5
+Bridges in the sky
+progressive,metal
+11:01
+U.S.A.
+
+Dream Theater
+A dramatic turn of events
+2011
+6
+Outcry
+progressive,metal
+11:24
+U.S.A.
+
+Dream Theater
+A dramatic turn of events
+2011
+7
+Far from heaven
+progressive,metal,tranquil
+3:56
+U.S.A.
+
+Dream Theater
+A dramatic turn of events
+2011
+8
+Breaking all illusions
+progressive,metal
+12:25
+U.S.A.
+
+Dream Theater
+A dramatic turn of events
+2011
+9
+Beneath the surface
+progressive,metal
+5:26
+U.S.A.
+
+Dream Theater
+Awake
+1994
+1
+6:00
+progressive,metal
+5:31
+U.S.A.
+
+Dream Theater
+Awake
+1994
+10
+Scarred
+progressive,metal
+11:00
+U.S.A.
+
+Dream Theater
+Awake
+1994
+11
+Space-dye vest
+progressive,metal
+7:29
+U.S.A.
+
+Dream Theater
+Awake
+1994
+2
+Caught in a web
+progressive,metal
+5:28
+U.S.A.
+
+Dream Theater
+Awake
+1994
+3
+Innocence faded
+progressive,metal
+5:43
+U.S.A.
+
+Dream Theater
+Awake
+1994
+4
+Erotomania
+progressive,metal,instrumental
+6:45
+U.S.A.
+
+Dream Theater
+Awake
+1994
+5
+Voices
+progressive,metal
+9:53
+U.S.A.
+
+Dream Theater
+Awake
+1994
+6
+The silent man
+progressive,metal
+3:48
+U.S.A.
+
+Dream Theater
+Awake
+1994
+7
+The mirror
+progressive,metal
+6:45
+U.S.A.
+
+Dream Theater
+Awake
+1994
+8
+Lie
+progressive,metal
+6:34
+U.S.A.
+
+Dream Theater
+Awake
+1994
+9
+Lifting shadows off a dream
+progressive,metal
+6:05
+U.S.A.
+
+Dream Theater
+Black clouds & silver linings
+2009
+1
+A nightmare to remember
+progressive,metal
+16:10
+U.S.A.
+
+Dream Theater
+Black clouds & silver linings
+2009
+2
+A rite of passage
+progressive,metal
+8:35
+U.S.A.
+
+Dream Theater
+Black clouds & silver linings
+2009
+3
+Wither
+progressive,metal,ballad,tranquil
+5:25
+U.S.A.
+
+Dream Theater
+Black clouds & silver linings
+2009
+4
+The shattered fortress
+progressive,metal
+12:49
+U.S.A.
+
+Dream Theater
+Black clouds & silver linings
+2009
+5
+The best of times
+progressive,metal
+13:07
+U.S.A.
+
+Dream Theater
+Black clouds & silver linings
+2009
+6
+The count of Tuscany
+progressive,metal
+19:16
+U.S.A.
+
+Dream Theater
+Black clouds & silver linings (bonus disc 1)
+2009
+1
+Stargazer
+progressive,metal,cover
+8:10
+U.S.A.
+
+Dream Theater
+Black clouds & silver linings (bonus disc 1)
+2009
+2
+Tenement funster / flick of the wrist / lily of the valley
+progressive,metal,cover
+8:17
+U.S.A.
+
+Dream Theater
+Black clouds & silver linings (bonus disc 1)
+2009
+3
+Odyssey
+progressive,metal,cover
+7:59
+U.S.A.
+
+Dream Theater
+Black clouds & silver linings (bonus disc 1)
+2009
+4
+Take your fingers from my hair
+progressive,metal,cover
+8:18
+U.S.A.
+
+Dream Theater
+Black clouds & silver linings (bonus disc 1)
+2009
+5
+Larks tongues in aspic pt. 2
+progressive,metal,cover
+6:30
+U.S.A.
+
+Dream Theater
+Black clouds & silver linings (bonus disc 1)
+2009
+6
+To tame a land
+progressive,metal,cover
+7:15
+U.S.A.
+
+Dream Theater
+Black clouds & silver linings (bonus disc 2)
+2009
+1
+A nightmare to remember
+progressive,metal,instrumental
+15:39
+U.S.A.
+
+Dream Theater
+Black clouds & silver linings (bonus disc 2)
+2009
+2
+A rite of passage
+progressive,metal,instrumental
+8:36
+U.S.A.
+
+Dream Theater
+Black clouds & silver linings (bonus disc 2)
+2009
+3
+Wither
+progressive,metal,instrumental
+5:28
+U.S.A.
+
+Dream Theater
+Black clouds & silver linings (bonus disc 2)
+2009
+4
+The shattered fortress
+progressive,metal,instrumental
+12:47
+U.S.A.
+
+Dream Theater
+Black clouds & silver linings (bonus disc 2)
+2009
+5
+The best of times
+progressive,metal,instrumental
+13:20
+U.S.A.
+
+Dream Theater
+Black clouds & silver linings (bonus disc 2)
+2009
+6
+The count of Tuscany
+progressive,metal,instrumental
+18:47
+U.S.A.
+
+Dream Theater
+Dream Theater
+2013
+1
+False awakening suite
+progressive,metal,instrumental
+2:42
+U.S.A.
+
+Dream Theater
+Dream Theater
+2013
+2
+The enemy inside
+progressive,metal
+6:17
+U.S.A.
+
+Dream Theater
+Dream Theater
+2013
+3
+The looking glass
+progressive,metal
+4:53
+U.S.A.
+
+Dream Theater
+Dream Theater
+2013
+4
+Enigma machine
+progressive,metal,instrumental
+6:01
+U.S.A.
+
+Dream Theater
+Dream Theater
+2013
+5
+The bigger picture
+progressive,metal
+7:40
+U.S.A.
+
+Dream Theater
+Dream Theater
+2013
+6
+Behind the veil
+progressive,metal
+6:52
+U.S.A.
+
+Dream Theater
+Dream Theater
+2013
+7
+Surrender to reason
+progressive,metal
+6:34
+U.S.A.
+
+Dream Theater
+Dream Theater
+2013
+8
+Along for the ride
+progressive,metal
+4:45
+U.S.A.
+
+Dream Theater
+Dream Theater
+2013
+9
+Illumination theory
+progressive,metal
+22:18
+U.S.A.
+
+Dream Theater
+Falling into infinity
+1997
+1
+New millenium
+progressive,metal
+8:20
+U.S.A.
+
+Dream Theater
+Falling into infinity
+1997
+10
+Anna Lee
+progressive,metal
+5:51
+U.S.A.
+
+Dream Theater
+Falling into infinity
+1997
+11
+Trial of tears
+progressive,metal
+13:07
+U.S.A.
+
+Dream Theater
+Falling into infinity
+1997
+2
+You not me
+progressive,metal
+4:58
+U.S.A.
+
+Dream Theater
+Falling into infinity
+1997
+3
+Peruvian skies
+progressive,metal
+6:43
+U.S.A.
+
+Dream Theater
+Falling into infinity
+1997
+4
+Hollow years
+progressive,metal,ballad
+5:53
+U.S.A.
+
+Dream Theater
+Falling into infinity
+1997
+5
+Burning my soul
+progressive,metal
+5:29
+U.S.A.
+
+Dream Theater
+Falling into infinity
+1997
+6
+Hell's kitchen
+progressive,metal
+4:16
+U.S.A.
+
+Dream Theater
+Falling into infinity
+1997
+7
+Lines in the sand
+progressive,metal
+12:50
+U.S.A.
+
+Dream Theater
+Falling into infinity
+1997
+8
+Take away my pain
+progressive,metal
+6:03
+U.S.A.
+
+Dream Theater
+Falling into infinity
+1997
+9
+Just let me breathe
+progressive,metal
+5:28
+U.S.A.
+
+Dream Theater
+Images and words
+1992
+1
+Pull me under
+progressive,metal
+8:11
+U.S.A.
+
+Dream Theater
+Images and words
+1992
+2
+Another day
+progressive,metal
+4:22
+U.S.A.
+
+Dream Theater
+Images and words
+1992
+3
+Take the time
+progressive,metal
+8:21
+U.S.A.
+
+Dream Theater
+Images and words
+1992
+4
+Surrounded
+progressive,metal
+5:28
+U.S.A.
+
+Dream Theater
+Images and words
+1992
+5
+Metropolis (Part I) (The miracle and the sleeper)
+progressive,metal
+9:30
+U.S.A.
+
+Dream Theater
+Images and words
+1992
+6
+Under a glass moon
+progressive,metal
+7:02
+U.S.A.
+
+Dream Theater
+Images and words
+1992
+7
+Wait for sleep
+progressive,metal,tranquil
+2:31
+U.S.A.
+
+Dream Theater
+Images and words
+1992
+8
+Learning to live
+progressive,metal
+11:30
+U.S.A.
+
+Dream Theater
+Live at Budokan
+2004
+1
+As I am
+progressive,metal,live
+7:25
+U.S.A.
+
+Dream Theater
+Live at Budokan
+2004
+10
+New millenium
+progressive,metal,live
+8:01
+U.S.A.
+
+Dream Theater
+Live at Budokan
+2004
+11
+Keyboard solo
+progressive,live,solo,keyboard
+3:58
+U.S.A.
+
+Dream Theater
+Live at Budokan
+2004
+12
+Only a matter of time
+progressive,metal,live,cover
+7:21
+U.S.A.
+
+Dream Theater
+Live at Budokan
+2004
+13
+Goodnight kiss
+progressive,metal,live
+6:16
+U.S.A.
+
+Dream Theater
+Live at Budokan
+2004
+14
+Solitary shell
+progressive,metal,live
+5:58
+U.S.A.
+
+Dream Theater
+Live at Budokan
+2004
+15
+Stream of consciousness
+progressive,metal,live
+10:54
+U.S.A.
+
+Dream Theater
+Live at Budokan
+2004
+16
+Disappear
+progressive,metal,live
+5:56
+U.S.A.
+
+Dream Theater
+Live at Budokan
+2004
+17
+Pull me under
+progressive,metal,live
+8:38
+U.S.A.
+
+Dream Theater
+Live at Budokan
+2004
+18
+In the name of God
+progressive,metal,live
+15:49
+U.S.A.
+
+Dream Theater
+Live at Budokan
+2004
+2
+This dying soul
+progressive,metal,live
+11:44
+U.S.A.
+
+Dream Theater
+Live at Budokan
+2004
+3
+Beyond this life
+progressive,metal,live
+19:37
+U.S.A.
+
+Dream Theater
+Live at Budokan
+2004
+4
+Hollow years
+progressive,metal,live
+9:18
+U.S.A.
+
+Dream Theater
+Live at Budokan
+2004
+5
+War inside my head
+progressive,metal,live
+2:22
+U.S.A.
+
+Dream Theater
+Live at Budokan
+2004
+6
+The test that stumped them all
+progressive,metal,live
+5:00
+U.S.A.
+
+Dream Theater
+Live at Budokan
+2004
+7
+Endless sacrifice
+progressive,metal,live
+11:18
+U.S.A.
+
+Dream Theater
+Live at Budokan
+2004
+8
+Instrumedley
+progressive,metal,live,instrumental
+12:15
+U.S.A.
+
+Dream Theater
+Live at Budokan
+2004
+9
+Trial of tears
+progressive,metal,live
+13:49
+U.S.A.
+
+Dream Theater
+Octavarium
+2005
+1
+The root of all evil
+progressive,metal
+8:07
+U.S.A.
+
+Dream Theater
+Octavarium
+2005
+2
+The answer lies within
+progressive,metal,ballad,tranquil
+5:26
+U.S.A.
+
+Dream Theater
+Octavarium
+2005
+3
+These walls
+progressive,metal
+6:59
+U.S.A.
+
+Dream Theater
+Octavarium
+2005
+4
+I walk beside you
+progressive,metal
+4:29
+U.S.A.
+
+Dream Theater
+Octavarium
+2005
+5
+Panic attack
+progressive,metal
+7:16
+U.S.A.
+
+Dream Theater
+Octavarium
+2005
+6
+Never enough
+progressive,metal
+6:33
+U.S.A.
+
+Dream Theater
+Octavarium
+2005
+7
+Sacrified sons
+progressive,metal
+10:42
+U.S.A.
+
+Dream Theater
+Octavarium
+2005
+8
+Octavarium
+progressive,metal
+24:00
+U.S.A.
+
+Dream Theater
+Once in a livetime
+1998
+1
+A change of seasons I: the crimson sunrise
+progressive,metal,live,instrumental
+3:56
+U.S.A.
+
+Dream Theater
+Once in a livetime
+1998
+10
+A change of seasons IV: the darkest of winters
+progressive,metal,live,instrumental
+3:17
+U.S.A.
+
+Dream Theater
+Once in a livetime
+1998
+11
+Ytse jam
+progressive,metal,live,instrumental
+4:09
+U.S.A.
+
+Dream Theater
+Once in a livetime
+1998
+12
+Mike Portnoy drum solo
+progressive,live,instrumental,solo,drum
+6:59
+U.S.A.
+
+Dream Theater
+Once in a livetime
+1998
+13
+Trial of tears
+progressive,metal,live
+14:11
+U.S.A.
+
+Dream Theater
+Once in a livetime
+1998
+14
+Hollow years
+progressive,metal,live
+7:01
+U.S.A.
+
+Dream Theater
+Once in a livetime
+1998
+15
+Take away my pain
+progressive,metal,live,ballad
+6:16
+U.S.A.
+
+Dream Theater
+Once in a livetime
+1998
+16
+Caught in a web
+progressive,metal,live
+5:16
+U.S.A.
+
+Dream Theater
+Once in a livetime
+1998
+17
+Lie
+progressive,metal,live
+6:45
+U.S.A.
+
+Dream Theater
+Once in a livetime
+1998
+18
+Peruvian skies
+progressive,metal,live
+7:50
+U.S.A.
+
+Dream Theater
+Once in a livetime
+1998
+19
+John Petrucci guitar solo
+progressive,metal,live,solo,guitar,guitar hero
+8:06
+U.S.A.
+
+Dream Theater
+Once in a livetime
+1998
+2
+A change of seasons II: innocence
+progressive,metal,live
+3:05
+U.S.A.
+
+Dream Theater
+Once in a livetime
+1998
+20
+Pull me under
+progressive,metal,live
+8:15
+U.S.A.
+
+Dream Theater
+Once in a livetime
+1998
+21
+Metropolis
+progressive,metal,live
+6:16
+U.S.A.
+
+Dream Theater
+Once in a livetime
+1998
+22
+Learning to live
+progressive,metal,live
+4:13
+U.S.A.
+
+Dream Theater
+Once in a livetime
+1998
+23
+A change of seasons VII: the crimson sunset
+progressive,metal,live
+3:49
+U.S.A.
+
+Dream Theater
+Once in a livetime
+1998
+3
+Puppies on acid
+progressive,metal,live
+1:24
+U.S.A.
+
+Dream Theater
+Once in a livetime
+1998
+4
+Just let me breathe
+progressive,metal,live
+5:53
+U.S.A.
+
+Dream Theater
+Once in a livetime
+1998
+5
+Voices
+progressive,metal,live
+10:34
+U.S.A.
+
+Dream Theater
+Once in a livetime
+1998
+6
+Take the time
+progressive,metal,live
+12:20
+U.S.A.
+
+Dream Theater
+Once in a livetime
+1998
+7
+Derek Sherinian piano solo
+progressive,metal,live,solo,instrumental,keyboard
+1:54
+U.S.A.
+
+Dream Theater
+Once in a livetime
+1998
+8
+Lines in the sand
+progressive,metal,live
+13:13
+U.S.A.
+
+Dream Theater
+Once in a livetime
+1998
+9
+Scarred
+progressive,metal,live
+9:27
+U.S.A.
+
+Dream Theater
+Scenes from a memory
+1999
+1
+Scene 1: Regression
+progressive,metal,radio play
+2:06
+U.S.A.
+
+Dream Theater
+Scenes from a memory
+1999
+10
+Scene 7: II. One last time
+progressive,metal
+3:46
+U.S.A.
+
+Dream Theater
+Scenes from a memory
+1999
+11
+Scene 8: The spirit carries on
+progressive,metal,gospel
+6:38
+U.S.A.
+
+Dream Theater
+Scenes from a memory
+1999
+12
+Scene 9: Finally free
+progressive,metal
+12:00
+U.S.A.
+
+Dream Theater
+Scenes from a memory
+1999
+2
+Scene 2: I. Overture 1928
+progressive,metal,instrumental
+3:37
+U.S.A.
+
+Dream Theater
+Scenes from a memory
+1999
+3
+Scene 2: II. Strange deja vu
+progressive,metal
+5:12
+U.S.A.
+
+Dream Theater
+Scenes from a memory
+1999
+4
+Scene 3: I. Through my words
+progressive,metal,ballad
+1:02
+U.S.A.
+
+Dream Theater
+Scenes from a memory
+1999
+5
+Scene 3: II. Fatal tragedy
+progressive,metal
+6:49
+U.S.A.
+
+Dream Theater
+Scenes from a memory
+1999
+6
+Scene 4: Beyond this life
+progressive,metal
+11:22
+U.S.A.
+
+Dream Theater
+Scenes from a memory
+1999
+7
+Scene 5: Through her eyes
+progressive,metal
+5:29
+U.S.A.
+
+Dream Theater
+Scenes from a memory
+1999
+8
+Scene 6: Home
+progressive,metal
+12:53
+U.S.A.
+
+Dream Theater
+Scenes from a memory
+1999
+9
+Scene 7: I. The dance of eternity
+progressive,metal,instrumental
+6:13
+U.S.A.
+
+Dream Theater
+Score
+2006
+1
+The root of all evil
+progressive,metal,live
+8:21
+U.S.A.
+
+Dream Theater
+Score
+2006
+10
+Vacant
+progressive,metal,live,tranquil
+3:02
+U.S.A.
+
+Dream Theater
+Score
+2006
+11
+The answer lies within
+progressive,metal,live,tranquil
+5:36
+U.S.A.
+
+Dream Theater
+Score
+2006
+12
+Sacrificed sons
+progressive,metal,live
+10:36
+U.S.A.
+
+Dream Theater
+Score
+2006
+13
+Octavarium
+progressive,metal,live
+26:38
+U.S.A.
+
+Dream Theater
+Score
+2006
+14
+Metropolis
+progressive,metal,live
+10:37
+U.S.A.
+
+Dream Theater
+Score
+2006
+2
+I walk beside you
+progressive,metal,live
+4:11
+U.S.A.
+
+Dream Theater
+Score
+2006
+3
+Another won
+progressive,metal,live
+5:22
+U.S.A.
+
+Dream Theater
+Score
+2006
+4
+Afterlife
+progressive,metal,live
+5:47
+U.S.A.
+
+Dream Theater
+Score
+2006
+5
+Under a glass moon
+progressive,metal,live
+7:29
+U.S.A.
+
+Dream Theater
+Score
+2006
+6
+Innocence faded
+progressive,metal,live
+5:32
+U.S.A.
+
+Dream Theater
+Score
+2006
+7
+Raise the knife
+progressive,metal,live
+11:43
+U.S.A.
+
+Dream Theater
+Score
+2006
+8
+The spirit carries on
+progressive,metal,live,gospel
+9:44
+U.S.A.
+
+Dream Theater
+Score
+2006
+9
+Six degrees of inner turbulence
+progressive,metal,live
+41:22
+U.S.A.
+
+Dream Theater
+Six degrees of inner turbulence
+2002
+1
+The glass prison
+progressive,metal
+13:52
+U.S.A.
+
+Dream Theater
+Six degrees of inner turbulence
+2002
+10
+Goodnight kiss (Six degrees of inner turbulence)
+progressive,metal,ballad
+6:17
+U.S.A.
+
+Dream Theater
+Six degrees of inner turbulence
+2002
+11
+Solitary shell (Six degrees of inner turbulence)
+progressive,metal
+5:47
+U.S.A.
+
+Dream Theater
+Six degrees of inner turbulence
+2002
+12
+About to crash - reprise (Six degrees of inner turbulence)
+progressive,metal
+4:04
+U.S.A.
+
+Dream Theater
+Six degrees of inner turbulence
+2002
+13
+Losing time/grand finale (Six degrees of inner turbulence)
+progressive,metal
+5:59
+U.S.A.
+
+Dream Theater
+Six degrees of inner turbulence
+2002
+2
+Blind faith
+progressive,metal
+10:21
+U.S.A.
+
+Dream Theater
+Six degrees of inner turbulence
+2002
+3
+Misunderstood
+progressive,metal,tranquil
+9:34
+U.S.A.
+
+Dream Theater
+Six degrees of inner turbulence
+2002
+4
+The great debate
+progressive,metal
+13:43
+U.S.A.
+
+Dream Theater
+Six degrees of inner turbulence
+2002
+5
+Disappear
+progressive,metal,tranquil
+6:46
+U.S.A.
+
+Dream Theater
+Six degrees of inner turbulence
+2002
+6
+Overture (Six degrees of inner turbulence)
+progressive,metal,instrumental
+6:50
+U.S.A.
+
+Dream Theater
+Six degrees of inner turbulence
+2002
+7
+About to crash (Six degrees of inner turbulence)
+progressive,metal
+5:50
+U.S.A.
+
+Dream Theater
+Six degrees of inner turbulence
+2002
+8
+War inside my head (Six degrees of inner turbulence)
+progressive,metal
+2:08
+U.S.A.
+
+Dream Theater
+Six degrees of inner turbulence
+2002
+9
+The test that stumped them all (Six degrees of inner turbulence)
+progressive,metal
+5:03
+U.S.A.
+
+Dream Theater
+Systematic Chaos
+2007
+1
+In The Presence Of Enemies Pt. 1: 1. Prelude / 2. Resurrection
+progressive,metal
+9:00
+U.S.A.
+
+Dream Theater
+Systematic Chaos
+2007
+2
+Forsaken
+progressive,metal,ballad
+5:35
+U.S.A.
+
+Dream Theater
+Systematic Chaos
+2007
+3
+Constant motion
+progressive,metal
+6:55
+U.S.A.
+
+Dream Theater
+Systematic Chaos
+2007
+4
+The dark eternal night
+progressive,metal
+8:53
+U.S.A.
+
+Dream Theater
+Systematic Chaos
+2007
+5
+Repentance: VIII. Regret / IX. Restitution
+progressive,metal,tranquil
+10:43
+U.S.A.
+
+Dream Theater
+Systematic Chaos
+2007
+6
+Prophets of war
+progressive,metal
+6:00
+U.S.A.
+
+Dream Theater
+Systematic Chaos
+2007
+7
+The Ministry Of Lost Souls
+progressive,metal
+14:57
+U.S.A.
+
+Dream Theater
+Systematic Chaos
+2007
+8
+In The Presence Of Enemies Pt. 2: III. Heretic / IV. The Slaughter of the Damne
+progressive,metal
+16:38
+U.S.A.
+
+Dream Theater
+Train of thought
+2003
+1
+As I am
+progressive,metal
+7:47
+U.S.A.
+
+Dream Theater
+Train of thought
+2003
+2
+This dying soul
+progressive,metal
+11:28
+U.S.A.
+
+Dream Theater
+Train of thought
+2003
+3
+Endless sacrifice
+progressive,metal
+11:23
+U.S.A.
+
+Dream Theater
+Train of thought
+2003
+4
+Honor thy father
+progressive,metal
+10:14
+U.S.A.
+
+Dream Theater
+Train of thought
+2003
+5
+Vacant
+progressive,metal,tranquil
+2:58
+U.S.A.
+
+Dream Theater
+Train of thought
+2003
+6
+Stream of conciousness
+progressive,metal,instrumental
+11:16
+U.S.A.
+
+Dream Theater
+Train of thought
+2003
+7
+In the name of God
+progressive,metal
+14:16
+U.S.A.
+
+Dropkick Murphys
+Going out in style
+2011
+1
+Hang 'em high
+punk,rock,celtic
+3:59
+U.S.A.
+
+Dropkick Murphys
+Going out in style
+2011
+10
+Sunday hardcore matinee
+punk,rock,celtic
+2:43
+U.S.A.
+
+Dropkick Murphys
+Going out in style
+2011
+11
+1953
+punk,rock,celtic,ballad
+4:14
+U.S.A.
+
+Dropkick Murphys
+Going out in style
+2011
+12
+Peg o' my heart
+punk,rock,celtic
+2:20
+U.S.A.
+
+Dropkick Murphys
+Going out in style
+2011
+13
+The Irish rover
+punk,rock,celtic
+3:39
+U.S.A.
+
+Dropkick Murphys
+Going out in style
+2011
+2
+Going out in style
+punk,rock,celtic
+4:08
+U.S.A.
+
+Dropkick Murphys
+Going out in style
+2011
+3
+The hardest mile
+punk,rock,celtic
+3:26
+U.S.A.
+
+Dropkick Murphys
+Going out in style
+2011
+4
+Cruel
+punk,rock,celtic,ballad
+4:21
+U.S.A.
+
+Dropkick Murphys
+Going out in style
+2011
+5
+Memorial day
+punk,rock,celtic
+2:59
+U.S.A.
+
+Dropkick Murphys
+Going out in style
+2011
+6
+Climbing a chair to bed
+punk,rock,celtic
+2:59
+U.S.A.
+
+Dropkick Murphys
+Going out in style
+2011
+7
+Broken hymns
+punk,rock,celtic
+5:03
+U.S.A.
+
+Dropkick Murphys
+Going out in style
+2011
+8
+Deeds not words
+punk,rock,celtic
+3:41
+U.S.A.
+
+Dropkick Murphys
+Going out in style
+2011
+9
+Take 'em down
+punk,rock,celtic
+2:11
+U.S.A.
+
+Dropkick Murphys
+Live at Fenway
+2011
+1
+Hang 'em high
+punk,rock,celtic,live
+3:42
+U.S.A.
+
+Dropkick Murphys
+Live at Fenway
+2011
+10
+Take 'em down
+punk,rock,celtic,live
+2:48
+U.S.A.
+
+Dropkick Murphys
+Live at Fenway
+2011
+11
+Devil's brigade
+punk,rock,celtic,live
+3:17
+U.S.A.
+
+Dropkick Murphys
+Live at Fenway
+2011
+12
+Boys on the docks
+punk,rock,celtic,live
+3:50
+U.S.A.
+
+Dropkick Murphys
+Live at Fenway
+2011
+13
+The dirty glass
+punk,rock,celtic,live
+3:40
+U.S.A.
+
+Dropkick Murphys
+Live at Fenway
+2011
+14
+The state of Massachusetts
+punk,rock,celtic,live
+4:11
+U.S.A.
+
+Dropkick Murphys
+Live at Fenway
+2011
+15
+Kiss me, I'm shitfaced
+punk,rock,celtic,live
+7:20
+U.S.A.
+
+Dropkick Murphys
+Live at Fenway
+2011
+16
+Time to go
+punk,rock,celtic,live
+2:56
+U.S.A.
+
+Dropkick Murphys
+Live at Fenway
+2011
+17
+I'm shipping up to Boston
+punk,rock,celtic,live
+2:08
+U.S.A.
+
+Dropkick Murphys
+Live at Fenway
+2011
+18
+TNT
+punk,rock,celtic,live
+3:53
+U.S.A.
+
+Dropkick Murphys
+Live at Fenway
+2011
+2
+Sunday hardcore matinee
+punk,rock,celtic,live
+2:38
+U.S.A.
+
+Dropkick Murphys
+Live at Fenway
+2011
+3
+Deeds not words
+punk,rock,celtic,live
+3:46
+U.S.A.
+
+Dropkick Murphys
+Live at Fenway
+2011
+4
+Going out in style
+punk,rock,celtic,live
+4:07
+U.S.A.
+
+Dropkick Murphys
+Live at Fenway
+2011
+5
+The Irish rover
+punk,rock,celtic,live
+3:28
+U.S.A.
+
+Dropkick Murphys
+Live at Fenway
+2011
+6
+Peg o' my heart
+punk,rock,celtic,live
+2:48
+U.S.A.
+
+Dropkick Murphys
+Live at Fenway
+2011
+7
+Tessie
+punk,rock,celtic,live
+5:16
+U.S.A.
+
+Dropkick Murphys
+Live at Fenway
+2011
+8
+Cruel
+punk,rock,celtic,ballad,live
+4:28
+U.S.A.
+
+Dropkick Murphys
+Live at Fenway
+2011
+9
+Climbing a chair to bed
+punk,rock,celtic,live
+4:44
+U.S.A.
+
+Editors
+An end has a start
+2007
+1
+Smokers outside the hospital doors
+alternative,rock
+4:57
+U.S.A.
+
+Editors
+An end has a start
+2007
+10
+Well worn hand
+alternative,rock
+3:02
+England
+
+Editors
+An end has a start
+2007
+2
+An end has a start
+alternative,rock
+3:45
+England
+
+Editors
+An end has a start
+2007
+3
+The weight of this world
+alternative,rock
+4:18
+England
+
+Editors
+An end has a start
+2007
+4
+Bones
+alternative,rock
+4:06
+England
+
+Editors
+An end has a start
+2007
+5
+When anger shows
+alternative,rock
+5:45
+England
+
+Editors
+An end has a start
+2007
+6
+The racing rats
+alternative,rock
+4:17
+England
+
+Editors
+An end has a start
+2007
+7
+Push your head towards the air
+alternative,rock
+5:44
+England
+
+Editors
+An end has a start
+2007
+8
+Escape the nest
+alternative,rock
+4:43
+England
+
+Editors
+An end has a start
+2007
+9
+Spiders
+alternative,rock
+4:00
+England
+
+Editors
+In this light and on this evening
+2009
+1
+In this light and on this evening
+alternative,rock,electronica
+4:20
+England
+
+Editors
+In this light and on this evening
+2009
+2
+Bricks and mortar
+alternative,rock,electronica
+6:20
+England
+
+Editors
+In this light and on this evening
+2009
+3
+Papillon
+alternative,rock,electronica
+5:24
+England
+
+Editors
+In this light and on this evening
+2009
+4
+You don't know love
+alternative,rock,electronica
+4:38
+England
+
+Editors
+In this light and on this evening
+2009
+5
+The big exit
+alternative,rock,electronica
+4:44
+England
+
+Editors
+In this light and on this evening
+2009
+6
+The boxer
+alternative,rock,electronica
+4:40
+England
+
+Editors
+In this light and on this evening
+2009
+7
+Like treasure
+alternative,rock,electronica
+4:51
+England
+
+Editors
+In this light and on this evening
+2009
+8
+Eat raw meat = blood drool
+alternative,rock,electronica
+4:53
+England
+
+Editors
+In this light and on this evening
+2009
+9
+Walk the fleet road
+alternative,rock,electronica
+3:47
+England
+
+Editors
+In this light and on this evening - cuttings II
+2009
+1
+This house is full of noise
+alternative,rock,electronica
+6:21
+England
+
+Editors
+In this light and on this evening - cuttings II
+2009
+2
+I want a forest
+alternative,rock,electronica
+3:59
+England
+
+Editors
+In this light and on this evening - cuttings II
+2009
+3
+A life as a ghost
+alternative,rock,electronica
+4:33
+England
+
+Editors
+In this light and on this evening - cuttings II
+2009
+4
+Human
+alternative,rock,electronica
+3:13
+England
+
+Editors
+In this light and on this evening - cuttings II
+2009
+5
+For the money
+alternative,rock,electronica
+5:52
+England
+
+Editors
+The back room
+2005
+1
+Lights
+alternative,rock,debut album
+2:31
+England
+
+Editors
+The back room
+2005
+10
+Open your arms
+alternative,rock,debut album
+6:00
+England
+
+Editors
+The back room
+2005
+11
+Distance
+alternative,rock,debut album
+3:38
+England
+
+Editors
+The back room
+2005
+2
+Munich
+alternative,rock,debut album
+3:46
+England
+
+Editors
+The back room
+2005
+3
+Blood
+alternative,rock,debut album
+3:29
+England
+
+Editors
+The back room
+2005
+4
+Fall
+alternative,rock,debut album
+5:06
+England
+
+Editors
+The back room
+2005
+5
+All sparks
+alternative,rock,debut album
+3:34
+England
+
+Editors
+The back room
+2005
+6
+Camera
+alternative,rock,debut album
+5:02
+England
+
+Editors
+The back room
+2005
+7
+Fingers in the factories
+alternative,rock,debut album
+4:14
+England
+
+Editors
+The back room
+2005
+8
+Bullets
+alternative,rock,debut album
+3:09
+England
+
+Editors
+The back room
+2005
+9
+Someone says
+alternative,rock,debut album
+3:13
+England
+
+Editors
+The weight of your love
+2013
+1
+The weight
+alternative,rock
+4:32
+England
+
+Editors
+The weight of your love
+2013
+10
+The phone book
+alternative,rock
+4:31
+England
+
+Editors
+The weight of your love
+2013
+11
+Bird of prey
+alternative,rock
+4:46
+England
+
+Editors
+The weight of your love
+2013
+2
+Sugar
+alternative,rock
+4:16
+England
+
+Editors
+The weight of your love
+2013
+3
+A ton of love
+alternative,rock
+3:58
+England
+
+Editors
+The weight of your love
+2013
+4
+What is this thing called love
+alternative,rock
+4:12
+England
+
+Editors
+The weight of your love
+2013
+5
+Honesty
+alternative,rock
+4:49
+England
+
+Editors
+The weight of your love
+2013
+6
+Nothing
+alternative,rock
+5:15
+England
+
+Editors
+The weight of your love
+2013
+7
+Formaldehyde
+alternative,rock
+3:50
+England
+
+Editors
+The weight of your love
+2013
+8
+Hyena
+alternative,rock
+3:39
+England
+
+Editors
+The weight of your love
+2013
+9
+Two hearted spider
+alternative,rock
+4:31
+England
+
+Edvard Grieg & Jean Sibelius
+Peer Gynt Suites/Pelléas et Mélisande
+1983
+1
+Peer Gynt Suite Nr.1 - Morgenstimmung
+classic,symphonic
+4:03
+Norway
+
+Edvard Grieg & Jean Sibelius
+Peer Gynt Suites/Pelléas et Mélisande
+1983
+10
+Pelléas et Mélisande - Mélisande
+classic,symphonic
+4:12
+Finland
+
+Edvard Grieg & Jean Sibelius
+Peer Gynt Suites/Pelléas et Mélisande
+1983
+11
+Pelléas et Mélisande - Am Meer
+classic,symphonic
+2:39
+Finland
+
+Edvard Grieg & Jean Sibelius
+Peer Gynt Suites/Pelléas et Mélisande
+1983
+12
+Pelléas et Mélisande - Am Wunderborn im Park
+classic,symphonic
+2:40
+Finland
+
+Edvard Grieg & Jean Sibelius
+Peer Gynt Suites/Pelléas et Mélisande
+1983
+13
+Pelléas et Mélisande - Die drei blinden Schwestern
+classic,symphonic
+2:25
+Finland
+
+Edvard Grieg & Jean Sibelius
+Peer Gynt Suites/Pelléas et Mélisande
+1983
+14
+Pelléas et Mélisande - Pastorale
+classic,symphonic
+2:07
+Finland
+
+Edvard Grieg & Jean Sibelius
+Peer Gynt Suites/Pelléas et Mélisande
+1983
+15
+Pelléas et Mélisande - Mélisande am Rocken
+classic,symphonic
+1:59
+Finland
+
+Edvard Grieg & Jean Sibelius
+Peer Gynt Suites/Pelléas et Mélisande
+1983
+16
+Pelléas et Mélisande - Zwischenaktmusik
+classic,symphonic
+2:50
+Finland
+
+Edvard Grieg & Jean Sibelius
+Peer Gynt Suites/Pelléas et Mélisande
+1983
+17
+Pelléas et Mélisande - Mélisandes tod
+classic,symphonic
+6:15
+Finland
+
+Edvard Grieg & Jean Sibelius
+Peer Gynt Suites/Pelléas et Mélisande
+1983
+2
+Peer Gynt Suite Nr.1 - Åses tod
+classic,symphonic
+4:29
+Norway
+
+Edvard Grieg & Jean Sibelius
+Peer Gynt Suites/Pelléas et Mélisande
+1983
+3
+Peer Gynt Suite Nr.1 - Anitras Tanz
+classic,symphonic
+3:17
+Norway
+
+Edvard Grieg & Jean Sibelius
+Peer Gynt Suites/Pelléas et Mélisande
+1983
+4
+Peer Gynt Suite Nr.1 - In der Halle des Bergkönigs
+classic,symphonic
+2:08
+Norway
+
+Edvard Grieg & Jean Sibelius
+Peer Gynt Suites/Pelléas et Mélisande
+1983
+5
+Peer Gynt Suite No.2 - Der Brautraub
+classic,symphonic
+4:54
+Norway
+
+Edvard Grieg & Jean Sibelius
+Peer Gynt Suites/Pelléas et Mélisande
+1983
+6
+Peer Gynt Suite No.2 - Arabischer Tanz
+classic,symphonic
+4:51
+Norway
+
+Edvard Grieg & Jean Sibelius
+Peer Gynt Suites/Pelléas et Mélisande
+1983
+7
+Peer Gynt Suite No.2 - Peer Gynts Heimkehr
+classic,symphonic
+2:53
+Norway
+
+Edvard Grieg & Jean Sibelius
+Peer Gynt Suites/Pelléas et Mélisande
+1983
+8
+Peer Gynt Suite No.2 - Solvejgs Lied
+classic,symphonic
+6:01
+Norway
+
+Edvard Grieg & Jean Sibelius
+Peer Gynt Suites/Pelléas et Mélisande
+1983
+9
+Pelléas et Mélisande - Am Schlosstor
+classic,symphonic
+5:53
+Finland
+
+Enochian theory
+Life... and all it entails
+2012
+0
+Zero is also a number
+zero
+0:00
+England
+
+Enochian theory
+Life... and all it entails
+2012
+1
+This aching isolation
+progressive,metal
+4:44
+England
+
+Enochian theory
+Life... and all it entails
+2012
+10
+The motives of the machine
+progressive,metal,instrumental
+4:05
+England
+
+Enochian theory
+Life... and all it entails
+2012
+11
+Singularities
+progressive,metal,ballad
+5:05
+England
+
+Enochian theory
+Life... and all it entails
+2012
+12
+Loves
+progressive,tranquil
+4:13
+England
+
+Enochian theory
+Life... and all it entails
+2012
+13
+The fire around the lotus
+progressive,metal
+7:21
+England
+
+Enochian theory
+Life... and all it entails
+2012
+2
+Hz
+progressive,metal
+6:33
+England
+
+Enochian theory
+Life... and all it entails
+2012
+3
+Non sum qualis eram
+progressive,gloomy
+3:33
+England
+
+Enochian theory
+Life... and all it entails
+2012
+4
+Distances
+progressive,metal
+4:12
+England
+
+Enochian theory
+Life... and all it entails
+2012
+5
+Inversions
+progressive,metal
+3:54
+England
+
+Enochian theory
+Life... and all it entails
+2012
+6
+Creatio ex nihilio
+progressive,instrumental,gloomy
+1:37
+England
+
+Enochian theory
+Life... and all it entails
+2012
+7
+In times of silence
+progressive,metal
+4:12
+England
+
+Enochian theory
+Life... and all it entails
+2012
+8
+For your glory, great deceiver
+progressive,metal
+4:06
+England
+
+Enochian theory
+Life... and all it entails
+2012
+9
+Nisi credideritis, non intelligetis
+progressive,metal
+4:44
+England
+
+Faithless
+Outrospective
+2001
+1
+Donny X
+dance,electronica,instrumental
+4:07
+England
+
+Faithless
+Outrospective
+2001
+10
+Code
+electronica,tranquil
+1:36
+England
+
+Faithless
+Outrospective
+2001
+11
+Evergreen
+dance,electronica
+4:33
+England
+
+Faithless
+Outrospective
+2001
+12
+Liontamer
+dance,electronica
+5:49
+England
+
+Faithless
+Outrospective
+2001
+2
+Not enuff love
+dance,electronica
+5:55
+England
+
+Faithless
+Outrospective
+2001
+3
+We come 1
+dance,electronica
+8:19
+England
+
+Faithless
+Outrospective
+2001
+4
+Crazy english summer
+dance,electronica
+2:43
+England
+
+Faithless
+Outrospective
+2001
+5
+Muhammed Ali
+dance,electronica
+4:21
+England
+
+Faithless
+Outrospective
+2001
+6
+Machines r us
+dance,electronica,instrumental
+3:45
+England
+
+Faithless
+Outrospective
+2001
+7
+One step too far
+dance,electronica
+5:19
+England
+
+Faithless
+Outrospective
+2001
+8
+Tarantula
+dance,electronica
+6:43
+England
+
+Faithless
+Outrospective
+2001
+9
+Giving myself away
+dance,electronica
+4:41
+England
+
+Feist
+Metals
+2011
+1
+The bad in each other
+alternative
+4:44
+Canada
+
+Feist
+Metals
+2011
+10
+Cicadas and gulls
+alternative
+3:16
+Canada
+
+Feist
+Metals
+2011
+11
+Comfort me
+alternative
+4:04
+Canada
+
+Feist
+Metals
+2011
+12
+Get it wrong, get it right
+alternative
+3:39
+Canada
+
+Feist
+Metals
+2011
+2
+Graveyard
+alternative
+4:17
+Canada
+
+Feist
+Metals
+2011
+3
+Caught a long wind
+alternative
+4:55
+Canada
+
+Feist
+Metals
+2011
+4
+How come you never go there
+alternative
+3:24
+Canada
+
+Feist
+Metals
+2011
+5
+A commotion
+alternative
+3:53
+Canada
+
+Feist
+Metals
+2011
+6
+The circle married the line
+alternative
+3:23
+Canada
+
+Feist
+Metals
+2011
+7
+Bittersweet melodies
+alternative
+3:57
+Canada
+
+Feist
+Metals
+2011
+8
+Anti-pioneer
+alternative
+5:33
+Canada
+
+Feist
+Metals
+2011
+9
+Undiscovered first
+alternative
+4:58
+Canada
+
+Fish
+Internal exile (a collection of a boys own stories)
+1991
+1
+Shadowplay
+pop,rock
+6:25
+Scotland
+
+Fish
+Internal exile (a collection of a boys own stories)
+1991
+2
+Credo
+pop,rock
+6:40
+Scotland
+
+Fish
+Internal exile (a collection of a boys own stories)
+1991
+3
+Just good friends (close)
+pop,rock
+6:00
+Scotland
+
+Fish
+Internal exile (a collection of a boys own stories)
+1991
+4
+Favourite stranger
+pop,rock
+5:59
+Scotland
+
+Fish
+Internal exile (a collection of a boys own stories)
+1991
+5
+Lucky
+pop,rock
+4:50
+Scotland
+
+Fish
+Internal exile (a collection of a boys own stories)
+1991
+6
+Dear friend
+pop,rock
+4:07
+Scotland
+
+Fish
+Internal exile (a collection of a boys own stories)
+1991
+7
+Tongues
+pop,rock
+6:23
+Scotland
+
+Fish
+Internal exile (a collection of a boys own stories)
+1991
+8
+Internal exile
+pop,rock
+4:42
+Scotland
+
+Fish
+Internal exile (a collection of a boys own stories)
+1991
+9
+Something in the air
+pop,rock
+5:07
+Scotland
+
+Fish
+Vigil in a wilderness of mirrors
+1990
+1
+Vigil
+progressive,rock,debut album
+8:43
+Scotland
+
+Fish
+Vigil in a wilderness of mirrors
+1990
+2
+Big wedge
+progressive,rock,debut album
+5:10
+Scotland
+
+Fish
+Vigil in a wilderness of mirrors
+1990
+3
+State of mind
+progressive,rock,debut album
+4:42
+Scotland
+
+Fish
+Vigil in a wilderness of mirrors
+1990
+4
+The company
+progressive,rock,debut album
+4:04
+Scotland
+
+Fish
+Vigil in a wilderness of mirrors
+1990
+5
+A gentleman's excuse me
+progressive,rock,debut album,tranquil,ballad
+4:15
+Scotland
+
+Fish
+Vigil in a wilderness of mirrors
+1990
+6
+The voyeur (I like to watch)
+progressive,rock,debut album
+4:42
+Scotland
+
+Fish
+Vigil in a wilderness of mirrors
+1990
+7
+Family business
+progressive,rock,debut album
+5:14
+Scotland
+
+Fish
+Vigil in a wilderness of mirrors
+1990
+8
+View from the hill
+progressive,rock,debut album
+6:38
+Scotland
+
+Fish
+Vigil in a wilderness of mirrors
+1990
+9
+Cliché
+progressive,rock,debut album,ballad
+7:01
+Scotland
+
+Focus
+Focus III
+1973
+1
+Round goes the gossip
+progressive,rock
+5:12
+Netherlands
+
+Focus
+Focus III
+1973
+2
+Love remembered
+progressive,rock,instrumental
+2:50
+Netherlands
+
+Focus
+Focus III
+1973
+3
+Sylvia
+progressive,rock,instrumental
+3:31
+Netherlands
+
+Focus
+Focus III
+1973
+4
+Carnival fugue
+progressive,rock,instrumental
+6:09
+Netherlands
+
+Focus
+Focus III
+1973
+5
+Focus III
+progressive,rock,instrumental
+6:05
+Netherlands
+
+Focus
+Focus III
+1973
+6
+Answers? Questions! Questions? Answers!
+progressive,rock,instrumental
+13:48
+Netherlands
+
+Focus
+Focus III
+1973
+7
+Elspeth of Nottingham
+classic,guitar,flute,instrumental,tranquil
+3:10
+Netherlands
+
+Focus
+Focus III
+1973
+8
+Anonymous two
+progressive,rock,instrumental
+26:24
+Netherlands
+
+Focus
+Hamburger Concerto
+1974
+1
+Delitae Musicae
+classic,guitar,flute,instrumental,tranquil
+1:13
+Netherlands
+
+Focus
+Hamburger Concerto
+1974
+2
+Harem Scarem
+progressive,rock,instrumental
+5:52
+Netherlands
+
+Focus
+Hamburger Concerto
+1974
+3
+La Cathédrale de Strasbourg
+progressive,rock
+4:59
+Netherlands
+
+Focus
+Hamburger Concerto
+1974
+4
+Birth
+progressive,rock,instrumental
+7:46
+Netherlands
+
+Focus
+Hamburger Concerto
+1974
+5
+Hamburger Concerto
+progressive,rock
+20:19
+Netherlands
+
+Focus
+Hamburger Concerto
+1974
+6
+Early birth
+progressive,rock,instrumental
+2:54
+Netherlands
+
+Forcefield II
+The Talisman
+1988
+1
+The talisman
+hard rock,instrumental
+5:29
+England
+
+Forcefield II
+The Talisman
+1988
+10
+Black night/strange kind of woman
+hard rock
+5:47
+England
+
+Forcefield II
+The Talisman
+1988
+11
+I lose again
+hard rock
+6:17
+England
+
+Forcefield II
+The Talisman
+1988
+2
+Year of the dragon
+hard rock
+3:34
+England
+
+Forcefield II
+The Talisman
+1988
+3
+Tired of waiting for you
+hard rock
+4:05
+England
+
+Forcefield II
+The Talisman
+1988
+4
+Heartache
+hard rock
+4:15
+England
+
+Forcefield II
+The Talisman
+1988
+5
+Good is good
+hard rock
+4:48
+England
+
+Forcefield II
+The Talisman
+1988
+6
+Carrie
+hard rock
+3:47
+England
+
+Forcefield II
+The Talisman
+1988
+7
+Without your love
+hard rock
+4:25
+England
+
+Forcefield II
+The Talisman
+1988
+8
+I lose again
+hard rock
+6:25
+England
+
+Forcefield II
+The Talisman
+1988
+9
+The mercenary
+hard rock,instrumental,drum
+7:06
+England
+
+Friends of Dean Martinez
+Lost horizon
+2005
+1
+Landfall
+alternative,ambient,instrumental
+7:56
+U.S.A.
+
+Friends of Dean Martinez
+Lost horizon
+2005
+2
+Dawn
+alternative,ambient,instrumental
+2:42
+U.S.A.
+
+Friends of Dean Martinez
+Lost horizon
+2005
+3
+Heart of darkness
+alternative,ambient,instrumental
+2:49
+U.S.A.
+
+Friends of Dean Martinez
+Lost horizon
+2005
+4
+Somewhere over the waves
+alternative,ambient,instrumental
+4:07
+U.S.A.
+
+Friends of Dean Martinez
+Lost horizon
+2005
+5
+All in the golden afternoon
+alternative,ambient,instrumental
+5:07
+U.S.A.
+
+Friends of Dean Martinez
+Lost horizon
+2005
+6
+Two hundred miles
+alternative,ambient,instrumental
+3:41
+U.S.A.
+
+Friends of Dean Martinez
+Lost horizon
+2005
+7
+Hidden out of sight
+alternative,ambient,instrumental
+2:38
+U.S.A.
+
+Friends of Dean Martinez
+Lost horizon
+2005
+8
+Dusk
+alternative,ambient,instrumental
+3:45
+U.S.A.
+
+Friends of Dean Martinez
+Lost horizon
+2005
+9
+Departure
+alternative,ambient,instrumental
+4:18
+U.S.A.
+
+GTR
+GTR
+1986
+1
+When the heart rules the mind
+progressive,rock,debut album
+5:28
+England
+
+GTR
+GTR
+1986
+10
+Imagining
+progressive,rock,debut album
+5:55
+England
+
+GTR
+GTR
+1986
+2
+The hunter
+progressive,rock,debut album
+4:59
+England
+
+GTR
+GTR
+1986
+3
+Here I wait
+progressive,rock,debut album
+4:57
+England
+
+GTR
+GTR
+1986
+4
+Sketches in the sun
+progressive,rock,instrumental,guitar,guitar hero,debut album
+2:34
+England
+
+GTR
+GTR
+1986
+5
+Jekyll and Hide
+progressive,rock,debut album
+4:46
+England
+
+GTR
+GTR
+1986
+6
+You can still get through
+progressive,rock,debut album
+4:58
+England
+
+GTR
+GTR
+1986
+7
+Reach out (never say no)
+progressive,rock,debut album
+4:06
+England
+
+GTR
+GTR
+1986
+8
+Toe the line
+progressive,rock,ballad,debut album
+4:31
+England
+
+GTR
+GTR
+1986
+9
+Hackett to bits
+progressive,rock,instrumental,guitar,debut album
+2:11
+England
+
+Gandillion
+Perrenette Gandillion
+1998
+1
+Covent garden
+gothic,metal,female fronted,debut album
+5:44
+Netherlands
+
+Gandillion
+Perrenette Gandillion
+1998
+2
+Penetrate
+gothic,metal,female fronted,debut album
+7:07
+Netherlands
+
+Gandillion
+Perrenette Gandillion
+1998
+3
+Suddenly
+gothic,metal,female fronted,debut album
+2:10
+Netherlands
+
+Gandillion
+Perrenette Gandillion
+1998
+4
+...of many shapes
+gothic,metal,female fronted,debut album
+3:57
+Netherlands
+
+Gandillion
+Perrenette Gandillion
+1998
+5
+Escape to madness
+gothic,metal,female fronted,debut album
+2:55
+Netherlands
+
+Gandillion
+Perrenette Gandillion
+1998
+6
+Shapeshift
+gothic,metal,female fronted,debut album
+4:44
+Netherlands
+
+Gandillion
+Perrenette Gandillion
+1998
+7
+The hunt
+gothic,metal,female fronted,debut album
+4:07
+Netherlands
+
+Gandillion
+Perrenette Gandillion
+1998
+8
+To be, to ashes, to dust
+gothic,metal,female fronted,debut album
+3:37
+Netherlands
+
+Gandillion
+Perrenette Gandillion
+1998
+9
+...of many shapes (reprise)
+gothic,metal,female fronted,instrumental,debut album
+2:14
+Netherlands
+
+Garbage
+Garbage
+1995
+1
+Supervixen
+alternative,rock
+3:55
+U.S.A.,Scotland
+
+Garbage
+Garbage
+1995
+10
+My lover's box
+alternative,rock
+3:55
+U.S.A.,Scotland
+
+Garbage
+Garbage
+1995
+11
+Fix me now
+alternative,rock
+4:43
+U.S.A.,Scotland
+
+Garbage
+Garbage
+1995
+12
+Milk
+alternative,rock
+3:53
+U.S.A.,Scotland
+
+Garbage
+Garbage
+1995
+2
+Queer
+alternative,rock
+4:36
+U.S.A.,Scotland
+
+Garbage
+Garbage
+1995
+3
+Only happy when it rains
+alternative,rock
+3:56
+U.S.A.,Scotland
+
+Garbage
+Garbage
+1995
+4
+As heaven is wide
+alternative,rock
+4:44
+U.S.A.,Scotland
+
+Garbage
+Garbage
+1995
+5
+Not my idea
+alternative,rock
+3:41
+U.S.A.,Scotland
+
+Garbage
+Garbage
+1995
+6
+A stroke of luck
+alternative,rock
+4:44
+U.S.A.,Scotland
+
+Garbage
+Garbage
+1995
+7
+Vow
+alternative,rock
+4:30
+U.S.A.,Scotland
+
+Garbage
+Garbage
+1995
+8
+Stupid girl
+alternative,rock
+4:18
+U.S.A.,Scotland
+
+Garbage
+Garbage
+1995
+9
+Dog new tricks
+alternative,rock
+3:56
+U.S.A.,Scotland
+
+Gary Moore
+After hours
+1992
+1
+Cold day in hell
+blues,rock,guitar hero
+4:27
+Ireland
+
+Gary Moore
+After hours
+1992
+10
+The hurt inside
+blues,rock,guitar hero
+5:53
+Ireland
+
+Gary Moore
+After hours
+1992
+11
+Nothing's the same
+blues,rock,guitar hero
+5:04
+Ireland
+
+Gary Moore
+After hours
+1992
+2
+Don't you lie to me (I get evil)
+blues,rock,guitar hero
+2:30
+Ireland
+
+Gary Moore
+After hours
+1992
+3
+Story of the blues
+blues,rock,guitar hero,tranquil
+6:41
+Ireland
+
+Gary Moore
+After hours
+1992
+4
+Since I met you baby
+blues,rock,guitar hero
+2:52
+Ireland
+
+Gary Moore
+After hours
+1992
+5
+Separate ways
+blues,rock,guitar hero
+4:53
+Ireland
+
+Gary Moore
+After hours
+1992
+6
+Only fool in town
+blues,rock,guitar hero
+3:52
+Ireland
+
+Gary Moore
+After hours
+1992
+7
+Key to love
+blues,rock,guitar hero
+1:58
+Ireland
+
+Gary Moore
+After hours
+1992
+8
+Jumpin' at shadows
+blues,rock,guitar hero
+4:20
+Ireland
+
+Gary Moore
+After hours
+1992
+9
+The blues is alright
+blues,rock,guitar hero
+5:45
+Ireland
+
+Gary Moore
+Run for cover
+1985
+1
+Run for cover
+hard rock,guitar hero
+4:14
+Ireland
+
+Gary Moore
+Run for cover
+1985
+10
+Listen to your heartbeat
+hard rock,ballad,guitar hero
+4:33
+Ireland
+
+Gary Moore
+Run for cover
+1985
+2
+Reach for the sky
+hard rock,guitar hero
+4:46
+Ireland
+
+Gary Moore
+Run for cover
+1985
+3
+Military man
+hard rock,guitar hero
+5:40
+Ireland
+
+Gary Moore
+Run for cover
+1985
+4
+Empty rooms
+hard rock,ballad,guitar hero
+4:18
+Ireland
+
+Gary Moore
+Run for cover
+1985
+5
+Out of my system
+hard rock,guitar hero
+4:02
+Ireland
+
+Gary Moore
+Run for cover
+1985
+6
+Out in the fields
+hard rock,guitar hero
+4:17
+Ireland
+
+Gary Moore
+Run for cover
+1985
+7
+Nothing to lose
+hard rock,guitar hero
+4:42
+Ireland
+
+Gary Moore
+Run for cover
+1985
+8
+Once in a lifetime
+hard rock,guitar hero
+4:19
+Ireland
+
+Gary Moore
+Run for cover
+1985
+9
+All messed up
+hard rock,guitar hero
+4:52
+Ireland
+
+Gary Moore
+Still got the blues
+1990
+1
+Moving on
+blues,rock,guitar hero
+2:38
+Ireland
+
+Gary Moore
+Still got the blues
+1990
+10
+That kind of woman
+blues,rock,guitar hero
+4:28
+Ireland
+
+Gary Moore
+Still got the blues
+1990
+11
+All your love
+blues,rock,guitar hero
+3:41
+Ireland
+
+Gary Moore
+Still got the blues
+1990
+12
+Stop messin' around
+blues,rock,guitar hero
+3:52
+Ireland
+
+Gary Moore
+Still got the blues
+1990
+2
+Oh pretty woman
+blues,rock,guitar hero
+4:24
+Ireland
+
+Gary Moore
+Still got the blues
+1990
+3
+Walking by myself
+blues,rock,guitar hero
+2:55
+Ireland
+
+Gary Moore
+Still got the blues
+1990
+4
+Still got the blues
+blues,rock,guitar hero
+6:08
+Ireland
+
+Gary Moore
+Still got the blues
+1990
+5
+Texas strut
+blues,rock,guitar hero
+4:50
+Ireland
+
+Gary Moore
+Still got the blues
+1990
+6
+Too tired
+blues,rock,guitar hero
+2:49
+Ireland
+
+Gary Moore
+Still got the blues
+1990
+7
+King of the blues
+blues,rock,guitar hero
+4:34
+Ireland
+
+Gary Moore
+Still got the blues
+1990
+8
+As the years go passing by
+blues,rock,guitar hero,tranquil
+7:42
+Ireland
+
+Gary Moore
+Still got the blues
+1990
+9
+Midnight blues
+blues,rock,guitar hero
+4:57
+Ireland
+
+Gary Moore
+Wild frontier
+1987
+1
+Over the hills and far away
+hard rock,guitar hero
+5:19
+Ireland
+
+Gary Moore
+Wild frontier
+1987
+10
+Over the hills and far away (12" version)
+hard rock,guitar hero
+7:23
+Ireland
+
+Gary Moore
+Wild frontier
+1987
+11
+Crying in the shadows
+hard rock,ballad,guitar hero
+4:58
+Ireland
+
+Gary Moore
+Wild frontier
+1987
+2
+Wild frontier
+hard rock,guitar hero
+4:15
+Ireland
+
+Gary Moore
+Wild frontier
+1987
+3
+Take a little time
+hard rock,guitar hero
+4:04
+Ireland
+
+Gary Moore
+Wild frontier
+1987
+4
+The loner
+hard rock,instrumental,guitar,ballad,guitar hero
+5:52
+Ireland
+
+Gary Moore
+Wild frontier
+1987
+5
+Wild frontier (12" version)
+hard rock,guitar hero
+6:38
+Ireland
+
+Gary Moore
+Wild frontier
+1987
+6
+Friday on my mind
+hard rock,guitar hero
+4:12
+Ireland
+
+Gary Moore
+Wild frontier
+1987
+7
+Strangers in the darkness
+hard rock,ballad,guitar hero
+4:37
+Ireland
+
+Gary Moore
+Wild frontier
+1987
+8
+Thunder rising
+hard rock,guitar hero
+5:40
+Ireland
+
+Gary Moore
+Wild frontier
+1987
+9
+Johnny boy
+hard rock,ballad,guitar hero
+3:11
+Ireland
+
+Gazpacho
+Tick tock
+2009
+1
+Desert flight
+progressive
+7:39
+Norway
+
+Gazpacho
+Tick tock
+2009
+2
+The walk (part I)
+progressive,tranquil
+8:03
+Norway
+
+Gazpacho
+Tick tock
+2009
+3
+The walk (part II)
+progressive,tranquil
+5:39
+Norway
+
+Gazpacho
+Tick tock
+2009
+4
+Tick tock (part I)
+progressive,tranquil
+7:16
+Norway
+
+Gazpacho
+Tick tock
+2009
+5
+Tick tock (part II)
+progressive
+9:39
+Norway
+
+Gazpacho
+Tick tock
+2009
+6
+Tick tock (part III)
+progressive
+5:30
+Norway
+
+Gazpacho
+Tick tock
+2009
+7
+Winter is never
+progressive,tranquil
+4:55
+Norway
+
+Genesis
+Foxtrot
+1972
+1
+Watcher of the skies
+progressive,rock
+7:26
+England
+
+Genesis
+Foxtrot
+1972
+2
+Time table
+progressive,rock
+4:48
+England
+
+Genesis
+Foxtrot
+1972
+3
+Get 'em out by friday
+progressive,rock
+8:38
+England
+
+Genesis
+Foxtrot
+1972
+4
+Can - utility and the coastliners
+progressive,rock
+5:48
+England
+
+Genesis
+Foxtrot
+1972
+5
+Horizon's
+progressive,instrumental,guitar
+1:44
+England
+
+Genesis
+Foxtrot
+1972
+6
+Supper's ready
+progressive,rock
+22:58
+England
+
+Genesis
+Selling England by the pound
+1973
+1
+Dancing with the moonlight knight
+progressive,rock
+8:05
+England
+
+Genesis
+Selling England by the pound
+1973
+2
+I know what I like (in your wardrobe)
+progressive,rock
+4:08
+England
+
+Genesis
+Selling England by the pound
+1973
+3
+Firth of Fifth
+progressive,rock
+9:38
+England
+
+Genesis
+Selling England by the pound
+1973
+4
+More fool me
+progressive,ballad
+3:12
+England
+
+Genesis
+Selling England by the pound
+1973
+5
+The battle of Epping Forest
+progressive,rock
+11:49
+England
+
+Genesis
+Selling England by the pound
+1973
+6
+After the ordeal
+progressive,rock,instrumental
+4:17
+England
+
+Genesis
+Selling England by the pound
+1973
+7
+The cinema show
+progressive,rock
+11:03
+England
+
+Genesis
+Selling England by the pound
+1973
+8
+Aisle of plenty
+progressive,rock
+1:36
+England
+
+Genesis
+The lamb lies down on Broadway
+1974
+1
+The lamb lies down on Broadway
+progressive,rock
+4:47
+England
+
+Genesis
+The lamb lies down on Broadway
+1974
+10
+Carpet crawl
+progressive,rock
+5:14
+England
+
+Genesis
+The lamb lies down on Broadway
+1974
+11
+The chamber of 32 doors
+progressive,rock
+5:40
+England
+
+Genesis
+The lamb lies down on Broadway
+1974
+12
+Lilywhite Lilith
+progressive,rock
+2:45
+England
+
+Genesis
+The lamb lies down on Broadway
+1974
+13
+The waiting room
+progressive,experimental,instrumental
+5:21
+England
+
+Genesis
+The lamb lies down on Broadway
+1974
+14
+Anyway
+progressive,rock
+3:08
+England
+
+Genesis
+The lamb lies down on Broadway
+1974
+15
+Here comes the supernatural anaesthetist
+progressive,rock
+2:59
+England
+
+Genesis
+The lamb lies down on Broadway
+1974
+16
+The lamia
+progressive,rock
+6:56
+England
+
+Genesis
+The lamb lies down on Broadway
+1974
+17
+Silent sorrow in empty boats
+progressive,rock,instrumental,tranquil
+3:06
+England
+
+Genesis
+The lamb lies down on Broadway
+1974
+18
+The colony of slipperman
+progressive,rock
+8:13
+England
+
+Genesis
+The lamb lies down on Broadway
+1974
+19
+Ravine
+progressive,rock
+2:04
+England
+
+Genesis
+The lamb lies down on Broadway
+1974
+2
+Fly on a windshield
+progressive,rock
+4:23
+England
+
+Genesis
+The lamb lies down on Broadway
+1974
+20
+The light dies down on Broadway
+progressive,rock
+3:32
+England
+
+Genesis
+The lamb lies down on Broadway
+1974
+21
+Riding the scree
+progressive,rock
+3:57
+England
+
+Genesis
+The lamb lies down on Broadway
+1974
+22
+In the rapids
+progressive,rock
+2:29
+England
+
+Genesis
+The lamb lies down on Broadway
+1974
+23
+It
+progressive,rock
+4:14
+England
+
+Genesis
+The lamb lies down on Broadway
+1974
+3
+Broadway melody of 1974
+progressive,rock,instrumental
+0:32
+England
+
+Genesis
+The lamb lies down on Broadway
+1974
+4
+Cuckoo cocoon
+progressive,rock
+2:11
+England
+
+Genesis
+The lamb lies down on Broadway
+1974
+5
+In the cage
+progressive,rock
+8:14
+England
+
+Genesis
+The lamb lies down on Broadway
+1974
+6
+The grand parade of lifeless packaging
+progressive,rock
+2:46
+England
+
+Genesis
+The lamb lies down on Broadway
+1974
+7
+Back in N.Y.C.
+progressive,rock
+5:43
+England
+
+Genesis
+The lamb lies down on Broadway
+1974
+8
+Hairless heart
+progressive,rock,instrumental
+2:10
+England
+
+Genesis
+The lamb lies down on Broadway
+1974
+9
+Counting out time
+progressive,rock
+3:41
+England
+
+Gentle Giant
+Octopus
+1989
+1
+The advent of Panurge
+progressive,experimental
+4:40
+England
+
+Gentle Giant
+Octopus
+1989
+2
+Raconteur: troubadour
+progressive,experimental,tranquil
+4:05
+England
+
+Gentle Giant
+Octopus
+1989
+3
+A cry for everyone
+progressive,experimental
+4:05
+England
+
+Gentle Giant
+Octopus
+1989
+4
+Knots
+progressive,experimental
+4:10
+England
+
+Gentle Giant
+Octopus
+1989
+5
+The boys in the band
+progressive,experimental,instrumental
+4:30
+England
+
+Gentle Giant
+Octopus
+1989
+6
+Dog's life
+progressive,experimental
+3:10
+England
+
+Gentle Giant
+Octopus
+1989
+7
+Think of me with kindness
+progressive,experimental,tranquil
+3:35
+England
+
+Gentle Giant
+Octopus
+1989
+8
+River
+progressive,experimental,tranquil
+5:50
+England
+
+Georg Friedrich Händel
+Wassermusik/Feuerwerksmusik
+1963
+1
+Water music - Ouverture
+classic,baroque
+4:59
+Germany,England
+
+Georg Friedrich Händel
+Wassermusik/Feuerwerksmusik
+1963
+10
+Water music - Allegro
+classic,baroque
+2:03
+Germany,England
+
+Georg Friedrich Händel
+Wassermusik/Feuerwerksmusik
+1963
+11
+Water music - Alla Hornpipe
+classic,baroque
+4:24
+Germany,England
+
+Georg Friedrich Händel
+Wassermusik/Feuerwerksmusik
+1963
+12
+Water music - Menuet
+classic,baroque
+5:19
+Germany,England
+
+Georg Friedrich Händel
+Wassermusik/Feuerwerksmusik
+1963
+13
+Water music - Rigaudon
+classic,baroque
+2:31
+Germany,England
+
+Georg Friedrich Händel
+Wassermusik/Feuerwerksmusik
+1963
+14
+Water music - Lentement
+classic,baroque
+1:47
+Germany,England
+
+Georg Friedrich Händel
+Wassermusik/Feuerwerksmusik
+1963
+15
+Water music - Bourrée
+classic,baroque
+0:55
+Germany,England
+
+Georg Friedrich Händel
+Wassermusik/Feuerwerksmusik
+1963
+16
+Water music - Menuet
+classic,baroque
+2:26
+Germany,England
+
+Georg Friedrich Händel
+Wassermusik/Feuerwerksmusik
+1963
+17
+Water music - Allegro
+classic,baroque
+1:45
+Germany,England
+
+Georg Friedrich Händel
+Wassermusik/Feuerwerksmusik
+1963
+18
+Water music - Coro: Menuet
+classic,baroque
+1:48
+Germany,England
+
+Georg Friedrich Händel
+Wassermusik/Feuerwerksmusik
+1963
+19
+Music for the royal fireworks - Ouverture
+classic,baroque
+7:50
+Germany,England
+
+Georg Friedrich Händel
+Wassermusik/Feuerwerksmusik
+1963
+2
+Water music - Adagio e staccato
+classic,baroque
+1:59
+Germany,England
+
+Georg Friedrich Händel
+Wassermusik/Feuerwerksmusik
+1963
+20
+Music for the royal fireworks - Bourrée
+classic,baroque
+1:17
+Germany,England
+
+Georg Friedrich Händel
+Wassermusik/Feuerwerksmusik
+1963
+21
+Music for the royal fireworks - La Paix
+classic,baroque
+3:58
+Germany,England
+
+Georg Friedrich Händel
+Wassermusik/Feuerwerksmusik
+1963
+22
+Music for the royal fireworks - La Réjouissance
+classic,baroque
+1:57
+Germany,England
+
+Georg Friedrich Händel
+Wassermusik/Feuerwerksmusik
+1963
+23
+Music for the royal fireworks - Menuet I
+classic,baroque
+0:55
+Germany,England
+
+Georg Friedrich Händel
+Wassermusik/Feuerwerksmusik
+1963
+24
+Music for the royal fireworks - Menuet II
+classic,baroque
+1:15
+Germany,England
+
+Georg Friedrich Händel
+Wassermusik/Feuerwerksmusik
+1963
+3
+Water music - Andante
+classic,baroque
+7:32
+Germany,England
+
+Georg Friedrich Händel
+Wassermusik/Feuerwerksmusik
+1963
+4
+Water music - Allegro
+classic,baroque
+2:58
+Germany,England
+
+Georg Friedrich Händel
+Wassermusik/Feuerwerksmusik
+1963
+5
+Water music - Air
+classic,baroque
+4:51
+Germany,England
+
+Georg Friedrich Händel
+Wassermusik/Feuerwerksmusik
+1963
+6
+Water music - Menuet
+classic,baroque
+2:45
+Germany,England
+
+Georg Friedrich Händel
+Wassermusik/Feuerwerksmusik
+1963
+7
+Water music - Bourrée
+classic,baroque
+1:26
+Germany,England
+
+Georg Friedrich Händel
+Wassermusik/Feuerwerksmusik
+1963
+8
+Water music - Hornpipe
+classic,baroque
+1:28
+Germany,England
+
+Georg Friedrich Händel
+Wassermusik/Feuerwerksmusik
+1963
+9
+Water music - Allegretto
+classic,baroque
+3:42
+Germany,England
+
+George Gershwin
+Gershwin
+1989
+1
+Piano Concerto in F - (i) Allegro
+modern classic,american,piano
+12:45
+U.S.A.
+
+George Gershwin
+Gershwin
+1989
+2
+Piano Concerto in F - (ii) Andante con moto - Adagio
+modern classic,american,piano
+11:07
+U.S.A.
+
+George Gershwin
+Gershwin
+1989
+3
+Piano Concerto in F - (iii) Allegro agitato
+modern classic,american,piano
+6:38
+U.S.A.
+
+George Gershwin
+Gershwin
+1989
+4
+An American in Paris
+modern classic,american
+19:14
+U.S.A.
+
+George Gershwin
+Gershwin
+1989
+5
+Rhapsody in blue
+modern classic,american
+16:54
+U.S.A.
+
+Ghostpoet
+Peanut butter blues & melancholy jam
+2011
+1
+Onetwos
+intro,electronica,gloomy,debut album
+0:40
+England
+
+Ghostpoet
+Peanut butter blues & melancholy jam
+2011
+10
+Cash and carry me home
+hip hop,electronica,gloomy,debut album
+3:35
+England
+
+Ghostpoet
+Peanut butter blues & melancholy jam
+2011
+11
+Garden path
+hip hop,electronica,gloomy,debut album
+2:49
+England
+
+Ghostpoet
+Peanut butter blues & melancholy jam
+2011
+12
+Liiines
+hip hop,electronica,rock,debut album
+4:51
+England
+
+Ghostpoet
+Peanut butter blues & melancholy jam
+2011
+2
+Run run run
+hip hop,electronica,gloomy,debut album
+3:19
+England
+
+Ghostpoet
+Peanut butter blues & melancholy jam
+2011
+3
+Us against whatever ever
+hip hop,electronica,gloomy,debut album
+4:27
+England
+
+Ghostpoet
+Peanut butter blues & melancholy jam
+2011
+4
+Finished I ain't
+hip hop,electronica,gloomy,debut album
+4:18
+England
+
+Ghostpoet
+Peanut butter blues & melancholy jam
+2011
+5
+Longing for the night
+hip hop,electronica,gloomy,debut album
+3:33
+England
+
+Ghostpoet
+Peanut butter blues & melancholy jam
+2011
+6
+Yeah pause
+hip hop,electronica,gloomy,debut album
+0:16
+England
+
+Ghostpoet
+Peanut butter blues & melancholy jam
+2011
+7
+I just don't know
+hip hop,electronica,gloomy,debut album
+3:35
+England
+
+Ghostpoet
+Peanut butter blues & melancholy jam
+2011
+8
+Survive it
+hip hop,electronica,gloomy,debut album
+4:21
+England
+
+Ghostpoet
+Peanut butter blues & melancholy jam
+2011
+9
+Gaaasp
+hip hop,electronica,gloomy,debut album
+5:27
+England
+
+Goldfrapp
+Supernature
+2005
+1
+Ooh la la
+electronica
+3:24
+England
+
+Goldfrapp
+Supernature
+2005
+10
+Time out from the world
+electronica
+4:47
+England
+
+Goldfrapp
+Supernature
+2005
+11
+Number 1
+electronica
+3:27
+England
+
+Goldfrapp
+Supernature
+2005
+2
+Lovely 2 C U
+electronica
+3:25
+England
+
+Goldfrapp
+Supernature
+2005
+3
+Ride a white horse
+electronica
+4:41
+England
+
+Goldfrapp
+Supernature
+2005
+4
+You never know
+electronica
+3:27
+England
+
+Goldfrapp
+Supernature
+2005
+5
+Let it take you
+electronica
+4:29
+England
+
+Goldfrapp
+Supernature
+2005
+6
+Fly me away
+electronica
+4:26
+England
+
+Goldfrapp
+Supernature
+2005
+7
+Slide in
+electronica
+4:17
+England
+
+Goldfrapp
+Supernature
+2005
+8
+Koko
+electronica
+3:23
+England
+
+Goldfrapp
+Supernature
+2005
+9
+Satin chic
+electronica
+3:28
+England
+
+Guided by voices
+Isolation drills
+2001
+1
+Fair touching
+rock,alternative
+3:08
+U.S.A.
+
+Guided by voices
+Isolation drills
+2001
+10
+Glad girls
+rock,alternative
+3:49
+U.S.A.
+
+Guided by voices
+Isolation drills
+2001
+11
+Run wild
+rock,alternative
+3:48
+U.S.A.
+
+Guided by voices
+Isolation drills
+2001
+12
+Pivotal film
+rock,alternative
+3:10
+U.S.A.
+
+Guided by voices
+Isolation drills
+2001
+13
+How's my drinking?
+rock,alternative
+2:38
+U.S.A.
+
+Guided by voices
+Isolation drills
+2001
+14
+The brides have hit glass
+rock,alternative
+2:51
+U.S.A.
+
+Guided by voices
+Isolation drills
+2001
+15
+Fine to see you
+rock,alternative
+3:16
+U.S.A.
+
+Guided by voices
+Isolation drills
+2001
+16
+Privately
+rock,alternative
+4:05
+U.S.A.
+
+Guided by voices
+Isolation drills
+2001
+2
+Skills like this
+rock,alternative
+2:47
+U.S.A.
+
+Guided by voices
+Isolation drills
+2001
+3
+Chasing heather crazy
+rock,alternative
+2:53
+U.S.A.
+
+Guided by voices
+Isolation drills
+2001
+4
+Frostman
+rock,alternative
+0:55
+U.S.A.
+
+Guided by voices
+Isolation drills
+2001
+5
+Twilight campfighter
+rock,alternative
+3:08
+U.S.A.
+
+Guided by voices
+Isolation drills
+2001
+6
+Sister I need wine
+rock,alternative
+1:40
+U.S.A.
+
+Guided by voices
+Isolation drills
+2001
+7
+Want one?
+rock,alternative
+1:49
+U.S.A.
+
+Guided by voices
+Isolation drills
+2001
+8
+The enemy
+rock,alternative
+4:53
+U.S.A.
+
+Guided by voices
+Isolation drills
+2001
+9
+Unspirited
+rock,alternative
+2:25
+U.S.A.
+
+Gustav Holst and Györgi Ligeti
+The planets/Lux aeterna
+1968
+1
+The planets - Mars: the bringer of war
+classic,symphonic
+6:34
+England
+
+Gustav Holst and Györgi Ligeti
+The planets/Lux aeterna
+1968
+2
+The planets - Venus: the bringer of peace
+classic,symphonic,tranquil
+7:23
+England
+
+Gustav Holst and Györgi Ligeti
+The planets/Lux aeterna
+1968
+3
+The planets - Mercury: the winged messenger
+classic,symphonic
+3:56
+England
+
+Gustav Holst and Györgi Ligeti
+The planets/Lux aeterna
+1968
+4
+The planets - Jupiter: the bringer of jollity
+classic,symphonic
+7:59
+England
+
+Gustav Holst and Györgi Ligeti
+The planets/Lux aeterna
+1968
+5
+The planets - Saturn: the bringer of old age
+classic,symphonic
+7:42
+England
+
+Gustav Holst and Györgi Ligeti
+The planets/Lux aeterna
+1968
+6
+The planets - Uranus: the magician
+classic,symphonic
+5:22
+England
+
+Gustav Holst and Györgi Ligeti
+The planets/Lux aeterna
+1968
+7
+The planets - Neptune: the mystic
+classic,symphonic,choir
+6:45
+England
+
+Gustav Holst and Györgi Ligeti
+The planets/Lux aeterna
+1968
+8
+Lux aeterna
+classic,choir,experimental
+7:57
+Austria
+
+Gustav Mahler
+Symphony No.5
+1990
+1
+(i) Trauermarsch. In gemessenem Schritt. Streng. Wie ein Kondukt.
+classic,symphonic,romantic
+12:50
+Austria
+
+Gustav Mahler
+Symphony No.5
+1990
+2
+(ii) Sturmisch bewegt, mit grosster Vehemenz
+classic,symphonic,romantic
+14:56
+Austria
+
+Gustav Mahler
+Symphony No.5
+1990
+3
+(iii) Scherzo
+classic,symphonic,romantic
+19:33
+Austria
+
+Gustav Mahler
+Symphony No.5
+1990
+4
+(iv) Adagietto
+classic,symphonic,romantic
+12:03
+Austria
+
+Gustav Mahler
+Symphony No.5
+1990
+5
+(v) Rondo-Finale: Allegro
+classic,symphonic,romantic
+14:53
+Austria
+
+Hot line & Darryl Kennedy
+Energy
+1991
+1
+Pharoah's treasures
+jazz,instrumental
+5:08
+Czechoslovakia
+
+Hot line & Darryl Kennedy
+Energy
+1991
+10
+High energy
+jazz,instrumental
+3:06
+Czechoslovakia
+
+Hot line & Darryl Kennedy
+Energy
+1991
+11
+Blue clown
+jazz,instrumental
+3:42
+Czechoslovakia
+
+Hot line & Darryl Kennedy
+Energy
+1991
+12
+The time is right
+jazz,instrumental
+4:38
+Czechoslovakia
+
+Hot line & Darryl Kennedy
+Energy
+1991
+2
+Indian summer
+jazz,instrumental
+5:34
+Czechoslovakia
+
+Hot line & Darryl Kennedy
+Energy
+1991
+3
+A touch of Brazil
+jazz,instrumental
+4:15
+Czechoslovakia
+
+Hot line & Darryl Kennedy
+Energy
+1991
+4
+Summer's end
+jazz,instrumental
+4:37
+Czechoslovakia
+
+Hot line & Darryl Kennedy
+Energy
+1991
+5
+Juicy fruit
+jazz,instrumental
+4:01
+Czechoslovakia
+
+Hot line & Darryl Kennedy
+Energy
+1991
+6
+Water colors
+jazz,instrumental
+3:31
+Czechoslovakia
+
+Hot line & Darryl Kennedy
+Energy
+1991
+7
+Dragon's tooth
+jazz,instrumental
+3:31
+Czechoslovakia
+
+Hot line & Darryl Kennedy
+Energy
+1991
+8
+Carneval
+jazz,instrumental
+3:39
+Czechoslovakia
+
+Hot line & Darryl Kennedy
+Energy
+1991
+9
+Lazy walker
+jazz,instrumental
+3:58
+Czechoslovakia
+
+IQ
+Are you sitting comfortably?
+1989
+1
+War heroes
+progressive,rock
+6:27
+England
+
+IQ
+Are you sitting comfortably?
+1989
+2
+Drive on
+progressive,rock
+4:58
+England
+
+IQ
+Are you sitting comfortably?
+1989
+3
+Nostalgia
+progressive,rock,instrumental
+2:22
+England
+
+IQ
+Are you sitting comfortably?
+1989
+4
+Falling apart at the seams
+progressive,rock
+7:47
+England
+
+IQ
+Are you sitting comfortably?
+1989
+5
+Sold on you
+progressive,rock
+4:41
+England
+
+IQ
+Are you sitting comfortably?
+1989
+6
+Through my fingers
+progressive,rock
+5:30
+England
+
+IQ
+Are you sitting comfortably?
+1989
+7
+Wurensh
+progressive,rock
+9:38
+England
+
+IQ
+Are you sitting comfortably?
+1989
+8
+Nothing at all
+progressive,rock
+4:44
+England
+
+IQ
+Dark matter
+2004
+1
+Sacred sound
+progressive,rock
+11:40
+England
+
+IQ
+Dark matter
+2004
+2
+Red dust shadow
+progressive,rock
+5:53
+England
+
+IQ
+Dark matter
+2004
+3
+You never will
+progressive,rock
+4:54
+England
+
+IQ
+Dark matter
+2004
+4
+Born brilliant
+progressive,rock
+5:20
+England
+
+IQ
+Dark matter
+2004
+5
+Harvest of souls
+progressive,rock
+24:29
+England
+
+IQ
+Nomzamo
+1987
+1
+No love lost
+progressive,rock
+6:03
+England
+
+IQ
+Nomzamo
+1987
+10
+No love lost
+progressive,rock
+4:11
+England
+
+IQ
+Nomzamo
+1987
+2
+Promises (as the years go by)
+progressive,rock
+4:34
+England
+
+IQ
+Nomzamo
+1987
+3
+Nomzamo
+progressive,rock
+7:01
+England
+
+IQ
+Nomzamo
+1987
+4
+Still life
+progressive,rock
+5:58
+England
+
+IQ
+Nomzamo
+1987
+5
+Passing strangers
+progressive,rock
+3:48
+England
+
+IQ
+Nomzamo
+1987
+6
+Human nature
+progressive,rock
+9:42
+England
+
+IQ
+Nomzamo
+1987
+7
+Screaming
+progressive,rock
+4:07
+England
+
+IQ
+Nomzamo
+1987
+8
+Common ground
+progressive,rock
+7:00
+England
+
+IQ
+Nomzamo
+1987
+9
+Colourflow
+progressive,rock
+5:26
+England
+
+IQ
+Subterranea
+1997
+1
+Overture
+progressive,rock,instrumental
+4:38
+England
+
+IQ
+Subterranea
+1997
+10
+The sense in sanity
+progressive,rock
+4:47
+England
+
+IQ
+Subterranea
+1997
+11
+State of mine
+progressive,rock,instrumental
+1:59
+England
+
+IQ
+Subterranea
+1997
+12
+Laid low
+progressive,rock,instrumental
+1:29
+England
+
+IQ
+Subterranea
+1997
+13
+Breathtaker
+progressive,rock
+6:04
+England
+
+IQ
+Subterranea
+1997
+14
+Capricorn
+progressive,rock
+5:16
+England
+
+IQ
+Subterranea
+1997
+15
+The other side
+progressive,rock,instrumental
+2:22
+England
+
+IQ
+Subterranea
+1997
+16
+Unsolid ground
+progressive,rock
+5:04
+England
+
+IQ
+Subterranea
+1997
+17
+Somewhere in time
+progressive,rock
+7:11
+England
+
+IQ
+Subterranea
+1997
+18
+High waters
+progressive,rock
+2:43
+England
+
+IQ
+Subterranea
+1997
+19
+The narrow margin
+progressive,rock
+20:00
+England
+
+IQ
+Subterranea
+1997
+2
+Provider
+progressive,rock
+1:36
+England
+
+IQ
+Subterranea
+1997
+3
+Subterranea
+progressive,rock
+5:53
+England
+
+IQ
+Subterranea
+1997
+4
+Sleepless incidental
+progressive,rock
+6:23
+England
+
+IQ
+Subterranea
+1997
+5
+Failsafe
+progressive,rock
+8:57
+England
+
+IQ
+Subterranea
+1997
+6
+Speak my name
+progressive,rock
+3:34
+England
+
+IQ
+Subterranea
+1997
+7
+Tunnel vision
+progressive,rock
+7:24
+England
+
+IQ
+Subterranea
+1997
+8
+Infernal chorus
+progressive,rock
+5:09
+England
+
+IQ
+Subterranea
+1997
+9
+King of fools
+progressive,rock
+2:02
+England
+
+Igor Strawinsky
+L'oiseau de Feu / Le Sacre du Printemps
+1986
+1
+The firebird (i) - The firebird and its dance
+classic,symphonic
+3:23
+Russia,France,U.S.A.
+
+Igor Strawinsky
+L'oiseau de Feu / Le Sacre du Printemps
+1986
+10
+The rite of spring (iv) - Spring round dances
+classic,symphonic
+3:40
+Russia,France,U.S.A.
+
+Igor Strawinsky
+L'oiseau de Feu / Le Sacre du Printemps
+1986
+11
+The rite of spring (v) - Games of the rival tribes / Procession of the wise elder / Adoration of the earth - the wise elder
+classic,symphonic
+2:56
+Russia,France,U.S.A.
+
+Igor Strawinsky
+L'oiseau de Feu / Le Sacre du Printemps
+1986
+12
+The rite of spring (vi) - Dance of the earth
+classic,symphonic
+1:09
+Russia,France,U.S.A.
+
+Igor Strawinsky
+L'oiseau de Feu / Le Sacre du Printemps
+1986
+13
+The rite of spring (vii) - introduction part 2
+classic,symphonic
+4:16
+Russia,France,U.S.A.
+
+Igor Strawinsky
+L'oiseau de Feu / Le Sacre du Printemps
+1986
+14
+The rite of spring (viii) - Mystical circles of the young girls
+classic,symphonic
+3:20
+Russia,France,U.S.A.
+
+Igor Strawinsky
+L'oiseau de Feu / Le Sacre du Printemps
+1986
+15
+The rite of spring (ix) - Glorification of the chosen victim / Summoning of the ancestors
+classic,symphonic
+2:17
+Russia,France,U.S.A.
+
+Igor Strawinsky
+L'oiseau de Feu / Le Sacre du Printemps
+1986
+16
+The rite of spring (x) - Ritual of the ancestors
+classic,symphonic
+3:17
+Russia,France,U.S.A.
+
+Igor Strawinsky
+L'oiseau de Feu / Le Sacre du Printemps
+1986
+17
+The rite of spring (xi) - Sacrificial dance / The chosen victim
+classic,symphonic
+4:30
+Russia,France,U.S.A.
+
+Igor Strawinsky
+L'oiseau de Feu / Le Sacre du Printemps
+1986
+2
+The firebird (ii) - Variation of the firebird
+classic,symphonic
+1:18
+Russia,France,U.S.A.
+
+Igor Strawinsky
+L'oiseau de Feu / Le Sacre du Printemps
+1986
+3
+The firebird (iii) - The princesses' round
+classic,symphonic
+5:24
+Russia,France,U.S.A.
+
+Igor Strawinsky
+L'oiseau de Feu / Le Sacre du Printemps
+1986
+4
+The firebird (iv) - Infernal dance of king Kashchei
+classic,symphonic
+4:44
+Russia,France,U.S.A.
+
+Igor Strawinsky
+L'oiseau de Feu / Le Sacre du Printemps
+1986
+5
+The firebird (v) - Lullaby
+classic,symphonic
+4:02
+Russia,France,U.S.A.
+
+Igor Strawinsky
+L'oiseau de Feu / Le Sacre du Printemps
+1986
+6
+The firebird (vi) - Finale
+classic,symphonic
+3:02
+Russia,France,U.S.A.
+
+Igor Strawinsky
+L'oiseau de Feu / Le Sacre du Printemps
+1986
+7
+The rite of spring (i) - Introduction
+classic,symphonic
+3:10
+Russia,France,U.S.A.
+
+Igor Strawinsky
+L'oiseau de Feu / Le Sacre du Printemps
+1986
+8
+The rite of spring (ii) - The augurs of spring / Dance of the young girls
+classic,symphonic
+3:09
+Russia,France,U.S.A.
+
+Igor Strawinsky
+L'oiseau de Feu / Le Sacre du Printemps
+1986
+9
+The rite of spring (iii) - Mock abduction
+classic,symphonic
+1:19
+Russia,France,U.S.A.
+
+Iona
+Open sky
+2000
+1
+Woven cord
+folk,rock,instrumental
+9:28
+England
+
+Iona
+Open sky
+2000
+10
+Songs of ascent (part III)
+folk,rock
+4:52
+England
+
+Iona
+Open sky
+2000
+11
+Friendship's door
+folk,rock
+7:14
+England
+
+Iona
+Open sky
+2000
+2
+Wave after wave
+folk,rock
+6:15
+England
+
+Iona
+Open sky
+2000
+3
+Open sky
+folk,rock
+5:39
+England
+
+Iona
+Open sky
+2000
+4
+Castlerigg
+folk,rock,instrumental
+9:25
+England
+
+Iona
+Open sky
+2000
+5
+A million stars
+folk,rock,instrumental
+3:19
+England
+
+Iona
+Open sky
+2000
+6
+Light reflected
+folk,rock
+5:11
+England
+
+Iona
+Open sky
+2000
+7
+Hinba
+folk,rock
+4:57
+England
+
+Iona
+Open sky
+2000
+8
+Songs of ascent (part I)
+folk,rock
+7:58
+England
+
+Iona
+Open sky
+2000
+9
+Songs of ascent (part II)
+folk,rock
+9:06
+England
+
+Iron maiden
+The number of the beast
+1998
+1
+Invaders
+heavy metal
+3:22
+England
+
+Iron maiden
+The number of the beast
+1998
+2
+Children of the damned
+heavy metal
+4:33
+England
+
+Iron maiden
+The number of the beast
+1998
+3
+The prisoner
+heavy metal
+6:00
+England
+
+Iron maiden
+The number of the beast
+1998
+4
+22 Acacia avenue
+heavy metal
+4:49
+England
+
+Iron maiden
+The number of the beast
+1998
+5
+The number of the beast
+heavy metal
+3:50
+England
+
+Iron maiden
+The number of the beast
+1998
+6
+Run to the hills
+heavy metal
+3:50
+England
+
+Iron maiden
+The number of the beast
+1998
+7
+Gangland
+heavy metal
+3:47
+England
+
+Iron maiden
+The number of the beast
+1998
+8
+Total eclipse
+heavy metal
+4:28
+England
+
+Iron maiden
+The number of the beast
+1998
+9
+Hallowed be thy name
+heavy metal
+7:10
+England
+
+James LaBrie
+Elements of persuasion
+2005
+1
+Crucify
+metal,rock
+6:03
+Canada
+
+James LaBrie
+Elements of persuasion
+2005
+10
+Oblivious
+metal,rock
+5:20
+Canada
+
+James LaBrie
+Elements of persuasion
+2005
+11
+In too deep
+metal,rock
+6:56
+Canada
+
+James LaBrie
+Elements of persuasion
+2005
+12
+Drained
+metal,rock
+5:14
+Canada
+
+James LaBrie
+Elements of persuasion
+2005
+2
+Alone
+metal,rock
+5:36
+Canada
+
+James LaBrie
+Elements of persuasion
+2005
+3
+Freaks
+metal,rock
+5:38
+Canada
+
+James LaBrie
+Elements of persuasion
+2005
+4
+Invisible
+metal,rock
+5:42
+Canada
+
+James LaBrie
+Elements of persuasion
+2005
+5
+Lost
+metal,rock,tranquil
+3:41
+Canada
+
+James LaBrie
+Elements of persuasion
+2005
+6
+Undecided
+metal,rock
+5:30
+Canada
+
+James LaBrie
+Elements of persuasion
+2005
+7
+Smashed
+metal,rock
+5:31
+Canada
+
+James LaBrie
+Elements of persuasion
+2005
+8
+Pretender
+metal,rock
+5:36
+Canada
+
+James LaBrie
+Elements of persuasion
+2005
+9
+Slightly out of reach
+metal,rock
+5:51
+Canada
+
+James LaBrie
+Static Impulse
+2010
+1
+One more time
+heavy metal,rock
+4:16
+Canada
+
+James LaBrie
+Static Impulse
+2010
+10
+This is war
+heavy metal,rock
+4:30
+Canada
+
+James LaBrie
+Static Impulse
+2010
+11
+Superstar
+heavy metal,rock
+3:33
+Canada
+
+James LaBrie
+Static Impulse
+2010
+12
+Coming home
+heavy metal,rock
+4:24
+Canada
+
+James LaBrie
+Static Impulse
+2010
+13
+Jekyll or Hyde (demo)
+heavy metal,rock
+3:49
+Canada
+
+James LaBrie
+Static Impulse
+2010
+14
+Coming home (acoustic mix)
+heavy metal,rock
+4:23
+Canada
+
+James LaBrie
+Static Impulse
+2010
+2
+Jekyll or Hyde
+heavy metal,rock
+3:46
+Canada
+
+James LaBrie
+Static Impulse
+2010
+3
+Mislead
+heavy metal,rock
+4:18
+Canada
+
+James LaBrie
+Static Impulse
+2010
+4
+Euphoric
+heavy metal,rock
+5:09
+Canada
+
+James LaBrie
+Static Impulse
+2010
+5
+Over the edge
+heavy metal,rock
+4:21
+Canada
+
+James LaBrie
+Static Impulse
+2010
+6
+I need you
+heavy metal,rock
+4:11
+Canada
+
+James LaBrie
+Static Impulse
+2010
+7
+Who you think I am
+heavy metal,rock
+3:57
+Canada
+
+James LaBrie
+Static Impulse
+2010
+8
+I tried
+heavy metal,rock
+3:58
+Canada
+
+James LaBrie
+Static Impulse
+2010
+9
+Just watch me
+heavy metal,rock
+4:18
+Canada
+
+Jan Akkerman
+Heartware
+1987
+1
+My pleasure
+guitar,instrumental,rock,guitar hero
+8:55
+Netherlands
+
+Jan Akkerman
+Heartware
+1987
+2
+Just because: so!
+guitar,instrumental,guitar hero
+5:01
+Netherlands
+
+Jan Akkerman
+Heartware
+1987
+3
+Lost & found
+guitar,instrumental,rock,guitar hero
+7:01
+Netherlands
+
+Jan Akkerman
+Heartware
+1987
+4
+Heartware
+guitar,instrumental,tranquil,guitar hero
+6:51
+Netherlands
+
+Jan Akkerman
+Heartware
+1987
+5
+Winterborn: lyric
+guitar,instrumental,tranquil,guitar hero
+5:07
+Netherlands
+
+Jan Akkerman
+Heartware
+1987
+6
+Lonely street of dreams
+guitar,instrumental,tranquil,guitar hero
+5:50
+Netherlands
+
+Jan Akkerman
+Heartware
+1987
+7
+Firenze
+guitar,instrumental,tranquil,guitar hero
+2:56
+Netherlands
+
+Jean Sibelius
+Finlandia/Karelia suite
+1988
+1
+Finlandia (Op.26)
+classic,symphonic
+8:25
+Finland
+
+Jean Sibelius
+Finlandia/Karelia suite
+1988
+2
+Karelia Suite - Intermezzo
+classic,symphonic
+3:46
+Finland
+
+Jean Sibelius
+Finlandia/Karelia suite
+1988
+3
+Karelia Suite - Ballade
+classic,symphonic
+6:20
+Finland
+
+Jean Sibelius
+Finlandia/Karelia suite
+1988
+4
+Karelia Suite - Alla marcia
+classic,symphonic
+4:31
+Finland
+
+Jean Sibelius
+Finlandia/Karelia suite
+1988
+5
+Lemminkäinen Suite
+classic,symphonic
+4:31
+Finland
+
+Jean Sibelius
+Finlandia/Karelia suite
+1988
+6
+Pohjola's daughter (Op.49)
+classic,symphonic
+13:59
+Finland
+
+Jean Sibelius
+Finlandia/Karelia suite
+1988
+7
+The swan of Tuonela (Op.22 No.3)
+classic,symphonic
+7:49
+Finland
+
+Jean Sibelius
+Finlandia/Karelia suite
+1988
+8
+Valse triste (Op.26)
+classic,symphonic
+5:21
+Finland
+
+Jean Sibelius
+The symphonies (1 van 3)
+1996
+1
+Symphonie No.1 in E minor, op.39 - Andante - Allegro energico
+classic,symphonic
+10:40
+Finland
+
+Jean Sibelius
+The symphonies (1 van 3)
+1996
+2
+Symphonie No.1 in E minor, op.39 - Andante
+classic,symphonic
+8:33
+Finland
+
+Jean Sibelius
+The symphonies (1 van 3)
+1996
+3
+Symphonie No.1 in E minor, op.39 - Scherzo: Allegro
+classic,symphonic
+4:53
+Finland
+
+Jean Sibelius
+The symphonies (1 van 3)
+1996
+4
+Symphonie No.1 in E minor, op.39 - Finale
+classic,symphonic
+10:40
+Finland
+
+Jean Sibelius
+The symphonies (1 van 3)
+1996
+5
+Symphonie No.4 in A minor, op.63 - Tempo molto moderato, quasi adagio
+classic,symphonic
+10:12
+Finland
+
+Jean Sibelius
+The symphonies (1 van 3)
+1996
+6
+Symphonie No.4 in A minor, op.63 - Allegro molto vivace
+classic,symphonic
+4:02
+Finland
+
+Jean Sibelius
+The symphonies (1 van 3)
+1996
+7
+Symphonie No.4 in A minor, op.63 - Il tempo largo
+classic,symphonic
+9:03
+Finland
+
+Jean Sibelius
+The symphonies (1 van 3)
+1996
+8
+Symphonie No.4 in A minor, op.63 - Allegro
+classic,symphonic
+9:14
+Finland
+
+Jean Sibelius
+The symphonies (2 van 3)
+1996
+1
+Symphonie No.2 in D major, op.43 - Allegretto
+classic,symphonic
+9:44
+Finland
+
+Jean Sibelius
+The symphonies (2 van 3)
+1996
+2
+Symphonie No.2 in D major, op.43 - Tempo andante
+classic,symphonic
+13:02
+Finland
+
+Jean Sibelius
+The symphonies (2 van 3)
+1996
+3
+Symphonie No.2 in D major, op.43 - Vivacissimo
+classic,symphonic
+6:05
+Finland
+
+Jean Sibelius
+The symphonies (2 van 3)
+1996
+4
+Symphonie No.2 in D major, op.43 - Allegro moderato
+classic,symphonic
+14:13
+Finland
+
+Jean Sibelius
+The symphonies (2 van 3)
+1996
+5
+Symphonie No.3 in C major, op.52 - Allegro moderato
+classic,symphonic
+9:17
+Finland
+
+Jean Sibelius
+The symphonies (2 van 3)
+1996
+6
+Symphonie No.3 in C major, op.52 - Andantino con moto, quasi allegretto
+classic,symphonic
+8:11
+Finland
+
+Jean Sibelius
+The symphonies (2 van 3)
+1996
+7
+Symphonie No.3 in C major, op.52 - Moderato - Allegro (ma non tanto)
+classic,symphonic
+8:42
+Finland
+
+Jean Sibelius
+The symphonies (3 van 3)
+1996
+1
+Symphonie No.5 in E flat major, op.82 - Tempo molto moderato
+classic,symphonic
+11:57
+Finland
+
+Jean Sibelius
+The symphonies (3 van 3)
+1996
+2
+Symphonie No.5 in E flat major, op.82 - Andante mosso, quasi allegretto
+classic,symphonic
+7:12
+Finland
+
+Jean Sibelius
+The symphonies (3 van 3)
+1996
+3
+Symphonie No.5 in E flat major, op.82 - Allegro molto
+classic,symphonic
+8:04
+Finland
+
+Jean Sibelius
+The symphonies (3 van 3)
+1996
+4
+Symphonie No.6 in D minor, op.104 - Allegro molto moderato
+classic,symphonic
+8:24
+Finland
+
+Jean Sibelius
+The symphonies (3 van 3)
+1996
+5
+Symphonie No.6 in D minor, op.104 - Allegro moderato
+classic,symphonic
+4:03
+Finland
+
+Jean Sibelius
+The symphonies (3 van 3)
+1996
+6
+Symphonie No.6 in D minor, op.104 - Poco vivace
+classic,symphonic
+3:02
+Finland
+
+Jean Sibelius
+The symphonies (3 van 3)
+1996
+7
+Symphonie No.6 in D minor, op.104 - Allegro molto
+classic,symphonic
+8:42
+Finland
+
+Jean Sibelius
+The symphonies (3 van 3)
+1996
+8
+Symphonie No.7 in C major, op.105
+classic,symphonic
+21:18
+Finland
+
+Jimi Hendrix
+All the hits
+1989
+1
+Hey Joe
+rock,guitar,psychedelic,blues,guitar hero
+3:25
+U.S.A.
+
+Jimi Hendrix
+All the hits
+1989
+10
+Stone free
+rock,guitar,psychedelic,blues,guitar hero
+3:34
+U.S.A.
+
+Jimi Hendrix
+All the hits
+1989
+11
+Highway chile
+rock,guitar,psychedelic,blues,guitar hero
+3:28
+U.S.A.
+
+Jimi Hendrix
+All the hits
+1989
+12
+Manic depression
+rock,guitar,psychedelic,blues,guitar hero
+3:35
+U.S.A.
+
+Jimi Hendrix
+All the hits
+1989
+13
+Long hot summer night
+rock,guitar,psychedelic,blues,guitar hero
+3:25
+U.S.A.
+
+Jimi Hendrix
+All the hits
+1989
+14
+Cross town traffic
+rock,guitar,psychedelic,blues,guitar hero
+2:18
+U.S.A.
+
+Jimi Hendrix
+All the hits
+1989
+15
+51st amniversary
+rock,guitar,psychedelic,blues,guitar hero
+3:14
+U.S.A.
+
+Jimi Hendrix
+All the hits
+1989
+16
+Let me light your fire
+rock,guitar,psychedelic,blues,guitar hero
+2:38
+U.S.A.
+
+Jimi Hendrix
+All the hits
+1989
+2
+Purple haze
+rock,guitar,psychedelic,blues,guitar hero
+2:45
+U.S.A.
+
+Jimi Hendrix
+All the hits
+1989
+3
+The wind cries Mary
+rock,guitar,psychedelic,blues,guitar hero
+3:16
+U.S.A.
+
+Jimi Hendrix
+All the hits
+1989
+4
+Foxy lady
+rock,guitar,psychedelic,blues,guitar hero
+3:10
+U.S.A.
+
+Jimi Hendrix
+All the hits
+1989
+5
+Remember
+rock,guitar,psychedelic,blues,guitar hero
+2:44
+U.S.A.
+
+Jimi Hendrix
+All the hits
+1989
+6
+Gypsy eyes
+rock,guitar,psychedelic,blues,guitar hero
+3:41
+U.S.A.
+
+Jimi Hendrix
+All the hits
+1989
+7
+All along the watchtower
+rock,guitar,psychedelic,blues,guitar hero
+3:58
+U.S.A.
+
+Jimi Hendrix
+All the hits
+1989
+8
+Voodoo chile
+rock,guitar,psychedelic,blues,guitar hero
+5:12
+U.S.A.
+
+Jimi Hendrix
+All the hits
+1989
+9
+Burning of the midnight lamp
+rock,guitar,psychedelic,blues,guitar hero
+3:36
+U.S.A.
+
+Joan As Police Woman
+The deep field
+2011
+1
+Nervous
+alternative,pop
+6:02
+U.S.A.
+
+Joan As Police Woman
+The deep field
+2011
+10
+I was everyone
+alternative,pop
+6:05
+U.S.A.
+
+Joan As Police Woman
+The deep field
+2011
+2
+The magic
+alternative,pop
+4:09
+U.S.A.
+
+Joan As Police Woman
+The deep field
+2011
+3
+The action man
+alternative,pop
+5:08
+U.S.A.
+
+Joan As Police Woman
+The deep field
+2011
+4
+Flash
+alternative,pop
+7:51
+U.S.A.
+
+Joan As Police Woman
+The deep field
+2011
+5
+Run for love
+alternative,pop
+5:37
+U.S.A.
+
+Joan As Police Woman
+The deep field
+2011
+6
+Human condition
+alternative,pop
+5:33
+U.S.A.
+
+Joan As Police Woman
+The deep field
+2011
+7
+Kiss the specifics
+alternative,pop
+4:30
+U.S.A.
+
+Joan As Police Woman
+The deep field
+2011
+8
+Chemmie
+alternative,pop
+4:47
+U.S.A.
+
+Joan As Police Woman
+The deep field
+2011
+9
+Forever and a year
+alternative,pop
+5:56
+U.S.A.
+
+Joaquín Rodrigo
+Concierto de Aranjuez
+1978
+1
+Concierto de Aranjuez - Allegro con spirito
+classic,symphonic,guitar,spanish
+6:10
+Spain
+
+Joaquín Rodrigo
+Concierto de Aranjuez
+1978
+2
+Concierto de Aranjuez - Adagio
+classic,symphonic,guitar,spanish
+12:07
+Spain
+
+Joaquín Rodrigo
+Concierto de Aranjuez
+1978
+3
+Concierto de Aranjuez - Allegro gentile
+classic,symphonic,guitar,spanish
+5:20
+Spain
+
+Joaquín Rodrigo
+Concierto de Aranjuez
+1978
+4
+Fantasía para un gentilhombre - Villany y Recercare
+classic,symphonic,guitar,spanish
+4:47
+Spain
+
+Joaquín Rodrigo
+Concierto de Aranjuez
+1978
+5
+Fantasía para un gentilhombre - Españoleta y fanfare de la cabellería de Nápoles
+classic,symphonic,guitar,spanish
+10:19
+Spain
+
+Joaquín Rodrigo
+Concierto de Aranjuez
+1978
+6
+Fantasía para un gentilhombre - Danza de las hachas
+classic,symphonic,guitar,spanish
+2:08
+Spain
+
+Joaquín Rodrigo
+Concierto de Aranjuez
+1978
+7
+Fantasía para un gentilhombre - Canario
+classic,symphonic,guitar,spanish
+4:41
+Spain
+
+Joe Bonamassa
+Black rock
+2010
+1
+Steal your heart away
+blues,rock
+3:47
+U.S.A.
+
+Joe Bonamassa
+Black rock
+2010
+10
+Look over yonder's wall
+blues,rock
+3:27
+U.S.A.
+
+Joe Bonamassa
+Black rock
+2010
+11
+Athens to Athens
+blues,rock
+2:26
+U.S.A.
+
+Joe Bonamassa
+Black rock
+2010
+12
+Blue and evil
+blues,rock
+5:44
+U.S.A.
+
+Joe Bonamassa
+Black rock
+2010
+13
+Baby you gotta change your mind
+blues
+4:23
+U.S.A.
+
+Joe Bonamassa
+Black rock
+2010
+2
+I know a place
+blues,rock
+4:19
+U.S.A.
+
+Joe Bonamassa
+Black rock
+2010
+3
+When the fire hits the sea
+blues,rock
+3:55
+U.S.A.
+
+Joe Bonamassa
+Black rock
+2010
+4
+Quarryman's lament
+blues,rock,folk
+5:22
+U.S.A.
+
+Joe Bonamassa
+Black rock
+2010
+5
+Spanish boots
+blues,rock
+4:39
+U.S.A.
+
+Joe Bonamassa
+Black rock
+2010
+6
+Bird on a wire
+blues,rock,ballad
+5:21
+U.S.A.
+
+Joe Bonamassa
+Black rock
+2010
+7
+Three times a fool
+blues,rock
+2:02
+U.S.A.
+
+Joe Bonamassa
+Black rock
+2010
+8
+Night life
+blues,rock
+3:26
+U.S.A.
+
+Joe Bonamassa
+Black rock
+2010
+9
+Wandering earth
+blues,rock
+4:19
+U.S.A.
+
+Joe Bonamassa
+Driving towards the daylight
+2012
+1
+Dislocated boy
+blues,rock,guitar hero
+6:39
+U.S.A.
+
+Joe Bonamassa
+Driving towards the daylight
+2012
+10
+Somewhere trouble don't go
+blues,rock,guitar hero
+4:58
+U.S.A.
+
+Joe Bonamassa
+Driving towards the daylight
+2012
+11
+Too much ain't enough love
+blues,rock,guitar hero
+5:37
+U.S.A.
+
+Joe Bonamassa
+Driving towards the daylight
+2012
+2
+Stones in my passway
+blues,rock,guitar hero
+3:57
+U.S.A.
+
+Joe Bonamassa
+Driving towards the daylight
+2012
+3
+Driving towards the daylight
+rock,ballad,guitar hero
+4:50
+U.S.A.
+
+Joe Bonamassa
+Driving towards the daylight
+2012
+4
+Who's been talking
+blues,rock,guitar hero
+3:28
+U.S.A.
+
+Joe Bonamassa
+Driving towards the daylight
+2012
+5
+I got all you need
+blues,rock,guitar hero
+3:03
+U.S.A.
+
+Joe Bonamassa
+Driving towards the daylight
+2012
+6
+A place in my heart
+blues,rock,guitar hero
+6:47
+U.S.A.
+
+Joe Bonamassa
+Driving towards the daylight
+2012
+7
+Lonely town lonely street
+blues,rock,guitar hero
+7:07
+U.S.A.
+
+Joe Bonamassa
+Driving towards the daylight
+2012
+8
+Heavenly soul
+blues,rock,guitar hero
+5:55
+U.S.A.
+
+Joe Bonamassa
+Driving towards the daylight
+2012
+9
+New coat of paint
+blues,rock,guitar hero
+4:06
+U.S.A.
+
+Joe Bonamassa
+Dust bowl
+2011
+1
+Slow train
+blues,rock,guitar hero
+6:49
+U.S.A.
+
+Joe Bonamassa
+Dust bowl
+2011
+10
+The whale that swallowed Jonah
+blues,rock,guitar hero
+4:46
+U.S.A.
+
+Joe Bonamassa
+Dust bowl
+2011
+11
+Sweet Rowena
+blues,rock,guitar hero
+4:34
+U.S.A.
+
+Joe Bonamassa
+Dust bowl
+2011
+12
+Prisoner
+blues,rock,guitar hero
+6:48
+U.S.A.
+
+Joe Bonamassa
+Dust bowl
+2011
+2
+Dust bowl
+blues,rock,guitar hero
+4:33
+U.S.A.
+
+Joe Bonamassa
+Dust bowl
+2011
+3
+Tennessee plates
+blues,rock,guitar hero
+4:18
+U.S.A.
+
+Joe Bonamassa
+Dust bowl
+2011
+4
+The meaning of the blues
+blues,rock,guitar hero
+5:44
+U.S.A.
+
+Joe Bonamassa
+Dust bowl
+2011
+5
+Black lung heartache
+blues,rock,guitar hero
+4:14
+U.S.A.
+
+Joe Bonamassa
+Dust bowl
+2011
+6
+You better watch yourself
+blues,rock,guitar hero
+3:30
+U.S.A.
+
+Joe Bonamassa
+Dust bowl
+2011
+7
+The last matador of Bayonne
+blues,rock,guitar hero
+5:23
+U.S.A.
+
+Joe Bonamassa
+Dust bowl
+2011
+8
+Heartbreaker
+blues,rock,guitar hero
+5:49
+U.S.A.
+
+Joe Bonamassa
+Dust bowl
+2011
+9
+No love on the street
+blues,rock,guitar hero
+6:32
+U.S.A.
+
+Joe Satriani
+Blacks swans and wormhole wizards
+2010
+1
+Premonition
+metal,guitar,instrumental,rock,guitar hero
+3:52
+U.S.A.
+
+Joe Satriani
+Blacks swans and wormhole wizards
+2010
+10
+Wind in the trees
+metal,guitar,instrumental,rock,guitar hero
+7:42
+U.S.A.
+
+Joe Satriani
+Blacks swans and wormhole wizards
+2010
+11
+God is crying
+metal,guitar,instrumental,rock,guitar hero
+4:52
+U.S.A.
+
+Joe Satriani
+Blacks swans and wormhole wizards
+2010
+2
+Dream song
+metal,guitar,instrumental,guitar hero
+4:49
+U.S.A.
+
+Joe Satriani
+Blacks swans and wormhole wizards
+2010
+3
+Pyrrhic victoria
+metal,guitar,instrumental,rock,guitar hero
+5:08
+U.S.A.
+
+Joe Satriani
+Blacks swans and wormhole wizards
+2010
+4
+Light years away
+metal,guitar,instrumental,rock,guitar hero
+6:11
+U.S.A.
+
+Joe Satriani
+Blacks swans and wormhole wizards
+2010
+5
+Solitude
+metal,guitar,instrumental,tranquil,guitar hero
+0:57
+U.S.A.
+
+Joe Satriani
+Blacks swans and wormhole wizards
+2010
+6
+Littleworth lane
+metal,guitar,instrumental,blues,guitar hero
+3:46
+U.S.A.
+
+Joe Satriani
+Blacks swans and wormhole wizards
+2010
+7
+The golden room
+metal,guitar,instrumental,rock,guitar hero
+5:19
+U.S.A.
+
+Joe Satriani
+Blacks swans and wormhole wizards
+2010
+8
+Two sides to every story
+metal,guitar,instrumental,jazz,guitar hero
+4:10
+U.S.A.
+
+Joe Satriani
+Blacks swans and wormhole wizards
+2010
+9
+Wormhole wizards
+metal,guitar,instrumental,rock,guitar hero
+6:27
+U.S.A.
+
+Joe Satriani
+Crystal planet
+1998
+1
+Up in the sky
+metal,guitar,instrumental,guitar hero
+4:09
+U.S.A.
+
+Joe Satriani
+Crystal planet
+1998
+10
+Secret prayer
+metal,guitar,instrumental,guitar hero
+4:27
+U.S.A.
+
+Joe Satriani
+Crystal planet
+1998
+11
+A train of angels
+metal,guitar,instrumental,rock,guitar hero
+3:42
+U.S.A.
+
+Joe Satriani
+Crystal planet
+1998
+12
+A piece of liquid
+metal,guitar,instrumental,tranquil,guitar hero
+3:04
+U.S.A.
+
+Joe Satriani
+Crystal planet
+1998
+13
+Psycho monkey
+metal,guitar,instrumental,rock,guitar hero
+4:36
+U.S.A.
+
+Joe Satriani
+Crystal planet
+1998
+14
+Time
+metal,guitar,instrumental,rock,guitar hero
+5:05
+U.S.A.
+
+Joe Satriani
+Crystal planet
+1998
+15
+Z.Z.'s song
+metal,guitar,instrumental,tranquil,guitar hero
+3:00
+U.S.A.
+
+Joe Satriani
+Crystal planet
+1998
+2
+House full of bullets
+metal,guitar,instrumental,rock,guitar hero
+5:33
+U.S.A.
+
+Joe Satriani
+Crystal planet
+1998
+3
+Crystal planet
+metal,guitar,instrumental,rock,guitar hero
+4:34
+U.S.A.
+
+Joe Satriani
+Crystal planet
+1998
+4
+Love thing
+metal,guitar,instrumental,rock,ballad,guitar hero
+3:50
+U.S.A.
+
+Joe Satriani
+Crystal planet
+1998
+5
+Trundrumbalind
+metal,guitar,instrumental,rock,guitar hero
+5:13
+U.S.A.
+
+Joe Satriani
+Crystal planet
+1998
+6
+Lights of heaven
+metal,guitar,instrumental,rock,guitar hero
+4:23
+U.S.A.
+
+Joe Satriani
+Crystal planet
+1998
+7
+Raspberry jam delta-v
+metal,guitar,instrumental,rock,guitar hero
+5:21
+U.S.A.
+
+Joe Satriani
+Crystal planet
+1998
+8
+Ceremony
+metal,guitar,instrumental,rock,guitar hero
+4:53
+U.S.A.
+
+Joe Satriani
+Crystal planet
+1998
+9
+With Jupiter in mind
+metal,guitar,instrumental,rock,guitar hero
+5:47
+U.S.A.
+
+Joe Satriani
+Engines of creation
+2000
+1
+Devil's slide
+metal,guitar,electronica,instrumental,guitar hero
+5:08
+U.S.A.
+
+Joe Satriani
+Engines of creation
+2000
+10
+Slow and easy
+metal,guitar,electronica,tranquil,instrumental,guitar hero
+4:44
+U.S.A.
+
+Joe Satriani
+Engines of creation
+2000
+11
+Engines of creation
+metal,guitar,rock,instrumental,guitar hero
+5:57
+U.S.A.
+
+Joe Satriani
+Engines of creation
+2000
+2
+Flavor crystal 7
+metal,guitar,electronica,rock,instrumental,guitar hero
+4:25
+U.S.A.
+
+Joe Satriani
+Engines of creation
+2000
+3
+Borg sex
+metal,guitar,electronica,instrumental,guitar hero
+5:27
+U.S.A.
+
+Joe Satriani
+Engines of creation
+2000
+4
+Until we say goodbye
+metal,guitar,instrumental,rock,ballad,guitar hero
+4:31
+U.S.A.
+
+Joe Satriani
+Engines of creation
+2000
+5
+Attack
+metal,guitar,instrumental,rock,guitar hero
+4:20
+U.S.A.
+
+Joe Satriani
+Engines of creation
+2000
+6
+Champagne?
+metal,guitar,instrumental,blues,guitar hero
+6:04
+U.S.A.
+
+Joe Satriani
+Engines of creation
+2000
+7
+Clouds race across the sky
+metal,guitar,instrumental,tranquil,guitar hero
+6:14
+U.S.A.
+
+Joe Satriani
+Engines of creation
+2000
+8
+The power cosmic 2000 - part I
+metal,guitar,instrumental,guitar hero
+2:09
+U.S.A.
+
+Joe Satriani
+Engines of creation
+2000
+9
+The power cosmic 2000 - part II
+metal,guitar,instrumental,guitar hero
+4:23
+U.S.A.
+
+Joe Satriani
+Flying in a blue dream
+1989
+1
+Flying in a blue dream
+metal,guitar,instrumental,rock,guitar hero
+5:28
+U.S.A.
+
+Joe Satriani
+Flying in a blue dream
+1989
+10
+The phone call
+metal,guitar,rock,guitar hero
+3:00
+U.S.A.
+
+Joe Satriani
+Flying in a blue dream
+1989
+11
+Day at the beach (new rays from an ancient sun)
+metal,guitar,tranquil,instrumental,guitar hero
+2:03
+U.S.A.
+
+Joe Satriani
+Flying in a blue dream
+1989
+12
+Back to Shalla-Bal
+metal,guitar,rock,instrumental,guitar hero
+3:15
+U.S.A.
+
+Joe Satriani
+Flying in a blue dream
+1989
+13
+Ride
+metal,guitar,rock,guitar hero
+4:58
+U.S.A.
+
+Joe Satriani
+Flying in a blue dream
+1989
+14
+The forgotten (Part I)
+metal,guitar,instrumental,tranquil,guitar hero
+1:10
+U.S.A.
+
+Joe Satriani
+Flying in a blue dream
+1989
+15
+The forgotten (Part II)
+metal,guitar,instrumental,rock,ballad,guitar hero
+5:10
+U.S.A.
+
+Joe Satriani
+Flying in a blue dream
+1989
+16
+The bells of Lal (Part I)
+metal,guitar,instrumental,guitar hero
+1:19
+U.S.A.
+
+Joe Satriani
+Flying in a blue dream
+1989
+17
+The bells of Lal (Part II)
+metal,guitar,instrumental,rock,guitar hero
+4:08
+U.S.A.
+
+Joe Satriani
+Flying in a blue dream
+1989
+18
+Into the light
+metal,guitar,instrumental,rock,guitar hero
+2:25
+U.S.A.
+
+Joe Satriani
+Flying in a blue dream
+1989
+2
+The mystical potato head groove thing
+metal,guitar,instrumental,rock,guitar hero
+5:05
+U.S.A.
+
+Joe Satriani
+Flying in a blue dream
+1989
+3
+Can't slow down
+metal,guitar,rock,guitar hero
+4:46
+U.S.A.
+
+Joe Satriani
+Flying in a blue dream
+1989
+4
+Headless
+metal,guitar,instrumental,rock,guitar hero
+1:28
+U.S.A.
+
+Joe Satriani
+Flying in a blue dream
+1989
+5
+Strange
+metal,guitar,rock,guitar hero
+4:55
+U.S.A.
+
+Joe Satriani
+Flying in a blue dream
+1989
+6
+I believe
+metal,guitar,rock,guitar hero
+5:50
+U.S.A.
+
+Joe Satriani
+Flying in a blue dream
+1989
+7
+One big rush
+metal,guitar,rock,instrumental,guitar hero
+3:20
+U.S.A.
+
+Joe Satriani
+Flying in a blue dream
+1989
+8
+Big bad moon
+metal,guitar,rock,guitar hero
+5:13
+U.S.A.
+
+Joe Satriani
+Flying in a blue dream
+1989
+9
+The feeling
+metal,guitar,instrumental,blues,guitar hero
+0:52
+U.S.A.
+
+Joe Satriani
+Is there love in space?
+2004
+1
+Gnaahh
+metal,guitar,instrumental,rock,guitar hero
+3:33
+U.S.A.
+
+Joe Satriani
+Is there love in space?
+2004
+10
+Searching
+metal,guitar,instrumental,ballad,guitar hero
+10:07
+U.S.A.
+
+Joe Satriani
+Is there love in space?
+2004
+11
+Bamboo
+metal,guitar,instrumental,guitar hero
+5:55
+U.S.A.
+
+Joe Satriani
+Is there love in space?
+2004
+2
+Up in flames
+metal,guitar,instrumental,rock,guitar hero
+4:33
+U.S.A.
+
+Joe Satriani
+Is there love in space?
+2004
+3
+Hands in the air
+metal,guitar,instrumental,rock,guitar hero
+4:27
+U.S.A.
+
+Joe Satriani
+Is there love in space?
+2004
+4
+Lifestyle
+metal,guitar,rock,guitar hero
+4:34
+U.S.A.
+
+Joe Satriani
+Is there love in space?
+2004
+5
+Is there love in space?
+metal,guitar,instrumental,guitar hero
+4:51
+U.S.A.
+
+Joe Satriani
+Is there love in space?
+2004
+6
+If I could fly
+metal,guitar,instrumental,rock,guitar hero
+6:23
+U.S.A.
+
+Joe Satriani
+Is there love in space?
+2004
+7
+The souls of distortion
+metal,guitar,instrumental,rock,guitar hero
+4:58
+U.S.A.
+
+Joe Satriani
+Is there love in space?
+2004
+8
+Just look up
+metal,guitar,instrumental,guitar hero
+4:50
+U.S.A.
+
+Joe Satriani
+Is there love in space?
+2004
+9
+I like the rain
+metal,guitar,rock,guitar hero
+4:00
+U.S.A.
+
+Joe Satriani
+Joe Satriani
+1995
+1
+Cool #9
+metal,guitar,jazz,instrumental,guitar hero
+6:00
+U.S.A.
+
+Joe Satriani
+Joe Satriani
+1995
+10
+Slow down blues
+metal,guitar,blues,instrumental,tranquil,guitar hero
+7:23
+U.S.A.
+
+Joe Satriani
+Joe Satriani
+1995
+11
+(You're) my world
+metal,guitar,instrumental,guitar hero
+3:56
+U.S.A.
+
+Joe Satriani
+Joe Satriani
+1995
+12
+Sittin' 'round
+metal,guitar,blues,instrumental,tranquil,guitar hero
+3:38
+U.S.A.
+
+Joe Satriani
+Joe Satriani
+1995
+2
+If
+metal,guitar,instrumental,rock,guitar hero
+4:49
+U.S.A.
+
+Joe Satriani
+Joe Satriani
+1995
+3
+Down: down: down
+metal,guitar,blues,instrumental,guitar hero
+6:13
+U.S.A.
+
+Joe Satriani
+Joe Satriani
+1995
+4
+Luminous flesh giants
+metal,guitar,instrumental,rock,guitar hero
+5:56
+U.S.A.
+
+Joe Satriani
+Joe Satriani
+1995
+5
+S.M.F.
+metal,guitar,blues,instrumental,guitar hero
+6:42
+U.S.A.
+
+Joe Satriani
+Joe Satriani
+1995
+6
+Look my way
+metal,guitar,guitar hero
+4:01
+U.S.A.
+
+Joe Satriani
+Joe Satriani
+1995
+7
+Home
+metal,guitar,instrumental,guitar hero
+3:26
+U.S.A.
+
+Joe Satriani
+Joe Satriani
+1995
+8
+Moroccan sunset
+metal,guitar,instrumental,guitar hero
+4:21
+U.S.A.
+
+Joe Satriani
+Joe Satriani
+1995
+9
+Killer bee bop
+metal,guitar,jazz,rock,instrumental,guitar hero
+3:49
+U.S.A.
+
+Joe Satriani
+Not of this earth
+1986
+1
+Not of this earth
+metal,guitar,instrumental,rock,debut album,guitar hero
+3:55
+U.S.A.
+
+Joe Satriani
+Not of this earth
+1986
+10
+The headless horseman
+metal,guitar,instrumental,rock,debut album,guitar hero
+1:50
+U.S.A.
+
+Joe Satriani
+Not of this earth
+1986
+2
+The snake
+metal,guitar,instrumental,rock,debut album,guitar hero
+4:40
+U.S.A.
+
+Joe Satriani
+Not of this earth
+1986
+3
+Rubina
+metal,guitar,instrumental,tranquil,debut album,guitar hero
+5:50
+U.S.A.
+
+Joe Satriani
+Not of this earth
+1986
+4
+Memories
+metal,guitar,instrumental,rock,debut album,guitar hero
+4:00
+U.S.A.
+
+Joe Satriani
+Not of this earth
+1986
+5
+Brother John
+metal,guitar,instrumental,blues,debut album,guitar hero
+2:07
+U.S.A.
+
+Joe Satriani
+Not of this earth
+1986
+6
+The enigmatic
+metal,guitar,instrumental,rock,debut album,guitar hero
+3:25
+U.S.A.
+
+Joe Satriani
+Not of this earth
+1986
+7
+Driving at night
+metal,guitar,instrumental,rock,debut album,guitar hero
+3:30
+U.S.A.
+
+Joe Satriani
+Not of this earth
+1986
+8
+Hordes of locusts
+metal,guitar,instrumental,rock,debut album,guitar hero
+4:55
+U.S.A.
+
+Joe Satriani
+Not of this earth
+1986
+9
+New day
+metal,guitar,instrumental,rock,debut album,guitar hero
+3:56
+U.S.A.
+
+Joe Satriani
+Professor Satchafunkilus and the musterion of rock
+2008
+1
+Musterion
+metal,guitar,instrumental,rock,guitar hero
+4:38
+U.S.A.
+
+Joe Satriani
+Professor Satchafunkilus and the musterion of rock
+2008
+10
+Andalusia
+metal,guitar,rock,instrumental,spanish,guitar hero
+6:52
+U.S.A.
+
+Joe Satriani
+Professor Satchafunkilus and the musterion of rock
+2008
+2
+Overdriver
+metal,guitar,instrumental,rock,guitar hero
+5:07
+U.S.A.
+
+Joe Satriani
+Professor Satchafunkilus and the musterion of rock
+2008
+3
+I just wanna rock
+metal,guitar,rock,guitar hero
+3:27
+U.S.A.
+
+Joe Satriani
+Professor Satchafunkilus and the musterion of rock
+2008
+4
+Professor Satchafunkilus
+metal,guitar,rock,instrumental,guitar hero
+4:47
+U.S.A.
+
+Joe Satriani
+Professor Satchafunkilus and the musterion of rock
+2008
+5
+Revelation
+metal,guitar,rock,instrumental,guitar hero
+5:57
+U.S.A.
+
+Joe Satriani
+Professor Satchafunkilus and the musterion of rock
+2008
+6
+Come on baby
+metal,guitar,rock,instrumental,guitar hero
+5:49
+U.S.A.
+
+Joe Satriani
+Professor Satchafunkilus and the musterion of rock
+2008
+7
+Out of the sunrise
+metal,guitar,rock,instrumental,guitar hero
+5:43
+U.S.A.
+
+Joe Satriani
+Professor Satchafunkilus and the musterion of rock
+2008
+8
+Diddle-Y-A-Doo-Dat
+metal,guitar,rock,instrumental,experimental,guitar hero
+4:16
+U.S.A.
+
+Joe Satriani
+Professor Satchafunkilus and the musterion of rock
+2008
+9
+Asik Vaysel
+metal,guitar,rock,instrumental,guitar hero
+7:42
+U.S.A.
+
+Joe Satriani
+Strange beautiful music
+2002
+1
+Oriental melody
+metal,guitar,instrumental,middle east,rock,guitar hero
+3:53
+U.S.A.
+
+Joe Satriani
+Strange beautiful music
+2002
+10
+Seven string
+metal,guitar,instrumental,rock,guitar hero
+4:00
+U.S.A.
+
+Joe Satriani
+Strange beautiful music
+2002
+11
+Hill groove
+metal,guitar,instrumental,rock,guitar hero
+4:07
+U.S.A.
+
+Joe Satriani
+Strange beautiful music
+2002
+12
+The journey
+metal,guitar,instrumental,rock,guitar hero
+4:07
+U.S.A.
+
+Joe Satriani
+Strange beautiful music
+2002
+13
+The traveler
+metal,guitar,instrumental,rock,guitar hero
+5:36
+U.S.A.
+
+Joe Satriani
+Strange beautiful music
+2002
+14
+You saved my life
+metal,guitar,instrumental,guitar hero
+5:02
+U.S.A.
+
+Joe Satriani
+Strange beautiful music
+2002
+2
+Belly dancer
+metal,guitar,instrumental,rock,guitar hero
+5:00
+U.S.A.
+
+Joe Satriani
+Strange beautiful music
+2002
+3
+Starry night
+metal,guitar,instrumental,guitar hero
+3:53
+U.S.A.
+
+Joe Satriani
+Strange beautiful music
+2002
+4
+Chords of life
+metal,guitar,instrumental,rock,guitar hero
+4:12
+U.S.A.
+
+Joe Satriani
+Strange beautiful music
+2002
+5
+Mind storm
+metal,guitar,instrumental,rock,guitar hero
+4:10
+U.S.A.
+
+Joe Satriani
+Strange beautiful music
+2002
+6
+Sleep walk
+metal,guitar,guitar hero
+2:42
+U.S.A.
+
+Joe Satriani
+Strange beautiful music
+2002
+7
+New last jam
+metal,guitar,instrumental,rock,guitar hero
+4:16
+U.S.A.
+
+Joe Satriani
+Strange beautiful music
+2002
+8
+Mountain song
+metal,guitar,instrumental,rock,guitar hero
+3:28
+U.S.A.
+
+Joe Satriani
+Strange beautiful music
+2002
+9
+What breaks a heart
+metal,guitar,instrumental,rock,guitar hero
+5:17
+U.S.A.
+
+Joe Satriani
+Super colossal
+2006
+1
+Super colossal
+metal,guitar,instrumental,rock,guitar hero
+4:14
+U.S.A.
+
+Joe Satriani
+Super colossal
+2006
+10
+Theme for a strange world
+metal,guitar,instrumental,rock,guitar hero
+4:39
+U.S.A.
+
+Joe Satriani
+Super colossal
+2006
+11
+Movin' on
+metal,guitar,instrumental,rock,guitar hero
+4:05
+U.S.A.
+
+Joe Satriani
+Super colossal
+2006
+12
+A love eternal
+metal,guitar,instrumental,rock,ballad,guitar hero
+3:33
+U.S.A.
+
+Joe Satriani
+Super colossal
+2006
+13
+Crowd chant
+metal,guitar,live,guitar hero
+3:14
+U.S.A.
+
+Joe Satriani
+Super colossal
+2006
+2
+Just like lightnin'
+metal,guitar,instrumental,rock,blues,guitar hero
+4:01
+U.S.A.
+
+Joe Satriani
+Super colossal
+2006
+3
+It's so good
+metal,guitar,instrumental,rock,guitar hero
+4:14
+U.S.A.
+
+Joe Satriani
+Super colossal
+2006
+4
+Redshift riders
+metal,guitar,instrumental,rock,guitar hero
+4:49
+U.S.A.
+
+Joe Satriani
+Super colossal
+2006
+5
+Ten words
+metal,guitar,instrumental,rock,ballad,guitar hero
+3:28
+U.S.A.
+
+Joe Satriani
+Super colossal
+2006
+6
+A cool new way
+metal,guitar,instrumental,guitar hero
+6:13
+U.S.A.
+
+Joe Satriani
+Super colossal
+2006
+7
+One robot's dream
+metal,guitar,instrumental,rock,guitar hero
+6:15
+U.S.A.
+
+Joe Satriani
+Super colossal
+2006
+8
+The meaning of love
+metal,guitar,instrumental,rock,ballad,guitar hero
+4:34
+U.S.A.
+
+Joe Satriani
+Super colossal
+2006
+9
+Made of tears
+metal,guitar,instrumental,guitar hero
+5:31
+U.S.A.
+
+Joe Satriani
+Surfing with the alien
+1987
+1
+Surfing with the alien
+metal,guitar,instrumental,rock,guitar hero
+4:25
+U.S.A.
+
+Joe Satriani
+Surfing with the alien
+1987
+10
+Echo
+metal,guitar,instrumental,rock,ballad,guitar hero
+5:38
+U.S.A.
+
+Joe Satriani
+Surfing with the alien
+1987
+2
+Ice nine
+metal,guitar,instrumental,rock,guitar hero
+4:00
+U.S.A.
+
+Joe Satriani
+Surfing with the alien
+1987
+3
+Crushing day
+metal,guitar,instrumental,rock,guitar hero
+5:15
+U.S.A.
+
+Joe Satriani
+Surfing with the alien
+1987
+4
+Always with me, always with you
+metal,guitar,instrumental,rock,ballad,guitar hero
+3:22
+U.S.A.
+
+Joe Satriani
+Surfing with the alien
+1987
+5
+Satch boogie
+metal,guitar,instrumental,rock,guitar hero
+3:14
+U.S.A.
+
+Joe Satriani
+Surfing with the alien
+1987
+6
+Hill of the skulls
+metal,guitar,instrumental,rock,guitar hero
+1:48
+U.S.A.
+
+Joe Satriani
+Surfing with the alien
+1987
+7
+Circles
+metal,guitar,instrumental,tranquil,guitar hero
+3:29
+U.S.A.
+
+Joe Satriani
+Surfing with the alien
+1987
+8
+Lords of Karma
+metal,guitar,instrumental,rock,guitar hero
+4:49
+U.S.A.
+
+Joe Satriani
+Surfing with the alien
+1987
+9
+Midnight
+metal,guitar,instrumental,tranquil,guitar hero
+1:42
+U.S.A.
+
+Joe Satriani
+The extremist
+1992
+1
+Friends
+metal,guitar,instrumental,rock,guitar hero
+3:27
+U.S.A.
+
+Joe Satriani
+The extremist
+1992
+10
+New blues
+metal,guitar,instrumental,rock,ballad,guitar hero
+6:55
+U.S.A.
+
+Joe Satriani
+The extremist
+1992
+2
+The extremist
+metal,guitar,instrumental,rock,guitar hero
+3:42
+U.S.A.
+
+Joe Satriani
+The extremist
+1992
+3
+War
+metal,guitar,instrumental,rock,guitar hero
+5:46
+U.S.A.
+
+Joe Satriani
+The extremist
+1992
+4
+Cryin'
+metal,guitar,instrumental,rock,ballad,guitar hero
+5:42
+U.S.A.
+
+Joe Satriani
+The extremist
+1992
+5
+Rubina's blue sky happiness
+metal,guitar,instrumental,rock,guitar hero
+6:10
+U.S.A.
+
+Joe Satriani
+The extremist
+1992
+6
+Summer song
+metal,guitar,instrumental,rock,guitar hero
+4:52
+U.S.A.
+
+Joe Satriani
+The extremist
+1992
+7
+Tears in the rain
+metal,guitar,instrumental,tranquil,guitar hero
+1:16
+U.S.A.
+
+Joe Satriani
+The extremist
+1992
+8
+Why
+metal,guitar,instrumental,rock,guitar hero
+4:45
+U.S.A.
+
+Joe Satriani
+The extremist
+1992
+9
+Motorcycle driver
+metal,guitar,instrumental,rock,guitar hero
+4:56
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+1
+Time machine
+metal,guitar,instrumental,rock,guitar hero
+5:07
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+10
+Banana mango
+metal,guitar,instrumental,experimental,guitar hero
+2:42
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+11
+Dreaming #II
+metal,guitar,instrumental,experimental,guitar hero
+3:36
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+12
+I am become death
+metal,guitar,instrumental,experimental,guitar hero
+3:56
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+13
+Saying goodbye
+metal,guitar,instrumental,tranquil,guitar hero
+2:53
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+14
+Woodstock jam
+metal,guitar,experimental,jazz,guitar hero
+16:07
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+15
+Satch boogie
+metal,guitar,live,instrumental,rock,guitar hero
+3:58
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+16
+Summer song
+metal,guitar,live,instrumental,rock,guitar hero
+6:01
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+17
+Flying in a blue dream
+metal,guitar,live,instrumental,rock,guitar hero
+5:24
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+18
+Cryin'
+metal,guitar,live,instrumental,rock,ballad,guitar hero
+6:26
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+19
+The crush of love
+metal,guitar,live,instrumental,rock,guitar hero
+5:48
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+2
+The mighty turtle head
+metal,guitar,instrumental,rock,guitar hero
+5:11
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+20
+Tears in the rain
+metal,guitar,live,tranquil
+1:50
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+21
+Always with me: always with you
+metal,guitar,live,rock,ballad,guitar hero
+3:40
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+22
+Big bad moon
+metal,guitar,live,rock,guitar hero
+5:23
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+23
+Surfing with the alien
+metal,guitar,live,rock,instrumental,guitar hero
+4:39
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+24
+Rubina
+metal,guitar,live,rock,ballad,guitar hero
+6:42
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+25
+Circles
+metal,guitar,live,rock,tranquil,guitar hero
+4:14
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+26
+Drum solo
+metal,guitar,live,drum
+2:15
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+27
+Lords of Karma
+metal,guitar,live,instrumental,rock,guitar hero
+5:43
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+28
+Echo
+metal,guitar,live,instrumental,rock,guitar hero
+7:49
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+3
+All alone
+metal,guitar,instrumental,rock,ballad,guitar hero
+4:21
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+4
+Banana mango II
+metal,guitar,instrumental,rock,guitar hero
+6:02
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+5
+Thinking of you
+metal,guitar,instrumental,tranquil,guitar hero
+3:55
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+6
+Crazy
+metal,guitar,rock,guitar hero
+4:04
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+7
+Speed of light
+metal,guitar,instrumental,rock,guitar hero
+5:12
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+8
+Baroque
+metal,guitar,instrumental,tranquil,guitar hero
+2:16
+U.S.A.
+
+Joe Satriani
+Time machine
+1993
+9
+Dweller on the threshold
+metal,guitar,instrumental,rock,guitar hero
+4:12
+U.S.A.
+
+Joe Satriani
+Unstoppable momentum
+2013
+1
+Unstoppable momentum
+metal,guitar hero
+5:14
+U.S.A.
+
+Joe Satriani
+Unstoppable momentum
+2013
+10
+The weight of the world
+metal,guitar hero
+5:07
+U.S.A.
+
+Joe Satriani
+Unstoppable momentum
+2013
+11
+A celebration
+metal,guitar hero
+2:47
+U.S.A.
+
+Joe Satriani
+Unstoppable momentum
+2013
+2
+Can't go back
+metal,guitar hero
+3:58
+U.S.A.
+
+Joe Satriani
+Unstoppable momentum
+2013
+3
+Lies and truths
+metal,guitar hero
+4:44
+U.S.A.
+
+Joe Satriani
+Unstoppable momentum
+2013
+4
+Three sheets to the wind
+metal,guitar hero
+3:22
+U.S.A.
+
+Joe Satriani
+Unstoppable momentum
+2013
+5
+I'll put a stone on your cairn
+metal,guitar hero
+1:42
+U.S.A.
+
+Joe Satriani
+Unstoppable momentum
+2013
+6
+A door into summer
+metal,guitar hero
+4:16
+U.S.A.
+
+Joe Satriani
+Unstoppable momentum
+2013
+7
+Shine on American dreamer
+metal,guitar hero
+4:46
+U.S.A.
+
+Joe Satriani
+Unstoppable momentum
+2013
+8
+Jumpin' in
+metal,guitar hero
+5:11
+U.S.A.
+
+Joe Satriani
+Unstoppable momentum
+2013
+9
+Jumpin' out
+metal,guitar hero
+3:52
+U.S.A.
+
+Joe Satriani, Eric Johnson, Steve Vai
+G3 Live in concert
+1997
+1
+Cool No9
+metal,guitar,live,instrumental,guitar hero
+6:47
+U.S.A.
+
+Joe Satriani, Eric Johnson, Steve Vai
+G3 Live in concert
+1997
+10
+Going down
+metal,guitar,live,guitar hero
+5:47
+U.S.A.
+
+Joe Satriani, Eric Johnson, Steve Vai
+G3 Live in concert
+1997
+11
+My guitar wants to kill your mama
+metal,guitar,live,guitar hero
+5:21
+U.S.A.
+
+Joe Satriani, Eric Johnson, Steve Vai
+G3 Live in concert
+1997
+12
+Red house
+metal,guitar,live,blues,guitar hero
+9:12
+U.S.A.
+
+Joe Satriani, Eric Johnson, Steve Vai
+G3 Live in concert
+1997
+2
+Flying in a blue dream
+metal,guitar,live,instrumental,guitar hero
+5:59
+U.S.A.
+
+Joe Satriani, Eric Johnson, Steve Vai
+G3 Live in concert
+1997
+3
+Summer song
+metal,guitar,live,instrumental,guitar hero
+6:28
+U.S.A.
+
+Joe Satriani, Eric Johnson, Steve Vai
+G3 Live in concert
+1997
+4
+Zap
+metal,guitar,live,instrumental,guitar hero
+6:07
+U.S.A.
+
+Joe Satriani, Eric Johnson, Steve Vai
+G3 Live in concert
+1997
+5
+Manhattan
+metal,guitar,live,instrumental,guitar hero
+5:16
+U.S.A.
+
+Joe Satriani, Eric Johnson, Steve Vai
+G3 Live in concert
+1997
+6
+Camel's night out
+metal,guitar,live,instrumental,guitar hero
+5:57
+U.S.A.
+
+Joe Satriani, Eric Johnson, Steve Vai
+G3 Live in concert
+1997
+7
+Answers
+metal,guitar,live,instrumental,guitar hero
+6:58
+U.S.A.
+
+Joe Satriani, Eric Johnson, Steve Vai
+G3 Live in concert
+1997
+8
+For the love of God
+metal,guitar,live,instrumental,guitar hero
+7:47
+U.S.A.
+
+Joe Satriani, Eric Johnson, Steve Vai
+G3 Live in concert
+1997
+9
+The attitude song
+metal,guitar,live,instrumental,guitar hero
+5:14
+U.S.A.
+
+Joe Satriani, Steve Vai, Yngwie Malmsteen
+G3 Live Rockin' in the free world
+2004
+1
+The extremist
+metal,guitar,live,instrumental,guitar hero
+3:51
+U.S.A.
+
+Joe Satriani, Steve Vai, Yngwie Malmsteen
+G3 Live Rockin' in the free world
+2004
+10
+Trilogy suite op.5 the first movement
+metal,guitar,live,instrumental,guitar hero
+8:07
+U.S.A.
+
+Joe Satriani, Steve Vai, Yngwie Malmsteen
+G3 Live Rockin' in the free world
+2004
+11
+Red house
+metal,guitar,live,blues,guitar hero
+4:25
+U.S.A.
+
+Joe Satriani, Steve Vai, Yngwie Malmsteen
+G3 Live Rockin' in the free world
+2004
+12
+Fugue (concerto suite for electric guitar and orchestra in E flat minor op.1)
+metal,guitar,live,instrumental,guitar hero
+3:37
+U.S.A.
+
+Joe Satriani, Steve Vai, Yngwie Malmsteen
+G3 Live Rockin' in the free world
+2004
+13
+Finale
+metal,guitar,live,instrumental,guitar hero
+2:54
+U.S.A.
+
+Joe Satriani, Steve Vai, Yngwie Malmsteen
+G3 Live Rockin' in the free world
+2004
+14
+Voodoo chile (slight return)
+metal,guitar,live,guitar hero
+10:46
+U.S.A.
+
+Joe Satriani, Steve Vai, Yngwie Malmsteen
+G3 Live Rockin' in the free world
+2004
+15
+Little wing
+metal,guitar,live,instrumental,guitar hero
+6:08
+U.S.A.
+
+Joe Satriani, Steve Vai, Yngwie Malmsteen
+G3 Live Rockin' in the free world
+2004
+16
+Rockin' in the free world
+metal,guitar,live,guitar hero
+12:29
+U.S.A.
+
+Joe Satriani, Steve Vai, Yngwie Malmsteen
+G3 Live Rockin' in the free world
+2004
+2
+Crystal planet
+metal,guitar,live,instrumental,guitar hero
+4:41
+U.S.A.
+
+Joe Satriani, Steve Vai, Yngwie Malmsteen
+G3 Live Rockin' in the free world
+2004
+3
+Always with me, always with you
+metal,guitar,live,instrumental,guitar hero
+4:16
+U.S.A.
+
+Joe Satriani, Steve Vai, Yngwie Malmsteen
+G3 Live Rockin' in the free world
+2004
+4
+Midnight
+metal,guitar,live,instrumental,guitar hero
+3:05
+U.S.A.
+
+Joe Satriani, Steve Vai, Yngwie Malmsteen
+G3 Live Rockin' in the free world
+2004
+5
+The mystical potato head groove thing
+metal,guitar,live,instrumental,guitar hero
+5:32
+U.S.A.
+
+Joe Satriani, Steve Vai, Yngwie Malmsteen
+G3 Live Rockin' in the free world
+2004
+6
+You're here
+metal,guitar,live,instrumental,guitar hero
+3:33
+U.S.A.
+
+Joe Satriani, Steve Vai, Yngwie Malmsteen
+G3 Live Rockin' in the free world
+2004
+7
+Reaping
+metal,guitar,live,instrumental,guitar hero
+7:05
+U.S.A.
+
+Joe Satriani, Steve Vai, Yngwie Malmsteen
+G3 Live Rockin' in the free world
+2004
+8
+Whispering a prayer
+metal,guitar,live,instrumental,guitar hero
+9:27
+U.S.A.
+
+Joe Satriani, Steve Vai, Yngwie Malmsteen
+G3 Live Rockin' in the free world
+2004
+9
+Blitzkrieg
+metal,guitar,live,instrumental,guitar hero
+2:48
+U.S.A.
+
+Johan
+Pergola
+2001
+1
+Tumble and fall
+pop
+3:28
+Netherlands
+
+Johan
+Pergola
+2001
+10
+Why_CP
+pop
+3:05
+Netherlands
+
+Johan
+Pergola
+2001
+11
+Time and time again
+pop
+3:52
+Netherlands
+
+Johan
+Pergola
+2001
+12
+Here
+pop
+4:04
+Netherlands
+
+Johan
+Pergola
+2001
+2
+Pergola
+pop
+3:28
+Netherlands
+
+Johan
+Pergola
+2001
+3
+I mean I guess
+pop
+2:52
+Netherlands
+
+Johan
+Pergola
+2001
+4
+Tomorrow
+pop
+3:36
+Netherlands
+
+Johan
+Pergola
+2001
+5
+Day is done
+pop
+4:18
+Netherlands
+
+Johan
+Pergola
+2001
+6
+I feel fine
+pop
+2:06
+Netherlands
+
+Johan
+Pergola
+2001
+7
+Paper planes
+pop
+2:48
+Netherlands
+
+Johan
+Pergola
+2001
+8
+Save game
+pop
+3:01
+Netherlands
+
+Johan
+Pergola
+2001
+9
+How does it feel
+pop
+3:33
+Netherlands
+
+Johan de Meij & Jerry Bilik
+The lord of the rings
+1989
+1
+The lord of the rings - Gandalf (the wizard)
+classic,wind band
+6:25
+Netherlands
+
+Johan de Meij & Jerry Bilik
+The lord of the rings
+1989
+2
+The lord of the rings - Lotlórien (the elvenwood)
+classic,wind band
+7:39
+Netherlands
+
+Johan de Meij & Jerry Bilik
+The lord of the rings
+1989
+3
+The lord of the rings - Gollum (Sméagol)
+classic,wind band
+9:41
+Netherlands
+
+Johan de Meij & Jerry Bilik
+The lord of the rings
+1989
+4
+The lord of the rings - Journey in the dark
+classic,wind band
+8:59
+Netherlands
+
+Johan de Meij & Jerry Bilik
+The lord of the rings
+1989
+5
+The lord of the rings - Hobbits
+classic,wind band
+9:33
+Netherlands
+
+Johan de Meij & Jerry Bilik
+The lord of the rings
+1989
+6
+Symphony for band - Allegro vivace
+classic,wind band
+4:47
+U.S.A.
+
+Johan de Meij & Jerry Bilik
+The lord of the rings
+1989
+7
+Symphony for band - Andante
+classic,wind band
+6:17
+U.S.A.
+
+Johan de Meij & Jerry Bilik
+The lord of the rings
+1989
+8
+Symphony for band - Andante maestoso, allegro ritmico
+classic,wind band
+5:34
+U.S.A.
+
+Johann Sebastian Bach
+Brandenburg concertos Nos. 1, 2 & 3
+1987
+1
+Concerto No.1 in F Major (BWV 1046)
+classic,baroque
+20:43
+Germany
+
+Johann Sebastian Bach
+Brandenburg concertos Nos. 1, 2 & 3
+1987
+2
+Concerto No.2 in F Major (BWV 1047)
+classic,baroque
+13:06
+Germany
+
+Johann Sebastian Bach
+Brandenburg concertos Nos. 1, 2 & 3
+1987
+3
+Concerto No.3 in G Major (BWV 1048)
+classic,baroque
+11:48
+Germany
+
+Johann Sebastian Bach
+Brandenburg concertos Nos. 4, 5 & 6
+1987
+1
+Concerto No.4 in G Major (BWV 1049)
+classic,baroque
+17:37
+Germany
+
+Johann Sebastian Bach
+Brandenburg concertos Nos. 4, 5 & 6
+1987
+2
+Concerto No.5 in D Major (BWV 1050)
+classic,baroque
+22:35
+Germany
+
+Johann Sebastian Bach
+Brandenburg concertos Nos. 4, 5 & 6
+1987
+3
+Concerto No.6 in B Flat Major (BWV 1051)
+classic,baroque
+18:58
+Germany
+
+John McLaughlin: Al di Meola: Paco de Lucia
+Friday night in San Francisco
+1981
+1
+Mediterranean sundance
+guitar,jazz,live,guitar hero,instrumental,debut album
+11:25
+England,U.S.A.,Spain
+
+John McLaughlin: Al di Meola: Paco de Lucia
+Friday night in San Francisco
+1981
+2
+Short tales of the black forest
+guitar,jazz,live,guitar hero,instrumental,debut album
+8:39
+England,U.S.A.,Spain
+
+John McLaughlin: Al di Meola: Paco de Lucia
+Friday night in San Francisco
+1981
+3
+Frevo Rasgado
+guitar,jazz,live,guitar hero,instrumental,debut album
+7:50
+England,U.S.A.,Spain
+
+John McLaughlin: Al di Meola: Paco de Lucia
+Friday night in San Francisco
+1981
+4
+Fantasia suite
+guitar,jazz,live,guitar hero,instrumental,debut album
+8:41
+England,U.S.A.,Spain
+
+John McLaughlin: Al di Meola: Paco de Lucia
+Friday night in San Francisco
+1981
+5
+Guardian angel
+guitar,jazz,live,guitar hero,instrumental,debut album
+4:00
+England,U.S.A.,Spain
+
+John McLaughlin: Al di Meola: Paco de Lucia
+Passion, grace and fire
+1983
+1
+Aspan
+guitar,jazz,guitar hero,instrumental
+4:08
+England,U.S.A.,Spain
+
+John McLaughlin: Al di Meola: Paco de Lucia
+Passion, grace and fire
+1983
+2
+Orient blue
+guitar,jazz,guitar hero,instrumental
+7:05
+England,U.S.A.,Spain
+
+John McLaughlin: Al di Meola: Paco de Lucia
+Passion, grace and fire
+1983
+3
+Chiquito
+guitar,jazz,guitar hero,instrumental
+4:42
+England,U.S.A.,Spain
+
+John McLaughlin: Al di Meola: Paco de Lucia
+Passion, grace and fire
+1983
+4
+Sichia
+guitar,jazz,guitar hero,instrumental
+3:48
+England,U.S.A.,Spain
+
+John McLaughlin: Al di Meola: Paco de Lucia
+Passion, grace and fire
+1983
+5
+David
+guitar,jazz,guitar hero,instrumental
+6:29
+England,U.S.A.,Spain
+
+John McLaughlin: Al di Meola: Paco de Lucia
+Passion, grace and fire
+1983
+6
+Passion, grace and fire
+guitar,jazz,guitar hero,instrumental
+5:26
+England,U.S.A.,Spain
+
+John Petrucci & Jordan Rudess
+An evening with John Petrucci & Jordan Rudess
+2004
+1
+Furia taurina
+guitar,keyboard,live,instrumental,guitar hero
+10:10
+U.S.A.
+
+John Petrucci & Jordan Rudess
+An evening with John Petrucci & Jordan Rudess
+2004
+10
+Bite of the mosquito
+guitar,keyboard,instrumental,guitar hero
+1:53
+U.S.A.
+
+John Petrucci & Jordan Rudess
+An evening with John Petrucci & Jordan Rudess
+2004
+2
+Truth
+guitar,keyboard,live,instrumental,guitar hero
+9:48
+U.S.A.
+
+John Petrucci & Jordan Rudess
+An evening with John Petrucci & Jordan Rudess
+2004
+3
+Fife and drum
+guitar,keyboard,live,instrumental,guitar hero
+9:30
+U.S.A.
+
+John Petrucci & Jordan Rudess
+An evening with John Petrucci & Jordan Rudess
+2004
+4
+State of grace
+guitar,keyboard,live,instrumental,guitar hero
+5:45
+U.S.A.
+
+John Petrucci & Jordan Rudess
+An evening with John Petrucci & Jordan Rudess
+2004
+5
+Hang 11
+guitar,keyboard,live,instrumental,guitar hero
+11:38
+U.S.A.
+
+John Petrucci & Jordan Rudess
+An evening with John Petrucci & Jordan Rudess
+2004
+6
+From within
+guitar,keyboard,live,instrumental,guitar hero
+5:21
+U.S.A.
+
+John Petrucci & Jordan Rudess
+An evening with John Petrucci & Jordan Rudess
+2004
+7
+The rena song
+guitar,keyboard,live,instrumental,guitar hero
+7:03
+U.S.A.
+
+John Petrucci & Jordan Rudess
+An evening with John Petrucci & Jordan Rudess
+2004
+8
+In the moment
+guitar,keyboard,live,instrumental,guitar hero
+6:27
+U.S.A.
+
+John Petrucci & Jordan Rudess
+An evening with John Petrucci & Jordan Rudess
+2004
+9
+Black ice
+guitar,keyboard,live,instrumental,guitar hero
+10:54
+U.S.A.
+
+Jon Lord
+Gemini suite
+1971
+1
+Guitar
+progressive,rock,symphonic,instrumental
+8:54
+England
+
+Jon Lord
+Gemini suite
+1971
+2
+Piano
+progressive,rock,symphonic,instrumental
+8:03
+England
+
+Jon Lord
+Gemini suite
+1971
+3
+Drums
+progressive,rock,symphonic,instrumental
+7:18
+England
+
+Jon Lord
+Gemini suite
+1971
+4
+Vocals
+progressive,rock,symphonic
+5:49
+England
+
+Jon Lord
+Gemini suite
+1971
+5
+Bass-guitar
+progressive,rock,symphonic,instrumental
+5:00
+England
+
+Jon Lord
+Gemini suite
+1971
+6
+Organ
+progressive,rock,symphonic,instrumental
+11:47
+England
+
+Jon Lord
+Sarabande
+1976
+1
+Fantasia
+symphonic,rock,instrumental
+3:30
+England
+
+Jon Lord
+Sarabande
+1976
+2
+Sarabande
+symphonic,rock,instrumental
+7:20
+England
+
+Jon Lord
+Sarabande
+1976
+3
+Aria
+symphonic,rock,instrumental
+3:42
+England
+
+Jon Lord
+Sarabande
+1976
+4
+Gigue
+symphonic,rock,instrumental
+11:06
+England
+
+Jon Lord
+Sarabande
+1976
+5
+Bouree
+symphonic,rock,instrumental
+11:00
+England
+
+Jon Lord
+Sarabande
+1976
+6
+Pavane
+symphonic,rock,instrumental
+11:00
+England
+
+Jon Lord
+Sarabande
+1976
+7
+Caprice
+symphonic,rock,instrumental
+3:12
+England
+
+Jon Lord
+Sarabande
+1976
+8
+Finale
+symphonic,rock,instrumental
+2:03
+England
+
+Jon and Vangelis
+Page of life
+1991
+1
+Wisdom chain
+pop,electronica
+5:22
+England,Greece
+
+Jon and Vangelis
+Page of life
+1991
+10
+Genevieve
+pop,electronica
+3:48
+England,Greece
+
+Jon and Vangelis
+Page of life
+1991
+11
+Journey to Ixtlan
+pop,electronica
+5:50
+England,Greece
+
+Jon and Vangelis
+Page of life
+1991
+12
+Little guitar
+instrumental,tranquil,electronica
+1:43
+England,Greece
+
+Jon and Vangelis
+Page of life
+1991
+2
+Page of life
+pop,electronica
+3:16
+England,Greece
+
+Jon and Vangelis
+Page of life
+1991
+3
+Money
+pop,electronica
+6:07
+England,Greece
+
+Jon and Vangelis
+Page of life
+1991
+4
+Jazzy box
+instrumental,jazz,electronica
+3:14
+England,Greece
+
+Jon and Vangelis
+Page of life
+1991
+5
+Garden of senses
+pop,electronica
+6:24
+England,Greece
+
+Jon and Vangelis
+Page of life
+1991
+6
+Is it love
+pop,electronica
+4:27
+England,Greece
+
+Jon and Vangelis
+Page of life
+1991
+7
+Anyone can light a candle
+pop,electronica
+3:44
+England,Greece
+
+Jon and Vangelis
+Page of life
+1991
+8
+Be a good friend of mine
+pop,electronica
+4:13
+England,Greece
+
+Jon and Vangelis
+Page of life
+1991
+9
+Shine for me
+pop,electronica
+4:10
+England,Greece
+
+K's choice
+Cocoon crash
+1998
+1
+Believe
+pop
+3:31
+Belgium
+
+K's choice
+Cocoon crash
+1998
+10
+Hide
+pop
+4:08
+Belgium
+
+K's choice
+Cocoon crash
+1998
+11
+Freestyle
+pop
+3:17
+Belgium
+
+K's choice
+Cocoon crash
+1998
+12
+Quiet little place
+pop
+3:14
+Belgium
+
+K's choice
+Cocoon crash
+1998
+13
+God in my bed
+pop
+3:03
+Belgium
+
+K's choice
+Cocoon crash
+1998
+14
+Winners
+pop
+3:53
+Belgium
+
+K's choice
+Cocoon crash
+1998
+2
+In your room
+pop
+3:37
+Belgium
+
+K's choice
+Cocoon crash
+1998
+3
+Everything for free
+pop
+3:44
+Belgium
+
+K's choice
+Cocoon crash
+1998
+4
+Now is mine
+pop
+2:51
+Belgium
+
+K's choice
+Cocoon crash
+1998
+5
+Butterflies instead
+pop
+3:34
+Belgium
+
+K's choice
+Cocoon crash
+1998
+6
+If you're not scared
+pop
+3:17
+Belgium
+
+K's choice
+Cocoon crash
+1998
+7
+20,000 seconds
+pop
+2:24
+Belgium
+
+K's choice
+Cocoon crash
+1998
+8
+Too many happy faces
+pop
+3:28
+Belgium
+
+K's choice
+Cocoon crash
+1998
+9
+Cocoon crash
+pop
+3:10
+Belgium
+
+Kamelot
+Karma
+2001
+1
+Regalis apertura
+progressive,metal,instrumental
+1:57
+U.S.A.
+
+Kamelot
+Karma
+2001
+10
+Elizabeth (i) mirror mirror
+progressive,metal,ballad
+4:22
+U.S.A.
+
+Kamelot
+Karma
+2001
+11
+Elizabeth (ii) requiem for the innocent
+progressive,metal
+3:46
+U.S.A.
+
+Kamelot
+Karma
+2001
+12
+Elizabeth (iii) fall from grace
+progressive,metal
+11:01
+U.S.A.
+
+Kamelot
+Karma
+2001
+2
+Forever
+progressive,metal
+4:07
+U.S.A.
+
+Kamelot
+Karma
+2001
+3
+Wings of despair
+progressive,metal
+4:32
+U.S.A.
+
+Kamelot
+Karma
+2001
+4
+The spell
+progressive,metal
+4:20
+U.S.A.
+
+Kamelot
+Karma
+2001
+5
+Don't you cry
+progressive,metal,ballad
+4:18
+U.S.A.
+
+Kamelot
+Karma
+2001
+6
+Karma
+progressive,metal
+5:12
+U.S.A.
+
+Kamelot
+Karma
+2001
+7
+The light I shine on you
+progressive,metal
+4:15
+U.S.A.
+
+Kamelot
+Karma
+2001
+8
+Temples of gold
+progressive,metal
+4:11
+U.S.A.
+
+Kamelot
+Karma
+2001
+9
+Across the highlands
+progressive,metal
+3:46
+U.S.A.
+
+King Crimson
+Beat
+1982
+1
+Neal and Jack and me
+progressive,rock,experimental
+4:22
+England
+
+King Crimson
+Beat
+1982
+2
+Heartbeat
+progressive,rock,experimental
+3:54
+England
+
+King Crimson
+Beat
+1982
+3
+Sartori in Tangier
+progressive,rock,experimental,instrumental
+3:34
+England
+
+King Crimson
+Beat
+1982
+4
+Waiting man
+progressive,rock,experimental
+4:27
+England
+
+King Crimson
+Beat
+1982
+5
+Neurotica
+progressive,rock,experimental
+4:48
+England
+
+King Crimson
+Beat
+1982
+6
+Two hands
+progressive,rock,experimental,tranquil
+3:23
+England
+
+King Crimson
+Beat
+1982
+7
+The howler
+progressive,rock,experimental
+4:13
+England
+
+King Crimson
+Beat
+1982
+8
+Requiem
+progressive,rock,experimental,instrumental
+6:38
+England
+
+King Crimson
+In the court of the crimson king
+1969
+1
+21st century schizoid man
+progressive,rock,experimental,debut album
+7:20
+England
+
+King Crimson
+In the court of the crimson king
+1969
+2
+I talk to the wind
+progressive,rock,experimental,debut album
+6:05
+England
+
+King Crimson
+In the court of the crimson king
+1969
+3
+Epitaph
+progressive,rock,experimental,debut album
+8:47
+England
+
+King Crimson
+In the court of the crimson king
+1969
+4
+Moonchild
+progressive,rock,experimental,debut album
+12:11
+England
+
+King Crimson
+In the court of the crimson king
+1969
+5
+The court of the crimson king
+progressive,rock,experimental,debut album
+9:22
+England
+
+King Crimson
+In the wake of Poseidon
+1970
+1
+Peace - a beginning
+progressive,rock,experimental,tranquil
+0:49
+England
+
+King Crimson
+In the wake of Poseidon
+1970
+2
+Pictures of a city
+progressive,rock,experimental
+8:03
+England
+
+King Crimson
+In the wake of Poseidon
+1970
+3
+Cadence and Cascade
+progressive,rock,experimental
+4:27
+England
+
+King Crimson
+In the wake of Poseidon
+1970
+4
+In the wake of Poseidon
+progressive,rock,experimental
+7:56
+England
+
+King Crimson
+In the wake of Poseidon
+1970
+5
+Peace - a theme
+instrumental,tranquil
+1:15
+England
+
+King Crimson
+In the wake of Poseidon
+1970
+6
+Cat food
+progressive,rock,experimental
+4:54
+England
+
+King Crimson
+In the wake of Poseidon
+1970
+7
+The devil's triangle
+progressive,rock,experimental,instrumental
+11:39
+England
+
+King Crimson
+In the wake of Poseidon
+1970
+8
+Peace - an end
+tranquil
+1:53
+England
+
+King Crimson
+Islands
+1971
+1
+Formentera lady
+progressive,rock,experimental
+10:16
+England
+
+King Crimson
+Islands
+1971
+2
+Sailor's tale
+progressive,rock,experimental,instrumental
+7:34
+England
+
+King Crimson
+Islands
+1971
+3
+The letters
+progressive,rock,experimental
+4:33
+England
+
+King Crimson
+Islands
+1971
+4
+Ladies of the road
+progressive,rock,experimental
+5:35
+England
+
+King Crimson
+Islands
+1971
+5
+Prelude: song of the gulls
+progressive,rock,experimental,instrumental,tranquil
+4:15
+England
+
+King Crimson
+Islands
+1971
+6
+Islands
+progressive,rock,experimental,tranquil
+11:54
+England
+
+King Crimson
+Larks' tongues in aspic
+1970
+1
+Larks' tongues in aspic: Part I
+progressive,rock,experimental,instrumental
+13:36
+England
+
+King Crimson
+Larks' tongues in aspic
+1970
+2
+Book of saturday
+progressive,rock,experimental
+2:49
+England
+
+King Crimson
+Larks' tongues in aspic
+1970
+3
+Exiles
+progressive,rock,experimental
+7:40
+England
+
+King Crimson
+Larks' tongues in aspic
+1970
+4
+Easy money
+progressive,rock,experimental
+7:54
+England
+
+King Crimson
+Larks' tongues in aspic
+1970
+5
+The talking drum
+progressive,rock,experimental,instrumental
+7:26
+England
+
+King Crimson
+Larks' tongues in aspic
+1970
+6
+Larks' tongues in aspic: Part II
+progressive,rock,experimental,instrumental
+7:12
+England
+
+King Crimson
+Thrak
+1994
+1
+VROOOM
+progressive,rock,experimental,instrumental
+4:37
+England
+
+King Crimson
+Thrak
+1994
+10
+One time
+progressive,rock,experimental
+5:21
+England
+
+King Crimson
+Thrak
+1994
+11
+Radio II
+progressive,rock,experimental,instrumental
+1:02
+England
+
+King Crimson
+Thrak
+1994
+12
+Inner garden II
+progressive,rock,experimental
+1:15
+England
+
+King Crimson
+Thrak
+1994
+13
+Sex sleep eat drink dream
+progressive,rock,experimental
+4:48
+England
+
+King Crimson
+Thrak
+1994
+14
+VROOOM VROOOM
+progressive,rock,experimental
+5:49
+England
+
+King Crimson
+Thrak
+1994
+15
+VROOOM VROOOM: coda
+progressive,rock,experimental,instrumental
+3:00
+England
+
+King Crimson
+Thrak
+1994
+2
+Code: marine 475
+progressive,rock,experimental,instrumental
+2:41
+England
+
+King Crimson
+Thrak
+1994
+3
+Dinosaur
+progressive,rock,experimental
+6:35
+England
+
+King Crimson
+Thrak
+1994
+4
+Walking on air
+progressive,rock,experimental
+4:34
+England
+
+King Crimson
+Thrak
+1994
+5
+B'Boom
+progressive,rock,experimental,instrumental
+4:11
+England
+
+King Crimson
+Thrak
+1994
+6
+THRAK
+progressive,rock,experimental,instrumental
+3:58
+England
+
+King Crimson
+Thrak
+1994
+7
+Inner garden I
+progressive,rock,experimental
+1:47
+England
+
+King Crimson
+Thrak
+1994
+8
+People
+progressive,rock,experimental
+5:53
+England
+
+King Crimson
+Thrak
+1994
+9
+Radio I
+progressive,rock,experimental,instrumental
+0:43
+England
+
+King Crimson
+Three of a perfect pair
+1984
+1
+Three of a perfect pair
+progressive,rock,experimental
+4:12
+England
+
+King Crimson
+Three of a perfect pair
+1984
+2
+Model man
+progressive,rock,experimental
+3:49
+England
+
+King Crimson
+Three of a perfect pair
+1984
+3
+Sleepless
+progressive,rock,experimental
+5:22
+England
+
+King Crimson
+Three of a perfect pair
+1984
+4
+Man with an open heart
+progressive,rock,experimental
+3:04
+England
+
+King Crimson
+Three of a perfect pair
+1984
+5
+Nuages (that which passes: passes like clouds)
+progressive,rock,experimental,instrumental,tranquil
+4:47
+England
+
+King Crimson
+Three of a perfect pair
+1984
+6
+Industry
+progressive,rock,experimental,instrumental
+7:06
+England
+
+King Crimson
+Three of a perfect pair
+1984
+7
+Dig me
+progressive,rock,experimental
+3:17
+England
+
+King Crimson
+Three of a perfect pair
+1984
+8
+No warning
+progressive,rock,experimental,instrumental
+3:29
+England
+
+King Crimson
+Three of a perfect pair
+1984
+9
+Larks' tongues in aspic: Part III
+progressive,rock,experimental,instrumental
+6:07
+England
+
+Kings of Leon
+Come around sundown
+2010
+1
+The end
+alternative,rock
+4:24
+U.S.A.
+
+Kings of Leon
+Come around sundown
+2010
+10
+Pony up
+alternative,rock
+3:04
+U.S.A.
+
+Kings of Leon
+Come around sundown
+2010
+11
+Birthday
+alternative,rock
+3:15
+U.S.A.
+
+Kings of Leon
+Come around sundown
+2010
+12
+Mi amigo
+alternative,rock
+4:06
+U.S.A.
+
+Kings of Leon
+Come around sundown
+2010
+13
+Pickup truck
+alternative,rock
+4:44
+U.S.A.
+
+Kings of Leon
+Come around sundown
+2010
+2
+Radioactive
+alternative,rock
+3:26
+U.S.A.
+
+Kings of Leon
+Come around sundown
+2010
+3
+Pyro
+alternative,rock
+4:10
+U.S.A.
+
+Kings of Leon
+Come around sundown
+2010
+4
+Mary
+alternative,rock
+3:25
+U.S.A.
+
+Kings of Leon
+Come around sundown
+2010
+5
+The face
+alternative,rock
+3:28
+U.S.A.
+
+Kings of Leon
+Come around sundown
+2010
+6
+The immortals
+alternative,rock
+3:28
+U.S.A.
+
+Kings of Leon
+Come around sundown
+2010
+7
+Back down south
+alternative,rock
+4:01
+U.S.A.
+
+Kings of Leon
+Come around sundown
+2010
+8
+Beach side
+alternative,rock
+2:50
+U.S.A.
+
+Kings of Leon
+Come around sundown
+2010
+9
+No money
+alternative,rock
+3:05
+U.S.A.
+
+Kings of Leon
+Only by the night
+2008
+1
+Closer
+alternative,rock
+3:57
+U.S.A.
+
+Kings of Leon
+Only by the night
+2008
+10
+Be somebody
+alternative,rock
+3:47
+U.S.A.
+
+Kings of Leon
+Only by the night
+2008
+11
+Cold desert
+alternative,rock
+5:34
+U.S.A.
+
+Kings of Leon
+Only by the night
+2008
+2
+Crawl
+alternative,rock
+4:06
+U.S.A.
+
+Kings of Leon
+Only by the night
+2008
+3
+Sex on fire
+alternative,rock
+3:23
+U.S.A.
+
+Kings of Leon
+Only by the night
+2008
+4
+Use somebody
+alternative,rock
+3:50
+U.S.A.
+
+Kings of Leon
+Only by the night
+2008
+5
+Manhattan
+alternative,rock
+3:24
+U.S.A.
+
+Kings of Leon
+Only by the night
+2008
+6
+Revelry
+alternative,rock
+3:21
+U.S.A.
+
+Kings of Leon
+Only by the night
+2008
+7
+17
+alternative,rock
+3:05
+U.S.A.
+
+Kings of Leon
+Only by the night
+2008
+8
+Notion
+alternative,rock
+3:00
+U.S.A.
+
+Kings of Leon
+Only by the night
+2008
+9
+I want you
+alternative,rock
+5:07
+U.S.A.
+
+Kong
+Earmined
+1997
+1
+TroubleMuter
+electronica,dance,instrumental
+4:14
+Netherlands
+
+Kong
+Earmined
+1997
+10
+BarkFlower
+electronica,dance,instrumental
+7:12
+Netherlands
+
+Kong
+Earmined
+1997
+11
+HearMind
+electronica,dance,instrumental
+2:44
+Netherlands
+
+Kong
+Earmined
+1997
+2
+LumberHome
+electronica,dance,instrumental
+6:31
+Netherlands
+
+Kong
+Earmined
+1997
+3
+WonderWood
+electronica,dance,instrumental
+6:01
+Netherlands
+
+Kong
+Earmined
+1997
+4
+SpoomFly
+electronica,dance,instrumental
+7:59
+Netherlands
+
+Kong
+Earmined
+1997
+5
+RimeShot
+electronica,dance,instrumental
+7:54
+Netherlands
+
+Kong
+Earmined
+1997
+6
+TripTic
+electronica,dance,instrumental
+7:19
+Netherlands
+
+Kong
+Earmined
+1997
+7
+KrimTide
+electronica,dance,instrumental
+5:38
+Netherlands
+
+Kong
+Earmined
+1997
+8
+LockEnd
+electronica,dance,instrumental
+3:58
+Netherlands
+
+Kong
+Earmined
+1997
+9
+OrkanEye
+electronica,dance,instrumental
+7:26
+Netherlands
+
+Kula shaker
+K
+1996
+1
+Hey dude
+psychedelic,rock,debut album
+4:07
+England
+
+Kula shaker
+K
+1996
+10
+Grateful when you're dead/Jerry was here
+psychedelic,rock,debut album
+5:42
+England
+
+Kula shaker
+K
+1996
+11
+303
+psychedelic,rock,debut album
+3:09
+England
+
+Kula shaker
+K
+1996
+12
+Start all over
+psychedelic,rock,debut album
+2:36
+England
+
+Kula shaker
+K
+1996
+13
+Hollow man (parts 1 & 2)
+psychedelic,rock,debut album
+6:13
+England
+
+Kula shaker
+K
+1996
+2
+Knight on the town
+psychedelic,rock,debut album
+3:25
+England
+
+Kula shaker
+K
+1996
+3
+Temple of everlasting light
+psychedelic,rock,debut album
+2:33
+England
+
+Kula shaker
+K
+1996
+4
+Govinda
+psychedelic,rock,debut album
+4:31
+England
+
+Kula shaker
+K
+1996
+5
+Smart dogs
+psychedelic,rock,debut album
+3:17
+England
+
+Kula shaker
+K
+1996
+6
+Magic theatre
+psychedelic,rock,debut album
+2:39
+England
+
+Kula shaker
+K
+1996
+7
+Into the deep
+psychedelic,rock,debut album
+3:48
+England
+
+Kula shaker
+K
+1996
+8
+Sleeping Jiva
+psychedelic,rock,instrumental,debut album
+2:03
+England
+
+Kula shaker
+K
+1996
+9
+Tattva
+psychedelic,rock,debut album
+3:46
+England
+
+Kula shaker
+Peasants, pigs & astronauts
+1999
+1
+Great hosannah
+psychedelic,rock
+6:07
+England
+
+Kula shaker
+Peasants, pigs & astronauts
+1999
+10
+Last farewell
+psychedelic,rock
+2:44
+England
+
+Kula shaker
+Peasants, pigs & astronauts
+1999
+11
+Golden avatar
+psychedelic,rock
+4:32
+England
+
+Kula shaker
+Peasants, pigs & astronauts
+1999
+12
+Namami nanda-nandana
+psychedelic,rock
+12:31
+England
+
+Kula shaker
+Peasants, pigs & astronauts
+1999
+2
+Mystical machine gun
+psychedelic,rock
+5:41
+England
+
+Kula shaker
+Peasants, pigs & astronauts
+1999
+3
+S.O.S.
+psychedelic,rock
+2:54
+England
+
+Kula shaker
+Peasants, pigs & astronauts
+1999
+4
+Radhe radhe
+psychedelic,rock,ballad
+2:49
+England
+
+Kula shaker
+Peasants, pigs & astronauts
+1999
+5
+I'm still here
+psychedelic,rock,ballad
+1:31
+England
+
+Kula shaker
+Peasants, pigs & astronauts
+1999
+6
+Shower your love
+psychedelic,rock
+3:40
+England
+
+Kula shaker
+Peasants, pigs & astronauts
+1999
+7
+108 battles (of the mind)
+psychedelic,rock
+3:15
+England
+
+Kula shaker
+Peasants, pigs & astronauts
+1999
+8
+Sound of drums
+psychedelic,rock
+4:27
+England
+
+Kula shaker
+Peasants, pigs & astronauts
+1999
+9
+Timeworm
+psychedelic,rock
+4:02
+England
+
+Leonard Bernstein
+Bernstein conducts
+1983
+1
+Rhapsody in blue (G. Gershwin)
+classic,symphonic,piano,american
+17:08
+U.S.A.
+
+Leonard Bernstein
+Bernstein conducts
+1983
+10
+Ouverture solenelle 1812 (P. Tschaikowsky)
+classic,symphonic
+15:34
+U.S.A.
+
+Leonard Bernstein
+Bernstein conducts
+1983
+2
+Adagio for strings (S. Barber)
+classic,symphonic,american
+10:01
+U.S.A.
+
+Leonard Bernstein
+Bernstein conducts
+1983
+3
+L'Oiseau de feu - Introduction
+classic,symphonic
+3:35
+U.S.A.
+
+Leonard Bernstein
+Bernstein conducts
+1983
+4
+L'Oiseau de feu - L'Oiseau de feu et sa danse
+classic,symphonic
+0:15
+U.S.A.
+
+Leonard Bernstein
+Bernstein conducts
+1983
+5
+L'Oiseau de feu - Variation de l'oiseau de feu
+classic,symphonic
+1:19
+U.S.A.
+
+Leonard Bernstein
+Bernstein conducts
+1983
+6
+L'Oiseau de feu - Rondes des princesses
+classic,symphonic
+5:34
+U.S.A.
+
+Leonard Bernstein
+Bernstein conducts
+1983
+7
+L'Oiseau de feu - Danse infernale du roi Kastchei
+classic,symphonic
+4:19
+U.S.A.
+
+Leonard Bernstein
+Bernstein conducts
+1983
+8
+L'Oiseau de feu - Berceuse
+classic,symphonic
+3:54
+U.S.A.
+
+Leonard Bernstein
+Bernstein conducts
+1983
+9
+L'Oiseau de feu - Final
+classic,symphonic
+3:25
+U.S.A.
+
+Liquid tension experiment
+1
+1998
+1
+Paradigm shift
+progressive,metal,experimental,instrumental,debut album
+8:54
+U.S.A.
+
+Liquid tension experiment
+1
+1998
+10
+Three minute warning (ii)
+progressive,metal,experimental,instrumental,debut album
+4:02
+U.S.A.
+
+Liquid tension experiment
+1
+1998
+11
+Three minute warning (iii)
+progressive,metal,experimental,instrumental,debut album
+5:18
+U.S.A.
+
+Liquid tension experiment
+1
+1998
+12
+Three minute warning (iv)
+progressive,metal,experimental,instrumental,debut album
+4:20
+U.S.A.
+
+Liquid tension experiment
+1
+1998
+13
+Three minute warning (v)
+progressive,metal,experimental,instrumental,debut album
+6:31
+U.S.A.
+
+Liquid tension experiment
+1
+1998
+2
+Osmosis
+progressive,metal,experimental,instrumental,debut album
+3:26
+U.S.A.
+
+Liquid tension experiment
+1
+1998
+3
+Kindred spirits
+progressive,metal,experimental,instrumental,debut album
+6:29
+U.S.A.
+
+Liquid tension experiment
+1
+1998
+4
+The stretch
+progressive,metal,experimental,instrumental,debut album
+2:00
+U.S.A.
+
+Liquid tension experiment
+1
+1998
+5
+Freedom of speech
+progressive,metal,experimental,instrumental,debut album
+9:19
+U.S.A.
+
+Liquid tension experiment
+1
+1998
+6
+Chris and Kevin's excellent adventure
+progressive,metal,experimental,debut album
+2:21
+U.S.A.
+
+Liquid tension experiment
+1
+1998
+7
+State of grace
+progressive,metal,experimental,instrumental,debut album
+5:01
+U.S.A.
+
+Liquid tension experiment
+1
+1998
+8
+Universal mind
+progressive,metal,experimental,instrumental,debut album
+7:53
+U.S.A.
+
+Liquid tension experiment
+1
+1998
+9
+Three minute warning (i)
+progressive,metal,experimental,instrumental,debut album
+8:20
+U.S.A.
+
+Liquid tension experiment
+2
+1999
+1
+Acid rain
+progressive,metal,experimental,instrumental
+6:35
+U.S.A.
+
+Liquid tension experiment
+2
+1999
+2
+Biaxident
+progressive,metal,experimental,instrumental
+7:40
+U.S.A.
+
+Liquid tension experiment
+2
+1999
+3
+914
+progressive,metal,experimental,instrumental
+4:01
+U.S.A.
+
+Liquid tension experiment
+2
+1999
+4
+Another dimension
+progressive,metal,experimental,instrumental
+9:50
+U.S.A.
+
+Liquid tension experiment
+2
+1999
+5
+When the water breaks
+progressive,metal,experimental,instrumental
+16:58
+U.S.A.
+
+Liquid tension experiment
+2
+1999
+6
+Chewbacca
+progressive,metal,experimental,instrumental
+13:35
+U.S.A.
+
+Liquid tension experiment
+2
+1999
+7
+Liquid dreams
+progressive,metal,experimental,instrumental
+10:48
+U.S.A.
+
+Liquid tension experiment
+2
+1999
+8
+Hourglass
+progressive,metal,experimental,instrumental
+4:26
+U.S.A.
+
+Lisa Gerrard
+The mirror pool
+1995
+1
+Violina: the last embrace
+middle east,mystic,symphonic,debut album
+5:44
+Australia
+
+Lisa Gerrard
+The mirror pool
+1995
+10
+Werd
+instrumental,orchestral,debut album
+1:39
+Australia
+
+Lisa Gerrard
+The mirror pool
+1995
+11
+Laurelei
+middle east,mystic,debut album
+5:58
+Australia
+
+Lisa Gerrard
+The mirror pool
+1995
+12
+Celon
+middle east,mystic,orchestral,debut album
+6:06
+Australia
+
+Lisa Gerrard
+The mirror pool
+1995
+13
+Venteles
+middle east,mystic,orchestral,debut album
+2:37
+Australia
+
+Lisa Gerrard
+The mirror pool
+1995
+14
+Swans
+middle east,mystic,orchestral,debut album
+5:47
+Australia
+
+Lisa Gerrard
+The mirror pool
+1995
+15
+Nilleshna
+middle east,mystic,orchestral,debut album
+6:29
+Australia
+
+Lisa Gerrard
+The mirror pool
+1995
+16
+Gloradin
+middle east,mystic,orchestral,debut album
+3:58
+Australia
+
+Lisa Gerrard
+The mirror pool
+1995
+2
+La bas: song of the drowned
+middle east,mystic,symphonic,debut album
+7:41
+Australia
+
+Lisa Gerrard
+The mirror pool
+1995
+3
+Persian love song: the silver gun
+middle east,mystic,symphonic,debut album
+2:33
+Australia
+
+Lisa Gerrard
+The mirror pool
+1995
+4
+Sanvean: I am your shadow
+middle east,mystic,symphonic,debut album
+3:48
+Australia
+
+Lisa Gerrard
+The mirror pool
+1995
+5
+The rite
+middle east,mystic,debut album
+3:22
+Australia
+
+Lisa Gerrard
+The mirror pool
+1995
+6
+Ajhon
+middle east,mystic,debut album
+3:09
+Australia
+
+Lisa Gerrard
+The mirror pool
+1995
+7
+Glorafin
+middle east,mystic,debut album
+4:50
+Australia
+
+Lisa Gerrard
+The mirror pool
+1995
+8
+Majhnavea's music box
+middle east,mystic,instrumental,debut album
+1:34
+Australia
+
+Lisa Gerrard
+The mirror pool
+1995
+9
+Largo
+baroque,orchestral,debut album
+2:52
+Australia
+
+Lisa Gerrard & Pieter Bourke
+Duality
+1998
+1
+Shadow magnet
+folk,middle east,mystic
+7:54
+Australia
+
+Lisa Gerrard & Pieter Bourke
+Duality
+1998
+10
+Nadir (synchronicity)
+folk,middle east,mystic
+3:02
+Australia
+
+Lisa Gerrard & Pieter Bourke
+Duality
+1998
+2
+Tempest
+folk,middle east,mystic
+5:49
+Australia
+
+Lisa Gerrard & Pieter Bourke
+Duality
+1998
+3
+Forest veil
+folk,middle east,mystic
+2:31
+Australia
+
+Lisa Gerrard & Pieter Bourke
+Duality
+1998
+4
+The comforter
+folk,middle east,mystic
+1:26
+Australia
+
+Lisa Gerrard & Pieter Bourke
+Duality
+1998
+5
+The unfolding
+folk,middle east,mystic
+4:35
+Australia
+
+Lisa Gerrard & Pieter Bourke
+Duality
+1998
+6
+Pilgrimage of lost children
+folk,middle east,mystic
+3:48
+Australia
+
+Lisa Gerrard & Pieter Bourke
+Duality
+1998
+7
+The human game
+folk,middle east,mystic
+6:56
+Australia
+
+Lisa Gerrard & Pieter Bourke
+Duality
+1998
+8
+The circulation of shadows
+folk,middle east,mystic
+1:56
+Australia
+
+Lisa Gerrard & Pieter Bourke
+Duality
+1998
+9
+Sacrifice
+folk,middle east,mystic
+7:47
+Australia
+
+Live
+Throwing copper
+1994
+1
+The dam at Otter creek
+rock,alternative
+4:40
+U.S.A.
+
+Live
+Throwing copper
+1994
+10
+Stage
+rock,alternative
+3:08
+U.S.A.
+
+Live
+Throwing copper
+1994
+11
+Waitress
+rock,alternative
+2:49
+U.S.A.
+
+Live
+Throwing copper
+1994
+12
+Pillar of Davidson
+rock,alternative
+6:46
+U.S.A.
+
+Live
+Throwing copper
+1994
+13
+White: discussion
+rock,alternative
+6:06
+U.S.A.
+
+Live
+Throwing copper
+1994
+2
+Selling the drama
+rock,alternative
+3:26
+U.S.A.
+
+Live
+Throwing copper
+1994
+3
+I alone
+rock,alternative
+3:51
+U.S.A.
+
+Live
+Throwing copper
+1994
+4
+Iris
+rock,alternative
+3:59
+U.S.A.
+
+Live
+Throwing copper
+1994
+5
+Lightning crashes
+rock,alternative
+5:25
+U.S.A.
+
+Live
+Throwing copper
+1994
+6
+Top
+rock,alternative
+2:42
+U.S.A.
+
+Live
+Throwing copper
+1994
+7
+All over you
+rock,alternative
+3:59
+U.S.A.
+
+Live
+Throwing copper
+1994
+8
+Shit towne
+rock,alternative
+3:48
+U.S.A.
+
+Live
+Throwing copper
+1994
+9
+T.B.D.
+rock,alternative
+4:29
+U.S.A.
+
+Loreena McKennitt
+A midwinter night's dream
+2008
+1
+The holly & the ivy
+folk,christmas
+4:49
+Canada
+
+Loreena McKennitt
+A midwinter night's dream
+2008
+10
+Seeds of love
+folk,christmas
+4:54
+Canada
+
+Loreena McKennitt
+A midwinter night's dream
+2008
+11
+Gloucestershire wassail
+folk,christmas,choral
+2:39
+Canada
+
+Loreena McKennitt
+A midwinter night's dream
+2008
+12
+Emmanuel
+folk,christmas
+4:55
+Canada
+
+Loreena McKennitt
+A midwinter night's dream
+2008
+13
+In the bleak midwinter
+folk,christmas,instrumental,tranquil
+2:42
+Canada
+
+Loreena McKennitt
+A midwinter night's dream
+2008
+2
+Un flambeau, Jeanette, Isabelle
+folk,christmas,instrumental
+3:06
+Canada
+
+Loreena McKennitt
+A midwinter night's dream
+2008
+3
+The seven rejoices of Mary
+folk,christmas
+4:33
+Canada
+
+Loreena McKennitt
+A midwinter night's dream
+2008
+4
+Noël Nouvelet!
+folk,christmas
+5:12
+Canada
+
+Loreena McKennitt
+A midwinter night's dream
+2008
+5
+Good king Wenceslas
+folk,christmas
+3:17
+Canada
+
+Loreena McKennitt
+A midwinter night's dream
+2008
+6
+Coventry carol
+folk,christmas
+2:19
+Canada
+
+Loreena McKennitt
+A midwinter night's dream
+2008
+7
+God rest ye merry, gentlemen (Abdelli version)
+folk,christmas
+7:20
+Canada
+
+Loreena McKennitt
+A midwinter night's dream
+2008
+8
+Snow
+folk,christmas
+5:06
+Canada
+
+Loreena McKennitt
+A midwinter night's dream
+2008
+9
+Breton carol
+folk,christmas,instrumental
+3:30
+Canada
+
+Loreena McKennitt
+An ancient muse
+2006
+1
+Incantation
+folk,mystical,middle east
+2:35
+Canada
+
+Loreena McKennitt
+An ancient muse
+2006
+2
+The gates of Istanbul
+folk,mystical,middle east
+6:59
+Canada
+
+Loreena McKennitt
+An ancient muse
+2006
+3
+Caravanserai
+folk,mystical,middle east
+7:36
+Canada
+
+Loreena McKennitt
+An ancient muse
+2006
+4
+The English ladye and the knight
+folk,mystical,middle east
+6:49
+Canada
+
+Loreena McKennitt
+An ancient muse
+2006
+5
+Kecharitomene
+folk,mystical,middle east,instrumental
+6:34
+Canada
+
+Loreena McKennitt
+An ancient muse
+2006
+6
+Penelope's song
+folk,mystical,middle east
+4:21
+Canada
+
+Loreena McKennitt
+An ancient muse
+2006
+7
+Sacred shabbat
+folk,mystical,middle east,instrumental
+3:59
+Canada
+
+Loreena McKennitt
+An ancient muse
+2006
+8
+Beneath a Phrygian sky
+folk,mystical,middle east
+9:32
+Canada
+
+Loreena McKennitt
+An ancient muse
+2006
+9
+Never-ending road (Amhran duit)
+folk,mystical,middle east
+5:54
+Canada
+
+Loreena McKennitt
+Nights from the Alhambra
+2007
+1
+The mystic's dream
+folk,mystical,irish,middle east,live
+6:35
+Canada
+
+Loreena McKennitt
+Nights from the Alhambra
+2007
+10
+Bonny portmore
+folk,live
+4:08
+Canada
+
+Loreena McKennitt
+Nights from the Alhambra
+2007
+11
+Santiago
+folk,mystical,irish,live
+5:37
+Canada
+
+Loreena McKennitt
+Nights from the Alhambra
+2007
+12
+Raglan road
+folk,irish,live
+5:40
+Canada
+
+Loreena McKennitt
+Nights from the Alhambra
+2007
+13
+All souls night
+folk,mystical,irish,middle east,live
+5:29
+Canada
+
+Loreena McKennitt
+Nights from the Alhambra
+2007
+14
+The lady of Shalott
+folk,irish,live,tranquil
+5:02
+Canada
+
+Loreena McKennitt
+Nights from the Alhambra
+2007
+15
+The old ways
+folk,irish,live
+5:13
+Canada
+
+Loreena McKennitt
+Nights from the Alhambra
+2007
+16
+Never-ending road (Amhran Duit)
+folk,irish,live
+6:28
+Canada
+
+Loreena McKennitt
+Nights from the Alhambra
+2007
+17
+Huron 'Beltane' fire dance
+folk,mystical,irish,live
+5:26
+Canada
+
+Loreena McKennitt
+Nights from the Alhambra
+2007
+18
+Cymbeline
+folk,mystical,irish,live
+5:00
+Canada
+
+Loreena McKennitt
+Nights from the Alhambra
+2007
+2
+She moved through the fair
+folk,mystical,irish,live
+5:10
+Canada
+
+Loreena McKennitt
+Nights from the Alhambra
+2007
+3
+Stolen child
+folk,mystical,irish,live
+4:17
+Canada
+
+Loreena McKennitt
+Nights from the Alhambra
+2007
+4
+The mummer's dance
+folk,mystical,irish,live
+4:26
+Canada
+
+Loreena McKennitt
+Nights from the Alhambra
+2007
+5
+Penelope's song
+folk,mystical,irish,live
+4:25
+Canada
+
+Loreena McKennitt
+Nights from the Alhambra
+2007
+6
+Marco Polo
+folk,mystical,irish,middle east,live
+4:52
+Canada
+
+Loreena McKennitt
+Nights from the Alhambra
+2007
+7
+The bonny swans
+folk,irish,live
+4:45
+Canada
+
+Loreena McKennitt
+Nights from the Alhambra
+2007
+8
+Dante's prayer
+folk,mystical,irish,live
+5:07
+Canada
+
+Loreena McKennitt
+Nights from the Alhambra
+2007
+9
+Caravanserai
+folk,mystical,irish,middle east,live
+6:58
+Canada
+
+Loreena McKennitt
+Parallel dreams
+1989
+1
+Samain night
+folk,mystical,irish
+4:27
+Canada
+
+Loreena McKennitt
+Parallel dreams
+1989
+2
+Moon cradle
+folk,mystical,irish
+4:29
+Canada
+
+Loreena McKennitt
+Parallel dreams
+1989
+3
+Huron 'beltane' fire dance
+folk,mystical,irish,instrumental
+4:20
+Canada
+
+Loreena McKennitt
+Parallel dreams
+1989
+4
+Annachie Gordon
+folk,mystical,irish
+8:22
+Canada
+
+Loreena McKennitt
+Parallel dreams
+1989
+5
+Standing stones
+folk,mystical,irish
+6:56
+Canada
+
+Loreena McKennitt
+Parallel dreams
+1989
+6
+Dicken's Dublin (the palace)
+folk,mystical,irish
+4:40
+Canada
+
+Loreena McKennitt
+Parallel dreams
+1989
+7
+Breaking the silence
+folk,mystical,irish
+6:23
+Canada
+
+Loreena McKennitt
+Parallel dreams
+1989
+8
+Ancient pines
+folk,mystical,irish
+3:35
+Canada
+
+Loreena McKennitt
+The book of secrets
+1997
+1
+Prologue
+folk,mystical,irish
+4:22
+Canada
+
+Loreena McKennitt
+The book of secrets
+1997
+2
+The mummer's dance
+folk,mystical,irish
+6:07
+Canada
+
+Loreena McKennitt
+The book of secrets
+1997
+3
+Skellig
+folk,mystical,irish
+6:07
+Canada
+
+Loreena McKennitt
+The book of secrets
+1997
+4
+Marco Polo
+folk,mystical,irish,instrumental,middle east
+5:15
+Canada
+
+Loreena McKennitt
+The book of secrets
+1997
+5
+The highwayman
+folk,irish
+10:19
+Canada
+
+Loreena McKennitt
+The book of secrets
+1997
+6
+La serenissima
+folk,mystical,irish,instrumental
+5:09
+Canada
+
+Loreena McKennitt
+The book of secrets
+1997
+7
+Night ride across the Caucasus
+folk,mystical,irish
+8:30
+Canada
+
+Loreena McKennitt
+The book of secrets
+1997
+8
+Dante's prayer
+folk,mystical,irish,tranquil
+7:11
+Canada
+
+Loreena McKennitt
+The mask and mirror
+1994
+1
+The mystic's dream
+folk,mystical,irish
+7:40
+Canada
+
+Loreena McKennitt
+The mask and mirror
+1994
+2
+The bonny swans
+folk,irish
+7:18
+Canada
+
+Loreena McKennitt
+The mask and mirror
+1994
+3
+The dark night of the soul
+folk,irish
+6:44
+Canada
+
+Loreena McKennitt
+The mask and mirror
+1994
+4
+Marrakesh night market
+folk,mystical,irish,middle east
+6:30
+Canada
+
+Loreena McKennitt
+The mask and mirror
+1994
+5
+Full circle
+folk,mystical,irish
+5:57
+Canada
+
+Loreena McKennitt
+The mask and mirror
+1994
+6
+Santiago
+folk,mystical,irish
+5:58
+Canada
+
+Loreena McKennitt
+The mask and mirror
+1994
+7
+Cé hé mise le ulaingt? The two trees
+folk,mystical,irish
+9:06
+Canada
+
+Loreena McKennitt
+The mask and mirror
+1994
+8
+Prospero's speech
+folk,mystical,irish
+3:23
+Canada
+
+Ludovico Einaudi
+In a time lapse
+2013
+1
+Corale
+classic
+2:05
+Italy
+
+Ludovico Einaudi
+In a time lapse
+2013
+10
+Newton's cradle
+classic
+7:52
+Italy
+
+Ludovico Einaudi
+In a time lapse
+2013
+11
+Waterways
+classic
+4:17
+Italy
+
+Ludovico Einaudi
+In a time lapse
+2013
+12
+Experience
+classic
+5:15
+Italy
+
+Ludovico Einaudi
+In a time lapse
+2013
+13
+Underwood
+classic
+4:13
+Italy
+
+Ludovico Einaudi
+In a time lapse
+2013
+14
+Burning
+classic
+5:08
+Italy
+
+Ludovico Einaudi
+In a time lapse
+2013
+2
+Time lapse
+classic
+5:31
+Italy
+
+Ludovico Einaudi
+In a time lapse
+2013
+3
+Life
+classic
+4:22
+Italy
+
+Ludovico Einaudi
+In a time lapse
+2013
+4
+Walk
+classic
+3:27
+Italy
+
+Ludovico Einaudi
+In a time lapse
+2013
+5
+Discovery at night
+classic
+4:25
+Italy
+
+Ludovico Einaudi
+In a time lapse
+2013
+6
+Run
+classic
+5:32
+Italy
+
+Ludovico Einaudi
+In a time lapse
+2013
+7
+Brother
+classic
+4:51
+Italy
+
+Ludovico Einaudi
+In a time lapse
+2013
+8
+Orbits
+classic
+2:57
+Italy
+
+Ludovico Einaudi
+In a time lapse
+2013
+9
+Two trees
+classic
+6:26
+Italy
+
+Manic street preachers
+This is my truth tell me yours
+1998
+1
+The everlasting
+pop
+6:09
+Wales
+
+Manic street preachers
+This is my truth tell me yours
+1998
+10
+Be natural
+pop
+5:12
+Wales
+
+Manic street preachers
+This is my truth tell me yours
+1998
+11
+Black dog on my shoulder
+pop
+4:48
+Wales
+
+Manic street preachers
+This is my truth tell me yours
+1998
+12
+Nobody loved you
+pop
+4:44
+Wales
+
+Manic street preachers
+This is my truth tell me yours
+1998
+13
+S.Y.M.M.
+pop
+5:57
+Wales
+
+Manic street preachers
+This is my truth tell me yours
+1998
+2
+If you tolerate this your children will be next
+pop
+4:50
+Wales
+
+Manic street preachers
+This is my truth tell me yours
+1998
+3
+You stole the sun from my heart
+pop
+4:20
+Wales
+
+Manic street preachers
+This is my truth tell me yours
+1998
+4
+Ready for drowning
+pop
+4:32
+Wales
+
+Manic street preachers
+This is my truth tell me yours
+1998
+5
+Tsunami
+pop
+3:51
+Wales
+
+Manic street preachers
+This is my truth tell me yours
+1998
+6
+My little empire
+pop
+4:09
+Wales
+
+Manic street preachers
+This is my truth tell me yours
+1998
+7
+I'm not working
+pop
+5:51
+Wales
+
+Manic street preachers
+This is my truth tell me yours
+1998
+8
+You're tender and you're tired
+pop
+4:37
+Wales
+
+Manic street preachers
+This is my truth tell me yours
+1998
+9
+Born a girl
+pop
+4:12
+Wales
+
+Marco Borsato
+Dromen durven delen
+2010
+1
+Dichtbij
+pop
+5:22
+Netherlands
+
+Marco Borsato
+Dromen durven delen
+2010
+10
+Duizend scherven
+pop,tranquil
+3:28
+Netherlands
+
+Marco Borsato
+Dromen durven delen
+2010
+11
+Kerstmis
+pop,christmas
+3:19
+Netherlands
+
+Marco Borsato
+Dromen durven delen
+2010
+12
+Al die tijd
+pop,tranquil
+5:06
+Netherlands
+
+Marco Borsato
+Dromen durven delen
+2010
+13
+Schouder aan schouder
+pop
+3:56
+Netherlands
+
+Marco Borsato
+Dromen durven delen
+2010
+2
+Als rennen geen zin meer heeft
+pop
+5:09
+Netherlands
+
+Marco Borsato
+Dromen durven delen
+2010
+3
+Zwart en wit
+pop,tranquil
+3:55
+Netherlands
+
+Marco Borsato
+Dromen durven delen
+2010
+4
+Branden aan de zon
+pop
+4:23
+Netherlands
+
+Marco Borsato
+Dromen durven delen
+2010
+5
+Niemand weet
+pop,tranquil,ballad
+3:42
+Netherlands
+
+Marco Borsato
+Dromen durven delen
+2010
+6
+Vrij
+pop
+4:29
+Netherlands
+
+Marco Borsato
+Dromen durven delen
+2010
+7
+Het donker
+pop,tranquil
+2:50
+Netherlands
+
+Marco Borsato
+Dromen durven delen
+2010
+8
+Waterkant
+pop,tranquil
+3:49
+Netherlands
+
+Marco Borsato
+Dromen durven delen
+2010
+9
+Droom, durf, doe en deel
+pop
+3:48
+Netherlands
+
+Marillion
+Brave
+1994
+1
+Bridge
+progressive,rock,instrumental
+2:52
+England
+
+Marillion
+Brave
+1994
+10
+The great escape
+progressive,rock
+6:30
+England
+
+Marillion
+Brave
+1994
+11
+Made again
+progressive,rock
+5:02
+England
+
+Marillion
+Brave
+1994
+2
+Living with the big lie
+progressive,rock
+6:46
+England
+
+Marillion
+Brave
+1994
+3
+Runaway
+progressive,rock
+4:41
+England
+
+Marillion
+Brave
+1994
+4
+Goodbye to all that
+progressive,rock
+12:26
+England
+
+Marillion
+Brave
+1994
+5
+Hard as love
+progressive,rock
+6:42
+England
+
+Marillion
+Brave
+1994
+6
+The hollow man
+progressive,rock,ballad
+4:08
+England
+
+Marillion
+Brave
+1994
+7
+Alone again in the lap of luxury - now wash your hands
+progressive,rock
+8:14
+England
+
+Marillion
+Brave
+1994
+8
+Paper lies
+progressive,rock
+5:49
+England
+
+Marillion
+Brave
+1994
+9
+Brave
+progressive,rock,tranquil
+7:55
+England
+
+Marillion
+Clutching at straws
+1987
+1
+Hotel hobbies
+progressive,rock
+3:36
+England
+
+Marillion
+Clutching at straws
+1987
+10
+Sugar mice
+progressive,rock
+5:41
+England
+
+Marillion
+Clutching at straws
+1987
+11
+The last straw
+progressive,rock
+5:59
+England
+
+Marillion
+Clutching at straws
+1987
+2
+Warm wet circles
+progressive,rock
+4:25
+England
+
+Marillion
+Clutching at straws
+1987
+3
+That time of the night (the short straw)
+progressive,rock
+6:01
+England
+
+Marillion
+Clutching at straws
+1987
+4
+Going under
+progressive,rock
+2:47
+England
+
+Marillion
+Clutching at straws
+1987
+5
+Just for the record
+progressive,rock
+3:10
+England
+
+Marillion
+Clutching at straws
+1987
+6
+White Russian
+progressive,rock
+6:28
+England
+
+Marillion
+Clutching at straws
+1987
+7
+Incommunicado
+progressive,rock
+5:16
+England
+
+Marillion
+Clutching at straws
+1987
+8
+Torch song
+progressive,rock
+4:05
+England
+
+Marillion
+Clutching at straws
+1987
+9
+Slàinte mhath
+progressive,rock
+4:45
+England
+
+Marillion
+Fugazi
+1984
+1
+Assassing
+progressive,rock,gloomy
+7:01
+England
+
+Marillion
+Fugazi
+1984
+2
+Punch & Judy
+progressive,rock,gloomy
+3:18
+England
+
+Marillion
+Fugazi
+1984
+3
+Jigsaw
+progressive,rock,gloomy
+6:46
+England
+
+Marillion
+Fugazi
+1984
+4
+Emerald lies
+progressive,rock,gloomy
+5:08
+England
+
+Marillion
+Fugazi
+1984
+5
+She chameleon
+progressive,rock,gloomy
+6:53
+England
+
+Marillion
+Fugazi
+1984
+6
+Incubus
+progressive,rock,gloomy
+8:30
+England
+
+Marillion
+Fugazi
+1984
+7
+Fugazi
+progressive,rock
+8:02
+England
+
+Marillion
+Misplaced childhood
+1985
+1
+Pseudo silk kimono
+progressive,rock
+2:13
+England
+
+Marillion
+Misplaced childhood
+1985
+10
+White feather
+progressive,rock
+2:23
+England
+
+Marillion
+Misplaced childhood
+1985
+2
+Kayleigh
+progressive,rock
+4:03
+England
+
+Marillion
+Misplaced childhood
+1985
+3
+Lavender
+progressive,rock
+2:27
+England
+
+Marillion
+Misplaced childhood
+1985
+4
+Bitter suite
+progressive,rock
+5:53
+England
+
+Marillion
+Misplaced childhood
+1985
+5
+Heart of Lothian
+progressive,rock
+5:02
+England
+
+Marillion
+Misplaced childhood
+1985
+6
+Waterhole (expresso bongo)
+progressive,rock
+2:12
+England
+
+Marillion
+Misplaced childhood
+1985
+7
+Lords of the backstage
+progressive,rock
+1:52
+England
+
+Marillion
+Misplaced childhood
+1985
+8
+Blind curve
+progressive,rock
+9:29
+England
+
+Marillion
+Misplaced childhood
+1985
+9
+Childhoods end?
+progressive,rock
+4:32
+England
+
+Marillion
+Script for a jester's tear
+1983
+1
+Script for a jester's tear
+progressive,rock,debut album
+8:39
+England
+
+Marillion
+Script for a jester's tear
+1983
+2
+He knows you know
+progressive,rock,debut album
+5:22
+England
+
+Marillion
+Script for a jester's tear
+1983
+3
+The web
+progressive,rock,debut album
+8:48
+England
+
+Marillion
+Script for a jester's tear
+1983
+4
+Garden party
+progressive,rock,debut album
+7:15
+England
+
+Marillion
+Script for a jester's tear
+1983
+5
+Chelsea monday
+progressive,rock,gloomy,debut album
+8:16
+England
+
+Marillion
+Script for a jester's tear
+1983
+6
+Forgotton sons
+progressive,rock,debut album
+8:21
+England
+
+Marillion
+Seasons end
+1989
+1
+The king of Sunset town
+progressive,rock
+8:02
+England
+
+Marillion
+Seasons end
+1989
+2
+Easter
+progressive,rock
+5:58
+England
+
+Marillion
+Seasons end
+1989
+3
+The uninvited guest
+progressive,rock
+3:52
+England
+
+Marillion
+Seasons end
+1989
+4
+Seasons end
+progressive,rock
+8:08
+England
+
+Marillion
+Seasons end
+1989
+5
+Holloway girl
+progressive,rock
+4:28
+England
+
+Marillion
+Seasons end
+1989
+6
+Berlin
+progressive,rock
+7:43
+England
+
+Marillion
+Seasons end
+1989
+7
+After me
+progressive,rock
+3:20
+England
+
+Marillion
+Seasons end
+1989
+8
+Hooks in you
+progressive,rock
+2:55
+England
+
+Marillion
+Seasons end
+1989
+9
+The space
+progressive,rock
+6:15
+England
+
+Mastodon
+Crack the skye
+2009
+1
+Oblivion
+progressive,heavy metal
+5:46
+U.S.A.
+
+Mastodon
+Crack the skye
+2009
+2
+Divinations
+progressive,heavy metal
+3:38
+U.S.A.
+
+Mastodon
+Crack the skye
+2009
+3
+Quintessence
+progressive,heavy metal
+5:27
+U.S.A.
+
+Mastodon
+Crack the skye
+2009
+4
+The czar
+progressive,heavy metal
+10:54
+U.S.A.
+
+Mastodon
+Crack the skye
+2009
+5
+Ghost of Karelia
+progressive,heavy metal
+5:24
+U.S.A.
+
+Mastodon
+Crack the skye
+2009
+6
+Crack the skye
+progressive,heavy metal
+5:54
+U.S.A.
+
+Mastodon
+Crack the skye
+2009
+7
+The last baron
+progressive,heavy metal
+13:00
+U.S.A.
+
+Maurice Ravel & Claude Debussy
+Ravel & Debussy
+1965
+1
+Bolero (Maurice Ravel)
+classic,symphonic,impressionistic
+16:09
+France
+
+Maurice Ravel & Claude Debussy
+Ravel & Debussy
+1965
+2
+La mer - De l'aube á midi sur la mer (Claude Debussy)
+classic,symphonic,impressionistic
+8:32
+France
+
+Maurice Ravel & Claude Debussy
+Ravel & Debussy
+1965
+3
+La mer - Jeux de vagues
+classic,symphonic,impressionistic
+6:10
+France
+
+Maurice Ravel & Claude Debussy
+Ravel & Debussy
+1965
+4
+La mer - Dialogue du vent et de la mer (Claude Debussy)
+classic,symphonic,impressionistic
+7:51
+France
+
+Maurice Ravel & Claude Debussy
+Ravel & Debussy
+1965
+5
+Daphnis et Chloé: fragments symphoniques (Maurice Ravel)
+classic,symphonic,impressionistic
+15:13
+France
+
+Maurice Ravel & Claude Debussy
+Ravel & Debussy
+1965
+6
+Prélude á l'après-midi d'un faune (Claude Debussy)
+classic,symphonic,impressionistic
+9:52
+France
+
+Megadeth
+Endgame
+2009
+1
+Dialectic chaos
+heavy metal
+2:25
+U.S.A.
+
+Megadeth
+Endgame
+2009
+10
+How the story ends
+heavy metal
+4:28
+U.S.A.
+
+Megadeth
+Endgame
+2009
+11
+The right to go insane
+heavy metal
+4:18
+U.S.A.
+
+Megadeth
+Endgame
+2009
+2
+This day we fight
+heavy metal
+3:27
+U.S.A.
+
+Megadeth
+Endgame
+2009
+3
+44 Minutes
+heavy metal
+4:37
+U.S.A.
+
+Megadeth
+Endgame
+2009
+4
+1, 320'
+heavy metal
+3:49
+U.S.A.
+
+Megadeth
+Endgame
+2009
+5
+Bite the hand
+heavy metal
+4:01
+U.S.A.
+
+Megadeth
+Endgame
+2009
+6
+Bodies
+heavy metal
+3:34
+U.S.A.
+
+Megadeth
+Endgame
+2009
+7
+Endgame
+heavy metal
+5:56
+U.S.A.
+
+Megadeth
+Endgame
+2009
+8
+The hardest part of letting go... sealed with a kiss
+heavy metal
+4:41
+U.S.A.
+
+Megadeth
+Endgame
+2009
+9
+Head crusher
+heavy metal
+3:26
+U.S.A.
+
+Miles Davis
+Kind of blue
+1997
+1
+So what
+jazz,trumpet,instrumental
+9:22
+U.S.A.
+
+Miles Davis
+Kind of blue
+1997
+2
+Freddie Freeloader
+jazz,trumpet,instrumental
+9:46
+U.S.A.
+
+Miles Davis
+Kind of blue
+1997
+3
+Blue in green
+jazz,trumpet,instrumental
+5:37
+U.S.A.
+
+Miles Davis
+Kind of blue
+1997
+4
+All blues
+jazz,trumpet,instrumental
+11:33
+U.S.A.
+
+Miles Davis
+Kind of blue
+1997
+5
+Flamenco sketches
+jazz,trumpet,instrumental
+9:26
+U.S.A.
+
+Miles Davis
+Kind of blue
+1997
+6
+Flamenco sketches (alternate take)
+jazz,trumpet,instrumental
+9:32
+U.S.A.
+
+Miles Davis
+Sketches of Spain
+1997
+1
+Concierto de Aranjuez (adagio)
+jazz,trumpet,instrumental
+16:19
+U.S.A.
+
+Miles Davis
+Sketches of Spain
+1997
+2
+Will o' the wisp
+jazz,trumpet,instrumental
+3:47
+U.S.A.
+
+Miles Davis
+Sketches of Spain
+1997
+3
+The pan piper
+jazz,trumpet,instrumental
+3:52
+U.S.A.
+
+Miles Davis
+Sketches of Spain
+1997
+4
+Saeta
+jazz,trumpet,instrumental
+5:06
+U.S.A.
+
+Miles Davis
+Sketches of Spain
+1997
+5
+Solea
+jazz,trumpet,instrumental
+12:15
+U.S.A.
+
+Miles Davis
+Sketches of Spain
+1997
+6
+Song of our country
+jazz,trumpet,instrumental
+3:23
+U.S.A.
+
+Miles Davis
+Sketches of Spain
+1997
+7
+Concierto de Aranjuez (part one)
+jazz,trumpet,instrumental
+12:04
+U.S.A.
+
+Miles Davis
+Sketches of Spain
+1997
+8
+Concierto de Aranjuez (part two ending)
+jazz,trumpet,instrumental
+3:33
+U.S.A.
+
+Mitchell Froom
+A thousand days
+2004
+1
+A thousand days
+piano,tranquil,instrumental
+2:54
+U.S.A.
+
+Mitchell Froom
+A thousand days
+2004
+10
+Whisperland
+piano,tranquil,instrumental
+2:19
+U.S.A.
+
+Mitchell Froom
+A thousand days
+2004
+11
+Everytime I close my eyes
+piano,tranquil,instrumental
+2:38
+U.S.A.
+
+Mitchell Froom
+A thousand days
+2004
+12
+Tuesday
+piano,tranquil,instrumental
+2:25
+U.S.A.
+
+Mitchell Froom
+A thousand days
+2004
+13
+Falling from the sea
+piano,tranquil,instrumental
+2:37
+U.S.A.
+
+Mitchell Froom
+A thousand days
+2004
+14
+If
+piano,tranquil,instrumental
+3:04
+U.S.A.
+
+Mitchell Froom
+A thousand days
+2004
+2
+1965
+piano,tranquil,instrumental
+2:15
+U.S.A.
+
+Mitchell Froom
+A thousand days
+2004
+3
+This morning
+piano,tranquil,instrumental
+3:18
+U.S.A.
+
+Mitchell Froom
+A thousand days
+2004
+4
+Trip to heaven
+piano,tranquil,instrumental
+2:27
+U.S.A.
+
+Mitchell Froom
+A thousand days
+2004
+5
+Tomorrow in june
+piano,tranquil,instrumental
+2:24
+U.S.A.
+
+Mitchell Froom
+A thousand days
+2004
+6
+Silhouettes
+piano,tranquil,instrumental
+2:59
+U.S.A.
+
+Mitchell Froom
+A thousand days
+2004
+7
+A lullaby
+piano,tranquil,instrumental
+2:44
+U.S.A.
+
+Mitchell Froom
+A thousand days
+2004
+8
+Some blue song
+piano,tranquil,instrumental
+3:05
+U.S.A.
+
+Mitchell Froom
+A thousand days
+2004
+9
+Sanctuary
+piano,tranquil,instrumental
+2:44
+U.S.A.
+
+Moonspell
+Night eternal
+2008
+1
+At tragic heights
+metal,gothic,doom
+6:51
+Portugal
+
+Moonspell
+Night eternal
+2008
+10
+Age of mothers
+metal,gothic,doom
+5:42
+Portugal
+
+Moonspell
+Night eternal
+2008
+11
+Scorpion flower (dark lush cut)
+metal,gothic,doom
+4:36
+Portugal
+
+Moonspell
+Night eternal
+2008
+12
+Scorpion flower (the feeble cut)
+metal,gothic,doom
+3:57
+Portugal
+
+Moonspell
+Night eternal
+2008
+2
+Night eternal
+metal,gothic,doom
+4:09
+Portugal
+
+Moonspell
+Night eternal
+2008
+3
+Shadow sun
+metal,gothic,doom
+4:23
+Portugal
+
+Moonspell
+Night eternal
+2008
+4
+Scorpion flower
+metal,gothic,doom
+4:33
+Portugal
+
+Moonspell
+Night eternal
+2008
+5
+Moon in Mercury
+metal,gothic,doom
+4:22
+Portugal
+
+Moonspell
+Night eternal
+2008
+6
+Hers is the twilight
+metal,gothic,doom
+4:53
+Portugal
+
+Moonspell
+Night eternal
+2008
+7
+Dreamless (Lucifer and Lilith)
+metal,gothic,doom
+5:16
+Portugal
+
+Moonspell
+Night eternal
+2008
+8
+Spring of rage
+metal,gothic,doom
+4:04
+Portugal
+
+Moonspell
+Night eternal
+2008
+9
+First light
+metal,gothic,doom
+5:47
+Portugal
+
+Moss
+Never be scared / don't be a hero
+2009
+1
+Never be scared
+alternative,rock
+1:48
+Netherlands
+
+Moss
+Never be scared / don't be a hero
+2009
+10
+Silent hill
+alternative,rock
+5:29
+Netherlands
+
+Moss
+Never be scared / don't be a hero
+2009
+11
+Sing along
+alternative,rock
+2:34
+Netherlands
+
+Moss
+Never be scared / don't be a hero
+2009
+2
+I like the chemistry
+alternative,rock
+3:42
+Netherlands
+
+Moss
+Never be scared / don't be a hero
+2009
+3
+Apparatos
+alternative,rock
+4:49
+Netherlands
+
+Moss
+Never be scared / don't be a hero
+2009
+4
+The comfort
+alternative,rock
+3:20
+Netherlands
+
+Moss
+Never be scared / don't be a hero
+2009
+5
+Angry young man
+alternative,rock
+4:30
+Netherlands
+
+Moss
+Never be scared / don't be a hero
+2009
+6
+I apologise (dear Simon)
+alternative,rock
+3:18
+Netherlands
+
+Moss
+Never be scared / don't be a hero
+2009
+7
+Don't be a hero
+alternative,rock
+4:34
+Netherlands
+
+Moss
+Never be scared / don't be a hero
+2009
+8
+New arms
+alternative,rock
+3:51
+Netherlands
+
+Moss
+Never be scared / don't be a hero
+2009
+9
+The brick moon
+alternative,rock
+5:48
+Netherlands
+
+Moss
+Ornaments
+2012
+1
+I am human
+alternative,rock
+3:21
+Netherlands
+
+Moss
+Ornaments
+2012
+10
+Good people
+alternative,rock
+3:18
+Netherlands
+
+Moss
+Ornaments
+2012
+11
+Ornament
+alternative,rock
+9:12
+Netherlands
+
+Moss
+Ornaments
+2012
+2
+Spellbound
+alternative,rock
+2:35
+Netherlands
+
+Moss
+Ornaments
+2012
+3
+Tiny love
+alternative,rock
+4:06
+Netherlands
+
+Moss
+Ornaments
+2012
+4
+Almost a year
+alternative,rock
+3:27
+Netherlands
+
+Moss
+Ornaments
+2012
+5
+Give love to the ones you love
+alternative,rock
+2:36
+Netherlands
+
+Moss
+Ornaments
+2012
+6
+Everything died in your heart
+alternative,rock
+2:51
+Netherlands
+
+Moss
+Ornaments
+2012
+7
+The hunter
+alternative,rock
+3:59
+Netherlands
+
+Moss
+Ornaments
+2012
+8
+What you want
+alternative,rock
+3:05
+Netherlands
+
+Moss
+Ornaments
+2012
+9
+A real hero dies in the end
+alternative,rock
+1:52
+Netherlands
+
+Mullmuzzler
+2
+2001
+1
+Afterlife
+progressive,metal
+4:54
+U.S.A.
+
+Mullmuzzler
+2
+2001
+10
+Tell me
+progressive,metal
+5:14
+U.S.A.
+
+Mullmuzzler
+2
+2001
+2
+Venice burning
+progressive,metal
+6:26
+U.S.A.
+
+Mullmuzzler
+2
+2001
+3
+Confronting the devil
+progressive,metal
+6:20
+U.S.A.
+
+Mullmuzzler
+2
+2001
+4
+Falling
+progressive,metal
+3:52
+U.S.A.
+
+Mullmuzzler
+2
+2001
+5
+Stranger
+progressive,metal
+6:32
+U.S.A.
+
+Mullmuzzler
+2
+2001
+6
+A simple man
+progressive,metal
+5:20
+U.S.A.
+
+Mullmuzzler
+2
+2001
+7
+Save me
+progressive,metal
+4:11
+U.S.A.
+
+Mullmuzzler
+2
+2001
+8
+Believe
+progressive,metal
+5:00
+U.S.A.
+
+Mullmuzzler
+2
+2001
+9
+Listening
+progressive,metal
+4:14
+U.S.A.
+
+Mullmuzzler
+Keep it to yourself
+1999
+1
+His voice
+progressive,metal
+3:43
+U.S.A.
+
+Mullmuzzler
+Keep it to yourself
+1999
+2
+Statued
+progressive,metal
+3:23
+U.S.A.
+
+Mullmuzzler
+Keep it to yourself
+1999
+3
+Shores of Avalon
+progressive,metal
+7:51
+U.S.A.
+
+Mullmuzzler
+Keep it to yourself
+1999
+4
+Beelzebubba
+progressive,metal
+5:20
+U.S.A.
+
+Mullmuzzler
+Keep it to yourself
+1999
+5
+Guardian angel
+progressive,metal
+7:27
+U.S.A.
+
+Mullmuzzler
+Keep it to yourself
+1999
+6
+Sacrifice
+progressive,metal
+5:14
+U.S.A.
+
+Mullmuzzler
+Keep it to yourself
+1999
+7
+Lace
+progressive,metal
+4:14
+U.S.A.
+
+Mullmuzzler
+Keep it to yourself
+1999
+8
+Slow burn
+progressive,metal
+6:20
+U.S.A.
+
+Mullmuzzler
+Keep it to yourself
+1999
+9
+As a man thinks
+progressive,metal
+8:11
+U.S.A.
+
+Mumford & Sons
+Sigh no more
+2009
+1
+Sigh no more
+folk,rock,debut album
+3:28
+England
+
+Mumford & Sons
+Sigh no more
+2009
+10
+Awake my soul
+folk,rock,debut album
+4:16
+England
+
+Mumford & Sons
+Sigh no more
+2009
+11
+Dust bowl dance
+folk,rock,debut album
+4:43
+England
+
+Mumford & Sons
+Sigh no more
+2009
+12
+After the storm
+folk,rock,debut album
+4:08
+England
+
+Mumford & Sons
+Sigh no more
+2009
+2
+The cave
+folk,rock,debut album
+3:38
+England
+
+Mumford & Sons
+Sigh no more
+2009
+3
+Winter winds
+folk,rock,debut album
+3:39
+England
+
+Mumford & Sons
+Sigh no more
+2009
+4
+Roll away your stone
+folk,rock,debut album
+4:23
+England
+
+Mumford & Sons
+Sigh no more
+2009
+5
+White blank page
+folk,rock,debut album
+4:14
+England
+
+Mumford & Sons
+Sigh no more
+2009
+6
+I gave you all
+folk,rock,debut album
+4:20
+England
+
+Mumford & Sons
+Sigh no more
+2009
+7
+Little lion man
+folk,rock,debut album
+4:07
+England
+
+Mumford & Sons
+Sigh no more
+2009
+8
+Timshel
+folk,rock,debut album
+2:53
+England
+
+Mumford & Sons
+Sigh no more
+2009
+9
+Thistle & weeds
+folk,rock,debut album
+4:49
+England
+
+Muse
+Absolution
+2003
+1
+Intro
+alternative,rock
+0:22
+England
+
+Muse
+Absolution
+2003
+10
+Butterflies and hurricanes
+alternative,rock
+5:01
+England
+
+Muse
+Absolution
+2003
+11
+The small print
+alternative,rock
+3:29
+England
+
+Muse
+Absolution
+2003
+12
+Endlessly
+alternative,rock
+3:48
+England
+
+Muse
+Absolution
+2003
+13
+Thoughts of a dying atheist
+alternative,rock
+3:11
+England
+
+Muse
+Absolution
+2003
+14
+Ruled by secrecy
+alternative,rock
+4:52
+England
+
+Muse
+Absolution
+2003
+2
+Apocalypse please
+alternative,rock
+4:12
+England
+
+Muse
+Absolution
+2003
+3
+Time is running out
+alternative,rock
+3:56
+England
+
+Muse
+Absolution
+2003
+4
+Sing for absolution
+alternative,rock
+4:54
+England
+
+Muse
+Absolution
+2003
+5
+Stockholm syndrome
+alternative,rock
+4:58
+England
+
+Muse
+Absolution
+2003
+6
+Falling away with you
+alternative,rock
+4:40
+England
+
+Muse
+Absolution
+2003
+7
+Interlude
+alternative,rock
+0:37
+England
+
+Muse
+Absolution
+2003
+8
+Hysteria
+alternative,rock
+3:47
+England
+
+Muse
+Absolution
+2003
+9
+Blackout
+alternative,rock
+4:22
+England
+
+Muse
+Black holes and revelations
+2006
+1
+Take a bow
+alternative,rock
+4:35
+England
+
+Muse
+Black holes and revelations
+2006
+10
+Hoodoo
+alternative,rock
+3:43
+England
+
+Muse
+Black holes and revelations
+2006
+11
+Knights of Cydonia
+alternative,rock
+6:06
+England
+
+Muse
+Black holes and revelations
+2006
+2
+Starlight
+alternative,rock
+3:59
+England
+
+Muse
+Black holes and revelations
+2006
+3
+Supermassive black hole
+alternative,rock
+3:29
+England
+
+Muse
+Black holes and revelations
+2006
+4
+Map of the problematique
+alternative,rock
+4:18
+England
+
+Muse
+Black holes and revelations
+2006
+5
+Soldier's poem
+alternative,rock,tranquil
+2:03
+England
+
+Muse
+Black holes and revelations
+2006
+6
+Invincible
+alternative,rock
+5:00
+England
+
+Muse
+Black holes and revelations
+2006
+7
+Assassin
+alternative,rock
+3:31
+England
+
+Muse
+Black holes and revelations
+2006
+8
+Exo-politics
+alternative,rock
+3:53
+England
+
+Muse
+Black holes and revelations
+2006
+9
+City of delusion
+alternative,rock
+4:48
+England
+
+Muse
+Live at Rome Olympic Stadium
+2013
+1
+Supremacy
+rock,alternative,live
+5:14
+England
+
+Muse
+Live at Rome Olympic Stadium
+2013
+10
+Guiding light
+rock,alternative,live
+4:18
+England
+
+Muse
+Live at Rome Olympic Stadium
+2013
+11
+Supermassive black hole
+rock,alternative,live
+4:05
+England
+
+Muse
+Live at Rome Olympic Stadium
+2013
+12
+Uprising
+rock,alternative,live
+5:35
+England
+
+Muse
+Live at Rome Olympic Stadium
+2013
+13
+Starlight
+rock,alternative,live
+4:27
+England
+
+Muse
+Live at Rome Olympic Stadium
+2013
+2
+Panic station
+rock,alternative,live
+3:12
+England
+
+Muse
+Live at Rome Olympic Stadium
+2013
+3
+Resistance
+rock,alternative,live
+5:32
+England
+
+Muse
+Live at Rome Olympic Stadium
+2013
+4
+Hysteria
+rock,alternative,live
+5:06
+England
+
+Muse
+Live at Rome Olympic Stadium
+2013
+5
+Animals
+rock,alternative,live
+4:21
+England
+
+Muse
+Live at Rome Olympic Stadium
+2013
+6
+Knights of Cydonia
+rock,alternative,live
+8:19
+England
+
+Muse
+Live at Rome Olympic Stadium
+2013
+7
+Explorers
+rock,alternative,live
+5:54
+England
+
+Muse
+Live at Rome Olympic Stadium
+2013
+8
+Follow me
+rock,alternative,live
+3:52
+England
+
+Muse
+Live at Rome Olympic Stadium
+2013
+9
+Madness
+rock,alternative,live
+4:37
+England
+
+Muse
+Origin of symmetry
+2001
+1
+New born
+alternative,rock
+6:03
+England
+
+Muse
+Origin of symmetry
+2001
+10
+Feeling good
+alternative,rock
+3:19
+England
+
+Muse
+Origin of symmetry
+2001
+11
+Megalomania
+alternative,rock
+4:40
+England
+
+Muse
+Origin of symmetry
+2001
+2
+Bliss
+alternative,rock
+4:12
+England
+
+Muse
+Origin of symmetry
+2001
+3
+Space dementia
+alternative,rock
+6:20
+England
+
+Muse
+Origin of symmetry
+2001
+4
+Hyper music
+alternative,rock
+3:20
+England
+
+Muse
+Origin of symmetry
+2001
+5
+Plug in baby
+alternative,rock
+3:40
+England
+
+Muse
+Origin of symmetry
+2001
+6
+Citizen erased
+alternative,rock
+7:19
+England
+
+Muse
+Origin of symmetry
+2001
+7
+Micro cuts
+alternative,rock
+3:38
+England
+
+Muse
+Origin of symmetry
+2001
+8
+Screenager
+alternative,rock
+4:20
+England
+
+Muse
+Origin of symmetry
+2001
+9
+Darkshines
+alternative,rock
+4:47
+England
+
+Muse
+Showbiz
+1999
+1
+Sunburn
+alternative,rock,debut album
+3:54
+England
+
+Muse
+Showbiz
+1999
+10
+Escape
+alternative,rock,debut album
+3:31
+England
+
+Muse
+Showbiz
+1999
+11
+Overdue
+alternative,rock,debut album
+2:26
+England
+
+Muse
+Showbiz
+1999
+12
+Hate this & I'll love you
+alternative,rock,debut album
+5:09
+England
+
+Muse
+Showbiz
+1999
+2
+Muscle museum
+alternative,rock,debut album
+4:23
+England
+
+Muse
+Showbiz
+1999
+3
+Fillip
+alternative,rock,debut album
+4:01
+England
+
+Muse
+Showbiz
+1999
+4
+Falling down
+alternative,rock,debut album
+4:34
+England
+
+Muse
+Showbiz
+1999
+5
+Cave
+alternative,rock,debut album
+4:46
+England
+
+Muse
+Showbiz
+1999
+6
+Showbiz
+alternative,rock,debut album
+5:16
+England
+
+Muse
+Showbiz
+1999
+7
+Unintended
+alternative,rock,debut album
+3:57
+England
+
+Muse
+Showbiz
+1999
+8
+Uno
+alternative,rock,debut album
+3:38
+England
+
+Muse
+Showbiz
+1999
+9
+Sober
+alternative,rock,debut album
+4:04
+England
+
+Muse
+The 2nd law
+2012
+1
+Supremacy
+alternative,rock
+4:55
+England
+
+Muse
+The 2nd law
+2012
+10
+Save me
+alternative,rock
+5:08
+England
+
+Muse
+The 2nd law
+2012
+11
+Liquid state
+alternative,rock
+3:02
+England
+
+Muse
+The 2nd law
+2012
+12
+The 2nd law: unsustainable
+alternative,rock
+3:48
+England
+
+Muse
+The 2nd law
+2012
+13
+The 2nd law: isolated system
+alternative,rock
+5:00
+England
+
+Muse
+The 2nd law
+2012
+2
+Madness
+alternative
+4:39
+England
+
+Muse
+The 2nd law
+2012
+3
+Panic station
+alternative
+3:04
+England
+
+Muse
+The 2nd law
+2012
+4
+Prelude
+instrumental
+0:57
+England
+
+Muse
+The 2nd law
+2012
+5
+Survival
+alternative,rock
+4:17
+England
+
+Muse
+The 2nd law
+2012
+6
+Follow me
+alternative,rock
+3:51
+England
+
+Muse
+The 2nd law
+2012
+7
+Animals
+alternative,rock
+4:22
+England
+
+Muse
+The 2nd law
+2012
+8
+Explorers
+ballad
+5:46
+England
+
+Muse
+The 2nd law
+2012
+9
+Big freeze
+alternative,rock
+4:39
+England
+
+Muse
+The resistance
+2009
+1
+Uprising
+alternative,rock
+5:02
+England
+
+Muse
+The resistance
+2009
+10
+Exogenesis: symphony part 2 (cross-pollination)
+alternative,rock,symphonic
+3:56
+England
+
+Muse
+The resistance
+2009
+11
+Exogenesis: symphony part 3 (redemption)
+alternative,rock,symphonic
+4:37
+England
+
+Muse
+The resistance
+2009
+2
+Resistance
+alternative,rock
+5:46
+England
+
+Muse
+The resistance
+2009
+3
+Undisclosed desires
+alternative,rock
+3:56
+England
+
+Muse
+The resistance
+2009
+4
+United states of Eurasia (+ collateral damage)
+alternative,rock
+5:47
+England
+
+Muse
+The resistance
+2009
+5
+Guiding light
+alternative,rock
+4:13
+England
+
+Muse
+The resistance
+2009
+6
+Unnatural selection
+alternative,rock
+6:55
+England
+
+Muse
+The resistance
+2009
+7
+MK ultra
+alternative,rock
+4:06
+England
+
+Muse
+The resistance
+2009
+8
+I belong to you (+ mon coeur s'ouvre a ta voix)
+alternative,rock
+5:38
+England
+
+Muse
+The resistance
+2009
+9
+Exogenesis: symphony part 1 (overture)
+alternative,rock,symphonic
+4:18
+England
+
+Myrath
+Tales of the sands
+2011
+1
+Under siege
+metal,progressive,heavy
+4:28
+Tunisia
+
+Myrath
+Tales of the sands
+2011
+10
+Time to grow
+metal,progressive,heavy
+3:59
+Tunisia
+
+Myrath
+Tales of the sands
+2011
+11
+Apostrophe for a legend
+metal,progressive,heavy
+5:10
+Tunisia
+
+Myrath
+Tales of the sands
+2011
+2
+Braving the seas
+metal,progressive,heavy
+4:20
+Tunisia
+
+Myrath
+Tales of the sands
+2011
+3
+Merciless times
+metal,progressive,heavy
+3:28
+Tunisia
+
+Myrath
+Tales of the sands
+2011
+4
+Tales of the sands
+metal,progressive,heavy
+5:19
+Tunisia
+
+Myrath
+Tales of the sands
+2011
+5
+Sour sigh
+metal,progressive,heavy
+4:58
+Tunisia
+
+Myrath
+Tales of the sands
+2011
+6
+Dawn within
+metal,progressive,heavy
+3:31
+Tunisia
+
+Myrath
+Tales of the sands
+2011
+7
+Wide shut
+metal,progressive,heavy
+5:25
+Tunisia
+
+Myrath
+Tales of the sands
+2011
+8
+Requiem for a goodbye
+metal,progressive,heavy
+4:23
+Tunisia
+
+Myrath
+Tales of the sands
+2011
+9
+Beyond the stars
+metal,progressive,heavy
+5:15
+Tunisia
+
+Navarone
+A darker shade of white
+2012
+1
+The red queen effect
+alternative,rock,debut album
+3:47
+Netherlands
+
+Navarone
+A darker shade of white
+2012
+2
+Highland bull
+alternative,rock,debut album
+3:55
+Netherlands
+
+Navarone
+A darker shade of white
+2012
+3
+Quarter rest
+alternative,rock,debut album,instrumental
+5:06
+Netherlands
+
+Navarone
+A darker shade of white
+2012
+4
+December
+alternative,rock,debut album
+5:19
+Netherlands
+
+Navarone
+A darker shade of white
+2012
+5
+On my knees
+alternative,rock,debut album
+3:51
+Netherlands
+
+Navarone
+A darker shade of white
+2012
+6
+Sage
+alternative,rock,debut album
+10:15
+Netherlands
+
+Navarone
+A darker shade of white
+2012
+7
+Dawn
+alternative,rock,debut album
+5:39
+Netherlands
+
+Navarone
+A data at the chapel
+2014
+1
+Ouverture
+instrumental,tranquil,live
+3:02
+Netherlands
+
+Navarone
+A data at the chapel
+2014
+10
+The red queen effect
+alternative,live
+3:58
+Netherlands
+
+Navarone
+A data at the chapel
+2014
+11
+Sage
+alternative,live
+10:08
+Netherlands
+
+Navarone
+A data at the chapel
+2014
+12
+Devil's ferry
+alternative,live,tranquil
+3:33
+Netherlands
+
+Navarone
+A data at the chapel
+2014
+13
+Feathers
+alternative,live
+5:14
+Netherlands
+
+Navarone
+A data at the chapel
+2014
+14
+Dawn
+alternative,live
+7:23
+Netherlands
+
+Navarone
+A data at the chapel
+2014
+2
+Quarter restless
+instrumental,tranquil,live
+1:57
+Netherlands
+
+Navarone
+A data at the chapel
+2014
+3
+December
+alternative,live
+6:15
+Netherlands
+
+Navarone
+A data at the chapel
+2014
+4
+Indigo blue
+alternative,live
+4:49
+Netherlands
+
+Navarone
+A data at the chapel
+2014
+5
+Bottom line
+alternative,live
+5:00
+Netherlands
+
+Navarone
+A data at the chapel
+2014
+6
+Leave
+alternative,live
+5:09
+Netherlands
+
+Navarone
+A data at the chapel
+2014
+7
+Highland bull
+alternative,live
+3:34
+Netherlands
+
+Navarone
+A data at the chapel
+2014
+8
+Murder and misery
+alternative,live
+6:38
+Netherlands
+
+Navarone
+A data at the chapel
+2014
+9
+Wander
+alternative,live
+5:02
+Netherlands
+
+Navarone
+Vim and vigor
+2014
+1
+Time
+alternative,rock
+4:46
+Netherlands
+
+Navarone
+Vim and vigor
+2014
+10
+Wander
+alternative,rock
+3:49
+Netherlands
+
+Navarone
+Vim and vigor
+2014
+11
+Bottom line
+alternative,rock
+5:33
+Netherlands
+
+Navarone
+Vim and vigor
+2014
+2
+Brother
+alternative,rock
+3:52
+Netherlands
+
+Navarone
+Vim and vigor
+2014
+3
+Smash 'n grab it
+alternative,rock
+2:39
+Netherlands
+
+Navarone
+Vim and vigor
+2014
+4
+Black and blue
+alternative,rock
+3:41
+Netherlands
+
+Navarone
+Vim and vigor
+2014
+5
+Gimme a shot
+alternative,rock
+3:09
+Netherlands
+
+Navarone
+Vim and vigor
+2014
+6
+Psycho vaquero
+alternative,rock
+5:05
+Netherlands
+
+Navarone
+Vim and vigor
+2014
+7
+Indigo blue
+alternative,rock
+4:52
+Netherlands
+
+Navarone
+Vim and vigor
+2014
+8
+Murder and misery
+alternative,rock
+5:55
+Netherlands
+
+Navarone
+Vim and vigor
+2014
+9
+Leave
+alternative,rock
+4:40
+Netherlands
+
+Nightwish
+Century child
+2002
+1
+Bless the child
+metal,symphonic,female fronted
+6:12
+Finland
+
+Nightwish
+Century child
+2002
+10
+Beauty of the beast
+metal,symphonic,female fronted
+10:22
+Finland
+
+Nightwish
+Century child
+2002
+2
+End of all hope
+metal,symphonic,female fronted
+3:54
+Finland
+
+Nightwish
+Century child
+2002
+3
+Dead to the world
+metal,symphonic,female fronted
+4:19
+Finland
+
+Nightwish
+Century child
+2002
+4
+Ever dream
+metal,symphonic,female fronted
+4:43
+Finland
+
+Nightwish
+Century child
+2002
+5
+Slaying the dreamer
+metal,symphonic,female fronted
+4:31
+Finland
+
+Nightwish
+Century child
+2002
+6
+Forever yours
+metal,symphonic,female fronted
+3:51
+Finland
+
+Nightwish
+Century child
+2002
+7
+Ocean soul
+metal,symphonic,female fronted
+4:14
+Finland
+
+Nightwish
+Century child
+2002
+8
+Feel for you
+metal,symphonic,female fronted
+3:54
+Finland
+
+Nightwish
+Century child
+2002
+9
+The phantom of the opera
+metal,symphonic,female fronted
+4:09
+Finland
+
+Nikolai Rimsky-Korsakov & Alexander Glazunov
+Scheherazada/Stenka Razin
+1986
+1
+Scheherazade - The sea and Sindbad's ship
+classic,symphonic
+10:18
+Russia
+
+Nikolai Rimsky-Korsakov & Alexander Glazunov
+Scheherazada/Stenka Razin
+1986
+2
+Scheherazade - The fantastic tale of the kalendar prince
+classic,symphonic
+12:12
+Russia
+
+Nikolai Rimsky-Korsakov & Alexander Glazunov
+Scheherazada/Stenka Razin
+1986
+3
+Scheherazade - The young prince and the young princess
+classic,symphonic
+10:53
+Russia
+
+Nikolai Rimsky-Korsakov & Alexander Glazunov
+Scheherazada/Stenka Razin
+1986
+4
+Scheherazade - The Baghdad festival and the shipwreck on the rock with the bronze warrior
+classic,symphonic
+12:06
+Russia
+
+Nikolai Rimsky-Korsakov & Alexander Glazunov
+Scheherazada/Stenka Razin
+1986
+5
+Stenka Razin: Symphonic Poem Op.13 (A. Glazunov)
+classic,symphonic
+15:08
+Russia
+
+Nits
+Nest
+1995
+1
+Broken wing
+alternative,pop
+2:39
+Netherlands
+
+Nits
+Nest
+1995
+10
+Bauhaus chair
+alternative,pop
+2:45
+Netherlands
+
+Nits
+Nest
+1995
+11
+Soap bubble box
+alternative,pop
+3:25
+Netherlands
+
+Nits
+Nest
+1995
+12
+Radio shoes
+alternative,pop
+3:09
+Netherlands
+
+Nits
+Nest
+1995
+13
+Sketches of Spain
+alternative,pop
+4:22
+Netherlands
+
+Nits
+Nest
+1995
+14
+Red tape
+alternative,pop
+2:29
+Netherlands
+
+Nits
+Nest
+1995
+15
+The train
+alternative,pop
+4:07
+Netherlands
+
+Nits
+Nest
+1995
+16
+Da da da
+alternative,pop
+4:02
+Netherlands
+
+Nits
+Nest
+1995
+17
+Giant normal dwarf
+alternative,pop
+2:29
+Netherlands
+
+Nits
+Nest
+1995
+18
+Cars & cars
+alternative,pop
+3:52
+Netherlands
+
+Nits
+Nest
+1995
+19
+Home before dark
+alternative,pop
+3:12
+Netherlands
+
+Nits
+Nest
+1995
+2
+J.O.S. days
+alternative,pop
+3:13
+Netherlands
+
+Nits
+Nest
+1995
+20
+Road not taken
+alternative,pop
+4:47
+Netherlands
+
+Nits
+Nest
+1995
+3
+Adieu sweet Bahnhof
+alternative,pop
+4:48
+Netherlands
+
+Nits
+Nest
+1995
+4
+Bike in head
+alternative,pop
+3:33
+Netherlands
+
+Nits
+Nest
+1995
+5
+Nescio
+alternative,pop
+4:47
+Netherlands
+
+Nits
+Nest
+1995
+6
+The dream
+alternative,pop
+4:21
+Netherlands
+
+Nits
+Nest
+1995
+7
+A touch of Henry Moore
+alternative,pop
+4:06
+Netherlands
+
+Nits
+Nest
+1995
+8
+Mask
+alternative,pop
+5:38
+Netherlands
+
+Nits
+Nest
+1995
+9
+In the Dutch mountains
+alternative,pop
+3:27
+Netherlands
+
+Norah Jones
+Come away with me
+2002
+1
+Don't know why
+jazz,debut album
+3:06
+U.S.A.
+
+Norah Jones
+Come away with me
+2002
+10
+Painter song
+jazz,debut album
+2:42
+U.S.A.
+
+Norah Jones
+Come away with me
+2002
+11
+One flight down
+jazz,debut album
+3:05
+U.S.A.
+
+Norah Jones
+Come away with me
+2002
+12
+Nightingale
+jazz,debut album
+4:12
+U.S.A.
+
+Norah Jones
+Come away with me
+2002
+13
+The long day is over
+jazz,debut album
+2:44
+U.S.A.
+
+Norah Jones
+Come away with me
+2002
+14
+The nearness of you
+jazz,debut album
+3:07
+U.S.A.
+
+Norah Jones
+Come away with me
+2002
+2
+Seven years
+jazz,debut album
+2:25
+U.S.A.
+
+Norah Jones
+Come away with me
+2002
+3
+Cold, cold heart
+jazz,debut album
+3:38
+U.S.A.
+
+Norah Jones
+Come away with me
+2002
+4
+Feelin' the same way
+jazz,debut album
+2:57
+U.S.A.
+
+Norah Jones
+Come away with me
+2002
+5
+Come away with me
+jazz,debut album
+3:18
+U.S.A.
+
+Norah Jones
+Come away with me
+2002
+6
+Shoot the moon
+jazz,debut album
+3:56
+U.S.A.
+
+Norah Jones
+Come away with me
+2002
+7
+Turn me on
+jazz,debut album
+2:34
+U.S.A.
+
+Norah Jones
+Come away with me
+2002
+8
+Lonestar
+jazz,debut album
+3:06
+U.S.A.
+
+Norah Jones
+Come away with me
+2002
+9
+I've got to see you again
+jazz,debut album
+4:13
+U.S.A.
+
+Norah Jones
+Feels like home
+2004
+1
+Sunrise
+jazz
+3:22
+U.S.A.
+
+Norah Jones
+Feels like home
+2004
+10
+Above ground
+jazz
+3:45
+U.S.A.
+
+Norah Jones
+Feels like home
+2004
+11
+The long way home
+jazz
+3:15
+U.S.A.
+
+Norah Jones
+Feels like home
+2004
+12
+The prettiest thing
+jazz
+3:53
+U.S.A.
+
+Norah Jones
+Feels like home
+2004
+13
+Don't miss you at all
+jazz
+3:09
+U.S.A.
+
+Norah Jones
+Feels like home
+2004
+2
+What am I to you?
+jazz
+3:31
+U.S.A.
+
+Norah Jones
+Feels like home
+2004
+3
+Those sweet words
+jazz
+3:24
+U.S.A.
+
+Norah Jones
+Feels like home
+2004
+4
+Carnival town
+jazz
+3:14
+U.S.A.
+
+Norah Jones
+Feels like home
+2004
+5
+In the morning
+jazz
+4:09
+U.S.A.
+
+Norah Jones
+Feels like home
+2004
+6
+Be here to love me
+jazz
+3:30
+U.S.A.
+
+Norah Jones
+Feels like home
+2004
+7
+Creepin' in
+jazz
+3:05
+U.S.A.
+
+Norah Jones
+Feels like home
+2004
+8
+Toes
+jazz
+3:48
+U.S.A.
+
+Norah Jones
+Feels like home
+2004
+9
+Humble me
+jazz
+4:38
+U.S.A.
+
+OSI
+Office of Strategic Influence
+2003
+1
+The new math (what he said)
+progressive,metal,instrumental,debut album
+3:36
+U.S.A.
+
+OSI
+Office of Strategic Influence
+2003
+10
+Standby (looks like rain)
+progressive,metal,debut album
+2:09
+U.S.A.
+
+OSI
+Office of Strategic Influence
+2003
+2
+OSI
+progressive,metal,debut album
+3:48
+U.S.A.
+
+OSI
+Office of Strategic Influence
+2003
+3
+When you're ready
+progressive,metal,debut album
+4:09
+U.S.A.
+
+OSI
+Office of Strategic Influence
+2003
+4
+Horseshoes and B-52's
+progressive,metal,instrumental,debut album
+4:18
+U.S.A.
+
+OSI
+Office of Strategic Influence
+2003
+5
+Head
+progressive,metal,debut album
+5:17
+U.S.A.
+
+OSI
+Office of Strategic Influence
+2003
+6
+Hello, helicopter!
+progressive,metal,debut album
+3:44
+U.S.A.
+
+OSI
+Office of Strategic Influence
+2003
+7
+shutDOWN
+progressive,metal,debut album
+10:25
+U.S.A.
+
+OSI
+Office of Strategic Influence
+2003
+8
+Dirt from a holy place
+progressive,metal,instrumental,debut album
+5:10
+U.S.A.
+
+OSI
+Office of Strategic Influence
+2003
+9
+Memory daydreams lapses
+progressive,metal,debut album
+5:56
+U.S.A.
+
+Oasis
+Be here now
+1997
+1
+D'you what I mean?
+rock,britpop
+7:42
+England
+
+Oasis
+Be here now
+1997
+10
+All around the world
+rock,britpop
+9:20
+England
+
+Oasis
+Be here now
+1997
+11
+It's gettin' better (man!!)
+rock,britpop
+7:00
+England
+
+Oasis
+Be here now
+1997
+12
+All around the world (reprise)
+rock,britpop
+2:08
+England
+
+Oasis
+Be here now
+1997
+2
+My big mouth
+rock,britpop
+5:02
+England
+
+Oasis
+Be here now
+1997
+3
+Magic pie
+rock,britpop
+7:19
+England
+
+Oasis
+Be here now
+1997
+4
+Stand by me
+rock,britpop
+5:56
+England
+
+Oasis
+Be here now
+1997
+5
+I hope, I think, I know
+rock,britpop
+4:22
+England
+
+Oasis
+Be here now
+1997
+6
+The girl in the dirty shirt
+rock,britpop
+5:49
+England
+
+Oasis
+Be here now
+1997
+7
+Fade in-out
+rock,britpop
+6:52
+England
+
+Oasis
+Be here now
+1997
+8
+Don't go away
+rock,britpop
+4:48
+England
+
+Oasis
+Be here now
+1997
+9
+Be here now
+rock,britpop
+5:13
+England
+
+Oorgasm
+17
+2004
+1
+America is not the world (Morrissey)
+alternative,pop,compilation
+4:05
+England
+
+Oorgasm
+17
+2004
+10
+Who's who (Dilated peoples)
+hip hop,compilation
+4:06
+U.S.A.
+
+Oorgasm
+17
+2004
+2
+Wow (Snow patrol)
+alternative,pop,compilation
+4:05
+Northern Ireland
+
+Oorgasm
+17
+2004
+3
+Catch me up (Gomez)
+alternative,pop,compilation
+3:41
+England
+
+Oorgasm
+17
+2004
+4
+Pressure point (The zutons)
+alternative,pop,compilation
+3:18
+England
+
+Oorgasm
+17
+2004
+5
+Messin' around (The datsuns)
+hard rock,compilation
+3:41
+New Zealand
+
+Oorgasm
+17
+2004
+6
+Pulse of the maggots (Slipknot)
+metal,compilation
+4:26
+U.S.A.
+
+Oorgasm
+17
+2004
+7
+The life and death of mr. Badmouth (P.J. Harvey)
+alternative,pop,compilation
+4:53
+England
+
+Oorgasm
+17
+2004
+8
+Hunting season (Felix da housecat)
+house,compilation
+4:12
+U.S.A.
+
+Oorgasm
+17
+2004
+9
+Professional distortion (Miss Kittin)
+electronica,compilation
+3:44
+France
+
+Opeth
+Blackwater park
+2001
+1
+The leper affinity
+metal,doom,black,heavy
+10:23
+Sweden
+
+Opeth
+Blackwater park
+2001
+2
+Bleak
+metal,doom,black,heavy
+9:15
+Sweden
+
+Opeth
+Blackwater park
+2001
+3
+Harvest
+metal,doom,black,progressive
+6:01
+Sweden
+
+Opeth
+Blackwater park
+2001
+4
+The drapery falls
+metal,doom,black,progressive
+10:53
+Sweden
+
+Opeth
+Blackwater park
+2001
+5
+Dirge for november
+metal,tranquil
+7:53
+Sweden
+
+Opeth
+Blackwater park
+2001
+6
+The funeral portrait
+metal,doom,black,heavy
+8:44
+Sweden
+
+Opeth
+Blackwater park
+2001
+7
+Patterns in the ivy
+metal,instrumental
+1:52
+Sweden
+
+Opeth
+Blackwater park
+2001
+8
+Blackwater park
+metal,doom,black,heavy
+12:08
+Sweden
+
+Opeth
+Damnation
+2003
+1
+Windowpane
+metal,progressive,tranquil
+7:44
+Sweden
+
+Opeth
+Damnation
+2003
+2
+In my time of need
+metal,progressive
+5:49
+Sweden
+
+Opeth
+Damnation
+2003
+3
+Death whispered a lullaby
+metal,doom,black
+5:49
+Sweden
+
+Opeth
+Damnation
+2003
+4
+Closure
+metal,doom,black
+5:15
+Sweden
+
+Opeth
+Damnation
+2003
+5
+Hope leaves
+metal,doom,black,tranquil
+4:30
+Sweden
+
+Opeth
+Damnation
+2003
+6
+To rid the disease
+metal,doom,black
+6:21
+Sweden
+
+Opeth
+Damnation
+2003
+7
+Ending credits
+metal,instrumental,tranquil
+3:39
+Sweden
+
+Opeth
+Damnation
+2003
+8
+Weakness
+metal,doom,black,tranquil
+4:08
+Sweden
+
+Opeth
+Ghost reveries
+2005
+1
+Ghost of perdition
+metal,doom,black
+10:29
+Sweden
+
+Opeth
+Ghost reveries
+2005
+2
+The baying of the hounds
+metal,doom,black
+10:41
+Sweden
+
+Opeth
+Ghost reveries
+2005
+3
+Beneath the mire
+metal,doom,black
+7:57
+Sweden
+
+Opeth
+Ghost reveries
+2005
+4
+Atonement
+metal
+6:28
+Sweden
+
+Opeth
+Ghost reveries
+2005
+5
+Reverie / Harlequin forest
+metal,doom,black
+11:39
+Sweden
+
+Opeth
+Ghost reveries
+2005
+6
+Hours of wealth
+metal,progressive
+5:20
+Sweden
+
+Opeth
+Ghost reveries
+2005
+7
+The grand conjuration
+metal,doom,black
+10:21
+Sweden
+
+Opeth
+Ghost reveries
+2005
+8
+Isolation years
+metal,ballad
+3:51
+Sweden
+
+Opeth
+Pale communion
+2014
+1
+Eternal rains will come
+progressive,metal
+6:43
+Sweden
+
+Opeth
+Pale communion
+2014
+10
+Var kommer barnen in live
+progressive,metal
+5:51
+Sweden
+
+Opeth
+Pale communion
+2014
+2
+Cusp of eternity
+progressive,metal
+5:36
+Sweden
+
+Opeth
+Pale communion
+2014
+3
+Moon above, sun below
+progressive,metal
+10:53
+Sweden
+
+Opeth
+Pale communion
+2014
+4
+Elysian woes
+progressive,metal
+4:48
+Sweden
+
+Opeth
+Pale communion
+2014
+5
+Goblin
+progressive,metal
+4:34
+Sweden
+
+Opeth
+Pale communion
+2014
+6
+River
+progressive,metal
+7:33
+Sweden
+
+Opeth
+Pale communion
+2014
+7
+Voice of treason
+progressive,metal
+8:00
+Sweden
+
+Opeth
+Pale communion
+2014
+8
+Faith in others
+progressive,metal
+7:41
+Sweden
+
+Opeth
+Pale communion
+2014
+9
+Solitude live
+progressive,metal
+5:58
+Sweden
+
+Opeth
+Watershed
+2008
+1
+Coil
+metal,progressive,ballad
+3:10
+Sweden
+
+Opeth
+Watershed
+2008
+2
+Heir apparent
+metal,black,progressive
+8:50
+Sweden
+
+Opeth
+Watershed
+2008
+3
+The lotus eater
+metal,black,progressive
+8:50
+Sweden
+
+Opeth
+Watershed
+2008
+4
+Burden
+metal,progressive
+7:41
+Sweden
+
+Opeth
+Watershed
+2008
+5
+Porcelain heart
+metal,black,progressive
+8:00
+Sweden
+
+Opeth
+Watershed
+2008
+6
+Hessian peel
+metal,progressive
+11:25
+Sweden
+
+Opeth
+Watershed
+2008
+7
+Hex omega
+metal,black,progressive
+7:00
+Sweden
+
+Ottorino Respighi
+Symphonic Poems
+1991
+1
+Roman festivals: circus games
+classic,symphonic
+4:51
+Italy
+
+Ottorino Respighi
+Symphonic Poems
+1991
+10
+Pines of Rome: pines near a catacomb
+classic,symphonic
+5:28
+Italy
+
+Ottorino Respighi
+Symphonic Poems
+1991
+11
+Pines of Rome: the pines of the Janiculum
+classic,symphonic
+6:24
+Italy
+
+Ottorino Respighi
+Symphonic Poems
+1991
+12
+Pines of Rome: the pines of the Appian way
+classic,symphonic
+4:15
+Italy
+
+Ottorino Respighi
+Symphonic Poems
+1991
+2
+Roman festivals: the jubilee
+classic,symphonic
+8:00
+Italy
+
+Ottorino Respighi
+Symphonic Poems
+1991
+3
+Roman festivals: harvest festivals in october
+classic,symphonic
+7:05
+Italy
+
+Ottorino Respighi
+Symphonic Poems
+1991
+4
+Roman festivals: epiphany
+classic,symphonic
+5:20
+Italy
+
+Ottorino Respighi
+Symphonic Poems
+1991
+5
+Fountains of Rome: the fountain of Valle Giulia at dawn
+classic,symphonic
+4:35
+Italy
+
+Ottorino Respighi
+Symphonic Poems
+1991
+6
+Fountains of Rome: the Triton fountain in the morning
+classic,symphonic
+2:43
+Italy
+
+Ottorino Respighi
+Symphonic Poems
+1991
+7
+Fountains of Rome: the Trevi fountain at mid-day
+classic,symphonic
+3:31
+Italy
+
+Ottorino Respighi
+Symphonic Poems
+1991
+8
+Fountains of Rome: the villa Medici fountain at sunset
+classic,symphonic
+5:48
+Italy
+
+Ottorino Respighi
+Symphonic Poems
+1991
+9
+Pines of Rome: the pines of villa Borghese
+classic,symphonic
+2:40
+Italy
+
+Panic room
+Skin
+2012
+1
+Song for tomorrow
+progressive,metal,female fronted
+6:16
+Wales
+
+Panic room
+Skin
+2012
+10
+Hiding the world
+progressive,rock,female fronted
+5:18
+Wales
+
+Panic room
+Skin
+2012
+11
+Nocturnal
+progressive,rock,female fronted
+7:47
+Wales
+
+Panic room
+Skin
+2012
+2
+Chameleon
+progressive,metal,female fronted
+6:52
+Wales
+
+Panic room
+Skin
+2012
+3
+Screens
+progressive,metal,female fronted
+4:43
+Wales
+
+Panic room
+Skin
+2012
+4
+Chances
+progressive,metal,female fronted
+5:54
+Wales
+
+Panic room
+Skin
+2012
+5
+Tightrope walking
+progressive,metal,female fronted
+7:08
+Wales
+
+Panic room
+Skin
+2012
+6
+Promises
+progressive,metal,female fronted
+5:24
+Wales
+
+Panic room
+Skin
+2012
+7
+Velvet & stars
+progressive,metal,female fronted,tranquil
+3:15
+Wales
+
+Panic room
+Skin
+2012
+8
+Freefalling
+progressive,metal,female fronted
+6:12
+Wales
+
+Panic room
+Skin
+2012
+9
+Skin
+progressive,rock,female fronted
+5:18
+Wales
+
+Paul Gilbert
+Fuzz Universe
+2010
+1
+Fuzz universe
+guitar,guitar hero,instrumental,rock
+7:03
+U.S.A.
+
+Paul Gilbert
+Fuzz Universe
+2010
+10
+Mantra the lawn
+guitar,guitar hero,instrumental,rock
+5:34
+U.S.A.
+
+Paul Gilbert
+Fuzz Universe
+2010
+11
+Batter up
+guitar,guitar hero,instrumental,rock
+2:54
+U.S.A.
+
+Paul Gilbert
+Fuzz Universe
+2010
+2
+Count Juan Chutrifo
+guitar,guitar hero,instrumental,rock
+3:09
+U.S.A.
+
+Paul Gilbert
+Fuzz Universe
+2010
+3
+Bach partita in Dm
+guitar,guitar hero,instrumental,classic
+3:26
+U.S.A.
+
+Paul Gilbert
+Fuzz Universe
+2010
+4
+Blue Orpheus
+guitar,guitar hero,instrumental,rock
+5:07
+U.S.A.
+
+Paul Gilbert
+Fuzz Universe
+2010
+5
+Will my screen door stop Neptune
+guitar,guitar hero,instrumental,rock
+4:17
+U.S.A.
+
+Paul Gilbert
+Fuzz Universe
+2010
+6
+Propeller
+guitar,guitar hero,instrumental,rock
+4:47
+U.S.A.
+
+Paul Gilbert
+Fuzz Universe
+2010
+7
+Don't rain on my firewood
+guitar,guitar hero,instrumental,rock
+4:39
+U.S.A.
+
+Paul Gilbert
+Fuzz Universe
+2010
+8
+Plastic Dracula
+guitar,guitar hero,instrumental,rock
+4:50
+U.S.A.
+
+Paul Gilbert
+Fuzz Universe
+2010
+9
+Blowtorch
+guitar,guitar hero,instrumental,rock
+5:40
+U.S.A.
+
+Paul Gilbert
+Silence followed by a deafening roar
+2008
+1
+Silence followed by a deafening roar
+instrumental,metal,guitar,guitar hero
+3:48
+U.S.A.
+
+Paul Gilbert
+Silence followed by a deafening roar
+2008
+10
+Bultaca saturno
+instrumental,metal,guitar,guitar hero
+4:13
+U.S.A.
+
+Paul Gilbert
+Silence followed by a deafening roar
+2008
+11
+Paul vs Godzilla
+instrumental,metal,guitar,guitar hero
+4:52
+U.S.A.
+
+Paul Gilbert
+Silence followed by a deafening roar
+2008
+2
+Eudaimonia overture
+instrumental,metal,guitar,guitar hero
+4:35
+U.S.A.
+
+Paul Gilbert
+Silence followed by a deafening roar
+2008
+3
+The rino
+instrumental,metal,guitar,guitar hero
+2:46
+U.S.A.
+
+Paul Gilbert
+Silence followed by a deafening roar
+2008
+4
+Norwegian cowbell
+instrumental,metal,guitar,guitar hero
+4:06
+U.S.A.
+
+Paul Gilbert
+Silence followed by a deafening roar
+2008
+5
+I cannot tell a lie
+instrumental,metal,guitar,guitar hero
+3:50
+U.S.A.
+
+Paul Gilbert
+Silence followed by a deafening roar
+2008
+6
+Bronx 1971
+instrumental,metal,guitar,guitar hero
+4:04
+U.S.A.
+
+Paul Gilbert
+Silence followed by a deafening roar
+2008
+7
+Suite modale
+instrumental,metal,guitar,guitar hero
+2:38
+U.S.A.
+
+Paul Gilbert
+Silence followed by a deafening roar
+2008
+8
+The garboyle
+instrumental,metal,guitar,guitar hero
+4:35
+U.S.A.
+
+Paul Gilbert
+Silence followed by a deafening roar
+2008
+9
+I still have that other girl
+instrumental,metal,guitar,guitar hero
+2:52
+U.S.A.
+
+Paul Gilbert
+Vibrato
+2012
+1
+Enemies (in jail)
+guitar hero
+6:02
+U.S.A.
+
+Paul Gilbert
+Vibrato
+2012
+10
+I want to be loved
+guitar hero,live,blues
+6:10
+U.S.A.
+
+Paul Gilbert
+Vibrato
+2012
+11
+Go down
+guitar hero,live,rock
+7:59
+U.S.A.
+
+Paul Gilbert
+Vibrato
+2012
+2
+Rain and thunder and lightning
+guitar hero,instrumental,rock,jazz
+5:03
+U.S.A.
+
+Paul Gilbert
+Vibrato
+2012
+3
+Vibrato
+guitar hero
+3:29
+U.S.A.
+
+Paul Gilbert
+Vibrato
+2012
+4
+Put it on the char
+guitar hero,jazz,rock,instrumental
+5:34
+U.S.A.
+
+Paul Gilbert
+Vibrato
+2012
+5
+Bivalve blues
+guitar hero,blues
+7:44
+U.S.A.
+
+Paul Gilbert
+Vibrato
+2012
+6
+Blue rondo a la turk
+guitar hero,jazz,rock,instrumental
+5:38
+U.S.A.
+
+Paul Gilbert
+Vibrato
+2012
+7
+Atmosphere on the moon
+guitar hero
+5:14
+U.S.A.
+
+Paul Gilbert
+Vibrato
+2012
+8
+The pronghorn
+guitar hero,instrumental,jazz,rock
+5:36
+U.S.A.
+
+Paul Gilbert
+Vibrato
+2012
+9
+Roundabout
+guitar hero,live,progressive,rock
+9:08
+U.S.A.
+
+Paul Simon
+Graceland
+1986
+1
+The boy in the bubble
+pop,afrobeat
+3:59
+U.S.A.,South Africa
+
+Paul Simon
+Graceland
+1986
+10
+That was your mother
+pop,afrobeat
+2:52
+U.S.A.,South Africa
+
+Paul Simon
+Graceland
+1986
+11
+All around the world or the myth of fingerprints
+pop,afrobeat
+3:18
+U.S.A.,South Africa
+
+Paul Simon
+Graceland
+1986
+12
+Homeless (demo)
+pop,afrobeat
+2:30
+U.S.A.,South Africa
+
+Paul Simon
+Graceland
+1986
+13
+Diamonds on the soles of her shoes (alternate version)
+pop,afrobeat
+4:41
+U.S.A.,South Africa
+
+Paul Simon
+Graceland
+1986
+14
+All around the world or the myth of fingerprints (early version)
+pop,afrobeat
+3:18
+U.S.A.,South Africa
+
+Paul Simon
+Graceland
+1986
+2
+Graceland
+pop,afrobeat
+4:51
+U.S.A.,South Africa
+
+Paul Simon
+Graceland
+1986
+3
+I know what I know
+pop,afrobeat
+3:13
+U.S.A.,South Africa
+
+Paul Simon
+Graceland
+1986
+4
+Gumboots
+pop,afrobeat
+2:44
+U.S.A.,South Africa
+
+Paul Simon
+Graceland
+1986
+5
+Diamonds on the soles of her shoes
+pop,afrobeat
+5:51
+U.S.A.,South Africa
+
+Paul Simon
+Graceland
+1986
+6
+You can call me Al
+pop,afrobeat
+4:40
+U.S.A.,South Africa
+
+Paul Simon
+Graceland
+1986
+7
+Under African skies
+pop,afrobeat
+3:37
+U.S.A.,South Africa
+
+Paul Simon
+Graceland
+1986
+8
+Homeless
+pop,afrobeat
+3:48
+U.S.A.,South Africa
+
+Paul Simon
+Graceland
+1986
+9
+Crazy love, vol. II
+pop,afrobeat
+4:19
+U.S.A.,South Africa
+
+Peter Gabriel
+Passion (Music for The Last Temptation Of Christ: a film by Martin Scorsese)
+1989
+1
+The feeling begins
+score,middle east,instrumental
+4:00
+England
+
+Peter Gabriel
+Passion (Music for The Last Temptation Of Christ: a film by Martin Scorsese)
+1989
+10
+Open
+score,middle east
+3:18
+England
+
+Peter Gabriel
+Passion (Music for The Last Temptation Of Christ: a film by Martin Scorsese)
+1989
+11
+Before night falls
+score,middle east,instrumental
+2:16
+England
+
+Peter Gabriel
+Passion (Music for The Last Temptation Of Christ: a film by Martin Scorsese)
+1989
+12
+With this love
+score,middle east,instrumental,tranquil
+3:36
+England
+
+Peter Gabriel
+Passion (Music for The Last Temptation Of Christ: a film by Martin Scorsese)
+1989
+13
+Sandstorm
+score,middle east,instrumental,soundscape
+2:55
+England
+
+Peter Gabriel
+Passion (Music for The Last Temptation Of Christ: a film by Martin Scorsese)
+1989
+14
+Stigmata
+score,middle east,instrumental
+2:24
+England
+
+Peter Gabriel
+Passion (Music for The Last Temptation Of Christ: a film by Martin Scorsese)
+1989
+15
+Passion
+score,middle east,tranquil
+7:36
+England
+
+Peter Gabriel
+Passion (Music for The Last Temptation Of Christ: a film by Martin Scorsese)
+1989
+16
+With this love - choir
+score,middle east,tranquil
+3:19
+England
+
+Peter Gabriel
+Passion (Music for The Last Temptation Of Christ: a film by Martin Scorsese)
+1989
+17
+Wall of breath
+score,middle east,instrumental,soundscape
+2:25
+England
+
+Peter Gabriel
+Passion (Music for The Last Temptation Of Christ: a film by Martin Scorsese)
+1989
+18
+The promise of shadows
+score,middle east,instrumental,soundscape
+2:12
+England
+
+Peter Gabriel
+Passion (Music for The Last Temptation Of Christ: a film by Martin Scorsese)
+1989
+19
+Disturbed
+score,middle east,instrumental
+3:07
+England
+
+Peter Gabriel
+Passion (Music for The Last Temptation Of Christ: a film by Martin Scorsese)
+1989
+2
+Gethsemane
+score,middle east,instrumental,soundscape
+1:23
+England
+
+Peter Gabriel
+Passion (Music for The Last Temptation Of Christ: a film by Martin Scorsese)
+1989
+20
+It is accomplished
+score,middle east
+3:30
+England
+
+Peter Gabriel
+Passion (Music for The Last Temptation Of Christ: a film by Martin Scorsese)
+1989
+21
+Bread and wine
+score,middle east,instrumental,tranquil
+2:23
+England
+
+Peter Gabriel
+Passion (Music for The Last Temptation Of Christ: a film by Martin Scorsese)
+1989
+3
+Of these: hope
+score,middle east,instrumental
+4:05
+England
+
+Peter Gabriel
+Passion (Music for The Last Temptation Of Christ: a film by Martin Scorsese)
+1989
+4
+Lazarus raised
+score,middle east,instrumental,soundscape
+1:26
+England
+
+Peter Gabriel
+Passion (Music for The Last Temptation Of Christ: a film by Martin Scorsese)
+1989
+5
+Of these: hope - reprise
+score,middle east,instrumental
+2:44
+England
+
+Peter Gabriel
+Passion (Music for The Last Temptation Of Christ: a film by Martin Scorsese)
+1989
+6
+In doubt
+score,middle east,instrumental,soundscape
+2:07
+England
+
+Peter Gabriel
+Passion (Music for The Last Temptation Of Christ: a film by Martin Scorsese)
+1989
+7
+A different drum
+score,middle east
+6:05
+England
+
+Peter Gabriel
+Passion (Music for The Last Temptation Of Christ: a film by Martin Scorsese)
+1989
+8
+Zaar
+score,middle east,instrumental
+4:44
+England
+
+Peter Gabriel
+Passion (Music for The Last Temptation Of Christ: a film by Martin Scorsese)
+1989
+9
+Troubled
+score,middle east
+2:46
+England
+
+Peter Gabriel
+Peter Gabriel
+1977
+1
+Moribund the Burgermeister
+progressive,rock,debut album
+4:19
+England
+
+Peter Gabriel
+Peter Gabriel
+1977
+2
+Solsbury hill
+progressive,rock,debut album
+4:20
+England
+
+Peter Gabriel
+Peter Gabriel
+1977
+3
+Modern love
+progressive,rock,debut album
+3:38
+England
+
+Peter Gabriel
+Peter Gabriel
+1977
+4
+Excuse me
+progressive,rock,debut album
+3:20
+England
+
+Peter Gabriel
+Peter Gabriel
+1977
+5
+Humdrum
+progressive,rock,debut album,gloomy
+3:25
+England
+
+Peter Gabriel
+Peter Gabriel
+1977
+6
+Slowburn
+progressive,rock,debut album
+4:36
+England
+
+Peter Gabriel
+Peter Gabriel
+1977
+7
+Waiting for the big one
+progressive,rock,debut album
+7:13
+England
+
+Peter Gabriel
+Peter Gabriel
+1977
+8
+Down the Dolce Vita
+progressive,rock,debut album
+4:43
+England
+
+Peter Gabriel
+Peter Gabriel
+1977
+9
+Here comes the flood
+progressive,rock,debut album
+5:54
+England
+
+Peter Gabriel
+Plays live
+1983
+1
+The rhythm of the heat
+progressive,rock,live
+6:26
+England
+
+Peter Gabriel
+Plays live
+1983
+10
+Solsbury hill
+progressive,rock,live
+4:40
+England
+
+Peter Gabriel
+Plays live
+1983
+11
+No self control
+progressive,rock,live
+5:02
+England
+
+Peter Gabriel
+Plays live
+1983
+12
+I don't remember
+progressive,rock,live
+4:20
+England
+
+Peter Gabriel
+Plays live
+1983
+13
+Shock the monkey
+progressive,rock,live
+7:40
+England
+
+Peter Gabriel
+Plays live
+1983
+14
+Humdrum
+progressive,rock,live
+4:03
+England
+
+Peter Gabriel
+Plays live
+1983
+15
+On the air
+progressive,rock,live
+5:20
+England
+
+Peter Gabriel
+Plays live
+1983
+16
+Biko
+progressive,rock,live
+6:50
+England
+
+Peter Gabriel
+Plays live
+1983
+2
+I have the touch
+progressive,rock,live
+5:18
+England
+
+Peter Gabriel
+Plays live
+1983
+3
+Not one of us
+progressive,rock,live
+5:29
+England
+
+Peter Gabriel
+Plays live
+1983
+4
+Family snapshot
+progressive,rock,live
+4:44
+England
+
+Peter Gabriel
+Plays live
+1983
+5
+D.I.Y.
+progressive,rock,live
+4:20
+England
+
+Peter Gabriel
+Plays live
+1983
+6
+The family and the fishing net
+progressive,rock,live
+7:22
+England
+
+Peter Gabriel
+Plays live
+1983
+7
+Intruder
+progressive,rock,live
+5:03
+England
+
+Peter Gabriel
+Plays live
+1983
+8
+I go swimming
+progressive,rock,live
+4:44
+England
+
+Peter Gabriel
+Plays live
+1983
+9
+San Jacinto
+progressive,rock,live
+8:28
+England
+
+Peter Gabriel
+Shaking the tree (Sixteen golden hits)
+1990
+1
+Solsbury hill
+progressive,rock
+4:20
+England
+
+Peter Gabriel
+Shaking the tree (Sixteen golden hits)
+1990
+10
+Red rain
+progressive,rock
+5:35
+England
+
+Peter Gabriel
+Shaking the tree (Sixteen golden hits)
+1990
+11
+Games without frontiers
+progressive,rock
+3:57
+England
+
+Peter Gabriel
+Shaking the tree (Sixteen golden hits)
+1990
+12
+Shock the monkey
+progressive,rock
+3:56
+England
+
+Peter Gabriel
+Shaking the tree (Sixteen golden hits)
+1990
+13
+I have the touch
+progressive,rock
+3:44
+England
+
+Peter Gabriel
+Shaking the tree (Sixteen golden hits)
+1990
+14
+Big time
+progressive,rock
+4:25
+England
+
+Peter Gabriel
+Shaking the tree (Sixteen golden hits)
+1990
+15
+Zaar
+score,middle east,instrumental,soundscape
+2:56
+England
+
+Peter Gabriel
+Shaking the tree (Sixteen golden hits)
+1990
+16
+Biko
+progressive,rock
+6:54
+England
+
+Peter Gabriel
+Shaking the tree (Sixteen golden hits)
+1990
+2
+I don't remember
+progressive,rock
+3:48
+England
+
+Peter Gabriel
+Shaking the tree (Sixteen golden hits)
+1990
+3
+Sledgehammer
+progressive,rock
+4:54
+England
+
+Peter Gabriel
+Shaking the tree (Sixteen golden hits)
+1990
+4
+Family snapshot
+progressive,rock
+4:25
+England
+
+Peter Gabriel
+Shaking the tree (Sixteen golden hits)
+1990
+5
+Mercy street
+progressive,rock
+4:43
+England
+
+Peter Gabriel
+Shaking the tree (Sixteen golden hits)
+1990
+6
+Shaking the tree
+progressive,rock
+6:23
+England
+
+Peter Gabriel
+Shaking the tree (Sixteen golden hits)
+1990
+7
+Don't give up
+progressive,rock
+5:54
+England
+
+Peter Gabriel
+Shaking the tree (Sixteen golden hits)
+1990
+8
+San Jacinto
+progressive,rock
+6:40
+England
+
+Peter Gabriel
+Shaking the tree (Sixteen golden hits)
+1990
+9
+Here comes the flood
+progressive,rock,piano
+4:31
+England
+
+Peter Gabriel
+Up
+2002
+1
+Darkness
+progressive,rock
+6:51
+England
+
+Peter Gabriel
+Up
+2002
+10
+The drop
+progressive,tranquil
+3:03
+England
+
+Peter Gabriel
+Up
+2002
+2
+Growing up
+progressive,rock
+7:33
+England
+
+Peter Gabriel
+Up
+2002
+3
+Sky blue
+progressive,rock
+6:37
+England
+
+Peter Gabriel
+Up
+2002
+4
+No way out
+progressive,rock
+7:53
+England
+
+Peter Gabriel
+Up
+2002
+5
+I grieve
+progressive,rock
+7:24
+England
+
+Peter Gabriel
+Up
+2002
+6
+The Barry Williams show
+progressive,rock
+7:16
+England
+
+Peter Gabriel
+Up
+2002
+7
+My head sounds like that
+progressive,rock
+6:29
+England
+
+Peter Gabriel
+Up
+2002
+8
+More than this
+progressive,rock
+6:02
+England
+
+Peter Gabriel
+Up
+2002
+9
+Signal to noise
+progressive,rock
+7:36
+England
+
+Peter Gabriel
+Us
+1992
+1
+Come talk to me
+progressive,rock
+7:04
+England
+
+Peter Gabriel
+Us
+1992
+10
+Secret world
+progressive,tranquil
+7:01
+England
+
+Peter Gabriel
+Us
+1992
+2
+Love to be loved
+progressive,rock
+5:16
+England
+
+Peter Gabriel
+Us
+1992
+3
+Blood of Eden
+progressive,tranquil
+6:35
+England
+
+Peter Gabriel
+Us
+1992
+4
+Steam
+progressive,rock
+6:02
+England
+
+Peter Gabriel
+Us
+1992
+5
+Only us
+progressive,tranquil
+6:30
+England
+
+Peter Gabriel
+Us
+1992
+6
+Washing of the water
+progressive,tranquil
+3:50
+England
+
+Peter Gabriel
+Us
+1992
+7
+Digging in the dirt
+progressive,rock
+5:16
+England
+
+Peter Gabriel
+Us
+1992
+8
+Fourteen black paintings
+progressive,rock
+4:36
+England
+
+Peter Gabriel
+Us
+1992
+9
+Kiss that frog
+progressive,rock
+5:27
+England
+
+Phideaux
+Doomsday afternoon
+2007
+1
+Micro softdeathstar
+progressive,experimental
+11:15
+U.S.A.
+
+Phideaux
+Doomsday afternoon
+2007
+10
+Microdeath softstar
+progressive,experimental,instrumental
+14:39
+U.S.A.
+
+Phideaux
+Doomsday afternoon
+2007
+2
+The doctrine of eternal ice (part one)
+progressive,experimental,instrumental
+3:00
+U.S.A.
+
+Phideaux
+Doomsday afternoon
+2007
+3
+Candybrain
+progressive,experimental
+4:06
+U.S.A.
+
+Phideaux
+Doomsday afternoon
+2007
+4
+Crumble
+progressive,experimental,instrumental,tranquil
+2:56
+U.S.A.
+
+Phideaux
+Doomsday afternoon
+2007
+5
+The doctrine of eternal ice (part two)
+progressive,experimental
+8:08
+U.S.A.
+
+Phideaux
+Doomsday afternoon
+2007
+6
+Thank you for the evil
+progressive,experimental
+9:17
+U.S.A.
+
+Phideaux
+Doomsday afternoon
+2007
+7
+A wasteland of memories
+progressive,experimental
+2:21
+U.S.A.
+
+Phideaux
+Doomsday afternoon
+2007
+8
+Crumble
+progressive,experimental,tranquil
+2:55
+U.S.A.
+
+Phideaux
+Doomsday afternoon
+2007
+9
+Formaldehyde
+progressive,experimental
+8:17
+U.S.A.
+
+Philip Glass
+Itaipu
+1993
+1
+Itaipu - Mato grosso
+classic,minimal
+11:41
+U.S.A.
+
+Philip Glass
+Itaipu
+1993
+2
+Itaipu - The lake
+classic,minimal
+10:03
+U.S.A.
+
+Philip Glass
+Itaipu
+1993
+3
+Itaipu - The dam
+classic,minimal
+11:47
+U.S.A.
+
+Philip Glass
+Itaipu
+1993
+4
+Itaipu - To the sea
+classic,minimal
+5:39
+U.S.A.
+
+Philip Glass
+Itaipu
+1993
+5
+The canyon
+classic,minimal
+16:32
+U.S.A.
+
+Philip Glass
+Koyaanisqatsi
+1983
+1
+Koyaanisqatsi
+classic,minimal,score
+3:31
+U.S.A.
+
+Philip Glass
+Koyaanisqatsi
+1983
+2
+Vessels
+classic,minimal,score
+8:06
+U.S.A.
+
+Philip Glass
+Koyaanisqatsi
+1983
+3
+Cloudscape
+classic,minimal,score
+4:40
+U.S.A.
+
+Philip Glass
+Koyaanisqatsi
+1983
+4
+Pruit igoe
+classic,minimal,score
+7:07
+U.S.A.
+
+Philip Glass
+Koyaanisqatsi
+1983
+5
+The grid
+classic,minimal,score
+14:57
+U.S.A.
+
+Philip Glass
+Koyaanisqatsi
+1983
+6
+Prophecies
+classic,minimal,score
+8:14
+U.S.A.
+
+Philip Glass
+Powaqqatsi
+1988
+1
+Serra Pelada
+classic,minimal,score
+5:02
+U.S.A.
+
+Philip Glass
+Powaqqatsi
+1988
+10
+New cities in ancient lands: China
+classic,minimal,score,instrumental
+2:47
+U.S.A.
+
+Philip Glass
+Powaqqatsi
+1988
+11
+New cities in ancient lands: Africa
+classic,minimal,score,instrumental
+2:56
+U.S.A.
+
+Philip Glass
+Powaqqatsi
+1988
+12
+New cities in ancient lands: India
+classic,minimal,score,instrumental
+4:42
+U.S.A.
+
+Philip Glass
+Powaqqatsi
+1988
+13
+The unutterable
+classic,minimal,score,instrumental
+7:02
+U.S.A.
+
+Philip Glass
+Powaqqatsi
+1988
+14
+CAUGHT!
+classic,minimal,score,instrumental
+7:20
+U.S.A.
+
+Philip Glass
+Powaqqatsi
+1988
+15
+Mr. Suso #1
+classic,minimal,score,instrumental
+1:08
+U.S.A.
+
+Philip Glass
+Powaqqatsi
+1988
+16
+From Egypt
+classic,minimal,score
+3:23
+U.S.A.
+
+Philip Glass
+Powaqqatsi
+1988
+17
+Mr. Suso #2 with reflection
+classic,minimal,score,instrumental
+1:18
+U.S.A.
+
+Philip Glass
+Powaqqatsi
+1988
+18
+Powaqqatsi
+classic,minimal,score
+4:35
+U.S.A.
+
+Philip Glass
+Powaqqatsi
+1988
+2
+The title
+classic,minimal,score,soundscape
+0:23
+U.S.A.
+
+Philip Glass
+Powaqqatsi
+1988
+3
+Anthem-Part I
+classic,minimal,score,instrumental
+6:22
+U.S.A.
+
+Philip Glass
+Powaqqatsi
+1988
+4
+That place
+classic,minimal,score,instrumental
+4:41
+U.S.A.
+
+Philip Glass
+Powaqqatsi
+1988
+5
+Anthem-Part II
+classic,minimal,score,instrumental
+3:48
+U.S.A.
+
+Philip Glass
+Powaqqatsi
+1988
+6
+Mosque and temple
+classic,minimal,score
+4:42
+U.S.A.
+
+Philip Glass
+Powaqqatsi
+1988
+7
+Anthem-Part III
+classic,minimal,score,instrumental
+8:11
+U.S.A.
+
+Philip Glass
+Powaqqatsi
+1988
+8
+Train to São Paulo
+classic,minimal,score,instrumental
+3:04
+U.S.A.
+
+Philip Glass
+Powaqqatsi
+1988
+9
+Video dream
+classic,minimal,score,instrumental
+2:14
+U.S.A.
+
+Pink Floyd
+A momentary lapse of reason
+1987
+1
+Signs of life
+progressive,rock,instrumental
+4:24
+England
+
+Pink Floyd
+A momentary lapse of reason
+1987
+10
+Sorrow
+progressive,rock
+8:47
+England
+
+Pink Floyd
+A momentary lapse of reason
+1987
+2
+Learning to fly
+progressive,rock
+4:54
+England
+
+Pink Floyd
+A momentary lapse of reason
+1987
+3
+The dogs of war
+progressive,rock
+6:05
+England
+
+Pink Floyd
+A momentary lapse of reason
+1987
+4
+One slip
+progressive,rock
+5:11
+England
+
+Pink Floyd
+A momentary lapse of reason
+1987
+5
+On the turning away
+progressive,rock,ballad
+5:42
+England
+
+Pink Floyd
+A momentary lapse of reason
+1987
+6
+Yet another movie
+progressive,rock
+7:28
+England
+
+Pink Floyd
+A momentary lapse of reason
+1987
+7
+A new machine (Part I)
+progressive,rock
+1:47
+England
+
+Pink Floyd
+A momentary lapse of reason
+1987
+8
+Terminal frost
+progressive,rock
+6:17
+England
+
+Pink Floyd
+A momentary lapse of reason
+1987
+9
+A new machine (Part II)
+progressive,rock
+0:38
+England
+
+Pink Floyd
+Animals
+1977
+1
+Pigs on the wing 1
+progressive,rock
+1:25
+England
+
+Pink Floyd
+Animals
+1977
+2
+Dogs
+progressive,rock
+17:08
+England
+
+Pink Floyd
+Animals
+1977
+3
+Pigs (three different ones)
+progressive,rock
+11:28
+England
+
+Pink Floyd
+Animals
+1977
+4
+Sheep
+progressive,rock
+10:20
+England
+
+Pink Floyd
+Animals
+1977
+5
+Pigs on the wing 2
+progressive,rock
+1:26
+England
+
+Pink Floyd
+Dark side of the moon
+1973
+1
+Speak to me / Breathe
+progressive,rock
+3:57
+England
+
+Pink Floyd
+Dark side of the moon
+1973
+2
+On the run
+progressive,rock,instrumental
+3:31
+England
+
+Pink Floyd
+Dark side of the moon
+1973
+3
+Time
+progressive,rock
+7:05
+England
+
+Pink Floyd
+Dark side of the moon
+1973
+4
+The great gig in the sky
+progressive,rock,vocal
+4:47
+England
+
+Pink Floyd
+Dark side of the moon
+1973
+5
+Money
+progressive,rock
+6:23
+England
+
+Pink Floyd
+Dark side of the moon
+1973
+6
+Us and them
+progressive,rock
+7:48
+England
+
+Pink Floyd
+Dark side of the moon
+1973
+7
+Any colour you like
+progressive,rock,instrumental
+3:25
+England
+
+Pink Floyd
+Dark side of the moon
+1973
+8
+Brain damage
+progressive,rock
+3:50
+England
+
+Pink Floyd
+Dark side of the moon
+1973
+9
+Eclipse
+progressive,rock
+2:06
+England
+
+Pink Floyd
+The wall
+1979
+1
+In the flesh?
+progressive,rock
+3:17
+England
+
+Pink Floyd
+The wall
+1979
+10
+One of my tunes
+progressive,rock
+1:33
+England
+
+Pink Floyd
+The wall
+1979
+11
+Don't leave me now
+progressive,rock
+4:22
+England
+
+Pink Floyd
+The wall
+1979
+12
+Another brick in the wall
+progressive,rock
+1:17
+England
+
+Pink Floyd
+The wall
+1979
+13
+Goodbye cruel world
+progressive,rock,tranquil
+1:05
+England
+
+Pink Floyd
+The wall
+1979
+14
+Hey you
+progressive,rock
+4:39
+England
+
+Pink Floyd
+The wall
+1979
+15
+Is there anybody out there?
+progressive,rock
+2:40
+England
+
+Pink Floyd
+The wall
+1979
+16
+Nobody home
+progressive,rock
+3:25
+England
+
+Pink Floyd
+The wall
+1979
+17
+Vera
+progressive,rock
+1:38
+England
+
+Pink Floyd
+The wall
+1979
+18
+Bring the boys back home
+progressive,rock,choir
+0:50
+England
+
+Pink Floyd
+The wall
+1979
+19
+Comfortably numb
+progressive,rock
+6:49
+England
+
+Pink Floyd
+The wall
+1979
+2
+The thin ice
+progressive,rock
+2:28
+England
+
+Pink Floyd
+The wall
+1979
+20
+The show must go on
+progressive,rock
+1:36
+England
+
+Pink Floyd
+The wall
+1979
+21
+In the flesh
+progressive,rock
+4:16
+England
+
+Pink Floyd
+The wall
+1979
+22
+Run like hell
+progressive,rock
+4:22
+England
+
+Pink Floyd
+The wall
+1979
+23
+Waiting for the worms
+progressive,rock
+3:56
+England
+
+Pink Floyd
+The wall
+1979
+24
+Stop
+progressive,rock
+0:34
+England
+
+Pink Floyd
+The wall
+1979
+25
+The trial
+progressive,rock
+5:16
+England
+
+Pink Floyd
+The wall
+1979
+26
+Outside the wall
+progressive,rock,tranquil
+1:42
+England
+
+Pink Floyd
+The wall
+1979
+3
+Another brick in the wall (Part I)
+progressive,rock
+3:41
+England
+
+Pink Floyd
+The wall
+1979
+4
+The happiest days of our lives
+progressive,rock
+1:20
+England
+
+Pink Floyd
+The wall
+1979
+5
+Another brick in the wall (Part II)
+progressive,rock
+3:56
+England
+
+Pink Floyd
+The wall
+1979
+6
+Mother
+progressive,rock
+5:32
+England
+
+Pink Floyd
+The wall
+1979
+7
+Goodbye blue sky
+progressive,rock
+2:48
+England
+
+Pink Floyd
+The wall
+1979
+8
+Empty spaces
+progressive,rock
+5:36
+England
+
+Pink Floyd
+The wall
+1979
+9
+Young lust
+progressive,rock
+2:03
+England
+
+Pink Floyd
+Wish you were here
+1975
+1
+Shine on you crazy diamond (Part I)
+progressive,rock
+13:33
+England
+
+Pink Floyd
+Wish you were here
+1975
+2
+Welcome to the machine
+progressive,rock
+7:26
+England
+
+Pink Floyd
+Wish you were here
+1975
+3
+Have a cigar
+progressive,rock
+5:07
+England
+
+Pink Floyd
+Wish you were here
+1975
+4
+Wish you were here
+progressive,rock
+5:40
+England
+
+Pink Floyd
+Wish you were here
+1975
+5
+Shine on you crazy diamond (Part II)
+progressive,rock
+12:21
+England
+
+Planet X
+Moon babies
+2002
+1
+Moonbabies
+progressive,instrumental,experimental
+5:38
+U.S.A.,Australia
+
+Planet X
+Moon babies
+2002
+10
+Ignotus per ignotium
+progressive,instrumental,experimental
+6:24
+U.S.A.,Australia
+
+Planet X
+Moon babies
+2002
+2
+The noble savage
+progressive,instrumental,experimental
+6:12
+U.S.A.,Australia
+
+Planet X
+Moon babies
+2002
+3
+Ataraxia
+progressive,instrumental,experimental
+6:16
+U.S.A.,Australia
+
+Planet X
+Moon babies
+2002
+4
+70 vir
+progressive,instrumental,experimental
+4:00
+U.S.A.,Australia
+
+Planet X
+Moon babies
+2002
+5
+Micronesia
+progressive,instrumental,experimental
+6:00
+U.S.A.,Australia
+
+Planet X
+Moon babies
+2002
+6
+Interlude in Milan
+progressive,instrumental,experimental
+4:29
+U.S.A.,Australia
+
+Planet X
+Moon babies
+2002
+7
+Digital vertigo
+progressive,instrumental,experimental
+4:23
+U.S.A.,Australia
+
+Planet X
+Moon babies
+2002
+8
+Ground zero
+progressive,instrumental,experimental
+6:01
+U.S.A.,Australia
+
+Planet X
+Moon babies
+2002
+9
+Midnight bell
+progressive,instrumental,experimental
+3:54
+U.S.A.,Australia
+
+Pop in je moerstaal
+Pop in je moerstaal Deel 2 (Nederbeat door de jaren heen)
+1990
+1
+De bom (Doe maar)
+pop,ska,compilation
+2:40
+Netherlands
+
+Pop in je moerstaal
+Pop in je moerstaal Deel 2 (Nederbeat door de jaren heen)
+1990
+10
+Nederwiet (Doe maar)
+reggae,ska,compilation
+6:52
+Netherlands
+
+Pop in je moerstaal
+Pop in je moerstaal Deel 2 (Nederbeat door de jaren heen)
+1990
+11
+Net als in de film (Toontje lager)
+pop,compilation
+3:27
+Netherlands
+
+Pop in je moerstaal
+Pop in je moerstaal Deel 2 (Nederbeat door de jaren heen)
+1990
+12
+1 nacht alleen (Doe maar)
+pop,compilation
+3:59
+Netherlands
+
+Pop in je moerstaal
+Pop in je moerstaal Deel 2 (Nederbeat door de jaren heen)
+1990
+13
+In het donker (Kadanz)
+pop,gloomy,compilation
+3:18
+Netherlands
+
+Pop in je moerstaal
+Pop in je moerstaal Deel 2 (Nederbeat door de jaren heen)
+1990
+14
+Ben ik te min (Armand)
+rock,compilation
+3:25
+Netherlands
+
+Pop in je moerstaal
+Pop in je moerstaal Deel 2 (Nederbeat door de jaren heen)
+1990
+15
+Waar kom jij vandaan (Frank Boeijen)
+pop,tranquil,compilation
+2:33
+Netherlands
+
+Pop in je moerstaal
+Pop in je moerstaal Deel 2 (Nederbeat door de jaren heen)
+1990
+16
+Sollicitere (gimme some lovin') (Janse Bagge Bend)
+rock,compilation
+3:16
+Netherlands
+
+Pop in je moerstaal
+Pop in je moerstaal Deel 2 (Nederbeat door de jaren heen)
+1990
+2
+Vriendschap (Het goede doel)
+pop,compilation
+4:08
+Netherlands
+
+Pop in je moerstaal
+Pop in je moerstaal Deel 2 (Nederbeat door de jaren heen)
+1990
+3
+Ik wil jou (Polle Eduard)
+pop,compilation
+4:02
+Netherlands
+
+Pop in je moerstaal
+Pop in je moerstaal Deel 2 (Nederbeat door de jaren heen)
+1990
+4
+Intimiteit (Kadanz)
+pop,compilation
+3:00
+Netherlands
+
+Pop in je moerstaal
+Pop in je moerstaal Deel 2 (Nederbeat door de jaren heen)
+1990
+5
+De loop van een geweer (Peter Koelewijn)
+pop,compilation
+4:49
+Netherlands
+
+Pop in je moerstaal
+Pop in je moerstaal Deel 2 (Nederbeat door de jaren heen)
+1990
+6
+Louise (Circus Custers)
+pop,compilation
+3:15
+Netherlands
+
+Pop in je moerstaal
+Pop in je moerstaal Deel 2 (Nederbeat door de jaren heen)
+1990
+7
+Swingking (Erik Mesie)
+pop,compilation
+4:12
+Netherlands
+
+Pop in je moerstaal
+Pop in je moerstaal Deel 2 (Nederbeat door de jaren heen)
+1990
+8
+Thuis ben (Hans de Booij)
+pop,compilation
+3:36
+Netherlands
+
+Pop in je moerstaal
+Pop in je moerstaal Deel 2 (Nederbeat door de jaren heen)
+1990
+9
+Bloedend hart (De dijk)
+blues,rock,compilation
+3:46
+Netherlands
+
+Porcupine Tree
+Fear of a blank planet
+2007
+1
+Fear of a blank planet
+progressive,rock
+7:28
+England
+
+Porcupine Tree
+Fear of a blank planet
+2007
+2
+My ashes
+progressive,rock
+5:07
+England
+
+Porcupine Tree
+Fear of a blank planet
+2007
+3
+Anesthetize
+progressive,rock
+17:42
+England
+
+Porcupine Tree
+Fear of a blank planet
+2007
+4
+Sentimental
+progressive,rock
+5:26
+England
+
+Porcupine Tree
+Fear of a blank planet
+2007
+5
+Way out of here
+progressive,rock
+7:37
+England
+
+Porcupine Tree
+Fear of a blank planet
+2007
+6
+Sleep together
+progressive,rock
+7:28
+England
+
+Porcupine tree
+Deadwing
+2005
+1
+Deadwing
+progressive,rock,heavy
+9:46
+England
+
+Porcupine tree
+Deadwing
+2005
+2
+Shallow
+progressive,rock,heavy
+4:17
+England
+
+Porcupine tree
+Deadwing
+2005
+3
+Lazarus
+progressive,rock
+4:18
+England
+
+Porcupine tree
+Deadwing
+2005
+4
+Halo
+progressive,rock
+4:38
+England
+
+Porcupine tree
+Deadwing
+2005
+5
+Arriving somewhere (but not here)
+progressive,rock
+12:02
+England
+
+Porcupine tree
+Deadwing
+2005
+6
+Mellotron scratch
+progressive,rock
+6:57
+England
+
+Porcupine tree
+Deadwing
+2005
+7
+Open car
+progressive,rock
+3:46
+England
+
+Porcupine tree
+Deadwing
+2005
+8
+The start of something beautiful
+progressive,rock
+7:39
+England
+
+Porcupine tree
+Deadwing
+2005
+9
+Glass arm shattering
+progressive,rock
+6:17
+England
+
+Porcupine tree
+In absentia
+2002
+1
+Blackest eyes
+progressive,rock
+4:23
+England
+
+Porcupine tree
+In absentia
+2002
+10
+Heartattack in a lay by
+progressive,rock,tranquil
+4:15
+England
+
+Porcupine tree
+In absentia
+2002
+11
+Strip the soul
+progressive,rock
+7:21
+England
+
+Porcupine tree
+In absentia
+2002
+12
+Collapse the light into earth
+progressive,rock
+5:54
+England
+
+Porcupine tree
+In absentia
+2002
+2
+Trains
+progressive,rock
+5:56
+England
+
+Porcupine tree
+In absentia
+2002
+3
+Lips of ashes
+progressive,rock,tranquil
+4:39
+England
+
+Porcupine tree
+In absentia
+2002
+4
+The sound of muzak
+progressive,rock
+4:59
+England
+
+Porcupine tree
+In absentia
+2002
+5
+Gravity eyelids
+progressive,rock
+7:56
+England
+
+Porcupine tree
+In absentia
+2002
+6
+Wedding nails
+progressive,rock
+6:33
+England
+
+Porcupine tree
+In absentia
+2002
+7
+Prodigal
+progressive,rock
+5:32
+England
+
+Porcupine tree
+In absentia
+2002
+8
+.3
+progressive,rock
+5:25
+England
+
+Porcupine tree
+In absentia
+2002
+9
+The creator has a mastertape
+progressive,rock
+5:21
+England
+
+Porcupine tree
+In absentia (bonus CD)
+2002
+1
+Drown with me
+progressive,rock
+5:22
+England
+
+Porcupine tree
+In absentia (bonus CD)
+2002
+2
+Chloroform
+progressive,rock
+7:15
+England
+
+Porcupine tree
+In absentia (bonus CD)
+2002
+3
+Strip the soul (video edit)
+progressive,rock
+3:35
+England
+
+Portishead
+Dummy
+1994
+1
+Mysterons
+alternative,electronica,gloomy,debut album
+5:07
+England
+
+Portishead
+Dummy
+1994
+10
+Biscuit
+alternative,electronica,gloomy,debut album
+5:04
+England
+
+Portishead
+Dummy
+1994
+11
+Glory box
+alternative,electronica,gloomy,debut album
+5:06
+England
+
+Portishead
+Dummy
+1994
+2
+Sour times
+alternative,electronica,gloomy,debut album
+4:14
+England
+
+Portishead
+Dummy
+1994
+3
+Strangers
+alternative,electronica,gloomy,debut album
+3:58
+England
+
+Portishead
+Dummy
+1994
+4
+It could be sweet
+alternative,electronica,gloomy,debut album
+4:20
+England
+
+Portishead
+Dummy
+1994
+5
+Wandering star
+alternative,electronica,gloomy,debut album
+4:56
+England
+
+Portishead
+Dummy
+1994
+6
+It's a fire
+alternative,electronica,gloomy,debut album
+3:48
+England
+
+Portishead
+Dummy
+1994
+7
+Numb
+alternative,electronica,gloomy,debut album
+3:58
+England
+
+Portishead
+Dummy
+1994
+8
+Roads
+alternative,electronica,gloomy,debut album
+5:10
+England
+
+Portishead
+Dummy
+1994
+9
+Pedestal
+alternative,electronica,gloomy,debut album
+3:41
+England
+
+Prince and the Revolution
+Purple rain
+1984
+1
+Let's go crazy
+rock,score
+4:39
+U.S.A.
+
+Prince and the Revolution
+Purple rain
+1984
+2
+Take me with u
+rock,score
+3:54
+U.S.A.
+
+Prince and the Revolution
+Purple rain
+1984
+3
+The beautiful ones
+rock,score
+5:15
+U.S.A.
+
+Prince and the Revolution
+Purple rain
+1984
+4
+Computer blue
+rock,score
+3:59
+U.S.A.
+
+Prince and the Revolution
+Purple rain
+1984
+5
+Darling Nikky
+rock,score
+4:15
+U.S.A.
+
+Prince and the Revolution
+Purple rain
+1984
+6
+When doves cry
+rock,score
+5:52
+U.S.A.
+
+Prince and the Revolution
+Purple rain
+1984
+7
+I would die 4 u
+rock,score
+2:51
+U.S.A.
+
+Prince and the Revolution
+Purple rain
+1984
+8
+Baby I'm a star
+rock,score
+4:20
+U.S.A.
+
+Prince and the Revolution
+Purple rain
+1984
+9
+Purple rain
+rock,score
+8:45
+U.S.A.
+
+Queensrÿche
+American soldier
+2009
+1
+Sliver
+progressive,metal
+3:09
+U.S.A.
+
+Queensrÿche
+American soldier
+2009
+10
+Remember me
+progressive,metal
+5:00
+U.S.A.
+
+Queensrÿche
+American soldier
+2009
+11
+Home again
+progressive,metal
+4:41
+U.S.A.
+
+Queensrÿche
+American soldier
+2009
+12
+The voice
+progressive,metal
+5:29
+U.S.A.
+
+Queensrÿche
+American soldier
+2009
+2
+Unafraid
+progressive,metal
+4:47
+U.S.A.
+
+Queensrÿche
+American soldier
+2009
+3
+Hundred mile stare
+progressive,metal
+4:31
+U.S.A.
+
+Queensrÿche
+American soldier
+2009
+4
+At 30,000 ft.
+progressive,metal
+5:11
+U.S.A.
+
+Queensrÿche
+American soldier
+2009
+5
+A dead man's words
+progressive,metal
+6:35
+U.S.A.
+
+Queensrÿche
+American soldier
+2009
+6
+The killer
+progressive,metal
+5:26
+U.S.A.
+
+Queensrÿche
+American soldier
+2009
+7
+The middle of hell
+progressive,metal
+5:28
+U.S.A.
+
+Queensrÿche
+American soldier
+2009
+8
+If I were king
+progressive,metal
+5:17
+U.S.A.
+
+Queensrÿche
+American soldier
+2009
+9
+Man down!
+progressive,metal
+4:57
+U.S.A.
+
+Queensrÿche
+Operation: mindcrime
+1988
+1
+I remember now
+progressive,metal,radio play
+1:17
+U.S.A.
+
+Queensrÿche
+Operation: mindcrime
+1988
+10
+Electric requiem
+progressive,metal
+1:22
+U.S.A.
+
+Queensrÿche
+Operation: mindcrime
+1988
+11
+Breaking the silence
+progressive,metal,rock,heavy
+4:34
+U.S.A.
+
+Queensrÿche
+Operation: mindcrime
+1988
+12
+I don't believe in love
+progressive,metal,rock
+4:23
+U.S.A.
+
+Queensrÿche
+Operation: mindcrime
+1988
+13
+Waiting for 22
+progressive,metal,instrumental
+1:05
+U.S.A.
+
+Queensrÿche
+Operation: mindcrime
+1988
+14
+My empty room
+progressive,metal
+1:28
+U.S.A.
+
+Queensrÿche
+Operation: mindcrime
+1988
+15
+Eyes of a stranger
+progressive,metal
+6:39
+U.S.A.
+
+Queensrÿche
+Operation: mindcrime
+1988
+2
+Anarchy-X
+progressive,metal,instrumental,vocal
+1:27
+U.S.A.
+
+Queensrÿche
+Operation: mindcrime
+1988
+3
+Revolution calling
+progressive,metal
+4:42
+U.S.A.
+
+Queensrÿche
+Operation: mindcrime
+1988
+4
+Operation: mindcrime
+progressive,metal
+4:43
+U.S.A.
+
+Queensrÿche
+Operation: mindcrime
+1988
+5
+Speak
+progressive,metal
+3:42
+U.S.A.
+
+Queensrÿche
+Operation: mindcrime
+1988
+6
+Spreading the disease
+progressive,metal
+4:07
+U.S.A.
+
+Queensrÿche
+Operation: mindcrime
+1988
+7
+The mission
+progressive,metal
+5:46
+U.S.A.
+
+Queensrÿche
+Operation: mindcrime
+1988
+8
+Suite sister Mary
+progressive,metal,radio play,duet
+10:41
+U.S.A.
+
+Queensrÿche
+Operation: mindcrime
+1988
+9
+The needle lies
+progressive,metal
+3:08
+U.S.A.
+
+Queensrÿche
+Promised land
+1994
+1
+9:28 a.m.
+progressive,metal,instrumental
+1:43
+U.S.A.
+
+Queensrÿche
+Promised land
+1994
+10
+One more time
+progressive,metal
+4:17
+U.S.A.
+
+Queensrÿche
+Promised land
+1994
+11
+Someone else?
+ballad,piano
+4:38
+U.S.A.
+
+Queensrÿche
+Promised land
+1994
+2
+I am I
+progressive,metal
+3:56
+U.S.A.
+
+Queensrÿche
+Promised land
+1994
+3
+Damaged
+progressive,metal
+3:55
+U.S.A.
+
+Queensrÿche
+Promised land
+1994
+4
+Out of mind
+progressive,metal,ballad
+4:34
+U.S.A.
+
+Queensrÿche
+Promised land
+1994
+5
+Bridge
+progressive,metal
+3:27
+U.S.A.
+
+Queensrÿche
+Promised land
+1994
+6
+Promised land
+progressive,metal
+8:25
+U.S.A.
+
+Queensrÿche
+Promised land
+1994
+7
+Disconnected
+progressive,metal
+4:48
+U.S.A.
+
+Queensrÿche
+Promised land
+1994
+8
+Lady Jane
+progressive,metal
+4:23
+U.S.A.
+
+Queensrÿche
+Promised land
+1994
+9
+My global mind
+progressive,metal
+4:20
+U.S.A.
+
+Queensrÿche
+Q2K
+1999
+1
+Falling down
+progressive,metal,heavy
+4:28
+U.S.A.
+
+Queensrÿche
+Q2K
+1999
+10
+Wot kinda man
+progressive,metal,heavy
+3:15
+U.S.A.
+
+Queensrÿche
+Q2K
+1999
+11
+The right side of my mind
+progressive,metal
+5:51
+U.S.A.
+
+Queensrÿche
+Q2K
+1999
+2
+Sacred ground
+progressive,metal
+4:12
+U.S.A.
+
+Queensrÿche
+Q2K
+1999
+3
+One life
+progressive,metal
+4:49
+U.S.A.
+
+Queensrÿche
+Q2K
+1999
+4
+When the rain comes...
+progressive,metal,ballad
+5:05
+U.S.A.
+
+Queensrÿche
+Q2K
+1999
+5
+How could I?
+progressive,metal
+3:44
+U.S.A.
+
+Queensrÿche
+Q2K
+1999
+6
+Beside you
+progressive,metal
+5:13
+U.S.A.
+
+Queensrÿche
+Q2K
+1999
+7
+Liquid sky
+progressive,metal
+4:53
+U.S.A.
+
+Queensrÿche
+Q2K
+1999
+8
+Breakdown
+progressive,metal,heavy
+4:11
+U.S.A.
+
+Queensrÿche
+Q2K
+1999
+9
+Burning man
+progressive,metal,heavy
+3:42
+U.S.A.
+
+Queensrÿche
+The warning
+1984
+1
+Warning
+hard rock,metal
+4:46
+U.S.A.
+
+Queensrÿche
+The warning
+1984
+2
+En force
+hard rock,metal
+5:18
+U.S.A.
+
+Queensrÿche
+The warning
+1984
+3
+Deliverance
+hard rock,metal
+3:20
+U.S.A.
+
+Queensrÿche
+The warning
+1984
+4
+No sanctuary
+hard rock,metal
+6:06
+U.S.A.
+
+Queensrÿche
+The warning
+1984
+5
+NM 156
+hard rock,metal
+4:42
+U.S.A.
+
+Queensrÿche
+The warning
+1984
+6
+Take hold of the flame
+hard rock,metal
+4:58
+U.S.A.
+
+Queensrÿche
+The warning
+1984
+7
+Before the storm
+hard rock,metal
+4:21
+U.S.A.
+
+Queensrÿche
+The warning
+1984
+8
+Child of fire
+hard rock,metal
+5:27
+U.S.A.
+
+Queensrÿche
+The warning
+1984
+9
+Roads to madness
+hard rock,metal
+9:40
+U.S.A.
+
+R.E.M.
+New adventures in hi-fi
+1996
+1
+How the west was won and where it got us
+alternative,pop
+4:30
+U.S.A.
+
+R.E.M.
+New adventures in hi-fi
+1996
+10
+Binky the doormat
+alternative,pop
+5:00
+U.S.A.
+
+R.E.M.
+New adventures in hi-fi
+1996
+11
+Zither
+alternative,pop
+2:33
+U.S.A.
+
+R.E.M.
+New adventures in hi-fi
+1996
+12
+So fast: so numb
+alternative,pop
+4:11
+U.S.A.
+
+R.E.M.
+New adventures in hi-fi
+1996
+13
+Low desert
+alternative,pop
+3:30
+U.S.A.
+
+R.E.M.
+New adventures in hi-fi
+1996
+14
+Electrolite
+alternative,pop
+4:05
+U.S.A.
+
+R.E.M.
+New adventures in hi-fi
+1996
+2
+The wake-up bomb
+alternative,pop
+5:07
+U.S.A.
+
+R.E.M.
+New adventures in hi-fi
+1996
+3
+New test leper
+alternative,pop
+5:25
+U.S.A.
+
+R.E.M.
+New adventures in hi-fi
+1996
+4
+Undertow
+alternative,pop
+5:08
+U.S.A.
+
+R.E.M.
+New adventures in hi-fi
+1996
+5
+E-bow the letter
+alternative,pop
+5:22
+U.S.A.
+
+R.E.M.
+New adventures in hi-fi
+1996
+6
+Leave
+alternative,pop
+7:17
+U.S.A.
+
+R.E.M.
+New adventures in hi-fi
+1996
+7
+Departure
+alternative,pop
+3:27
+U.S.A.
+
+R.E.M.
+New adventures in hi-fi
+1996
+8
+Bittersweet me
+alternative,pop
+4:06
+U.S.A.
+
+R.E.M.
+New adventures in hi-fi
+1996
+9
+Be mine
+alternative,pop
+5:32
+U.S.A.
+
+R.E.M.
+Out of time
+1991
+1
+Radio song
+alternative,pop
+4:12
+U.S.A.
+
+R.E.M.
+Out of time
+1991
+10
+Country feedback
+alternative,pop,country
+4:07
+U.S.A.
+
+R.E.M.
+Out of time
+1991
+11
+Me in honey
+alternative,pop,country
+4:06
+U.S.A.
+
+R.E.M.
+Out of time
+1991
+2
+Losing my religion
+alternative,pop
+4:26
+U.S.A.
+
+R.E.M.
+Out of time
+1991
+3
+Low
+alternative,pop,gloomy
+4:55
+U.S.A.
+
+R.E.M.
+Out of time
+1991
+4
+Near wild heaven
+alternative,pop
+3:17
+U.S.A.
+
+R.E.M.
+Out of time
+1991
+5
+Endgame
+alternative,pop
+3:48
+U.S.A.
+
+R.E.M.
+Out of time
+1991
+6
+Shiny happy people
+alternative,pop
+3:44
+U.S.A.
+
+R.E.M.
+Out of time
+1991
+7
+Belong
+alternative,pop
+4:03
+U.S.A.
+
+R.E.M.
+Out of time
+1991
+8
+Half a world away
+alternative,pop
+3:26
+U.S.A.
+
+R.E.M.
+Out of time
+1991
+9
+Texarkana
+alternative,pop
+3:36
+U.S.A.
+
+R.E.M.
+Up
+1998
+1
+Airportman
+alternative,pop,experimental
+4:13
+U.S.A.
+
+R.E.M.
+Up
+1998
+10
+Why not smile
+alternative,pop,experimental
+4:02
+U.S.A.
+
+R.E.M.
+Up
+1998
+11
+Daysleeper
+alternative,pop,experimental
+3:39
+U.S.A.
+
+R.E.M.
+Up
+1998
+12
+Diminished
+alternative,pop,experimental
+6:00
+U.S.A.
+
+R.E.M.
+Up
+1998
+13
+Parakeet
+alternative,pop,experimental
+4:12
+U.S.A.
+
+R.E.M.
+Up
+1998
+14
+Falls to climb
+alternative,pop,experimental
+5:06
+U.S.A.
+
+R.E.M.
+Up
+1998
+2
+Lotus
+alternative,pop,experimental
+4:31
+U.S.A.
+
+R.E.M.
+Up
+1998
+3
+Suspicion
+alternative,pop,experimental
+5:37
+U.S.A.
+
+R.E.M.
+Up
+1998
+4
+Hope
+alternative,pop,experimental
+5:01
+U.S.A.
+
+R.E.M.
+Up
+1998
+5
+At my most beautiful
+alternative,pop,experimental
+3:35
+U.S.A.
+
+R.E.M.
+Up
+1998
+6
+The apologist
+alternative,pop,experimental
+4:29
+U.S.A.
+
+R.E.M.
+Up
+1998
+7
+Sad professor
+alternative,pop,experimental
+4:03
+U.S.A.
+
+R.E.M.
+Up
+1998
+8
+You're in the air
+alternative,pop,experimental
+5:23
+U.S.A.
+
+R.E.M.
+Up
+1998
+9
+Walk unafraid
+alternative,pop,experimental
+4:33
+U.S.A.
+
+Radiohead
+Hail to the thief
+2003
+1
+2 + 2 = 5 (The Lukewarm)
+alternative,rock,experimental,heavy
+3:19
+England
+
+Radiohead
+Hail to the thief
+2003
+10
+I will (No man's land)
+alternative,experimental,gloomy
+1:59
+England
+
+Radiohead
+Hail to the thief
+2003
+11
+A punchup at a wedding (No no no no no no no no)
+alternative,rock,experimental,gloomy
+4:58
+England
+
+Radiohead
+Hail to the thief
+2003
+12
+Myxomatosis (Judge, Jury & Executioner)
+alternative,electronica,experimental,gloomy
+3:52
+England
+
+Radiohead
+Hail to the thief
+2003
+13
+Scatterbrain (As Dead as Leaves)
+alternative,experimental,gloomy
+3:22
+England
+
+Radiohead
+Hail to the thief
+2003
+14
+A wolf at the door (It Girl. Rag Doll.)
+alternative,experimental,gloomy
+3:21
+England
+
+Radiohead
+Hail to the thief
+2003
+2
+Sit down. Stand up. (Snakes & Ladders)
+alternative,experimental,gloomy,electronica
+4:20
+England
+
+Radiohead
+Hail to the thief
+2003
+3
+Sail to the moon (Brush the cobwebs out of the sky)
+alternative,ballad,electronica
+4:18
+England
+
+Radiohead
+Hail to the thief
+2003
+4
+Backdrifts (Honeymoon is over)
+alternative,experimental,gloomy,electronica
+5:23
+England
+
+Radiohead
+Hail to the thief
+2003
+5
+Go to sleep (Little man being erased)
+alternative,rock,experimental
+3:21
+England
+
+Radiohead
+Hail to the thief
+2003
+6
+Where I end and you begin (The sky is falling in)
+alternative,rock,experimental,gloomy
+4:30
+England
+
+Radiohead
+Hail to the thief
+2003
+7
+We suck young blood (Your time is up)
+alternative,experimental,gloomy
+4:56
+England
+
+Radiohead
+Hail to the thief
+2003
+8
+The gloaming (Softly open our mouths in the cold)
+alternative,experimental,gloomy,electronica
+3:32
+England
+
+Radiohead
+Hail to the thief
+2003
+9
+There there (The boney king of nowhere)
+alternative,rock,experimental
+5:24
+England
+
+Radiohead
+In rainbows
+2007
+1
+15 steps
+alternative,rock,experimental
+3:58
+England
+
+Radiohead
+In rainbows
+2007
+10
+Videotape
+alternative,experimental,tranquil
+4:42
+England
+
+Radiohead
+In rainbows
+2007
+2
+Bodysnatchers
+alternative,rock,experimental
+4:02
+England
+
+Radiohead
+In rainbows
+2007
+3
+Nude
+alternative,experimental,tranquil
+4:15
+England
+
+Radiohead
+In rainbows
+2007
+4
+Weird fishes/arpeggi
+alternative,rock,experimental
+5:18
+England
+
+Radiohead
+In rainbows
+2007
+5
+All I need
+alternative,rock,experimental,gloomy,electronica
+3:48
+England
+
+Radiohead
+In rainbows
+2007
+6
+Faust ARP
+alternative,experimental,gloomy
+2:09
+England
+
+Radiohead
+In rainbows
+2007
+7
+Reckoner
+alternative,rock,experimental
+4:50
+England
+
+Radiohead
+In rainbows
+2007
+8
+House of cards
+alternative,rock,experimental
+5:28
+England
+
+Radiohead
+In rainbows
+2007
+9
+Jigsaw falling into place
+alternative,rock,experimental
+4:09
+England
+
+Radiohead
+My iron lung [EP]
+1994
+1
+My iron lung
+rock,alternative
+4:37
+England
+
+Radiohead
+My iron lung [EP]
+1994
+2
+The trickster
+rock,alternative
+4:40
+England
+
+Radiohead
+My iron lung [EP]
+1994
+3
+Lewis (mistreated)
+rock,alternative
+3:19
+England
+
+Radiohead
+My iron lung [EP]
+1994
+4
+Punchdrunk lovesick singalong
+rock,alternative
+4:40
+England
+
+Radiohead
+My iron lung [EP]
+1994
+5
+Permanent daylight
+rock,alternative
+2:48
+England
+
+Radiohead
+My iron lung [EP]
+1994
+6
+Lozenge of love
+alternative,tranquil
+2:16
+England
+
+Radiohead
+My iron lung [EP]
+1994
+7
+You never wash up after yourself
+rock,alternative,tranquil
+1:44
+England
+
+Radiohead
+My iron lung [EP]
+1994
+8
+Creep (acoustic)
+rock,alternative
+4:19
+England
+
+Radiohead
+OK Computer
+1997
+1
+Airbag
+alternative,progressive,rock,experimental
+4:44
+England
+
+Radiohead
+OK Computer
+1997
+10
+No surprises
+alternative,progressive,experimental,tranquil
+3:48
+England
+
+Radiohead
+OK Computer
+1997
+11
+Lucky
+alternative,progressive,experimental,ballad,gloomy
+4:19
+England
+
+Radiohead
+OK Computer
+1997
+12
+The tourist
+alternative,progressive,rock,experimental,gloomy
+5:24
+England
+
+Radiohead
+OK Computer
+1997
+2
+Paranoid android
+alternative,progressive,rock,experimental
+6:23
+England
+
+Radiohead
+OK Computer
+1997
+3
+Subterranean homesick alien
+alternative,progressive,rock,experimental
+4:27
+England
+
+Radiohead
+OK Computer
+1997
+4
+Exit music (for a film)
+alternative,tranquil,gloomy
+4:24
+England
+
+Radiohead
+OK Computer
+1997
+5
+Let down
+alternative,progressive,rock,experimental
+4:59
+England
+
+Radiohead
+OK Computer
+1997
+6
+Karma police
+alternative,progressive,rock,experimental
+4:21
+England
+
+Radiohead
+OK Computer
+1997
+7
+Fitter happier
+alternative,progressive,experimental,vocal
+1:57
+England
+
+Radiohead
+OK Computer
+1997
+8
+Electioneering
+alternative,rock
+3:50
+England
+
+Radiohead
+OK Computer
+1997
+9
+Climbing up the walls
+alternative,progressive,experimental,gloomy
+4:45
+England
+
+Radiohead
+Pablo Honey
+1992
+1
+You
+rock,alternative,debut album
+3:28
+England
+
+Radiohead
+Pablo Honey
+1992
+10
+I can't
+rock,alternative,debut album
+4:13
+England
+
+Radiohead
+Pablo Honey
+1992
+11
+Lurgee
+rock,alternative,debut album
+3:07
+England
+
+Radiohead
+Pablo Honey
+1992
+12
+Blow out
+rock,alternative,debut album
+4:40
+England
+
+Radiohead
+Pablo Honey
+1992
+2
+Creep
+rock,alternative,debut album
+3:55
+England
+
+Radiohead
+Pablo Honey
+1992
+3
+How do you?
+rock,alternative,debut album
+2:12
+England
+
+Radiohead
+Pablo Honey
+1992
+4
+Stop whispering
+rock,alternative,debut album
+5:25
+England
+
+Radiohead
+Pablo Honey
+1992
+5
+Thinking about you
+rock,debut album
+2:41
+England
+
+Radiohead
+Pablo Honey
+1992
+6
+Anyone can play guitar
+rock,alternative,debut album
+3:37
+England
+
+Radiohead
+Pablo Honey
+1992
+7
+Ripcord
+rock,alternative,debut album
+3:09
+England
+
+Radiohead
+Pablo Honey
+1992
+8
+Vegetable
+rock,alternative,debut album
+3:12
+England
+
+Radiohead
+Pablo Honey
+1992
+9
+Prove yourself
+rock,alternative,debut album
+2:25
+England
+
+Radiohead
+The bends
+1995
+1
+Planet telex
+alternative,rock
+4:19
+England
+
+Radiohead
+The bends
+1995
+10
+Black star
+alternative,rock
+4:07
+England
+
+Radiohead
+The bends
+1995
+11
+Sulk
+alternative,rock
+3:42
+England
+
+Radiohead
+The bends
+1995
+12
+Street spirit (fade out)
+alternative,rock
+4:12
+England
+
+Radiohead
+The bends
+1995
+2
+The bends
+alternative,rock
+4:06
+England
+
+Radiohead
+The bends
+1995
+3
+High and dry
+alternative,rock
+4:17
+England
+
+Radiohead
+The bends
+1995
+4
+Fake plastic trees
+alternative,rock
+4:50
+England
+
+Radiohead
+The bends
+1995
+5
+Bones
+alternative,rock
+3:09
+England
+
+Radiohead
+The bends
+1995
+6
+Nice dream
+alternative,rock
+3:53
+England
+
+Radiohead
+The bends
+1995
+7
+Just
+alternative,rock
+3:54
+England
+
+Radiohead
+The bends
+1995
+8
+My iron lung
+alternative,rock
+4:36
+England
+
+Radiohead
+The bends
+1995
+9
+Bullet proof ... I wish I was
+alternative,rock
+3:28
+England
+
+Radiohead
+The king of limbs
+2011
+1
+Bloom
+alternative,experimental,rock,electronica,gloomy
+5:14
+England
+
+Radiohead
+The king of limbs
+2011
+2
+Morning mr. Magpie
+alternative,experimental,rock,electronica
+4:40
+England
+
+Radiohead
+The king of limbs
+2011
+3
+Little by little
+alternative,experimental,rock,electronica,gloomy
+4:27
+England
+
+Radiohead
+The king of limbs
+2011
+4
+Feral
+alternative,experimental,electronica,gloomy
+3:13
+England
+
+Radiohead
+The king of limbs
+2011
+5
+Lotus flower
+alternative,experimental,rock,electronica,gloomy
+5:00
+England
+
+Radiohead
+The king of limbs
+2011
+6
+Codex
+alternative,experimental,tranquil
+4:47
+England
+
+Radiohead
+The king of limbs
+2011
+7
+Give up the ghost
+alternative,experimental,tranquil
+4:50
+England
+
+Radiohead
+The king of limbs
+2011
+8
+Separator
+alternative,experimental,rock,electronica
+5:21
+England
+
+Redemption
+Snowfall on judgment day
+2009
+1
+Peel
+metal,progressive,rock
+6:31
+U.S.A.
+
+Redemption
+Snowfall on judgment day
+2009
+10
+Love kills us all / life in one day
+metal,progressive,rock
+11:00
+U.S.A.
+
+Redemption
+Snowfall on judgment day
+2009
+2
+Walls
+metal,progressive,rock
+6:56
+U.S.A.
+
+Redemption
+Snowfall on judgment day
+2009
+3
+Leviathan rising
+metal,progressive,rock
+6:41
+U.S.A.
+
+Redemption
+Snowfall on judgment day
+2009
+4
+Black and white world
+metal,progressive,rock
+8:03
+U.S.A.
+
+Redemption
+Snowfall on judgment day
+2009
+5
+Unformed
+metal,progressive,rock
+6:29
+U.S.A.
+
+Redemption
+Snowfall on judgment day
+2009
+6
+Keep breathing
+metal,progressive,rock
+7:37
+U.S.A.
+
+Redemption
+Snowfall on judgment day
+2009
+7
+Another day dies
+metal,progressive,rock
+5:15
+U.S.A.
+
+Redemption
+Snowfall on judgment day
+2009
+8
+What will you say
+metal,progressive,rock
+5:20
+U.S.A.
+
+Redemption
+Snowfall on judgment day
+2009
+9
+Fistful of sand
+metal,progressive,rock
+6:35
+U.S.A.
+
+Richard Strauss
+Don Juan/Eine Alpensinfonie
+1990
+1
+Don Juan
+classic,symphonic,romantic
+17:35
+Germany
+
+Richard Strauss
+Don Juan/Eine Alpensinfonie
+1990
+10
+Durch Dickicht und Gestrüpp auf Irrwegen
+classic,symphonic,romantic
+17:35
+Germany
+
+Richard Strauss
+Don Juan/Eine Alpensinfonie
+1990
+11
+Auf dem Gletscher
+classic,symphonic,romantic
+1:07
+Germany
+
+Richard Strauss
+Don Juan/Eine Alpensinfonie
+1990
+12
+Gefahrvolle Augenblicke
+classic,symphonic,romantic
+6:29
+Germany
+
+Richard Strauss
+Don Juan/Eine Alpensinfonie
+1990
+13
+Vision
+classic,symphonic,romantic
+3:30
+Germany
+
+Richard Strauss
+Don Juan/Eine Alpensinfonie
+1990
+14
+Nebel steigen auf
+classic,symphonic,romantic
+0:18
+Germany
+
+Richard Strauss
+Don Juan/Eine Alpensinfonie
+1990
+15
+Die Sonne verdüstert sich allmählich
+classic,symphonic,romantic
+0:55
+Germany
+
+Richard Strauss
+Don Juan/Eine Alpensinfonie
+1990
+16
+Elegie
+classic,symphonic,romantic
+2:04
+Germany
+
+Richard Strauss
+Don Juan/Eine Alpensinfonie
+1990
+17
+Stille vor dem Sturm
+classic,symphonic,romantic
+3:04
+Germany
+
+Richard Strauss
+Don Juan/Eine Alpensinfonie
+1990
+18
+Gewitter und Sturm, Abstieg
+classic,symphonic,romantic
+3:44
+Germany
+
+Richard Strauss
+Don Juan/Eine Alpensinfonie
+1990
+19
+Sonnenuntergang
+classic,symphonic,romantic
+2:51
+Germany
+
+Richard Strauss
+Don Juan/Eine Alpensinfonie
+1990
+2
+Nacht
+classic,symphonic,romantic
+3:26
+Germany
+
+Richard Strauss
+Don Juan/Eine Alpensinfonie
+1990
+20
+Ausklang
+classic,symphonic,romantic
+6:42
+Germany
+
+Richard Strauss
+Don Juan/Eine Alpensinfonie
+1990
+21
+Nacht
+classic,symphonic,romantic
+2:34
+Germany
+
+Richard Strauss
+Don Juan/Eine Alpensinfonie
+1990
+3
+Sonnenaufgang
+classic,symphonic,romantic
+1:33
+Germany
+
+Richard Strauss
+Don Juan/Eine Alpensinfonie
+1990
+4
+Der Anstieg
+classic,symphonic,romantic
+2:09
+Germany
+
+Richard Strauss
+Don Juan/Eine Alpensinfonie
+1990
+5
+Eintritt in den Wald
+classic,symphonic,romantic
+6:23
+Germany
+
+Richard Strauss
+Don Juan/Eine Alpensinfonie
+1990
+6
+Am Wasserfall
+classic,symphonic,romantic
+0:14
+Germany
+
+Richard Strauss
+Don Juan/Eine Alpensinfonie
+1990
+7
+Erscheinung
+classic,symphonic,romantic
+0:44
+Germany
+
+Richard Strauss
+Don Juan/Eine Alpensinfonie
+1990
+8
+Aug Blumigen Wiesen
+classic,symphonic,romantic
+0:54
+Germany
+
+Richard Strauss
+Don Juan/Eine Alpensinfonie
+1990
+9
+Auf der Alm
+classic,symphonic,romantic
+2:22
+Germany
+
+Richard Wagner
+The ring - orchestral highlights
+1989
+1
+Das Rheingold - Entrance of the gods into Valhalla
+classic,symphonic
+7:07
+Germany
+
+Richard Wagner
+The ring - orchestral highlights
+1989
+2
+Die Walküre - Ride of the Valkyries
+classic,symphonic
+5:22
+Germany
+
+Richard Wagner
+The ring - orchestral highlights
+1989
+3
+Die Walküre - Wotan's farewell & magic fire
+classic,symphonic
+15:19
+Germany
+
+Richard Wagner
+The ring - orchestral highlights
+1989
+4
+Siegfried - Forest murmurs
+classic,symphonic
+8:36
+Germany
+
+Richard Wagner
+The ring - orchestral highlights
+1989
+5
+Götterdämmerung - Siegfried's Rhine journey
+classic,symphonic
+10:55
+Germany
+
+Richard Wagner
+The ring - orchestral highlights
+1989
+6
+Götterdämmerung - Siegfried's death & funeral march
+classic,symphonic
+8:12
+Germany
+
+Rival sons
+Classic Rock High Voltage Rock & Roll Prime Cuts
+2011
+1
+Get what's coming
+progressive,rock
+4:03
+U.S.A.
+
+Rival sons
+Classic Rock High Voltage Rock & Roll Prime Cuts
+2011
+2
+Torture
+progressive,rock
+3:35
+U.S.A.
+
+Rival sons
+Classic Rock High Voltage Rock & Roll Prime Cuts
+2011
+3
+Radio
+progressive,rock
+3:05
+U.S.A.
+
+Rival sons
+Classic Rock High Voltage Rock & Roll Prime Cuts
+2011
+4
+Sacred tongue
+progressive,rock
+3:24
+U.S.A.
+
+Rival sons
+Classic Rock High Voltage Rock & Roll Prime Cuts
+2011
+5
+Sleepwalker
+progressive,rock
+5:30
+U.S.A.
+
+Rival sons
+Classic Rock High Voltage Rock & Roll Prime Cuts
+2011
+6
+Soul
+progressive,rock
+6:16
+U.S.A.
+
+Riverside
+Rapid eye movement
+2007
+1
+Beyond the eyelids
+progressive,metal
+7:56
+Poland
+
+Riverside
+Rapid eye movement
+2007
+10
+Behind the eyelids
+progressive,metal
+6:18
+Poland
+
+Riverside
+Rapid eye movement
+2007
+11
+Lucid dream IV
+progressive,metal
+4:33
+Poland
+
+Riverside
+Rapid eye movement
+2007
+12
+02 Panic room (remix)
+progressive,metal
+3:24
+Poland
+
+Riverside
+Rapid eye movement
+2007
+13
+Back to the river
+progressive,metal,instrumental
+6:29
+Poland
+
+Riverside
+Rapid eye movement
+2007
+14
+Rapid eye movement
+progressive,metal,instrumental
+12:39
+Poland
+
+Riverside
+Rapid eye movement
+2007
+2
+Rainbow box
+progressive,metal
+3:36
+Poland
+
+Riverside
+Rapid eye movement
+2007
+3
+02 Panic room
+progressive,metal
+5:29
+Poland
+
+Riverside
+Rapid eye movement
+2007
+4
+Schizophrenic prayer
+progressive,metal,gloomy
+4:20
+Poland
+
+Riverside
+Rapid eye movement
+2007
+5
+Parasomnia
+progressive,metal
+8:10
+Poland
+
+Riverside
+Rapid eye movement
+2007
+6
+Through the other side
+progressive,tranquil
+4:05
+Poland
+
+Riverside
+Rapid eye movement
+2007
+7
+Embryonic
+progressive,metal,tranquil
+4:10
+Poland
+
+Riverside
+Rapid eye movement
+2007
+8
+Cybernetic pillow
+progressive,metal
+4:46
+Poland
+
+Riverside
+Rapid eye movement
+2007
+9
+Ultimate trip
+progressive,metal
+13:13
+Poland
+
+Rocket Scientists
+Oblivion days
+1999
+1
+Dark water part three: Neptune's sun
+progressive,instrumental
+1:46
+U.S.A.
+
+Rocket Scientists
+Oblivion days
+1999
+10
+Wake me up - live in Tokyo
+progressive,metal,live
+6:20
+U.S.A.
+
+Rocket Scientists
+Oblivion days
+1999
+11
+Stardust - MM96 mix
+progressive,metal
+4:54
+U.S.A.
+
+Rocket Scientists
+Oblivion days
+1999
+2
+Aqua vitae
+progressive,metal
+6:26
+U.S.A.
+
+Rocket Scientists
+Oblivion days
+1999
+3
+Oblivion days
+progressive,metal
+7:06
+U.S.A.
+
+Rocket Scientists
+Oblivion days
+1999
+4
+Archimedes
+progressive,metal,instrumental
+5:35
+U.S.A.
+
+Rocket Scientists
+Oblivion days
+1999
+5
+Banquo's ghost
+progressive,metal
+5:57
+U.S.A.
+
+Rocket Scientists
+Oblivion days
+1999
+6
+Space: 1999
+progressive,metal,instrumental
+4:35
+U.S.A.
+
+Rocket Scientists
+Oblivion days
+1999
+7
+Escape
+progressive,metal
+10:00
+U.S.A.
+
+Rocket Scientists
+Oblivion days
+1999
+8
+Break the silence
+progressive,metal
+5:55
+U.S.A.
+
+Rocket Scientists
+Oblivion days
+1999
+9
+Dark water part four: heavy water
+progressive,metal
+4:38
+U.S.A.
+
+Roger Waters
+Amused to death
+1992
+1
+The ballad of Bill Hubbard
+progressive,rock,ballad,instrumental,vocals
+4:19
+England
+
+Roger Waters
+Amused to death
+1992
+10
+What God wants: Part III
+progressive,rock
+4:08
+England
+
+Roger Waters
+Amused to death
+1992
+11
+Watching t.v.
+progressive,rock,boring
+6:08
+England
+
+Roger Waters
+Amused to death
+1992
+12
+Three wishes
+progressive,rock
+6:50
+England
+
+Roger Waters
+Amused to death
+1992
+13
+It's a miracle
+progressive,rock
+8:30
+England
+
+Roger Waters
+Amused to death
+1992
+14
+Amused to death
+progressive,rock
+9:07
+England
+
+Roger Waters
+Amused to death
+1992
+2
+What God wants: Part I
+progressive,rock
+6:01
+England
+
+Roger Waters
+Amused to death
+1992
+3
+Perfect sense: Part I
+progressive,rock
+4:16
+England
+
+Roger Waters
+Amused to death
+1992
+4
+Perfect sense: Part II
+progressive,rock
+2:50
+England
+
+Roger Waters
+Amused to death
+1992
+5
+The bravery of being out of range
+progressive,rock
+4:44
+England
+
+Roger Waters
+Amused to death
+1992
+6
+Late home tonight: Part I
+progressive,rock
+4:00
+England
+
+Roger Waters
+Amused to death
+1992
+7
+Late home tonight: Part II
+progressive,rock
+2:14
+England
+
+Roger Waters
+Amused to death
+1992
+8
+Too much rope
+progressive,rock
+5:47
+England
+
+Roger Waters
+Amused to death
+1992
+9
+What God wants: Part II
+progressive,rock
+3:42
+England
+
+Roger Waters
+In the flesh (live)
+2006
+1
+In the flesh
+progressive,rock,live
+4:41
+England
+
+Roger Waters
+In the flesh (live)
+2006
+10
+Wish you were here
+progressive,rock,ballad,live
+4:57
+England
+
+Roger Waters
+In the flesh (live)
+2006
+11
+Shine on you crazy diamond (parts 1-8)
+progressive,rock,live
+14:43
+England
+
+Roger Waters
+In the flesh (live)
+2006
+12
+Set the controls for the heart of the sun
+progressive,rock,live
+7:10
+England
+
+Roger Waters
+In the flesh (live)
+2006
+13
+Breathe (In The Air)
+progressive,rock,live
+3:23
+England
+
+Roger Waters
+In the flesh (live)
+2006
+14
+Time
+progressive,rock,live
+6:24
+England
+
+Roger Waters
+In the flesh (live)
+2006
+15
+Money
+progressive,rock,live
+6:11
+England
+
+Roger Waters
+In the flesh (live)
+2006
+16
+Pros And Cons Of Hitch Hiking (part 2)
+progressive,rock,live
+5:20
+England
+
+Roger Waters
+In the flesh (live)
+2006
+17
+Perfect sense (parts 1 & 2)
+progressive,rock,live
+7:26
+England
+
+Roger Waters
+In the flesh (live)
+2006
+18
+Bravery of being out of range
+progressive,rock,live
+5:04
+England
+
+Roger Waters
+In the flesh (live)
+2006
+19
+It's a miracle
+progressive,rock,live
+8:12
+England
+
+Roger Waters
+In the flesh (live)
+2006
+2
+Happiest days of our lives
+progressive,rock,live
+1:36
+England
+
+Roger Waters
+In the flesh (live)
+2006
+20
+Amused to death
+progressive,rock,live
+9:25
+England
+
+Roger Waters
+In the flesh (live)
+2006
+21
+Brain damage
+progressive,rock,live
+4:06
+England
+
+Roger Waters
+In the flesh (live)
+2006
+22
+Eclipse
+progressive,rock,live
+2:19
+England
+
+Roger Waters
+In the flesh (live)
+2006
+23
+Comfortably numb
+progressive,rock,live
+8:08
+England
+
+Roger Waters
+In the flesh (live)
+2006
+24
+Each small candle
+progressive,rock,live
+9:04
+England
+
+Roger Waters
+In the flesh (live)
+2006
+3
+Another brick in the wall (part 2)
+progressive,rock,live
+5:52
+England
+
+Roger Waters
+In the flesh (live)
+2006
+4
+Mother
+progressive,rock,live
+5:41
+England
+
+Roger Waters
+In the flesh (live)
+2006
+5
+Get your filthy hands off my desert
+progressive,rock,live
+0:52
+England
+
+Roger Waters
+In the flesh (live)
+2006
+6
+Southampton dock
+progressive,rock,live
+2:16
+England
+
+Roger Waters
+In the flesh (live)
+2006
+7
+Pigs on the wing (part 1)
+progressive,rock,live
+1:18
+England
+
+Roger Waters
+In the flesh (live)
+2006
+8
+Dogs
+progressive,rock,live
+16:24
+England
+
+Roger Waters
+In the flesh (live)
+2006
+9
+Welcome to the machine
+progressive,rock,live
+6:54
+England
+
+Roger Waters
+Radio KAOS
+1987
+1
+Radio waves
+progressive,pop
+4:59
+England
+
+Roger Waters
+Radio KAOS
+1987
+2
+Who needs information
+progressive,pop
+5:55
+England
+
+Roger Waters
+Radio KAOS
+1987
+3
+Me or him
+progressive,pop
+5:24
+England
+
+Roger Waters
+Radio KAOS
+1987
+4
+The powers that be
+progressive,pop
+4:37
+England
+
+Roger Waters
+Radio KAOS
+1987
+5
+Sunset strip
+progressive,pop
+4:45
+England
+
+Roger Waters
+Radio KAOS
+1987
+6
+Home
+progressive,pop
+6:00
+England
+
+Roger Waters
+Radio KAOS
+1987
+7
+Four minutes
+progressive,pop
+4:01
+England
+
+Roger Waters
+Radio KAOS
+1987
+8
+The tide is turning (after Live Aid)
+progressive,pop
+5:44
+England
+
+Roger Waters
+The pros and cons of hitch hiking
+1984
+1
+Apparantly they were travelling abroad
+progressive,pop,experimental
+3:12
+England
+
+Roger Waters
+The pros and cons of hitch hiking
+1984
+10
+The pros and cons of hitch hiking
+progressive,pop,experimental
+4:36
+England
+
+Roger Waters
+The pros and cons of hitch hiking
+1984
+11
+Every strangers eyes
+progressive,pop,experimental
+4:50
+England
+
+Roger Waters
+The pros and cons of hitch hiking
+1984
+12
+The moment of clarity
+progressive,pop,experimental
+1:30
+England
+
+Roger Waters
+The pros and cons of hitch hiking
+1984
+2
+Running shoes
+progressive,pop,experimental
+4:08
+England
+
+Roger Waters
+The pros and cons of hitch hiking
+1984
+3
+Arabs with knives and West German skies
+progressive,pop,experimental
+2:17
+England
+
+Roger Waters
+The pros and cons of hitch hiking
+1984
+4
+For the first time today: part II
+progressive,pop,experimental
+2:03
+England
+
+Roger Waters
+The pros and cons of hitch hiking
+1984
+5
+Sexual revolution
+progressive,pop,experimental
+4:49
+England
+
+Roger Waters
+The pros and cons of hitch hiking
+1984
+6
+The remains of our love
+progressive,pop,experimental
+3:09
+England
+
+Roger Waters
+The pros and cons of hitch hiking
+1984
+7
+Go fishing
+progressive,pop,experimental
+7:00
+England
+
+Roger Waters
+The pros and cons of hitch hiking
+1984
+8
+For the first time today: part I
+progressive,pop,experimental
+1:38
+England
+
+Roger Waters
+The pros and cons of hitch hiking
+1984
+9
+Dunroamin: duncarin: dunlivin
+progressive,pop,experimental
+3:04
+England
+
+Rolling Stones
+Forty Licks
+2002
+1
+Street fighting man
+rock
+3:16
+England
+
+Rolling Stones
+Forty Licks
+2002
+10
+Have you seen your mother baby?
+rock
+2:36
+England
+
+Rolling Stones
+Forty Licks
+2002
+11
+Sympathy for the devil
+rock
+6:18
+England
+
+Rolling Stones
+Forty Licks
+2002
+12
+Mother's little helper
+rock
+2:48
+England
+
+Rolling Stones
+Forty Licks
+2002
+13
+She's a rainbow
+rock
+4:13
+England
+
+Rolling Stones
+Forty Licks
+2002
+14
+Get off my cloud
+rock
+2:56
+England
+
+Rolling Stones
+Forty Licks
+2002
+15
+Wild horses
+rock
+5:45
+England
+
+Rolling Stones
+Forty Licks
+2002
+16
+Ruby tuesday
+rock
+3:15
+England
+
+Rolling Stones
+Forty Licks
+2002
+17
+Paint it, black
+rock
+3:45
+England
+
+Rolling Stones
+Forty Licks
+2002
+18
+Honky tonk women
+rock
+3:01
+England
+
+Rolling Stones
+Forty Licks
+2002
+19
+It's all over now
+rock
+3:28
+England
+
+Rolling Stones
+Forty Licks
+2002
+2
+Gimme shelter
+rock
+4:32
+England
+
+Rolling Stones
+Forty Licks
+2002
+20
+Let's spend the night together
+rock
+3:26
+England
+
+Rolling Stones
+Forty Licks
+2002
+21
+Start me up
+rock
+3:33
+England
+
+Rolling Stones
+Forty Licks
+2002
+22
+Brown sugar
+rock
+3:49
+England
+
+Rolling Stones
+Forty Licks
+2002
+23
+Miss you
+rock
+3:35
+England
+
+Rolling Stones
+Forty Licks
+2002
+24
+Beast of burden
+rock
+3:27
+England
+
+Rolling Stones
+Forty Licks
+2002
+25
+Don't stop
+rock
+3:58
+England
+
+Rolling Stones
+Forty Licks
+2002
+26
+Happy
+rock
+3:05
+England
+
+Rolling Stones
+Forty Licks
+2002
+27
+Angie
+rock
+4:31
+England
+
+Rolling Stones
+Forty Licks
+2002
+28
+You got me rocking
+rock
+3:33
+England
+
+Rolling Stones
+Forty Licks
+2002
+29
+Shattered
+rock
+3:46
+England
+
+Rolling Stones
+Forty Licks
+2002
+3
+(I can't get no) satisfaction
+rock
+3:44
+England
+
+Rolling Stones
+Forty Licks
+2002
+30
+Fool to cry
+rock
+4:07
+England
+
+Rolling Stones
+Forty Licks
+2002
+31
+Love is strong
+rock
+3:48
+England
+
+Rolling Stones
+Forty Licks
+2002
+32
+Mixed emotions
+rock
+4:01
+England
+
+Rolling Stones
+Forty Licks
+2002
+33
+Keys to your love
+rock
+4:12
+England
+
+Rolling Stones
+Forty Licks
+2002
+34
+Anybody seen my baby?
+rock
+4:07
+England
+
+Rolling Stones
+Forty Licks
+2002
+35
+Stealing my heart
+rock
+3:42
+England
+
+Rolling Stones
+Forty Licks
+2002
+36
+Tumbling dice
+rock
+3:46
+England
+
+Rolling Stones
+Forty Licks
+2002
+37
+Undercover of the night
+rock
+4:13
+England
+
+Rolling Stones
+Forty Licks
+2002
+38
+Emotional rescue
+rock
+3:42
+England
+
+Rolling Stones
+Forty Licks
+2002
+39
+It's only rock 'n' roll
+rock
+4:10
+England
+
+Rolling Stones
+Forty Licks
+2002
+4
+The last time
+rock
+3:42
+England
+
+Rolling Stones
+Forty Licks
+2002
+40
+Losing my touch
+rock
+5:05
+England
+
+Rolling Stones
+Forty Licks
+2002
+5
+Jumpin' Jack flash
+rock
+3:43
+England
+
+Rolling Stones
+Forty Licks
+2002
+6
+You can't always get what you want
+rock
+7:29
+England
+
+Rolling Stones
+Forty Licks
+2002
+7
+19th nervous breakdown
+rock
+3:57
+England
+
+Rolling Stones
+Forty Licks
+2002
+8
+Under my thumb
+rock
+3:42
+England
+
+Rolling Stones
+Forty Licks
+2002
+9
+Not fade away
+rock
+1:49
+England
+
+Rush
+A show of hands
+1989
+1
+Intro
+alternative,rock,live
+0:53
+Canada
+
+Rush
+A show of hands
+1989
+10
+Witch hunt
+alternative,rock,live
+3:55
+Canada
+
+Rush
+A show of hands
+1989
+11
+The rhythm method
+alternative,rock,live
+4:34
+Canada
+
+Rush
+A show of hands
+1989
+12
+Force ten
+alternative,rock,live
+4:50
+Canada
+
+Rush
+A show of hands
+1989
+13
+Time stand still
+alternative,rock,live
+5:10
+Canada
+
+Rush
+A show of hands
+1989
+14
+Red sector A
+alternative,rock,live
+5:12
+Canada
+
+Rush
+A show of hands
+1989
+15
+Closer to the heart
+alternative,rock,live
+4:53
+Canada
+
+Rush
+A show of hands
+1989
+2
+The big money
+alternative,rock,live
+5:52
+Canada
+
+Rush
+A show of hands
+1989
+3
+Subdivisions
+alternative,rock,live
+5:19
+Canada
+
+Rush
+A show of hands
+1989
+4
+Marathon
+alternative,rock,live
+6:32
+Canada
+
+Rush
+A show of hands
+1989
+5
+Turn the page
+alternative,rock,live
+4:40
+Canada
+
+Rush
+A show of hands
+1989
+6
+Manhattan project
+alternative,rock,live
+5:00
+Canada
+
+Rush
+A show of hands
+1989
+7
+Mission
+alternative,rock,live
+5:44
+Canada
+
+Rush
+A show of hands
+1989
+8
+Distant early warning
+alternative,rock,live
+5:18
+Canada
+
+Rush
+A show of hands
+1989
+9
+Mystic rhythms
+alternative,rock,live
+5:32
+Canada
+
+Sam Brown
+Stop!
+1988
+1
+Walking back to me
+pop
+3:40
+England
+
+Sam Brown
+Stop!
+1988
+10
+I'll be in love
+pop
+5:16
+England
+
+Sam Brown
+Stop!
+1988
+11
+Merry go round
+pop
+3:07
+England
+
+Sam Brown
+Stop!
+1988
+12
+Sometimes
+pop
+3:05
+England
+
+Sam Brown
+Stop!
+1988
+13
+Can I get a witness
+pop
+2:59
+England
+
+Sam Brown
+Stop!
+1988
+14
+High as a kite
+pop
+3:24
+England
+
+Sam Brown
+Stop!
+1988
+15
+Nutbush city limits
+pop,cover
+4:25
+England
+
+Sam Brown
+Stop!
+1988
+2
+Your love is all
+pop
+4:09
+England
+
+Sam Brown
+Stop!
+1988
+3
+Stop
+pop
+4:53
+England
+
+Sam Brown
+Stop!
+1988
+4
+It makes me wonder
+pop
+4:33
+England
+
+Sam Brown
+Stop!
+1988
+5
+This feeling
+pop
+3:21
+England
+
+Sam Brown
+Stop!
+1988
+6
+Tea
+pop
+0:41
+England
+
+Sam Brown
+Stop!
+1988
+7
+Piece of my luck
+pop
+3:00
+England
+
+Sam Brown
+Stop!
+1988
+8
+Ball and chain
+pop
+4:34
+England
+
+Sam Brown
+Stop!
+1988
+9
+Wrap me up
+pop
+3:10
+England
+
+Samuel Barber
+Music of Samuel Barber
+1988
+1
+Overture to 'The school for Scandal' (Op.5)
+classic,symphonic
+8:19
+U.S.A.
+
+Samuel Barber
+Music of Samuel Barber
+1988
+2
+Adagio for strings (Op.11)
+classic,violins,tranquil
+8:56
+U.S.A.
+
+Samuel Barber
+Music of Samuel Barber
+1988
+3
+Essay for orchestra (Op.12)
+classic,symphonic
+9:10
+U.S.A.
+
+Samuel Barber
+Music of Samuel Barber
+1988
+4
+Second essay (Op.17)
+classic,symphonic
+10:49
+U.S.A.
+
+Samuel Barber
+Music of Samuel Barber
+1988
+5
+Third essay (Op.47)
+classic,symphonic
+12:02
+U.S.A.
+
+Samuel Barber
+Music of Samuel Barber
+1988
+6
+Medea's dance of vengeance (Op.23a)
+classic,symphonic,wild
+12:59
+U.S.A.
+
+Santana
+Best Of
+0
+1
+Black magic woman
+rock,latin,guitar hero
+3:29
+Mexico,U.S.A.
+
+Santana
+Best Of
+0
+10
+La puesta del sol
+rock,latin,instrumental,guitar hero
+4:24
+Mexico,U.S.A.
+
+Santana
+Best Of
+0
+11
+El corazón manda
+latin,instrumental,guitar hero
+3:37
+Mexico,U.S.A.
+
+Santana
+Best Of
+0
+12
+As the years go by
+blues,latin,guitar hero
+3:56
+Mexico,U.S.A.
+
+Santana
+Best Of
+0
+13
+Fried neckbone and some home fries
+rock,latin,guitar hero
+5:28
+Mexico,U.S.A.
+
+Santana
+Best Of
+0
+14
+Santana jam
+jazz,latin,instrumental,guitar hero
+5:46
+Mexico,U.S.A.
+
+Santana
+Best Of
+0
+15
+Everyday I have the blues
+rock,latin,guitar hero
+3:38
+Mexico,U.S.A.
+
+Santana
+Best Of
+0
+16
+Travellin' blues
+blues,latin,guitar hero
+4:46
+Mexico,U.S.A.
+
+Santana
+Best Of
+0
+2
+Samba pa ti
+rock,ballad,latin,instrumental,guitar hero
+4:19
+Mexico,U.S.A.
+
+Santana
+Best Of
+0
+3
+Soul sacrifice
+rock,latin,instrumental,guitar hero
+6:35
+Mexico,U.S.A.
+
+Santana
+Best Of
+0
+4
+Acapulco sunrise
+rock,latin,instrumental,guitar hero
+2:31
+Mexico,U.S.A.
+
+Santana
+Best Of
+0
+5
+Coconut grove
+rock,latin,instrumental,guitar hero
+2:25
+Mexico,U.S.A.
+
+Santana
+Best Of
+0
+6
+With a little help from my friends
+rock,latin,guitar hero
+4:06
+Mexico,U.S.A.
+
+Santana
+Best Of
+0
+7
+Let's get ourselves together
+rock,latin,instrumental,guitar hero
+2:07
+Mexico,U.S.A.
+
+Santana
+Best Of
+0
+8
+Jin-go-lo-ba (jingo)
+rock,latin,instrumental,guitar hero
+5:02
+Mexico,U.S.A.
+
+Santana
+Best Of
+0
+9
+Persuasion
+rock,latin,guitar hero
+5:06
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+1
+Jingo
+rock,latin,guitar hero
+4:22
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+10
+Guajira
+latin,guitar hero
+5:44
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+11
+La fuente del ritmo
+rock,latin,instrumental,guitar hero
+4:33
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+12
+In a silent way
+rock,latin,instrumental,guitar hero,live
+7:58
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+13
+Love, devotion and surrender
+rock,latin,guitar hero
+3:38
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+14
+Mirage
+rock,latin,guitar hero
+4:43
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+15
+Carnaval
+latin,guitar hero
+2:15
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+16
+Let the children play
+rock,latin,guitar hero
+3:28
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+17
+Jugando
+rock,latin,instrumental,guitar hero
+2:12
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+18
+She's not there
+rock,latin,guitar hero
+4:09
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+19
+Dance sister dance (baila mi hermana) (live)
+rock,latin,live,guitar hero
+8:00
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+2
+Evil ways
+rock,latin,guitar hero
+3:56
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+20
+Europa (Earth's cry heaven's smile)
+rock,latin,instrumental,ballad,guitar hero
+5:05
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+21
+Stormy
+latin,guitar hero
+4:47
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+22
+Well all right
+rock,latin,guitar hero
+4:09
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+23
+Open invitation
+rock,latin,guitar hero
+4:45
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+24
+Aqua marine
+latin,instrumental,tranquil,guitar hero
+5:35
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+25
+You know that I love you
+rock,latin,guitar hero
+3:57
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+26
+All I ever wanted
+rock,latin,guitar hero
+3:35
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+27
+Winning
+rock,latin,guitar hero
+3:29
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+28
+Hold on
+rock,latin,guitar hero
+4:36
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+29
+Nowhere to run
+rock,latin,guitar hero
+2:53
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+3
+Soul sacrifice
+rock,latin,instrumental,guitar hero
+6:36
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+30
+Say it again
+rock,latin,guitar hero
+3:28
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+31
+Veracruz
+rock,latin,guitar hero
+3:46
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+32
+Blues for Salvador
+rock,blues,latin,guitar hero,instrumental
+5:57
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+33
+The healer
+rock,latin,blues,guitar hero,instrumental
+5:38
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+4
+Black magic woman / gypsy queen
+rock,latin,guitar hero
+5:19
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+5
+Oye como va
+latin,guitar hero
+4:17
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+6
+Samba pa ti
+rock,latin,ballad,instrumental,guitar hero
+4:46
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+7
+Everybody's everything
+latin,guitar hero
+3:32
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+8
+No one to depend on
+latin,guitar hero
+5:24
+Mexico,U.S.A.
+
+Santana
+The essential Santana [Columbia]
+2002
+9
+Toussaint l'overture
+rock,latin,guitar hero,instrumental
+5:56
+Mexico,U.S.A.
+
+Serge Prokofiev
+Piano concertos 1-2-3
+1993
+1
+Piano concerto no. 1 Ii)
+classic,symphonic,piano
+3:39
+Russia
+
+Serge Prokofiev
+Piano concertos 1-2-3
+1993
+10
+Piano concerto no. 3 (ii)
+classic,symphonic,piano
+0:56
+Russia
+
+Serge Prokofiev
+Piano concertos 1-2-3
+1993
+11
+Piano concerto no. 3 (iii)
+classic,symphonic,piano
+1:01
+Russia
+
+Serge Prokofiev
+Piano concertos 1-2-3
+1993
+12
+Piano concerto no. 3 (iv)
+classic,symphonic,piano
+0:48
+Russia
+
+Serge Prokofiev
+Piano concertos 1-2-3
+1993
+13
+Piano concerto no. 3 (v)
+classic,symphonic,piano
+1:12
+Russia
+
+Serge Prokofiev
+Piano concertos 1-2-3
+1993
+14
+Piano concerto no. 3 (vi)
+classic,symphonic,piano
+2:24
+Russia
+
+Serge Prokofiev
+Piano concertos 1-2-3
+1993
+15
+Piano concerto no. 3 (vii)
+classic,symphonic,piano
+1:15
+Russia
+
+Serge Prokofiev
+Piano concertos 1-2-3
+1993
+16
+Piano concerto no. 3 (iix)
+classic,symphonic,piano
+1:37
+Russia
+
+Serge Prokofiev
+Piano concertos 1-2-3
+1993
+17
+Piano concerto no. 3 (ix)
+classic,symphonic,piano
+9:22
+Russia
+
+Serge Prokofiev
+Piano concertos 1-2-3
+1993
+2
+Piano concerto no. 1 Iii)
+classic,symphonic,piano
+3:15
+Russia
+
+Serge Prokofiev
+Piano concertos 1-2-3
+1993
+3
+Piano concerto no. 1 Iiii)
+classic,symphonic,piano
+3:49
+Russia
+
+Serge Prokofiev
+Piano concertos 1-2-3
+1993
+4
+Piano concerto no. 1 Iiv)
+classic,symphonic,piano
+4:24
+Russia
+
+Serge Prokofiev
+Piano concertos 1-2-3
+1993
+5
+Piano concerto no. 2 Ii)
+classic,symphonic,piano
+11:04
+Russia
+
+Serge Prokofiev
+Piano concertos 1-2-3
+1993
+6
+Piano concerto no. 2 Iii)
+classic,symphonic,piano
+2:29
+Russia
+
+Serge Prokofiev
+Piano concertos 1-2-3
+1993
+7
+Piano concerto no. 2 Iiii)
+classic,symphonic,piano
+6:20
+Russia
+
+Serge Prokofiev
+Piano concertos 1-2-3
+1993
+8
+Piano concerto no. 2 Iiv)
+classic,symphonic,piano
+10:50
+Russia
+
+Serge Prokofiev
+Piano concertos 1-2-3
+1993
+9
+Piano concerto no. 3 (i)
+classic,symphonic,piano
+8:58
+Russia
+
+Serge Prokofiev
+Piano concertos 4-5
+1993
+1
+Piano concerto no. 4 (i)
+classic,symphonic,piano
+4:20
+Russia
+
+Serge Prokofiev
+Piano concertos 4-5
+1993
+10
+Overture on Hebrew themes, for clarinet, string quartet and piano
+classic,symphonic
+10:26
+Russia
+
+Serge Prokofiev
+Piano concertos 4-5
+1993
+2
+Piano concerto no. 4 (ii)
+classic,symphonic,piano
+9:51
+Russia
+
+Serge Prokofiev
+Piano concertos 4-5
+1993
+3
+Piano concerto no. 4 (iii)
+classic,symphonic,piano
+7:26
+Russia
+
+Serge Prokofiev
+Piano concertos 4-5
+1993
+4
+Piano concerto no. 4 (iv)
+classic,symphonic,piano
+1:32
+Russia
+
+Serge Prokofiev
+Piano concertos 4-5
+1993
+5
+Piano concerto no. 5 (i)
+classic,symphonic,piano
+4:52
+Russia
+
+Serge Prokofiev
+Piano concertos 4-5
+1993
+6
+Piano concerto no. 5 (ii)
+classic,symphonic,piano
+3:47
+Russia
+
+Serge Prokofiev
+Piano concertos 4-5
+1993
+7
+Piano concerto no. 5 (iii)
+classic,symphonic,piano
+1:54
+Russia
+
+Serge Prokofiev
+Piano concertos 4-5
+1993
+8
+Piano concerto no. 5 (iv)
+classic,symphonic,piano
+7:06
+Russia
+
+Serge Prokofiev
+Piano concertos 4-5
+1993
+9
+Piano concerto no. 5 (v)
+classic,symphonic,piano
+5:08
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 1-2-3-4
+1993
+1
+Piano sonata no. 1
+classic,symphonic,piano
+7:02
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 1-2-3-4
+1993
+2
+Piano sonata no. 2 (i)
+classic,symphonic,piano
+6:20
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 1-2-3-4
+1993
+3
+Piano sonata no. 2 (ii)
+classic,symphonic,piano
+2:00
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 1-2-3-4
+1993
+4
+Piano sonata no. 2 (iii)
+classic,symphonic,piano
+5:12
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 1-2-3-4
+1993
+5
+Piano sonata no. 2 (iv)
+classic,symphonic,piano
+4:28
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 1-2-3-4
+1993
+6
+Piano sonata no. 3
+classic,symphonic,piano
+7:26
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 1-2-3-4
+1993
+7
+Piano sonata no. 4 (i)
+classic,symphonic,piano
+5:30
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 1-2-3-4
+1993
+8
+Piano sonata no. 4 (ii)
+classic,symphonic,piano
+7:04
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 1-2-3-4
+1993
+9
+Piano sonata no. 4 (iii)
+classic,symphonic,piano
+3:33
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 5-6-7
+1993
+1
+Piano sonata no. 5 (i)
+classic,symphonic,piano
+6:06
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 5-6-7
+1993
+10
+Piano sonata no. 7 (iii)
+classic,symphonic,piano
+3:18
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 5-6-7
+1993
+2
+Piano sonata no. 5 (ii)
+classic,symphonic,piano
+4:10
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 5-6-7
+1993
+3
+Piano sonata no. 5 (iii)
+classic,symphonic,piano
+5:41
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 5-6-7
+1993
+4
+Piano sonata no. 6 (i)
+classic,symphonic,piano
+8:57
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 5-6-7
+1993
+5
+Piano sonata no. 6 (ii)
+classic,symphonic,piano
+4:49
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 5-6-7
+1993
+6
+Piano sonata no. 6 (iii)
+classic,symphonic,piano
+7:33
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 5-6-7
+1993
+7
+Piano sonata no. 6 (iv)
+classic,symphonic,piano
+6:49
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 5-6-7
+1993
+8
+Piano sonata no. 7 (i)
+classic,symphonic,piano
+8:10
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 5-6-7
+1993
+9
+Piano sonata no. 7 (ii)
+classic,symphonic,piano
+6:55
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 8-9
+1993
+1
+Piano sonata no. 8 (i)
+classic,symphonic,piano
+14:31
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 8-9
+1993
+2
+Piano sonata no. 8 (ii)
+classic,symphonic,piano
+4:09
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 8-9
+1993
+3
+Piano sonata no. 8 (iii)
+classic,symphonic,piano
+10:17
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 8-9
+1993
+4
+Piano sonata no. 9 (i)
+classic,symphonic,piano
+7:26
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 8-9
+1993
+5
+Piano sonata no. 9 (ii)
+classic,symphonic,piano
+2:56
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 8-9
+1993
+6
+Piano sonata no. 9 (iii)
+classic,symphonic,piano
+7:36
+Russia
+
+Serge Prokofiev
+Piano sonatas nos. 8-9
+1993
+7
+Piano sonata no. 9 (iv)
+classic,symphonic,piano
+5:40
+Russia
+
+Sergey Prokofiev
+Symphonies No.1 "Classical" and 5
+1995
+1
+Symphony No.1 "Classical" - Allegro
+classic,symphonic
+4:48
+Russia
+
+Sergey Prokofiev
+Symphonies No.1 "Classical" and 5
+1995
+2
+Symphony No.1 "Classical" - Larghetto
+classic,symphonic
+4:41
+Russia
+
+Sergey Prokofiev
+Symphonies No.1 "Classical" and 5
+1995
+3
+Symphony No.1 "Classical" - Gavotta
+classic,symphonic
+3:33
+Russia
+
+Sergey Prokofiev
+Symphonies No.1 "Classical" and 5
+1995
+4
+Symphony No.1 "Classical" - Final: Molto vivace
+classic,symphonic
+4:23
+Russia
+
+Sergey Prokofiev
+Symphonies No.1 "Classical" and 5
+1995
+5
+Symphony No.5 - Andante
+classic,symphonic
+12:27
+Russia
+
+Sergey Prokofiev
+Symphonies No.1 "Classical" and 5
+1995
+6
+Symphony No.5 - Allegro marcato
+classic,symphonic
+8:38
+Russia
+
+Sergey Prokofiev
+Symphonies No.1 "Classical" and 5
+1995
+7
+Symphony No.5 - Adagio
+classic,symphonic
+10:55
+Russia
+
+Sergey Prokofiev
+Symphonies No.1 "Classical" and 5
+1995
+8
+Symphony No.5 - Allegro giocoso
+classic,symphonic
+9:31
+Russia
+
+Shadow gallery
+Digital ghosts
+2009
+1
+With honor
+progressive,metal
+9:58
+U.S.A.
+
+Shadow gallery
+Digital ghosts
+2009
+2
+Venom
+progressive,metal
+6:21
+U.S.A.
+
+Shadow gallery
+Digital ghosts
+2009
+3
+Pain
+progressive,metal
+6:21
+U.S.A.
+
+Shadow gallery
+Digital ghosts
+2009
+4
+Gold dust
+progressive,metal
+6:45
+U.S.A.
+
+Shadow gallery
+Digital ghosts
+2009
+5
+Strong
+progressive,metal
+6:49
+U.S.A.
+
+Shadow gallery
+Digital ghosts
+2009
+6
+Digital ghost
+progressive,metal
+9:36
+U.S.A.
+
+Shadow gallery
+Digital ghosts
+2009
+7
+Haunted
+progressive,metal
+9:36
+U.S.A.
+
+Sinéad o'Connor
+I do not want what I haven't got
+1989
+1
+Feel so different
+alternative,pop,tranquil
+6:47
+Ireland
+
+Sinéad o'Connor
+I do not want what I haven't got
+1989
+10
+I do not want what I haven't got
+alternative,pop,vocal
+5:47
+Ireland
+
+Sinéad o'Connor
+I do not want what I haven't got
+1989
+2
+I am stretched on your grave
+alternative,pop,electronica
+5:33
+Ireland
+
+Sinéad o'Connor
+I do not want what I haven't got
+1989
+3
+Three babies
+alternative,pop
+4:47
+Ireland
+
+Sinéad o'Connor
+I do not want what I haven't got
+1989
+4
+The emperor's new clothes
+alternative,pop
+5:16
+Ireland
+
+Sinéad o'Connor
+I do not want what I haven't got
+1989
+5
+Black boys on mopeds
+alternative,pop
+3:35
+Ireland
+
+Sinéad o'Connor
+I do not want what I haven't got
+1989
+6
+Nothing compares 2 u
+alternative,pop
+5:10
+Ireland
+
+Sinéad o'Connor
+I do not want what I haven't got
+1989
+7
+Jump in the river
+alternative,pop
+4:12
+Ireland
+
+Sinéad o'Connor
+I do not want what I haven't got
+1989
+8
+You cause as much sorrow
+alternative,pop
+5:06
+Ireland
+
+Sinéad o'Connor
+I do not want what I haven't got
+1989
+9
+The last day of our acquaintance
+alternative,pop,tranquil
+4:40
+Ireland
+
+Sinéad o'Connor
+The lion and the cobra
+1987
+1
+Jackie
+alternative,rock,debut album
+2:29
+Ireland
+
+Sinéad o'Connor
+The lion and the cobra
+1987
+2
+Mandinka
+alternative,rock,debut album
+3:46
+Ireland
+
+Sinéad o'Connor
+The lion and the cobra
+1987
+3
+Jerusalem
+alternative,rock,debut album
+4:20
+Ireland
+
+Sinéad o'Connor
+The lion and the cobra
+1987
+4
+Just like u said it would b
+alternative,rock,debut album
+4:32
+Ireland
+
+Sinéad o'Connor
+The lion and the cobra
+1987
+5
+Never get old
+alternative,rock,debut album
+4:36
+Ireland
+
+Sinéad o'Connor
+The lion and the cobra
+1987
+6
+Troy
+alternative,rock,debut album
+6:32
+Ireland
+
+Sinéad o'Connor
+The lion and the cobra
+1987
+7
+I want your (hands on me)
+alternative,rock,debut album
+4:38
+Ireland
+
+Sinéad o'Connor
+The lion and the cobra
+1987
+8
+Drink before the war
+alternative,rock,debut album
+5:20
+Ireland
+
+Sinéad o'Connor
+The lion and the cobra
+1987
+9
+Just call me Joe
+alternative,rock,live,debut album
+5:53
+Ireland
+
+Skin
+Fleshwounds
+2003
+1
+Faithfulness
+rock,alternative,debut album
+4:03
+England
+
+Skin
+Fleshwounds
+2003
+10
+Burnt like you
+rock,alternative,tranquil,debut album
+2:24
+England
+
+Skin
+Fleshwounds
+2003
+11
+'Til morning
+rock,alternative,tranquil,debut album
+4:48
+England
+
+Skin
+Fleshwounds
+2003
+2
+Trashed
+rock,alternative,debut album
+4:23
+England
+
+Skin
+Fleshwounds
+2003
+3
+Don't let me down
+rock,alternative,tranquil,debut album
+3:30
+England
+
+Skin
+Fleshwounds
+2003
+4
+Listen to yourself
+rock,alternative,debut album
+4:46
+England
+
+Skin
+Fleshwounds
+2003
+5
+Lost
+rock,alternative,debut album
+4:11
+England
+
+Skin
+Fleshwounds
+2003
+6
+The trouble with me
+rock,alternative,tranquil,debut album
+3:34
+England
+
+Skin
+Fleshwounds
+2003
+7
+I'll try
+rock,alternative,debut album
+3:54
+England
+
+Skin
+Fleshwounds
+2003
+8
+You've made your bed
+rock,alternative,tranquil,debut album
+3:55
+England
+
+Skin
+Fleshwounds
+2003
+9
+As long as that's true
+rock,alternative,debut album
+4:10
+England
+
+Skunk Anansie
+Post orgasmic chill
+1999
+1
+Charlie big potato
+alternative,rock
+6:21
+England
+
+Skunk Anansie
+Post orgasmic chill
+1999
+10
+You'll follow me down
+alternative,rock
+4:02
+England
+
+Skunk Anansie
+Post orgasmic chill
+1999
+11
+And this is nothing that I thought I had
+alternative,rock
+3:03
+England
+
+Skunk Anansie
+Post orgasmic chill
+1999
+12
+I'm not afraid
+alternative,rock,ballad
+4:48
+England
+
+Skunk Anansie
+Post orgasmic chill
+1999
+2
+On my hotel t.v.
+alternative,rock,punk
+3:34
+England
+
+Skunk Anansie
+Post orgasmic chill
+1999
+3
+We don't need who you think you are
+alternative,rock
+4:19
+England
+
+Skunk Anansie
+Post orgasmic chill
+1999
+4
+Tracy's flaw
+alternative,rock
+4:30
+England
+
+Skunk Anansie
+Post orgasmic chill
+1999
+5
+The skank heads
+alternative,rock
+3:10
+England
+
+Skunk Anansie
+Post orgasmic chill
+1999
+6
+Lately
+alternative,rock
+3:53
+England
+
+Skunk Anansie
+Post orgasmic chill
+1999
+7
+Secretly
+alternative,rock
+4:46
+England
+
+Skunk Anansie
+Post orgasmic chill
+1999
+8
+Good things don't always come to you
+alternative,rock
+5:25
+England
+
+Skunk Anansie
+Post orgasmic chill
+1999
+9
+Cheap honesty
+alternative,rock
+3:47
+England
+
+Sleepytime gorilla museum
+Grand opening and closing
+2001
+1
+Sleep is wrong
+experimental,chaotic,debut album
+6:36
+U.S.A.
+
+Sleepytime gorilla museum
+Grand opening and closing
+2001
+10
+More time
+experimental,chaotic,debut album
+2:48
+U.S.A.
+
+Sleepytime gorilla museum
+Grand opening and closing
+2001
+11
+Flinch
+experimental,chaotic,debut album
+5:24
+U.S.A.
+
+Sleepytime gorilla museum
+Grand opening and closing
+2001
+12
+Powerless (live 01/06/06)
+experimental,chaotic,live,debut album
+9:42
+U.S.A.
+
+Sleepytime gorilla museum
+Grand opening and closing
+2001
+2
+Ambugaton
+experimental,chaotic,instrumental,debut album
+5:38
+U.S.A.
+
+Sleepytime gorilla museum
+Grand opening and closing
+2001
+3
+Ablutions
+experimental,chaotic,debut album
+6:12
+U.S.A.
+
+Sleepytime gorilla museum
+Grand opening and closing
+2001
+4
+1997 (tonight we're gonna party like it's...)
+experimental,chaotic,rock,debut album
+4:56
+U.S.A.
+
+Sleepytime gorilla museum
+Grand opening and closing
+2001
+5
+The miniature
+experimental,chaotic,instrumental,debut album
+1:04
+U.S.A.
+
+Sleepytime gorilla museum
+Grand opening and closing
+2001
+6
+Powerless
+experimental,chaotic,debut album
+9:32
+U.S.A.
+
+Sleepytime gorilla museum
+Grand opening and closing
+2001
+7
+The stain
+experimental,chaotic,debut album
+6:46
+U.S.A.
+
+Sleepytime gorilla museum
+Grand opening and closing
+2001
+8
+Sleepytime
+experimental,chaotic,debut album
+10:28
+U.S.A.
+
+Sleepytime gorilla museum
+Grand opening and closing
+2001
+9
+Sunflower
+experimental,chaotic,instrumental,tranquil,debut album
+7:52
+U.S.A.
+
+Smashing Pumpkins
+Gish
+1991
+1
+I am one
+alternative,rock,grunge,debut album
+4:07
+U.S.A.
+
+Smashing Pumpkins
+Gish
+1991
+10
+Daydream
+alternative,pop,tranquil,debut album
+3:08
+U.S.A.
+
+Smashing Pumpkins
+Gish
+1991
+2
+Siva
+alternative,rock,grunge,debut album
+4:23
+U.S.A.
+
+Smashing Pumpkins
+Gish
+1991
+3
+Rhinoceros
+alternative,rock,grunge,debut album
+6:30
+U.S.A.
+
+Smashing Pumpkins
+Gish
+1991
+4
+Bury me
+alternative,rock,grunge,debut album
+4:49
+U.S.A.
+
+Smashing Pumpkins
+Gish
+1991
+5
+Crush
+alternative,rock,grunge,debut album
+3:35
+U.S.A.
+
+Smashing Pumpkins
+Gish
+1991
+6
+Suffer
+alternative,rock,tranquil,debut album
+5:11
+U.S.A.
+
+Smashing Pumpkins
+Gish
+1991
+7
+Snail
+alternative,rock,grunge,debut album
+5:11
+U.S.A.
+
+Smashing Pumpkins
+Gish
+1991
+8
+Tristessa
+alternative,rock,grunge,debut album
+3:33
+U.S.A.
+
+Smashing Pumpkins
+Gish
+1991
+9
+Window paine
+alternative,rock,grunge,debut album
+5:52
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+1
+Mellon Collie and the infinite sadness
+instrumental,tranquil
+2:52
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+10
+Cupid de Locke
+alternative,rock
+2:50
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+11
+Galapagos
+alternative,rock
+4:47
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+12
+Muzzle
+alternative,rock,grunge
+3:44
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+13
+Porcelina of the vast oceans
+alternative,rock,grunge
+9:21
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+14
+Take me down
+alternative,rock,grunge
+2:53
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+15
+Where boys fear to tread
+alternative,rock,grunge
+4:23
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+16
+Bodies
+alternative,rock,grunge
+4:12
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+17
+Thirty-three
+alternative,tranquil
+4:10
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+18
+In the arms of sleep
+alternative,rock,tranquil
+4:13
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+19
+1979
+alternative,rock,grunge
+4:26
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+2
+Tonight: tonight
+alternative,rock,grunge
+4:14
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+20
+Tales of a scorched earth
+alternative,rock,grunge
+3:46
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+21
+Thru the eyes of Ruby
+alternative,rock,grunge
+7:38
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+22
+Stumbleine
+alternative,tranquil
+2:55
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+23
+X.Y.U.
+alternative,rock,grunge
+7:07
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+24
+We only come out at night
+alternative,rock,grunge
+4:05
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+25
+Beautiful
+alternative,pop
+4:19
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+26
+Lily (my one and only)
+alternative,pop
+3:31
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+27
+By starlight
+alternative,rock,grunge
+4:49
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+28
+Farewell and goodnight
+alternative,rock,tranquil
+4:23
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+3
+Jellybelly
+alternative,rock,grunge
+3:02
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+4
+Zero
+alternative,rock,grunge
+2:40
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+5
+Here is no why
+alternative,rock,grunge
+3:45
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+6
+Bullet with butterfly wings
+alternative,rock,grunge
+4:18
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+7
+To forgive
+alternative,rock,grunge
+4:17
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+8
+Fuck you (an ode to no one)
+alternative,rock,grunge
+4:51
+U.S.A.
+
+Smashing Pumpkins
+Mellon Collie and the infinite sadness
+1995
+9
+Love
+alternative,rock,grunge
+4:21
+U.S.A.
+
+Smashing Pumpkins
+Pisces Iscariot
+1994
+1
+Soothe
+alternative,rock,tranquil
+2:36
+U.S.A.
+
+Smashing Pumpkins
+Pisces Iscariot
+1994
+10
+Starla
+alternative,rock,grunge
+11:01
+U.S.A.
+
+Smashing Pumpkins
+Pisces Iscariot
+1994
+11
+Blue
+alternative,rock,grunge
+3:20
+U.S.A.
+
+Smashing Pumpkins
+Pisces Iscariot
+1994
+12
+Girl named Sandoz
+alternative,rock,grunge
+3:35
+U.S.A.
+
+Smashing Pumpkins
+Pisces Iscariot
+1994
+13
+La dolly vita
+alternative,rock,grunge
+4:16
+U.S.A.
+
+Smashing Pumpkins
+Pisces Iscariot
+1994
+14
+Spaced
+alternative,tranquil,voice
+2:25
+U.S.A.
+
+Smashing Pumpkins
+Pisces Iscariot
+1994
+2
+Frail and bedazzled
+alternative,rock,grunge
+3:17
+U.S.A.
+
+Smashing Pumpkins
+Pisces Iscariot
+1994
+3
+Plume
+alternative,rock,grunge
+3:38
+U.S.A.
+
+Smashing Pumpkins
+Pisces Iscariot
+1994
+4
+Whir
+alternative,pop
+4:10
+U.S.A.
+
+Smashing Pumpkins
+Pisces Iscariot
+1994
+5
+Blew away
+alternative,pop
+3:32
+U.S.A.
+
+Smashing Pumpkins
+Pisces Iscariot
+1994
+6
+Pissant
+alternative,rock,grunge
+2:31
+U.S.A.
+
+Smashing Pumpkins
+Pisces Iscariot
+1994
+7
+Hello kitty kat
+alternative,rock,grunge
+4:33
+U.S.A.
+
+Smashing Pumpkins
+Pisces Iscariot
+1994
+8
+Obscured
+alternative,rock,grunge
+5:21
+U.S.A.
+
+Smashing Pumpkins
+Pisces Iscariot
+1994
+9
+Landslide
+alternative,tranquil
+3:11
+U.S.A.
+
+Smashing Pumpkins
+Siamese dream
+1993
+1
+Cherub rock
+alternative,rock,grunge
+4:57
+U.S.A.
+
+Smashing Pumpkins
+Siamese dream
+1993
+10
+Spaceboy
+alternative,rock,grunge
+4:28
+U.S.A.
+
+Smashing Pumpkins
+Siamese dream
+1993
+11
+Silverfuck
+alternative,rock,grunge
+8:44
+U.S.A.
+
+Smashing Pumpkins
+Siamese dream
+1993
+12
+Sweet sweet
+alternative,rock
+1:38
+U.S.A.
+
+Smashing Pumpkins
+Siamese dream
+1993
+13
+Luna
+alternative,rock,tranquil
+3:21
+U.S.A.
+
+Smashing Pumpkins
+Siamese dream
+1993
+2
+Quiet
+alternative,rock,grunge
+3:43
+U.S.A.
+
+Smashing Pumpkins
+Siamese dream
+1993
+3
+Today
+alternative,rock,grunge
+3:20
+U.S.A.
+
+Smashing Pumpkins
+Siamese dream
+1993
+4
+Hummer
+alternative,rock,grunge
+6:57
+U.S.A.
+
+Smashing Pumpkins
+Siamese dream
+1993
+5
+Rocket
+alternative,rock,grunge
+4:06
+U.S.A.
+
+Smashing Pumpkins
+Siamese dream
+1993
+6
+Disarm
+alternative,rock,grunge
+3:18
+U.S.A.
+
+Smashing Pumpkins
+Siamese dream
+1993
+7
+Soma
+alternative,rock,grunge
+6:40
+U.S.A.
+
+Smashing Pumpkins
+Siamese dream
+1993
+8
+Geek U.S.A.
+alternative,rock,grunge
+5:13
+U.S.A.
+
+Smashing Pumpkins
+Siamese dream
+1993
+9
+Mayonaise
+alternative,rock,grunge
+5:50
+U.S.A.
+
+Snow patrol
+Eyes open
+2006
+1
+You're all I have
+alternative,rock
+4:33
+Northern Ireland
+
+Snow patrol
+Eyes open
+2006
+10
+Open your eyes
+alternative,rock
+5:41
+Northern Ireland
+
+Snow patrol
+Eyes open
+2006
+11
+The finish line
+alternative,rock
+3:28
+Northern Ireland
+
+Snow patrol
+Eyes open
+2006
+2
+Hands open
+alternative,rock
+3:17
+Northern Ireland
+
+Snow patrol
+Eyes open
+2006
+3
+Chasing cars
+alternative,rock
+4:27
+Northern Ireland
+
+Snow patrol
+Eyes open
+2006
+4
+Shut your eyes
+alternative,rock
+3:17
+Northern Ireland
+
+Snow patrol
+Eyes open
+2006
+5
+It's beginning to get to me
+alternative,rock
+4:35
+Northern Ireland
+
+Snow patrol
+Eyes open
+2006
+6
+You could be happy
+alternative,rock
+3:02
+Northern Ireland
+
+Snow patrol
+Eyes open
+2006
+7
+Make this go on forever
+alternative,rock
+5:47
+Northern Ireland
+
+Snow patrol
+Eyes open
+2006
+8
+Set the fire to the third bar
+alternative,rock
+3:23
+Northern Ireland
+
+Snow patrol
+Eyes open
+2006
+9
+Headlights on dark roads
+alternative,rock
+3:30
+Northern Ireland
+
+Soulsavers
+The Light The Dead See
+2012
+1
+La Ribera
+alternative,electronica,instrumental
+1:51
+England
+
+Soulsavers
+The Light The Dead See
+2012
+10
+I can't stay
+alternative,electronica
+5:02
+England
+
+Soulsavers
+The Light The Dead See
+2012
+11
+Take
+alternative,electronica
+3:44
+England
+
+Soulsavers
+The Light The Dead See
+2012
+12
+Tonight
+alternative,electronica
+3:58
+England
+
+Soulsavers
+The Light The Dead See
+2012
+2
+In the morning
+alternative,electronica
+3:33
+England
+
+Soulsavers
+The Light The Dead See
+2012
+3
+Longest day
+alternative,electronica
+4:13
+England
+
+Soulsavers
+The Light The Dead See
+2012
+4
+Presence of God
+alternative,electronica
+3:44
+England
+
+Soulsavers
+The Light The Dead See
+2012
+5
+Just try
+alternative,electronica
+4:02
+England
+
+Soulsavers
+The Light The Dead See
+2012
+6
+Gone too far
+alternative,electronica
+3:11
+England
+
+Soulsavers
+The Light The Dead See
+2012
+7
+Point sur Pt.1
+alternative,electronica
+1:40
+England
+
+Soulsavers
+The Light The Dead See
+2012
+8
+Take me back home
+alternative,electronica
+4:05
+England
+
+Soulsavers
+The Light The Dead See
+2012
+9
+Bitterman
+alternative,electronica
+4:50
+England
+
+Spyro Gyra
+Morning dance
+1979
+1
+Morning dance
+jazz,instrumental
+3:57
+U.S.A.
+
+Spyro Gyra
+Morning dance
+1979
+2
+Jubilee
+jazz,instrumental
+4:31
+U.S.A.
+
+Spyro Gyra
+Morning dance
+1979
+3
+Rasul
+jazz,instrumental
+3:17
+U.S.A.
+
+Spyro Gyra
+Morning dance
+1979
+4
+Song for Lorraine
+jazz,instrumental
+3:59
+U.S.A.
+
+Spyro Gyra
+Morning dance
+1979
+5
+Starburst
+jazz,instrumental
+5:08
+U.S.A.
+
+Spyro Gyra
+Morning dance
+1979
+6
+Heliopolis
+jazz,instrumental
+5:34
+U.S.A.
+
+Spyro Gyra
+Morning dance
+1979
+7
+It doesn't matter
+jazz,instrumental
+4:30
+U.S.A.
+
+Spyro Gyra
+Morning dance
+1979
+8
+Little Linda
+jazz,instrumental
+4:27
+U.S.A.
+
+Spyro Gyra
+Morning dance
+1979
+9
+End of romanticism
+jazz,instrumental
+5:20
+U.S.A.
+
+St. Germain
+Tourist
+2000
+1
+Rose rouge
+jazz,electronica,latin
+7:02
+France
+
+St. Germain
+Tourist
+2000
+2
+Montego bay spleen
+jazz,electronica,latin,instrumental
+5:41
+France
+
+St. Germain
+Tourist
+2000
+3
+So flute
+jazz,electronica,latin,instrumental
+8:29
+France
+
+St. Germain
+Tourist
+2000
+4
+Land of...
+jazz,electronica,latin,instrumental
+7:50
+France
+
+St. Germain
+Tourist
+2000
+5
+Latin note
+jazz,electronica,latin,instrumental
+5:57
+France
+
+St. Germain
+Tourist
+2000
+6
+Sure thing
+blues,electronica,latin
+6:22
+France
+
+St. Germain
+Tourist
+2000
+7
+Pont des arts
+jazz,electronica,latin,instrumental
+7:25
+France
+
+St. Germain
+Tourist
+2000
+8
+La goutte d'or
+jazz,electronica,latin,instrumental
+6:17
+France
+
+St. Germain
+Tourist
+2000
+9
+What you think about...
+jazz,electronica,latin,instrumental
+4:48
+France
+
+Stabbing westward
+Ungod
+1994
+1
+Lost
+metal,industrial,doom,debut album
+3:21
+U.S.A.
+
+Stabbing westward
+Ungod
+1994
+10
+Can't happen here
+metal,industrial,doom,debut album
+8:09
+U.S.A.
+
+Stabbing westward
+Ungod
+1994
+2
+Control
+metal,industrial,doom,heavy,debut album
+3:39
+U.S.A.
+
+Stabbing westward
+Ungod
+1994
+3
+Nothing
+metal,industrial,doom,heavy,debut album
+4:50
+U.S.A.
+
+Stabbing westward
+Ungod
+1994
+4
+ACF
+metal,industrial,doom,debut album
+4:43
+U.S.A.
+
+Stabbing westward
+Ungod
+1994
+5
+Lies
+metal,industrial,doom,heavy,debut album
+4:44
+U.S.A.
+
+Stabbing westward
+Ungod
+1994
+6
+Ungod
+metal,industrial,doom,heavy,debut album
+7:43
+U.S.A.
+
+Stabbing westward
+Ungod
+1994
+7
+Throw
+metal,industrial,doom,heavy,debut album
+5:24
+U.S.A.
+
+Stabbing westward
+Ungod
+1994
+8
+Violent mood swings
+metal,industrial,doom,heavy,debut album
+5:10
+U.S.A.
+
+Stabbing westward
+Ungod
+1994
+9
+Red on white
+metal,industrial,doom,debut album
+5:20
+U.S.A.
+
+Star one
+Victims of the modern age
+2010
+1
+Down the rabbit hole
+progressive,metal,instrumental
+1:20
+Netherlands
+
+Star one
+Victims of the modern age
+2010
+10
+As the crow dies
+progressive,metal
+4:42
+Netherlands
+
+Star one
+Victims of the modern age
+2010
+11
+Two plus two equals five
+progressive,metal
+5:04
+Netherlands
+
+Star one
+Victims of the modern age
+2010
+12
+Lastday
+progressive,metal
+4:46
+Netherlands
+
+Star one
+Victims of the modern age
+2010
+13
+Closer to the stars
+progressive,metal
+5:11
+Netherlands
+
+Star one
+Victims of the modern age
+2010
+14
+Knife edge
+progressive,metal
+4:25
+Netherlands
+
+Star one
+Victims of the modern age
+2010
+2
+Digital rain
+progressive,metal,heavy
+6:23
+Netherlands
+
+Star one
+Victims of the modern age
+2010
+3
+Earth that was
+progressive,metal,heavy
+6:08
+Netherlands
+
+Star one
+Victims of the modern age
+2010
+4
+Victim of the modern age
+progressive,metal
+6:27
+Netherlands
+
+Star one
+Victims of the modern age
+2010
+5
+Human see, human do
+progressive,metal,heavy
+5:14
+Netherlands
+
+Star one
+Victims of the modern age
+2010
+6
+24 Hours
+progressive,metal,heavy
+7:20
+Netherlands
+
+Star one
+Victims of the modern age
+2010
+7
+Cassandra complex
+progressive,metal,heavy
+5:24
+Netherlands
+
+Star one
+Victims of the modern age
+2010
+8
+It's alive, she's alive, we're alive
+progressive,metal,heavy
+5:07
+Netherlands
+
+Star one
+Victims of the modern age
+2010
+9
+It all ends here
+progressive,metal
+9:46
+Netherlands
+
+Steve Hunter
+The deacon
+1988
+1
+The idler
+blues,rock,guitar,guitar hero
+4:41
+U.S.A.
+
+Steve Hunter
+The deacon
+1988
+10
+The surge
+blues,rock,guitar,guitar hero
+5:11
+U.S.A.
+
+Steve Hunter
+The deacon
+1988
+2
+Black cat moan
+blues,rock,guitar,guitar hero
+3:52
+U.S.A.
+
+Steve Hunter
+The deacon
+1988
+3
+Glidepath
+blues,rock,guitar,guitar hero
+2:13
+U.S.A.
+
+Steve Hunter
+The deacon
+1988
+4
+Hidden portrait
+blues,rock,guitar,guitar hero
+3:10
+U.S.A.
+
+Steve Hunter
+The deacon
+1988
+5
+The old man in the boat
+blues,rock,guitar,guitar hero
+3:29
+U.S.A.
+
+Steve Hunter
+The deacon
+1988
+6
+Ghost riders
+blues,rock,guitar,guitar hero
+3:24
+U.S.A.
+
+Steve Hunter
+The deacon
+1988
+7
+Koza
+blues,rock,guitar,guitar hero
+1:00
+U.S.A.
+
+Steve Hunter
+The deacon
+1988
+8
+Road to Jakarta
+blues,rock,guitar,guitar hero
+4:32
+U.S.A.
+
+Steve Hunter
+The deacon
+1988
+9
+Pig jam (Op.#2 in E Major)
+blues,rock,guitar,guitar hero
+3:14
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+1
+Liberty
+metal,guitar,experimental,guitar hero
+2:03
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+10
+Ya-yo gakk
+metal,guitar,experimental,guitar hero
+2:52
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+11
+Blue powder
+metal,guitar,experimental,guitar hero,ballad
+4:43
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+12
+Bad horsie
+metal,guitar,experimental,rock,guitar hero
+5:51
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+13
+Tender surrender
+metal,guitar,experimental,guitar hero,instrumental
+5:03
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+14
+All about Eve
+metal,guitar,guitar hero
+4:38
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+15
+Dyin' day
+metal,guitar,guitar hero
+4:29
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+16
+The blood & tears
+metal,guitar,experimental,indian,guitar hero
+4:23
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+17
+The silent within
+metal,guitar,experimental,guitar hero
+5:00
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+18
+Feathers
+metal,guitar,tranquil,guitar hero
+5:11
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+19
+Frank
+metal,guitar,rock,guitar hero,instrumental
+5:09
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+2
+Die to live
+metal,guitar,experimental,guitar hero,instrumental
+3:52
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+20
+Boston rain melody
+metal,guitar,experimental,instrumental,guitar hero
+4:39
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+21
+Kittens got claws
+metal,guitar,rock
+4:59
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+22
+Lighter shade of green
+metal,guitar,experimental,instrumental,guitar hero
+0:46
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+23
+Giant balls of gold
+metal,guitar,experimental,guitar hero,live,instrumental
+4:44
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+24
+Whispering a prayer
+metal,guitar,ballad,instrumental,live
+8:46
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+25
+Jibboom
+metal,guitar,rock,instrumental,guitar hero
+3:46
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+26
+Windows to the soul
+metal,guitar,experimental,guitar hero,voice
+6:25
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+27
+Brandos costumes (gentle ways)
+metal,guitar,experimental,guitar hero,instrumental,tranquil
+6:05
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+28
+The reaper
+metal,guitar,heavy,instrumental,guitar hero
+3:25
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+29
+Christmas time is here
+metal,guitar,instrumental,ballad
+4:22
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+3
+The attitude song
+metal,guitar,experimental,guitar hero,instrumental
+3:22
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+30
+Essence
+metal,guitar,experimental,instrumental,guitar hero
+5:50
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+31
+Rescue me or bury me
+metal,guitar,guitar hero
+8:22
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+32
+Burnin' down the mountain
+metal,guitar,instrumental,guitar hero
+4:22
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+4
+Salamanders in the sun
+metal,guitar,experimental,instrumental,guitar hero
+2:25
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+5
+The animal
+metal,guitar,heavy,instrumental,guitar hero
+4:01
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+6
+The riddle
+metal,guitar,experimental,guitar hero,voice
+6:25
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+7
+For the love of god
+metal,guitar,ballad,guitar hero,instrumental
+6:02
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+8
+Bangkok
+metal,guitar,experimental,instrumental,guitar hero
+2:46
+U.S.A.
+
+Steve Vai
+The infinite Steve Vai - an anthology
+2003
+9
+Fire garden suite: bull whip, Pusa road, Angel food, Taurus bulba
+metal,guitar,experimental,instrumental,guitar hero
+9:55
+U.S.A.
+
+Sting
+Nothing like the sun
+1987
+1
+The Lazarus heart
+pop
+4:34
+England
+
+Sting
+Nothing like the sun
+1987
+10
+Sister moon
+pop
+3:46
+England
+
+Sting
+Nothing like the sun
+1987
+11
+Little wing
+pop
+5:04
+England
+
+Sting
+Nothing like the sun
+1987
+12
+The secret marriage
+pop,tranquil
+2:03
+England
+
+Sting
+Nothing like the sun
+1987
+2
+Be still my beating heart
+pop
+5:32
+England
+
+Sting
+Nothing like the sun
+1987
+3
+Englishman in New York
+pop
+4:25
+England
+
+Sting
+Nothing like the sun
+1987
+4
+History will teach us nothing
+pop,gloomy
+4:58
+England
+
+Sting
+Nothing like the sun
+1987
+5
+They dance alone (gueca solo)
+pop,tranquil
+7:16
+England
+
+Sting
+Nothing like the sun
+1987
+6
+Fragile
+pop,tranquil
+3:54
+England
+
+Sting
+Nothing like the sun
+1987
+7
+We'll be together
+pop
+4:52
+England
+
+Sting
+Nothing like the sun
+1987
+8
+Straight to my heart
+pop
+3:54
+England
+
+Sting
+Nothing like the sun
+1987
+9
+Rock steady
+pop
+4:27
+England
+
+Sting
+The dream of the blue turtles
+1985
+1
+If you love somebody set them free
+pop,debut album
+4:14
+England
+
+Sting
+The dream of the blue turtles
+1985
+10
+Fortress around your heart
+pop,debut album
+4:48
+England
+
+Sting
+The dream of the blue turtles
+1985
+2
+Love is the seventh wave
+pop,debut album
+3:30
+England
+
+Sting
+The dream of the blue turtles
+1985
+3
+Russians
+pop,debut album
+3:57
+England
+
+Sting
+The dream of the blue turtles
+1985
+4
+Children's crusade
+pop,debut album
+5:00
+England
+
+Sting
+The dream of the blue turtles
+1985
+5
+Shadows in the rain
+blues,pop,debut album
+4:56
+England
+
+Sting
+The dream of the blue turtles
+1985
+6
+We work the black seam
+pop,debut album
+5:40
+England
+
+Sting
+The dream of the blue turtles
+1985
+7
+Consider me gone
+pop,debut album
+4:21
+England
+
+Sting
+The dream of the blue turtles
+1985
+8
+The dream of the blue turtles
+pop,instrumental,debut album
+1:15
+England
+
+Sting
+The dream of the blue turtles
+1985
+9
+Moon over Bourbon street
+blues,debut album
+3:59
+England
+
+Supertramp
+The very best of Supertramp
+1990
+1
+School
+pop
+5:35
+England
+
+Supertramp
+The very best of Supertramp
+1990
+10
+Ain't nobody but me
+pop
+5:10
+England
+
+Supertramp
+The very best of Supertramp
+1990
+11
+Hide in your shell
+pop
+6:52
+England
+
+Supertramp
+The very best of Supertramp
+1990
+12
+From now on
+pop
+6:19
+England
+
+Supertramp
+The very best of Supertramp
+1990
+13
+Give a little bit
+pop
+4:03
+England
+
+Supertramp
+The very best of Supertramp
+1990
+14
+It's raining again
+pop
+4:25
+England
+
+Supertramp
+The very best of Supertramp
+1990
+15
+Cannonball
+pop
+7:38
+England
+
+Supertramp
+The very best of Supertramp
+1990
+2
+Goodbye stranger
+pop
+5:48
+England
+
+Supertramp
+The very best of Supertramp
+1990
+3
+The logical song
+pop
+4:09
+England
+
+Supertramp
+The very best of Supertramp
+1990
+4
+Bloody well right
+pop
+4:31
+England
+
+Supertramp
+The very best of Supertramp
+1990
+5
+Breakfast in America
+pop
+2:37
+England
+
+Supertramp
+The very best of Supertramp
+1990
+6
+Rudy
+pop
+7:18
+England
+
+Supertramp
+The very best of Supertramp
+1990
+7
+Take the long way home
+pop
+5:06
+England
+
+Supertramp
+The very best of Supertramp
+1990
+8
+Crime of the century
+pop
+5:32
+England
+
+Supertramp
+The very best of Supertramp
+1990
+9
+Dreamer
+pop
+3:30
+England
+
+Suzanne Vega
+99.9F°
+1992
+1
+Rock in this pocket (song of David)
+pop
+3:31
+U.S.A.
+
+Suzanne Vega
+99.9F°
+1992
+10
+When heroes go down
+pop
+1:54
+U.S.A.
+
+Suzanne Vega
+99.9F°
+1992
+11
+As girls go
+pop
+3:26
+U.S.A.
+
+Suzanne Vega
+99.9F°
+1992
+12
+Song of sand
+pop,tranquil
+3:05
+U.S.A.
+
+Suzanne Vega
+99.9F°
+1992
+13
+Private goes public
+pop,gloomy
+1:56
+U.S.A.
+
+Suzanne Vega
+99.9F°
+1992
+2
+Blood makes noise
+pop
+2:28
+U.S.A.
+
+Suzanne Vega
+99.9F°
+1992
+3
+In Liverpool
+pop
+4:41
+U.S.A.
+
+Suzanne Vega
+99.9F°
+1992
+4
+99.9F°
+pop,gloomy
+3:15
+U.S.A.
+
+Suzanne Vega
+99.9F°
+1992
+5
+Blood sings
+pop
+3:18
+U.S.A.
+
+Suzanne Vega
+99.9F°
+1992
+6
+Fat man & dancing girl
+pop
+2:18
+U.S.A.
+
+Suzanne Vega
+99.9F°
+1992
+7
+(If you were) in my movie
+pop
+3:06
+U.S.A.
+
+Suzanne Vega
+99.9F°
+1992
+8
+As a child
+pop
+2:56
+U.S.A.
+
+Suzanne Vega
+99.9F°
+1992
+9
+Bad wisdom
+pop,gloomy
+3:22
+U.S.A.
+
+Suzanne Vega
+Solitude standing
+1987
+1
+Tom's diner
+pop,vocal
+2:09
+U.S.A.
+
+Suzanne Vega
+Solitude standing
+1987
+10
+Wooden horse (Caspar Hauser's song)
+pop,gloomy
+5:13
+U.S.A.
+
+Suzanne Vega
+Solitude standing
+1987
+11
+Tom's diner (reprise)
+pop,instrumental
+2:40
+U.S.A.
+
+Suzanne Vega
+Solitude standing
+1987
+2
+Luka
+pop
+3:52
+U.S.A.
+
+Suzanne Vega
+Solitude standing
+1987
+3
+Ironbound/fancy poultry
+pop
+6:19
+U.S.A.
+
+Suzanne Vega
+Solitude standing
+1987
+4
+In the eye
+pop
+4:16
+U.S.A.
+
+Suzanne Vega
+Solitude standing
+1987
+5
+Night vision
+pop,tranquil
+2:47
+U.S.A.
+
+Suzanne Vega
+Solitude standing
+1987
+6
+Solitude standing
+pop,gloomy
+4:49
+U.S.A.
+
+Suzanne Vega
+Solitude standing
+1987
+7
+Calypso
+pop,tranquil
+4:14
+U.S.A.
+
+Suzanne Vega
+Solitude standing
+1987
+8
+Language
+pop,tranquil
+3:57
+U.S.A.
+
+Suzanne Vega
+Solitude standing
+1987
+9
+Gypsy
+pop
+4:04
+U.S.A.
+
+Suzanne Vega
+Suzanne Vega
+1985
+1
+Cracking
+pop,debut album
+2:49
+U.S.A.
+
+Suzanne Vega
+Suzanne Vega
+1985
+10
+Neighborhood girls
+pop,debut album
+3:21
+U.S.A.
+
+Suzanne Vega
+Suzanne Vega
+1985
+2
+Freeze tag
+pop,debut album
+2:36
+U.S.A.
+
+Suzanne Vega
+Suzanne Vega
+1985
+3
+Marlene on the wall
+pop,debut album
+3:40
+U.S.A.
+
+Suzanne Vega
+Suzanne Vega
+1985
+4
+Small blue thing
+pop,debut album,tranquil
+3:54
+U.S.A.
+
+Suzanne Vega
+Suzanne Vega
+1985
+5
+Straight lines
+pop,debut album
+3:49
+U.S.A.
+
+Suzanne Vega
+Suzanne Vega
+1985
+6
+Undertow
+pop,debut album
+3:26
+U.S.A.
+
+Suzanne Vega
+Suzanne Vega
+1985
+7
+Some journey
+pop,debut album
+3:38
+U.S.A.
+
+Suzanne Vega
+Suzanne Vega
+1985
+8
+The queen and the soldier
+pop,debut album
+4:48
+U.S.A.
+
+Suzanne Vega
+Suzanne Vega
+1985
+9
+Knight moves
+pop,debut album
+3:36
+U.S.A.
+
+Swans
+To be kind
+2014
+1
+Screen shot
+rock,noise,heavy
+8:04
+U.S.A.
+
+Swans
+To be kind
+2014
+10
+To be kind
+rock,noise,heavy
+8:22
+U.S.A.
+
+Swans
+To be kind
+2014
+2
+Just a little boy (for Chester Burnett)
+rock,noise,heavy
+12:39
+U.S.A.
+
+Swans
+To be kind
+2014
+3
+A little god in my hands
+rock,noise,heavy
+7:08
+U.S.A.
+
+Swans
+To be kind
+2014
+4
+Bring the sun / toussaint l'ouverture
+rock,noise,heavy
+34:05
+U.S.A.
+
+Swans
+To be kind
+2014
+5
+Some things we do
+rock,noise,heavy
+5:08
+U.S.A.
+
+Swans
+To be kind
+2014
+6
+She loves us
+rock,noise,heavy
+17:00
+U.S.A.
+
+Swans
+To be kind
+2014
+7
+Kirsten Supine
+rock,noise,heavy
+10:32
+U.S.A.
+
+Swans
+To be kind
+2014
+8
+Oxygen
+rock,noise,heavy
+7:59
+U.S.A.
+
+Swans
+To be kind
+2014
+9
+Nathalie Neal
+rock,noise,heavy
+10:15
+U.S.A.
+
+Sylvan
+Force of gravity
+2009
+1
+Force of gravity
+progressive,metal
+5:14
+Germany
+
+Sylvan
+Force of gravity
+2009
+10
+God of rubbish
+progressive,metal
+4:03
+Germany
+
+Sylvan
+Force of gravity
+2009
+11
+Vapour trail
+progressive,metal
+14:30
+Germany
+
+Sylvan
+Force of gravity
+2009
+2
+Follow me
+progressive,metal
+4:41
+Germany
+
+Sylvan
+Force of gravity
+2009
+3
+Isle in me
+progressive,metal
+6:02
+Germany
+
+Sylvan
+Force of gravity
+2009
+4
+Embedded
+progressive,metal
+3:31
+Germany
+
+Sylvan
+Force of gravity
+2009
+5
+Turn of the tide
+progressive,metal
+6:54
+Germany
+
+Sylvan
+Force of gravity
+2009
+6
+From the silence
+progressive,metal
+5:44
+Germany
+
+Sylvan
+Force of gravity
+2009
+7
+Midnight sun
+progressive,metal
+5:12
+Germany
+
+Sylvan
+Force of gravity
+2009
+8
+King porn
+progressive,metal
+7:33
+Germany
+
+Sylvan
+Force of gravity
+2009
+9
+Episode 609
+progressive,metal
+6:02
+Germany
+
+Symphony X
+Iconoclast [special edition]
+2011
+1
+Iconoclast
+metal,progressive,heavy
+10:51
+U.S.A.
+
+Symphony X
+Iconoclast [special edition]
+2011
+10
+Light up the night
+metal,progressive,heavy
+5:03
+U.S.A.
+
+Symphony X
+Iconoclast [special edition]
+2011
+11
+The lords of chaos
+metal,progressive,heavy
+6:09
+U.S.A.
+
+Symphony X
+Iconoclast [special edition]
+2011
+12
+Reign in madness
+metal,progressive,heavy
+8:37
+U.S.A.
+
+Symphony X
+Iconoclast [special edition]
+2011
+2
+The end of innocence
+metal,progressive,heavy
+5:27
+U.S.A.
+
+Symphony X
+Iconoclast [special edition]
+2011
+3
+Dehumanized
+metal,progressive,heavy
+6:47
+U.S.A.
+
+Symphony X
+Iconoclast [special edition]
+2011
+4
+Bastards of the machine
+metal,progressive,heavy
+4:56
+U.S.A.
+
+Symphony X
+Iconoclast [special edition]
+2011
+5
+Heretic
+metal,progressive,heavy
+6:24
+U.S.A.
+
+Symphony X
+Iconoclast [special edition]
+2011
+6
+Children of a faceless god
+metal,progressive,heavy
+6:20
+U.S.A.
+
+Symphony X
+Iconoclast [special edition]
+2011
+7
+When all is lost
+metal,progressive,ballad
+9:10
+U.S.A.
+
+Symphony X
+Iconoclast [special edition]
+2011
+8
+Electric messiah
+metal,progressive,heavy
+6:13
+U.S.A.
+
+Symphony X
+Iconoclast [special edition]
+2011
+9
+Prometheus (I am alive)
+metal,progressive,heavy
+6:46
+U.S.A.
+
+Symphony X
+Paradise lost
+2007
+1
+Oculus Ex Inferni
+progressive,metal,doom,symphonic
+2:34
+U.S.A.
+
+Symphony X
+Paradise lost
+2007
+10
+Revelation (divus pennae ex tragoedia)
+progressive,metal,doom,symphonic
+9:18
+U.S.A.
+
+Symphony X
+Paradise lost
+2007
+2
+Set The World On Fire (The Lie of Lies)
+progressive,metal,doom,symphonic
+5:55
+U.S.A.
+
+Symphony X
+Paradise lost
+2007
+3
+Domination
+progressive,metal,doom,symphonic
+6:29
+U.S.A.
+
+Symphony X
+Paradise lost
+2007
+4
+Serpent's kiss
+progressive,metal,doom,symphonic
+5:03
+U.S.A.
+
+Symphony X
+Paradise lost
+2007
+5
+Paradise lost
+progressive,metal,symphonic,ballad
+6:32
+U.S.A.
+
+Symphony X
+Paradise lost
+2007
+6
+Eve of seduction
+progressive,metal,doom,symphonic
+5:04
+U.S.A.
+
+Symphony X
+Paradise lost
+2007
+7
+The walls of Babylon
+progressive,metal,doom,symphonic
+8:16
+U.S.A.
+
+Symphony X
+Paradise lost
+2007
+8
+Seven
+progressive,metal,doom,symphonic
+7:01
+U.S.A.
+
+Symphony X
+Paradise lost
+2007
+9
+The sacrifice
+progressive,metal,symphonic,ballad
+4:49
+U.S.A.
+
+Symphony X
+The Odyssey
+2002
+1
+Inferno (unleash the fire)
+progressive,metal,symphonic
+5:32
+U.S.A.
+
+Symphony X
+The Odyssey
+2002
+2
+Wicked
+progressive,metal,symphonic
+5:30
+U.S.A.
+
+Symphony X
+The Odyssey
+2002
+3
+Incantations of the apprentice
+progressive,metal,symphonic
+4:19
+U.S.A.
+
+Symphony X
+The Odyssey
+2002
+4
+Accolade II
+progressive,metal,symphonic
+7:04
+U.S.A.
+
+Symphony X
+The Odyssey
+2002
+5
+King of terrors
+progressive,metal,symphonic
+6:16
+U.S.A.
+
+Symphony X
+The Odyssey
+2002
+6
+The turning
+progressive,metal,symphonic
+4:42
+U.S.A.
+
+Symphony X
+The Odyssey
+2002
+7
+Awakenings
+progressive,metal,symphonic
+8:18
+U.S.A.
+
+Symphony X
+The Odyssey
+2002
+8
+The odyssey
+progressive,metal,symphonic
+24:09
+U.S.A.
+
+Symphony X
+Twilight in Olympus - special edition
+1998
+1
+Smoke and mirrors
+progressive,metal,symphonic
+6:09
+U.S.A.
+
+Symphony X
+Twilight in Olympus - special edition
+1998
+2
+Church of the machine
+progressive,metal,symphonic
+8:57
+U.S.A.
+
+Symphony X
+Twilight in Olympus - special edition
+1998
+3
+Sonata
+progressive,metal,symphonic,instrumental
+1:25
+U.S.A.
+
+Symphony X
+Twilight in Olympus - special edition
+1998
+4
+In the dragon's den
+progressive,metal,symphonic
+4:00
+U.S.A.
+
+Symphony X
+Twilight in Olympus - special edition
+1998
+5
+Through the looking glass - part I, II & III -
+progressive,metal,symphonic
+13:05
+U.S.A.
+
+Symphony X
+Twilight in Olympus - special edition
+1998
+6
+The relic
+progressive,metal,symphonic
+5:03
+U.S.A.
+
+Symphony X
+Twilight in Olympus - special edition
+1998
+7
+Orion - the hunter
+progressive,metal,symphonic
+6:56
+U.S.A.
+
+Symphony X
+Twilight in Olympus - special edition
+1998
+8
+Lady of the snow
+progressive,metal,symphonic,ballad
+7:09
+U.S.A.
+
+Talk Talk
+The colour of spring
+1986
+1
+Happiness is easy
+experimental,pop
+6:37
+England
+
+Talk Talk
+The colour of spring
+1986
+2
+I don't believe in you
+experimental,pop
+5:01
+England
+
+Talk Talk
+The colour of spring
+1986
+3
+Life's what you make it
+experimental,pop
+4:28
+England
+
+Talk Talk
+The colour of spring
+1986
+4
+April 5th
+experimental,pop,tranquil
+5:49
+England
+
+Talk Talk
+The colour of spring
+1986
+5
+Living in another world
+experimental,pop
+6:57
+England
+
+Talk Talk
+The colour of spring
+1986
+6
+Give it up
+experimental,pop
+5:15
+England
+
+Talk Talk
+The colour of spring
+1986
+7
+Chameleon day
+experimental,pop,tranquil
+3:16
+England
+
+Talk Talk
+The colour of spring
+1986
+8
+Time it's time
+experimental,pop
+8:11
+England
+
+Tangerine Dream
+Alpha Centauri
+1971
+1
+Sunrise in the third system
+electronica,experimental,instrumental,soundscape
+4:20
+Germany
+
+Tangerine Dream
+Alpha Centauri
+1971
+2
+Fly and collision of Comas Sola
+electronica,experimental,instrumental,soundscape
+13:03
+Germany
+
+Tangerine Dream
+Alpha Centauri
+1971
+3
+Alpha Centauri
+electronica,experimental,soundscape
+22:00
+Germany
+
+Tangerine Dream
+Green desert
+1973
+1
+Green desert
+electronica,experimental,instrumental,tranquil,soundscape
+19:32
+Germany
+
+Tangerine Dream
+Green desert
+1973
+2
+White clouds
+electronica,experimental,instrumental,tranquil,soundscape
+5:10
+Germany
+
+Tangerine Dream
+Green desert
+1973
+3
+Astral voyager
+electronica,experimental,instrumental,tranquil,soundscape
+7:11
+Germany
+
+Tangerine Dream
+Green desert
+1973
+4
+Indian summer
+electronica,experimental,instrumental,tranquil,soundscape
+6:53
+Germany
+
+Tangerine Dream
+Livemiles (Tangerine Dream in concert)
+1988
+1
+Livemiles Part I
+electronica,experimental,instrumental,live,soundscape
+29:52
+Germany
+
+Tangerine Dream
+Livemiles (Tangerine Dream in concert)
+1988
+2
+Livemiles Part II
+electronica,experimental,instrumental,live,soundscape
+27:13
+Germany
+
+Tarja
+What lies beneath
+2010
+1
+Anteroom of death
+symphonic,metal,gothic,female fronted
+4:44
+Finland
+
+Tarja
+What lies beneath
+2010
+10
+The archive of lost dreams
+symphonic,metal,gothic,female fronted
+4:52
+Finland
+
+Tarja
+What lies beneath
+2010
+11
+Crimson deep
+symphonic,metal,gothic,female fronted
+7:35
+Finland
+
+Tarja
+What lies beneath
+2010
+2
+Until my last breath
+symphonic,metal,gothic,female fronted
+4:26
+Finland
+
+Tarja
+What lies beneath
+2010
+3
+I feel immortal
+symphonic,metal,gothic,female fronted
+4:35
+Finland
+
+Tarja
+What lies beneath
+2010
+4
+In for a kill
+symphonic,metal,gothic,female fronted
+4:41
+Finland
+
+Tarja
+What lies beneath
+2010
+5
+Underneath
+symphonic,metal,gothic,female fronted
+5:28
+Finland
+
+Tarja
+What lies beneath
+2010
+6
+Little lies
+symphonic,metal,gothic,female fronted
+4:40
+Finland
+
+Tarja
+What lies beneath
+2010
+7
+Rivers of lust
+symphonic,metal,gothic,female fronted
+4:26
+Finland
+
+Tarja
+What lies beneath
+2010
+8
+Dark star
+symphonic,metal,gothic,female fronted
+4:33
+Finland
+
+Tarja
+What lies beneath
+2010
+9
+Falling awake
+symphonic,metal,gothic,female fronted
+5:16
+Finland
+
+The Alan Parsons Project
+Ammonia avenue
+1984
+1
+Prime time
+pop
+5:03
+England,Scotland
+
+The Alan Parsons Project
+Ammonia avenue
+1984
+2
+Let me go home
+pop
+3:20
+England,Scotland
+
+The Alan Parsons Project
+Ammonia avenue
+1984
+3
+One good reason
+pop
+3:36
+England,Scotland
+
+The Alan Parsons Project
+Ammonia avenue
+1984
+4
+Since the last goodbye
+pop
+4:34
+England,Scotland
+
+The Alan Parsons Project
+Ammonia avenue
+1984
+5
+Don't answer me
+pop
+4:11
+England,Scotland
+
+The Alan Parsons Project
+Ammonia avenue
+1984
+6
+Dancing on a highwire
+pop
+4:22
+England,Scotland
+
+The Alan Parsons Project
+Ammonia avenue
+1984
+7
+You don't believe
+pop
+4:26
+England,Scotland
+
+The Alan Parsons Project
+Ammonia avenue
+1984
+8
+Pipeline
+pop,instrumental
+3:56
+England,Scotland
+
+The Alan Parsons Project
+Ammonia avenue
+1984
+9
+Ammonia avenue
+pop
+6:30
+England,Scotland
+
+The Alan Parsons Project
+Eve
+1979
+1
+Lucifer
+pop,instrumental
+5:08
+England,Scotland
+
+The Alan Parsons Project
+Eve
+1979
+2
+You lie down with dogs
+pop
+3:48
+England,Scotland
+
+The Alan Parsons Project
+Eve
+1979
+3
+I'd rather be a man
+pop
+3:55
+England,Scotland
+
+The Alan Parsons Project
+Eve
+1979
+4
+You won't be there
+pop
+3:40
+England,Scotland
+
+The Alan Parsons Project
+Eve
+1979
+5
+Winding me up
+pop
+3:59
+England,Scotland
+
+The Alan Parsons Project
+Eve
+1979
+6
+Damned if I do
+pop
+4:53
+England,Scotland
+
+The Alan Parsons Project
+Eve
+1979
+7
+Don't hold back
+pop
+3:39
+England,Scotland
+
+The Alan Parsons Project
+Eve
+1979
+8
+Secret garden
+pop,instrumental
+4:43
+England,Scotland
+
+The Alan Parsons Project
+Eve
+1979
+9
+If I could change your mind
+pop
+5:49
+England,Scotland
+
+The Alan Parsons Project
+Eye in the sky
+1981
+1
+Sirius
+pop,instrumental
+1:53
+England,Scotland
+
+The Alan Parsons Project
+Eye in the sky
+1981
+10
+Old and wise
+pop
+4:54
+England,Scotland
+
+The Alan Parsons Project
+Eye in the sky
+1981
+2
+Eye in the sky
+pop
+4:36
+England,Scotland
+
+The Alan Parsons Project
+Eye in the sky
+1981
+3
+Children of the moon
+pop
+4:51
+England,Scotland
+
+The Alan Parsons Project
+Eye in the sky
+1981
+4
+Gemini
+pop,tranquil
+2:11
+England,Scotland
+
+The Alan Parsons Project
+Eye in the sky
+1981
+5
+Silence and I
+pop
+7:22
+England,Scotland
+
+The Alan Parsons Project
+Eye in the sky
+1981
+6
+You're gonna get your fingers burned
+pop
+4:23
+England,Scotland
+
+The Alan Parsons Project
+Eye in the sky
+1981
+7
+Psychobabble
+pop
+4:51
+England,Scotland
+
+The Alan Parsons Project
+Eye in the sky
+1981
+8
+Mammagamma
+pop,instrumental
+3:34
+England,Scotland
+
+The Alan Parsons Project
+Eye in the sky
+1981
+9
+Step by step
+pop
+3:53
+England,Scotland
+
+The Alan Parsons Project
+Stereotomy
+1984
+1
+Stereotomy
+pop
+7:15
+England,Scotland
+
+The Alan Parsons Project
+Stereotomy
+1984
+2
+Beaujolais
+pop
+4:27
+England,Scotland
+
+The Alan Parsons Project
+Stereotomy
+1984
+3
+Urbania
+pop,instrumental
+4:34
+England,Scotland
+
+The Alan Parsons Project
+Stereotomy
+1984
+4
+Limelight
+pop
+4:39
+England,Scotland
+
+The Alan Parsons Project
+Stereotomy
+1984
+5
+In the real world
+pop
+4:17
+England,Scotland
+
+The Alan Parsons Project
+Stereotomy
+1984
+6
+Where's the walrus?
+pop,instrumental
+7:34
+England,Scotland
+
+The Alan Parsons Project
+Stereotomy
+1984
+7
+Light of the world
+pop
+6:22
+England,Scotland
+
+The Alan Parsons Project
+Stereotomy
+1984
+8
+Chinese whispers
+pop
+1:02
+England,Scotland
+
+The Alan Parsons Project
+Stereotomy
+1984
+9
+Stereotomy Two
+pop
+1:18
+England,Scotland
+
+The Alan Parsons Project
+Tales of mystery and imagination (Edgar Allan Poe)
+1976
+1
+A dream within a dream
+pop,debut album
+4:13
+England,Scotland
+
+The Alan Parsons Project
+Tales of mystery and imagination (Edgar Allan Poe)
+1976
+10
+The fall of the house of Usher - Fall
+pop,symphonic,instrumental,chaotic,debut album
+0:51
+England,Scotland
+
+The Alan Parsons Project
+Tales of mystery and imagination (Edgar Allan Poe)
+1976
+11
+To one in paradise
+pop,debut album,tranquil
+4:46
+England,Scotland
+
+The Alan Parsons Project
+Tales of mystery and imagination (Edgar Allan Poe)
+1976
+2
+The raven
+pop,gloomy,debut album
+3:57
+England,Scotland
+
+The Alan Parsons Project
+Tales of mystery and imagination (Edgar Allan Poe)
+1976
+3
+The tell-tale heart
+pop,debut album
+4:38
+England,Scotland
+
+The Alan Parsons Project
+Tales of mystery and imagination (Edgar Allan Poe)
+1976
+4
+The cask of Amontillado
+pop,debut album
+4:33
+England,Scotland
+
+The Alan Parsons Project
+Tales of mystery and imagination (Edgar Allan Poe)
+1976
+5
+(The system of) Doctor Tarr and Professor Fether
+pop,debut album
+4:20
+England,Scotland
+
+The Alan Parsons Project
+Tales of mystery and imagination (Edgar Allan Poe)
+1976
+6
+The fall of the house of Usher - Prelude
+pop,symphonic,spoken,instrumental,gloomy,debut album
+7:02
+England,Scotland
+
+The Alan Parsons Project
+Tales of mystery and imagination (Edgar Allan Poe)
+1976
+7
+The fall of the house of Usher - Arrival
+pop,symphonic,instrumental,debut album
+2:39
+England,Scotland
+
+The Alan Parsons Project
+Tales of mystery and imagination (Edgar Allan Poe)
+1976
+8
+The fall of the house of Usher - Intermezzo
+pop,symphonic,instrumental,gloomy,debut album
+1:00
+England,Scotland
+
+The Alan Parsons Project
+Tales of mystery and imagination (Edgar Allan Poe)
+1976
+9
+The fall of the house of Usher - Pavane
+pop,symphonic,instrumental,debut album
+4:36
+England,Scotland
+
+The Alan Parsons Project
+Turn of a friendly card
+1984
+1
+May be a price to pay
+pop
+4:57
+England,Scotland
+
+The Alan Parsons Project
+Turn of a friendly card
+1984
+2
+Games people play
+pop
+4:19
+England,Scotland
+
+The Alan Parsons Project
+Turn of a friendly card
+1984
+3
+Time
+pop,tranquil
+5:05
+England,Scotland
+
+The Alan Parsons Project
+Turn of a friendly card
+1984
+4
+I don't wanna go home
+pop
+4:57
+England,Scotland
+
+The Alan Parsons Project
+Turn of a friendly card
+1984
+5
+The gold bug
+pop,instrumental
+4:33
+England,Scotland
+
+The Alan Parsons Project
+Turn of a friendly card
+1984
+6
+The turn of a friendly card
+pop
+16:22
+England,Scotland
+
+The Boo Radleys
+Everything's alright forever
+1992
+1
+Spaniard
+alternative,psychedelic,rock
+4:02
+England
+
+The Boo Radleys
+Everything's alright forever
+1992
+10
+Smile fades fast
+alternative,psychedelic,rock
+3:13
+England
+
+The Boo Radleys
+Everything's alright forever
+1992
+11
+Firesky
+alternative,psychedelic,rock
+5:05
+England
+
+The Boo Radleys
+Everything's alright forever
+1992
+12
+Song for the morning to sing
+alternative,psychedelic,rock
+2:30
+England
+
+The Boo Radleys
+Everything's alright forever
+1992
+13
+Lazy day
+alternative,psychedelic,rock
+1:35
+England
+
+The Boo Radleys
+Everything's alright forever
+1992
+14
+Paradise
+alternative,psychedelic,rock
+5:51
+England
+
+The Boo Radleys
+Everything's alright forever
+1992
+2
+Towards the light
+alternative,psychedelic,rock
+1:41
+England
+
+The Boo Radleys
+Everything's alright forever
+1992
+3
+Losing it (song for Abigail)
+alternative,psychedelic,rock
+4:02
+England
+
+The Boo Radleys
+Everything's alright forever
+1992
+4
+Memory babe
+alternative,psychedelic,rock
+3:19
+England
+
+The Boo Radleys
+Everything's alright forever
+1992
+5
+Skyscraper
+alternative,psychedelic,rock
+4:47
+England
+
+The Boo Radleys
+Everything's alright forever
+1992
+6
+I feel nothing
+alternative,psychedelic,rock
+3:06
+England
+
+The Boo Radleys
+Everything's alright forever
+1992
+7
+Room at the top
+alternative,psychedelic,rock
+5:05
+England
+
+The Boo Radleys
+Everything's alright forever
+1992
+8
+Does this hurt?
+alternative,psychedelic,rock
+3:56
+England
+
+The Boo Radleys
+Everything's alright forever
+1992
+9
+Sparrow
+alternative,psychedelic,rock
+1:51
+England
+
+The Clash
+London calling
+2001
+1
+London calling
+punk,rock,ska
+3:19
+England
+
+The Clash
+London calling
+2001
+10
+The guns of Brixton
+punk,rock,ska
+3:09
+England
+
+The Clash
+London calling
+2001
+11
+Wrong 'em boyo
+punk,rock,ska
+3:10
+England
+
+The Clash
+London calling
+2001
+12
+Death or glory
+punk,rock
+3:55
+England
+
+The Clash
+London calling
+2001
+13
+Koka kola
+punk,rock
+1:47
+England
+
+The Clash
+London calling
+2001
+14
+The card cheat
+punk,rock
+3:49
+England
+
+The Clash
+London calling
+2001
+15
+Lover's rock
+punk,rock
+4:03
+England
+
+The Clash
+London calling
+2001
+16
+Four horsemen
+punk,rock
+2:55
+England
+
+The Clash
+London calling
+2001
+17
+I'm not down
+punk,rock
+3:06
+England
+
+The Clash
+London calling
+2001
+18
+Revolution rock
+punk,rock,reggae
+5:33
+England
+
+The Clash
+London calling
+2001
+19
+Train in vain
+punk,rock
+3:10
+England
+
+The Clash
+London calling
+2001
+2
+Brand new cadillac
+punk,rock
+2:08
+England
+
+The Clash
+London calling
+2001
+3
+Jimmy Jazz
+punk,rock
+3:54
+England
+
+The Clash
+London calling
+2001
+4
+Hateful
+punk,rock
+2:44
+England
+
+The Clash
+London calling
+2001
+5
+Rudie can't fail
+punk,rock,ska
+3:29
+England
+
+The Clash
+London calling
+2001
+6
+Spanish bombs
+punk,rock
+3:18
+England
+
+The Clash
+London calling
+2001
+7
+The right profile
+punk,rock
+3:54
+England
+
+The Clash
+London calling
+2001
+8
+Lost in the supermarket
+punk,rock
+3:47
+England
+
+The Clash
+London calling
+2001
+9
+Clampdown
+punk,rock
+3:49
+England
+
+The Corrs
+The best of the Corrs
+2001
+1
+Would you be happier?
+pop,folk,irish
+3:26
+Ireland
+
+The Corrs
+The best of the Corrs
+2001
+10
+Forgiven, not forgotten
+pop,folk,irish
+4:17
+Ireland
+
+The Corrs
+The best of the Corrs
+2001
+11
+Lough Erin shore
+folk,irish,instrumental,live
+4:28
+Ireland
+
+The Corrs
+The best of the Corrs
+2001
+12
+Only when I sleep
+folk,irish,pop
+3:51
+Ireland
+
+The Corrs
+The best of the Corrs
+2001
+13
+Love to love you
+folk,irish,pop
+3:23
+Ireland
+
+The Corrs
+The best of the Corrs
+2001
+14
+All the love in the world
+folk,irish,pop
+3:56
+Ireland
+
+The Corrs
+The best of the Corrs
+2001
+15
+Everybody hurts
+pop,cover
+5:49
+Ireland
+
+The Corrs
+The best of the Corrs
+2001
+16
+Give me a reason
+pop
+3:29
+Ireland
+
+The Corrs
+The best of the Corrs
+2001
+17
+Dreams
+pop
+4:01
+Ireland
+
+The Corrs
+The best of the Corrs
+2001
+18
+Make you mine
+pop
+3:15
+Ireland
+
+The Corrs
+The best of the Corrs
+2001
+2
+So young
+pop
+4:14
+Ireland
+
+The Corrs
+The best of the Corrs
+2001
+3
+Runaway
+pop
+3:47
+Ireland
+
+The Corrs
+The best of the Corrs
+2001
+4
+Breathless
+pop
+3:26
+Ireland
+
+The Corrs
+The best of the Corrs
+2001
+5
+Radio
+pop
+4:14
+Ireland
+
+The Corrs
+The best of the Corrs
+2001
+6
+What can I do?
+pop
+4:15
+Ireland
+
+The Corrs
+The best of the Corrs
+2001
+7
+The right time
+pop
+4:07
+Ireland
+
+The Corrs
+The best of the Corrs
+2001
+8
+I never loved you anyway
+pop
+3:54
+Ireland
+
+The Corrs
+The best of the Corrs
+2001
+9
+Irresistible
+pop
+3:40
+Ireland
+
+The Cranberries
+Everybody else is doing it, so why can't we?
+1992
+1
+I still do
+alternative,rock,debut album
+3:16
+Ireland
+
+The Cranberries
+Everybody else is doing it, so why can't we?
+1992
+10
+I will always
+alternative,tranquil,gloomy,debut album
+2:42
+Ireland
+
+The Cranberries
+Everybody else is doing it, so why can't we?
+1992
+11
+How
+alternative,rock,debut album
+2:51
+Ireland
+
+The Cranberries
+Everybody else is doing it, so why can't we?
+1992
+12
+Put me down
+alternative,rock,debut album
+3:32
+Ireland
+
+The Cranberries
+Everybody else is doing it, so why can't we?
+1992
+2
+Dreams
+alternative,rock,debut album
+4:32
+Ireland
+
+The Cranberries
+Everybody else is doing it, so why can't we?
+1992
+3
+Sunday
+alternative,rock,debut album
+3:30
+Ireland
+
+The Cranberries
+Everybody else is doing it, so why can't we?
+1992
+4
+Pretty
+alternative,rock,debut album
+2:16
+Ireland
+
+The Cranberries
+Everybody else is doing it, so why can't we?
+1992
+5
+Waltzing back
+alternative,rock,debut album
+3:37
+Ireland
+
+The Cranberries
+Everybody else is doing it, so why can't we?
+1992
+6
+Not sorry
+alternative,rock,debut album
+4:20
+Ireland
+
+The Cranberries
+Everybody else is doing it, so why can't we?
+1992
+7
+Linger
+alternative,rock,debut album
+4:34
+Ireland
+
+The Cranberries
+Everybody else is doing it, so why can't we?
+1992
+8
+Wanted
+alternative,rock,debut album
+2:07
+Ireland
+
+The Cranberries
+Everybody else is doing it, so why can't we?
+1992
+9
+Still can't...
+alternative,rock,debut album
+3:40
+Ireland
+
+The Cranberries
+No need to argue
+1994
+1
+Ode to my family
+alternative,rock
+4:30
+Ireland
+
+The Cranberries
+No need to argue
+1994
+10
+Dreaming my dreams
+alternative,tranquil
+3:36
+Ireland
+
+The Cranberries
+No need to argue
+1994
+11
+Yeat's grave
+alternative,rock
+2:59
+Ireland
+
+The Cranberries
+No need to argue
+1994
+12
+Daffodil lament
+alternative,rock
+6:14
+Ireland
+
+The Cranberries
+No need to argue
+1994
+13
+No need to argue
+alternative,rock,gloomy,tranquil
+2:54
+Ireland
+
+The Cranberries
+No need to argue
+1994
+2
+I can't be with you
+alternative,rock
+3:07
+Ireland
+
+The Cranberries
+No need to argue
+1994
+3
+Twenty one
+alternative,rock
+3:07
+Ireland
+
+The Cranberries
+No need to argue
+1994
+4
+Zombie
+alternative,rock
+5:06
+Ireland
+
+The Cranberries
+No need to argue
+1994
+5
+Empty
+alternative,rock
+3:26
+Ireland
+
+The Cranberries
+No need to argue
+1994
+6
+Everything I said
+alternative,rock,gloomy
+3:52
+Ireland
+
+The Cranberries
+No need to argue
+1994
+7
+The icicle melts
+alternative,rock
+2:54
+Ireland
+
+The Cranberries
+No need to argue
+1994
+8
+Disappointment
+alternative,rock
+4:14
+Ireland
+
+The Cranberries
+No need to argue
+1994
+9
+Ridiculous thoughts
+alternative,rock
+4:31
+Ireland
+
+The Gathering
+Mandylion
+1995
+1
+Strange machines
+gothic,metal,female fronted
+6:04
+Netherlands
+
+The Gathering
+Mandylion
+1995
+2
+Eléanor
+gothic,metal,female fronted
+6:42
+Netherlands
+
+The Gathering
+Mandylion
+1995
+3
+In motion (Part I)
+gothic,metal,female fronted
+6:56
+Netherlands
+
+The Gathering
+Mandylion
+1995
+4
+Leaves
+gothic,metal,female fronted
+6:01
+Netherlands
+
+The Gathering
+Mandylion
+1995
+5
+Fear the sea
+gothic,metal,female fronted
+5:50
+Netherlands
+
+The Gathering
+Mandylion
+1995
+6
+Mandylion
+gothic,metal,female fronted,instrumental
+5:02
+Netherlands
+
+The Gathering
+Mandylion
+1995
+7
+Sand and mercury
+gothic,metal,female fronted
+9:57
+Netherlands
+
+The Gathering
+Mandylion
+1995
+8
+In motion (Part II)
+gothic,metal,female fronted
+6:08
+Netherlands
+
+The Gathering
+Nighttime birds
+1997
+1
+On most surfaces
+progressive,metal,female fronted
+6:52
+Netherlands
+
+The Gathering
+Nighttime birds
+1997
+2
+Confusion
+progressive,metal,female fronted
+6:30
+Netherlands
+
+The Gathering
+Nighttime birds
+1997
+3
+The May song
+progressive,metal,female fronted
+3:43
+Netherlands
+
+The Gathering
+Nighttime birds
+1997
+4
+The earth is my witness
+progressive,metal,female fronted
+5:31
+Netherlands
+
+The Gathering
+Nighttime birds
+1997
+5
+New moon, different day
+progressive,metal,female fronted
+6:06
+Netherlands
+
+The Gathering
+Nighttime birds
+1997
+6
+Third chance
+progressive,metal,female fronted
+5:26
+Netherlands
+
+The Gathering
+Nighttime birds
+1997
+7
+Kevin's telescope
+progressive,metal,female fronted
+3:22
+Netherlands
+
+The Gathering
+Nighttime birds
+1997
+8
+Nighttime birds
+progressive,metal,female fronted
+6:55
+Netherlands
+
+The Gathering
+Nighttime birds
+1997
+9
+Shrink
+progressive,metal,female fronted,tranquil
+3:59
+Netherlands
+
+The Gathering
+The west pole
+2009
+1
+When trust becomes sound
+metal,instrumental
+3:53
+Netherlands
+
+The Gathering
+The west pole
+2009
+10
+A constant run
+metal,female fronted
+7:44
+Netherlands
+
+The Gathering
+The west pole
+2009
+2
+Treasure
+metal,female fronted
+4:06
+Netherlands
+
+The Gathering
+The west pole
+2009
+3
+All you are
+metal,female fronted
+4:34
+Netherlands
+
+The Gathering
+The west pole
+2009
+4
+The west pole
+metal,female fronted
+6:35
+Netherlands
+
+The Gathering
+The west pole
+2009
+5
+No bird call
+metal,female fronted
+5:38
+Netherlands
+
+The Gathering
+The west pole
+2009
+6
+Capital of nowhere
+metal,female fronted
+6:35
+Netherlands
+
+The Gathering
+The west pole
+2009
+7
+You promised me a symphony
+female fronted,tranquil
+2:54
+Netherlands
+
+The Gathering
+The west pole
+2009
+8
+Pale traces
+female fronted,tranquil
+7:46
+Netherlands
+
+The Gathering
+The west pole
+2009
+9
+No one spoke
+metal,female fronted
+4:32
+Netherlands
+
+The church
+After everything now this
+2002
+1
+Numbers
+alternative,rock
+4:29
+Australia
+
+The church
+After everything now this
+2002
+10
+Invisible
+alternative,rock
+7:47
+Australia
+
+The church
+After everything now this
+2002
+2
+After everything
+alternative,rock
+6:01
+Australia
+
+The church
+After everything now this
+2002
+3
+The awful ache
+alternative,rock
+5:17
+Australia
+
+The church
+After everything now this
+2002
+4
+Song for the asking
+alternative,rock
+5:08
+Australia
+
+The church
+After everything now this
+2002
+5
+Chromium
+alternative,rock
+3:44
+Australia
+
+The church
+After everything now this
+2002
+6
+Radiance
+alternative,rock
+5:58
+Australia
+
+The church
+After everything now this
+2002
+7
+Reprieve
+alternative,rock
+5:40
+Australia
+
+The church
+After everything now this
+2002
+8
+Night friends
+alternative,rock
+7:20
+Australia
+
+The church
+After everything now this
+2002
+9
+Seen it coming
+alternative,rock
+4:57
+Australia
+
+The church
+Forget yourself
+2003
+1
+Sealine
+alternative,rock
+5:06
+Australia
+
+The church
+Forget yourself
+2003
+10
+Don't you fall
+alternative,rock
+3:10
+Australia
+
+The church
+Forget yourself
+2003
+11
+I kept everything
+alternative,rock
+4:01
+Australia
+
+The church
+Forget yourself
+2003
+12
+Nothing seeker
+alternative,rock
+4:22
+Australia
+
+The church
+Forget yourself
+2003
+13
+Reversal
+alternative,rock
+4:41
+Australia
+
+The church
+Forget yourself
+2003
+14
+Summer
+alternative,rock
+7:02
+Australia
+
+The church
+Forget yourself
+2003
+15
+Serpent easy
+alternative,rock
+14:44
+Australia
+
+The church
+Forget yourself
+2003
+16
+Cantilever
+alternative,rock
+10:00
+Australia
+
+The church
+Forget yourself
+2003
+17
+Moodertronic
+alternative,rock
+4:22
+Australia
+
+The church
+Forget yourself
+2003
+2
+Song in space
+alternative,rock
+5:24
+Australia
+
+The church
+Forget yourself
+2003
+3
+The theatre and its double
+alternative,rock
+4:34
+Australia
+
+The church
+Forget yourself
+2003
+4
+Telepath
+alternative,rock
+4:56
+Australia
+
+The church
+Forget yourself
+2003
+5
+See your lights
+alternative,rock
+4:14
+Australia
+
+The church
+Forget yourself
+2003
+6
+Lay low
+alternative,rock
+4:13
+Australia
+
+The church
+Forget yourself
+2003
+7
+Maya
+alternative,rock
+3:46
+Australia
+
+The church
+Forget yourself
+2003
+8
+Appalatia
+alternative,rock
+4:09
+Australia
+
+The church
+Forget yourself
+2003
+9
+June
+alternative,rock
+4:05
+Australia
+
+The decemberists
+The tain
+2005
+1
+The tain (parts i-iv)
+progressive,experimental,folk,rock
+18:35
+U.S.A.
+
+The flaming lips
+Embryonic
+2009
+1
+Convinced of the hex
+experimental,rock,psychedelic
+3:56
+U.S.A.
+
+The flaming lips
+Embryonic
+2009
+10
+The ego's last stand
+experimental,rock,psychedelic
+5:39
+U.S.A.
+
+The flaming lips
+Embryonic
+2009
+11
+I can be a frog
+experimental,rock,psychedelic
+2:14
+U.S.A.
+
+The flaming lips
+Embryonic
+2009
+12
+Sagittarius silver announcement
+experimental,rock,psychedelic
+2:58
+U.S.A.
+
+The flaming lips
+Embryonic
+2009
+13
+Worm mountain
+experimental,rock,psychedelic
+5:21
+U.S.A.
+
+The flaming lips
+Embryonic
+2009
+14
+Scorpio sword
+experimental,rock,psychedelic
+2:01
+U.S.A.
+
+The flaming lips
+Embryonic
+2009
+15
+The impulse
+experimental,rock,psychedelic
+3:29
+U.S.A.
+
+The flaming lips
+Embryonic
+2009
+16
+Silver trembling hands
+experimental,rock,psychedelic
+3:58
+U.S.A.
+
+The flaming lips
+Embryonic
+2009
+17
+Virgo self-esteem broadcast
+experimental,rock,psychedelic
+3:44
+U.S.A.
+
+The flaming lips
+Embryonic
+2009
+18
+Watching the planets
+experimental,rock,psychedelic
+5:16
+U.S.A.
+
+The flaming lips
+Embryonic
+2009
+2
+The sparrow looks up at the machine
+experimental,rock,psychedelic
+4:13
+U.S.A.
+
+The flaming lips
+Embryonic
+2009
+3
+Evil
+experimental,rock,psychedelic
+5:38
+U.S.A.
+
+The flaming lips
+Embryonic
+2009
+4
+Aquarius sabotage
+experimental,rock,psychedelic
+2:10
+U.S.A.
+
+The flaming lips
+Embryonic
+2009
+5
+See the leaves
+experimental,rock,psychedelic
+4:24
+U.S.A.
+
+The flaming lips
+Embryonic
+2009
+6
+If
+experimental,rock,psychedelic
+2:04
+U.S.A.
+
+The flaming lips
+Embryonic
+2009
+7
+Gemini syringes
+experimental,rock,psychedelic
+3:41
+U.S.A.
+
+The flaming lips
+Embryonic
+2009
+8
+Your bats
+experimental,rock,psychedelic
+2:34
+U.S.A.
+
+The flaming lips
+Embryonic
+2009
+9
+Powerless
+experimental,rock,psychedelic
+6:57
+U.S.A.
+
+The golden palominos
+Pure
+1994
+1
+Little suicides
+experimental,pop,tranquil
+4:44
+U.S.A.
+
+The golden palominos
+Pure
+1994
+2
+Heaven
+experimental,pop,tranquil
+4:52
+U.S.A.
+
+The golden palominos
+Pure
+1994
+3
+Anything
+experimental,pop,tranquil
+6:10
+U.S.A.
+
+The golden palominos
+Pure
+1994
+4
+Wings
+experimental,pop,tranquil
+6:17
+U.S.A.
+
+The golden palominos
+Pure
+1994
+5
+Pure
+experimental,pop,tranquil
+5:57
+U.S.A.
+
+The golden palominos
+Pure
+1994
+6
+No skin
+experimental,pop,tranquil
+6:47
+U.S.A.
+
+The golden palominos
+Pure
+1994
+7
+Gun
+experimental,pop,tranquil
+6:09
+U.S.A.
+
+The golden palominos
+Pure
+1994
+8
+Break in the road
+experimental,pop,tranquil
+4:24
+U.S.A.
+
+The golden palominos
+Pure
+1994
+9
+Touch you
+experimental,pop,tranquil
+4:05
+U.S.A.
+
+The stills
+Logic will break your heart
+2003
+1
+Lola stars and stripes
+alternative,rock,debut album
+3:50
+Canada
+
+The stills
+Logic will break your heart
+2003
+10
+Still in love song
+alternative,rock,debut album
+3:40
+Canada
+
+The stills
+Logic will break your heart
+2003
+11
+Fevered
+alternative,rock,debut album
+4:02
+Canada
+
+The stills
+Logic will break your heart
+2003
+12
+Yesterday never tomorrows
+alternative,rock,debut album
+5:20
+Canada
+
+The stills
+Logic will break your heart
+2003
+13
+Still in love song
+alternative,rock,debut album
+3:43
+Canada
+
+The stills
+Logic will break your heart
+2003
+14
+Killer bees
+alternative,rock,debut album
+4:07
+Canada
+
+The stills
+Logic will break your heart
+2003
+15
+Talk to me
+alternative,rock,debut album
+1:30
+Canada
+
+The stills
+Logic will break your heart
+2003
+16
+Still in love song [12" extended remix]
+alternative,rock,debut album
+4:56
+Canada
+
+The stills
+Logic will break your heart
+2003
+2
+Gender bombs
+alternative,rock,debut album
+4:00
+Canada
+
+The stills
+Logic will break your heart
+2003
+3
+Changes are no good
+alternative,rock,debut album
+3:42
+Canada
+
+The stills
+Logic will break your heart
+2003
+4
+Love & death
+alternative,rock,debut album
+4:15
+Canada
+
+The stills
+Logic will break your heart
+2003
+5
+Of Montreal
+alternative,rock,debut album
+4:28
+Canada
+
+The stills
+Logic will break your heart
+2003
+6
+Ready for it
+alternative,rock,debut album
+5:20
+Canada
+
+The stills
+Logic will break your heart
+2003
+7
+Let's roll
+alternative,rock,debut album
+4:23
+Canada
+
+The stills
+Logic will break your heart
+2003
+8
+Allison Krausse
+alternative,rock,debut album
+3:06
+Canada
+
+The stills
+Logic will break your heart
+2003
+9
+Animals & insects
+alternative,rock,debut album
+3:39
+Canada
+
+Thom Yorke
+Tomorrow's modern boxes
+2014
+1
+A brain in a bottle
+alternative,experimental
+5:22
+England
+
+Thom Yorke
+Tomorrow's modern boxes
+2014
+2
+Guess again!
+alternative,experimental
+4:40
+England
+
+Thom Yorke
+Tomorrow's modern boxes
+2014
+3
+Interference
+alternative,experimental
+4:23
+England
+
+Thom Yorke
+Tomorrow's modern boxes
+2014
+4
+The mother lode
+alternative,experimental
+2:48
+England
+
+Thom Yorke
+Tomorrow's modern boxes
+2014
+5
+Truth ray
+alternative,experimental
+6:07
+England
+
+Thom Yorke
+Tomorrow's modern boxes
+2014
+6
+There is no ice (for my drink)
+alternative,experimental
+5:13
+England
+
+Thom Yorke
+Tomorrow's modern boxes
+2014
+7
+Pink section
+alternative,experimental
+7:00
+England
+
+Thom Yorke
+Tomorrow's modern boxes
+2014
+8
+Nose grows some
+alternative,experimental
+2:35
+England
+
+Tiamat
+Amanethes
+2008
+1
+The temple of the crescent moon
+metal,heavy,gothic,doom
+5:31
+Sweden
+
+Tiamat
+Amanethes
+2008
+10
+Amanitis
+metal,heavy,gothic,doom,instrumental
+3:20
+Sweden
+
+Tiamat
+Amanethes
+2008
+11
+Meliae
+metal,heavy,gothic,doom
+6:10
+Sweden
+
+Tiamat
+Amanethes
+2008
+12
+Via dolorosa
+metal,heavy,gothic,doom
+4:05
+Sweden
+
+Tiamat
+Amanethes
+2008
+13
+Circles
+metal,heavy,gothic,doom
+3:48
+Sweden
+
+Tiamat
+Amanethes
+2008
+14
+Amanes
+metal,heavy,gothic,doom
+5:28
+Sweden
+
+Tiamat
+Amanethes
+2008
+2
+Equinox of the gods
+metal,heavy,gothic,doom
+4:34
+Sweden
+
+Tiamat
+Amanethes
+2008
+3
+Until the hellhounds sleep again
+metal,heavy,gothic,doom
+4:06
+Sweden
+
+Tiamat
+Amanethes
+2008
+4
+Will they come?
+metal,heavy,gothic,doom
+5:13
+Sweden
+
+Tiamat
+Amanethes
+2008
+5
+Lucienne
+metal,heavy,gothic,doom
+4:40
+Sweden
+
+Tiamat
+Amanethes
+2008
+6
+Summertime is gone
+metal,heavy,gothic,doom
+3:53
+Sweden
+
+Tiamat
+Amanethes
+2008
+7
+Katarraktis apo aima
+metal,heavy,gothic,doom
+2:42
+Sweden
+
+Tiamat
+Amanethes
+2008
+8
+Raining dead angels
+metal,heavy,gothic,doom
+4:18
+Sweden
+
+Tiamat
+Amanethes
+2008
+9
+Misantropolis
+metal,heavy,gothic,doom
+4:13
+Sweden
+
+Tool
+Lateralus
+2001
+1
+The grudge
+metal,alternative
+8:36
+U.S.A.
+
+Tool
+Lateralus
+2001
+10
+Disposition
+metal,alternative
+4:46
+U.S.A.
+
+Tool
+Lateralus
+2001
+11
+Reflection
+metal,alternative
+11:07
+U.S.A.
+
+Tool
+Lateralus
+2001
+12
+Triad
+metal,alternative
+8:46
+U.S.A.
+
+Tool
+Lateralus
+2001
+13
+Faaip de oiad
+metal,alternative
+2:38
+U.S.A.
+
+Tool
+Lateralus
+2001
+2
+Eon blue apocalypse
+metal,alternative
+1:04
+U.S.A.
+
+Tool
+Lateralus
+2001
+3
+The patient
+metal,alternative
+7:13
+U.S.A.
+
+Tool
+Lateralus
+2001
+4
+Mantra
+metal,alternative
+1:12
+U.S.A.
+
+Tool
+Lateralus
+2001
+5
+Schism
+metal,alternative
+6:47
+U.S.A.
+
+Tool
+Lateralus
+2001
+6
+Parabol
+metal,alternative
+3:04
+U.S.A.
+
+Tool
+Lateralus
+2001
+7
+Parabola
+metal,alternative
+6:03
+U.S.A.
+
+Tool
+Lateralus
+2001
+8
+Ticks & leeches
+metal,alternative
+8:10
+U.S.A.
+
+Tool
+Lateralus
+2001
+9
+Lateralis
+metal,alternative
+9:24
+U.S.A.
+
+Transatlantic
+Live in europe
+2003
+1
+Duel with the devil
+progressive,rock,live
+26:00
+U.S.A.
+
+Transatlantic
+Live in europe
+2003
+2
+My new world
+progressive,rock,live
+16:20
+U.S.A.
+
+Transatlantic
+Live in europe
+2003
+3
+We all need some light
+progressive,rock,live
+6:41
+U.S.A.
+
+Transatlantic
+Live in europe
+2003
+4
+Suite Charlotte Pike Medley
+progressive,rock,live
+30:55
+U.S.A.
+
+Transatlantic
+Live in europe
+2003
+5
+Stranger in your soul
+progressive,rock,live
+30:36
+U.S.A.
+
+Transatlantic
+Live in europe
+2003
+6
+All of the above
+progressive,rock,live
+30:20
+U.S.A.
+
+U2
+Achtung baby
+1991
+1
+Zoo station
+rock,alternative
+4:36
+Ireland
+
+U2
+Achtung baby
+1991
+10
+Ultra violet (light my way)
+rock,alternative
+5:31
+Ireland
+
+U2
+Achtung baby
+1991
+11
+Acrobat
+rock,alternative
+4:30
+Ireland
+
+U2
+Achtung baby
+1991
+12
+Love is blindness
+rock,alternative,tranquil
+4:23
+Ireland
+
+U2
+Achtung baby
+1991
+2
+Even better than the real thing
+rock,alternative
+3:41
+Ireland
+
+U2
+Achtung baby
+1991
+3
+One
+rock,alternative
+4:36
+Ireland
+
+U2
+Achtung baby
+1991
+4
+Until the end of the world
+rock,alternative
+4:39
+Ireland
+
+U2
+Achtung baby
+1991
+5
+Who's gonna ride your wild horses
+rock,alternative
+5:16
+Ireland
+
+U2
+Achtung baby
+1991
+6
+So cruel
+rock,alternative
+5:49
+Ireland
+
+U2
+Achtung baby
+1991
+7
+The fly
+rock,alternative
+4:29
+Ireland
+
+U2
+Achtung baby
+1991
+8
+Mysterious ways
+rock,alternative
+4:04
+Ireland
+
+U2
+Achtung baby
+1991
+9
+Tryin' to throw your arms around the world
+rock,alternative,tranquil
+3:53
+Ireland
+
+U2
+All that you can't leave behind
+2000
+1
+Beautiful day
+rock,alternative
+4:08
+Ireland
+
+U2
+All that you can't leave behind
+2000
+10
+New York
+rock,alternative
+5:28
+Ireland
+
+U2
+All that you can't leave behind
+2000
+11
+Grace
+rock,alternative
+5:31
+Ireland
+
+U2
+All that you can't leave behind
+2000
+2
+Stuck in a moment you can't get out of
+rock,alternative
+4:32
+Ireland
+
+U2
+All that you can't leave behind
+2000
+3
+Elevation
+rock,alternative
+3:48
+Ireland
+
+U2
+All that you can't leave behind
+2000
+4
+Walk on
+rock,alternative
+4:55
+Ireland
+
+U2
+All that you can't leave behind
+2000
+5
+Kite
+rock,alternative
+4:23
+Ireland
+
+U2
+All that you can't leave behind
+2000
+6
+In a little while
+rock,alternative
+3:37
+Ireland
+
+U2
+All that you can't leave behind
+2000
+7
+Wild honey
+rock,alternative
+3:45
+Ireland
+
+U2
+All that you can't leave behind
+2000
+8
+Peace on Earth
+rock,alternative
+4:46
+Ireland
+
+U2
+All that you can't leave behind
+2000
+9
+When I look at the world
+rock,alternative
+4:15
+Ireland
+
+U2
+How to dismantle an atomic bomb
+2004
+1
+Vertigo
+rock,alternative
+3:13
+Ireland
+
+U2
+How to dismantle an atomic bomb
+2004
+10
+Original of the species
+rock,alternative
+4:34
+Ireland
+
+U2
+How to dismantle an atomic bomb
+2004
+11
+Yahweh
+rock,alternative
+4:22
+Ireland
+
+U2
+How to dismantle an atomic bomb
+2004
+12
+Fast cars
+rock,alternative
+3:43
+Ireland
+
+U2
+How to dismantle an atomic bomb
+2004
+2
+Miracle drug
+rock,alternative
+3:54
+Ireland
+
+U2
+How to dismantle an atomic bomb
+2004
+3
+Sometimes you can't make it on your own
+rock,alternative,tranquil
+5:05
+Ireland
+
+U2
+How to dismantle an atomic bomb
+2004
+4
+Love and peace or else
+rock,alternative
+4:48
+Ireland
+
+U2
+How to dismantle an atomic bomb
+2004
+5
+City of blinding lights
+rock,alternative
+5:46
+Ireland
+
+U2
+How to dismantle an atomic bomb
+2004
+6
+All because of you
+rock,alternative
+3:34
+Ireland
+
+U2
+How to dismantle an atomic bomb
+2004
+7
+A man and a woman
+rock,alternative
+4:27
+Ireland
+
+U2
+How to dismantle an atomic bomb
+2004
+8
+Crumbs from your table
+rock,alternative
+4:59
+Ireland
+
+U2
+How to dismantle an atomic bomb
+2004
+9
+One step closer
+rock,alternative
+3:48
+Ireland
+
+U2
+No line on the horizon
+2009
+1
+No line on the horizon
+rock,alternative
+4:12
+Ireland
+
+U2
+No line on the horizon
+2009
+10
+Breathe
+rock,alternative
+5:00
+Ireland
+
+U2
+No line on the horizon
+2009
+11
+Cedars of Lebanon
+rock,alternative
+4:16
+Ireland
+
+U2
+No line on the horizon
+2009
+2
+Magnificent
+rock,alternative
+5:24
+Ireland
+
+U2
+No line on the horizon
+2009
+3
+Moment of surrender
+rock,alternative
+7:24
+Ireland
+
+U2
+No line on the horizon
+2009
+4
+Unknown caller
+rock,alternative
+6:02
+Ireland
+
+U2
+No line on the horizon
+2009
+5
+I'll go crazy if I don't go crazy tonight
+rock,alternative
+4:14
+Ireland
+
+U2
+No line on the horizon
+2009
+6
+Get on your boots
+rock,alternative
+3:25
+Ireland
+
+U2
+No line on the horizon
+2009
+7
+Stand up comedy
+rock,alternative
+3:49
+Ireland
+
+U2
+No line on the horizon
+2009
+8
+Fez-being born
+rock,alternative
+5:17
+Ireland
+
+U2
+No line on the horizon
+2009
+9
+White as snow
+rock,alternative
+4:41
+Ireland
+
+U2
+Pop
+1997
+1
+Discothèque
+rock,alternative
+5:19
+Ireland
+
+U2
+Pop
+1997
+10
+If you wear that velvet dress
+rock,alternative,tranquil
+5:15
+Ireland
+
+U2
+Pop
+1997
+11
+Please
+rock,alternative
+5:02
+Ireland
+
+U2
+Pop
+1997
+12
+Wake up dead man
+rock,alternative
+4:52
+Ireland
+
+U2
+Pop
+1997
+2
+Do you feel loved
+rock,alternative
+5:07
+Ireland
+
+U2
+Pop
+1997
+3
+Mofo
+rock,alternative
+5:49
+Ireland
+
+U2
+Pop
+1997
+4
+If god will send his angels
+rock,alternative
+5:22
+Ireland
+
+U2
+Pop
+1997
+5
+Staring at the sun
+rock,alternative
+4:36
+Ireland
+
+U2
+Pop
+1997
+6
+Last night on earth
+rock,alternative
+4:45
+Ireland
+
+U2
+Pop
+1997
+7
+Gone
+rock,alternative
+4:26
+Ireland
+
+U2
+Pop
+1997
+8
+Miami
+rock,alternative
+4:52
+Ireland
+
+U2
+Pop
+1997
+9
+The playboy mansion
+rock,alternative
+4:40
+Ireland
+
+U2
+Rattle and hum
+1988
+1
+Helter skelter
+rock,alternative,live
+3:07
+Ireland
+
+U2
+Rattle and hum
+1988
+10
+Angel of Harlem
+rock,alternative,live
+3:49
+Ireland
+
+U2
+Rattle and hum
+1988
+11
+Love rescue me
+rock,alternative,live
+6:23
+Ireland
+
+U2
+Rattle and hum
+1988
+12
+When love comes to town
+rock,alternative,live,blues
+4:14
+Ireland
+
+U2
+Rattle and hum
+1988
+13
+Heartland
+rock,alternative,live
+5:02
+Ireland
+
+U2
+Rattle and hum
+1988
+14
+God Part II
+rock,alternative,live
+3:15
+Ireland
+
+U2
+Rattle and hum
+1988
+15
+The star spangled banner
+rock,alternative,live,instrumental,guitar
+0:43
+Ireland
+
+U2
+Rattle and hum
+1988
+16
+Bullet the blue sky
+rock,alternative,live
+5:37
+Ireland
+
+U2
+Rattle and hum
+1988
+17
+All I want is you
+rock,alternative,live
+6:30
+Ireland
+
+U2
+Rattle and hum
+1988
+2
+Van Diemen's land
+rock,alternative,live
+3:06
+Ireland
+
+U2
+Rattle and hum
+1988
+3
+Desire
+rock,alternative,live
+2:58
+Ireland
+
+U2
+Rattle and hum
+1988
+4
+Hawkmoon 269
+rock,alternative,live
+6:22
+Ireland
+
+U2
+Rattle and hum
+1988
+5
+All along the watchtower
+rock,alternative,live
+4:24
+Ireland
+
+U2
+Rattle and hum
+1988
+6
+I still haven't found what I'm looking for
+rock,alternative,live,gospel
+5:53
+Ireland
+
+U2
+Rattle and hum
+1988
+7
+Freedom for my people
+rock,alternative,live
+0:38
+Ireland
+
+U2
+Rattle and hum
+1988
+8
+Silver and gold
+rock,alternative,live
+5:50
+Ireland
+
+U2
+Rattle and hum
+1988
+9
+Pride (in the name of love)
+rock,alternative,live
+4:27
+Ireland
+
+U2
+The Joshua tree
+1987
+1
+Where the streets have no name
+rock,alternative
+5:35
+Ireland
+
+U2
+The Joshua tree
+1987
+10
+Exit
+rock,alternative
+4:14
+Ireland
+
+U2
+The Joshua tree
+1987
+11
+Mothers of the disappeared
+rock,alternative
+5:14
+Ireland
+
+U2
+The Joshua tree
+1987
+2
+I still haven't found what I'm looking for
+rock,alternative
+4:38
+Ireland
+
+U2
+The Joshua tree
+1987
+3
+With or without you
+rock,alternative
+4:57
+Ireland
+
+U2
+The Joshua tree
+1987
+4
+Bullet the blue sky
+rock,alternative
+4:32
+Ireland
+
+U2
+The Joshua tree
+1987
+5
+Running to stand still
+rock,alternative
+4:20
+Ireland
+
+U2
+The Joshua tree
+1987
+6
+Red hill mining town
+rock,alternative
+4:51
+Ireland
+
+U2
+The Joshua tree
+1987
+7
+In God's country
+rock,alternative
+3:37
+Ireland
+
+U2
+The Joshua tree
+1987
+8
+Trip through your wires
+rock,alternative
+3:32
+Ireland
+
+U2
+The Joshua tree
+1987
+9
+One tree hill
+rock,alternative
+5:24
+Ireland
+
+U2
+The unforgettable fire
+1984
+1
+A sort of homecoming
+rock,alternative
+5:29
+Ireland
+
+U2
+The unforgettable fire
+1984
+10
+MLK
+alternative,tranquil
+2:31
+Ireland
+
+U2
+The unforgettable fire
+1984
+2
+Pride (in the name of love)
+rock,alternative
+3:50
+Ireland
+
+U2
+The unforgettable fire
+1984
+3
+Wire
+rock,alternative
+4:20
+Ireland
+
+U2
+The unforgettable fire
+1984
+4
+The unforgettable fire
+rock,alternative
+4:57
+Ireland
+
+U2
+The unforgettable fire
+1984
+5
+Promenade
+rock,alternative,tranquil
+2:33
+Ireland
+
+U2
+The unforgettable fire
+1984
+6
+4th of july
+rock,alternative,instrumental,soundscape,tranquil
+2:15
+Ireland
+
+U2
+The unforgettable fire
+1984
+7
+Bad
+rock,alternative
+6:09
+Ireland
+
+U2
+The unforgettable fire
+1984
+8
+Indian summer sky
+rock,alternative
+4:20
+Ireland
+
+U2
+The unforgettable fire
+1984
+9
+Elvis Presley & America
+rock,alternative
+6:24
+Ireland
+
+U2
+Under a blood red sky (Live)
+1983
+1
+Gloria
+rock,alternative,live
+4:32
+Ireland
+
+U2
+Under a blood red sky (Live)
+1983
+2
+11 o'clock tick tock
+rock,alternative,live
+4:34
+Ireland
+
+U2
+Under a blood red sky (Live)
+1983
+3
+I will follow
+rock,alternative,live
+3:36
+Ireland
+
+U2
+Under a blood red sky (Live)
+1983
+4
+Party girl
+rock,alternative,live
+2:52
+Ireland
+
+U2
+Under a blood red sky (Live)
+1983
+5
+Sunday bloody sunday
+rock,alternative,live
+4:55
+Ireland
+
+U2
+Under a blood red sky (Live)
+1983
+6
+The electric company
+rock,alternative,live
+5:18
+Ireland
+
+U2
+Under a blood red sky (Live)
+1983
+7
+New year's day
+rock,alternative,live
+4:29
+Ireland
+
+U2
+Under a blood red sky (Live)
+1983
+8
+"40"
+rock,alternative,live
+3:36
+Ireland
+
+U2
+War
+1985
+1
+Sunday bloody sunday
+rock,alternative
+4:37
+Ireland
+
+U2
+War
+1985
+10
+"40"
+rock,alternative
+2:38
+Ireland
+
+U2
+War
+1985
+2
+Seconds
+rock,alternative
+3:11
+Ireland
+
+U2
+War
+1985
+3
+New year's day
+rock,alternative
+5:36
+Ireland
+
+U2
+War
+1985
+4
+Like a song
+rock,alternative
+4:47
+Ireland
+
+U2
+War
+1985
+5
+Drowning man
+rock,alternative
+4:15
+Ireland
+
+U2
+War
+1985
+6
+The refugee
+rock,alternative
+3:41
+Ireland
+
+U2
+War
+1985
+7
+Two hearts beat as one
+rock,alternative
+4:03
+Ireland
+
+U2
+War
+1985
+8
+Red light
+rock,alternative
+3:46
+Ireland
+
+U2
+War
+1985
+9
+Surrender
+rock,alternative
+5:34
+Ireland
+
+U2
+Zooropa
+1993
+1
+Zooropa
+rock,alternative
+6:30
+Ireland
+
+U2
+Zooropa
+1993
+10
+The wanderer
+rock,alternative
+4:44
+Ireland
+
+U2
+Zooropa
+1993
+2
+Babyface
+rock,alternative
+4:00
+Ireland
+
+U2
+Zooropa
+1993
+3
+Numb
+rock,alternative,gloomy
+4:18
+Ireland
+
+U2
+Zooropa
+1993
+4
+Lemon
+rock,alternative
+6:56
+Ireland
+
+U2
+Zooropa
+1993
+5
+Stay (faraway: so close!)
+rock,alternative
+4:58
+Ireland
+
+U2
+Zooropa
+1993
+6
+Daddy's gonna pay for your crashed car
+rock,alternative
+5:19
+Ireland
+
+U2
+Zooropa
+1993
+7
+Some days are better than others
+rock,alternative
+4:15
+Ireland
+
+U2
+Zooropa
+1993
+8
+The first time
+rock,alternative
+3:45
+Ireland
+
+U2
+Zooropa
+1993
+9
+Dirty day
+rock,alternative
+5:24
+Ireland
+
+Ulver
+Childhood's end
+2012
+1
+Bracelets of fingers
+rock,cover
+4:11
+Norway
+
+Ulver
+Childhood's end
+2012
+10
+Dark is the bark
+rock,cover
+4:02
+Norway
+
+Ulver
+Childhood's end
+2012
+11
+Magic hollow
+rock,cover
+3:15
+Norway
+
+Ulver
+Childhood's end
+2012
+12
+Soon there will be thunder
+rock,cover
+2:26
+Norway
+
+Ulver
+Childhood's end
+2012
+13
+Velvet sunsets
+rock,cover
+2:44
+Norway
+
+Ulver
+Childhood's end
+2012
+14
+Lament of the astral cowboy
+rock,cover
+2:14
+Norway
+
+Ulver
+Childhood's end
+2012
+15
+I can see the light
+rock,cover
+3:13
+Norway
+
+Ulver
+Childhood's end
+2012
+16
+Where is yesterday
+rock,cover
+3:58
+Norway
+
+Ulver
+Childhood's end
+2012
+2
+Everybody's been burned
+rock,cover
+3:25
+Norway
+
+Ulver
+Childhood's end
+2012
+3
+The trap
+rock,cover
+2:33
+Norway
+
+Ulver
+Childhood's end
+2012
+4
+In the past
+rock,cover
+2:54
+Norway
+
+Ulver
+Childhood's end
+2012
+5
+Today
+rock,cover
+3:20
+Norway
+
+Ulver
+Childhood's end
+2012
+6
+Can you travel in the dark alone?
+rock,cover
+4:01
+Norway
+
+Ulver
+Childhood's end
+2012
+7
+I had too much to dream last night
+rock,cover
+2:54
+Norway
+
+Ulver
+Childhood's end
+2012
+8
+Street song
+rock,cover
+5:14
+Norway
+
+Ulver
+Childhood's end
+2012
+9
+66-5-4-3-2-1
+rock,cover
+3:22
+Norway
+
+Unexpect
+In a flesh aquarium
+2006
+1
+Chromatic chimera
+experimental,metal,chaotic
+5:52
+Canada
+
+Unexpect
+In a flesh aquarium
+2006
+10
+Psychic juggles
+experimental,metal,chaotic
+11:10
+Canada
+
+Unexpect
+In a flesh aquarium
+2006
+2
+Feasting fools
+experimental,metal,chaotic
+6:17
+Canada
+
+Unexpect
+In a flesh aquarium
+2006
+3
+Desert urbania
+experimental,metal,chaotic
+7:29
+Canada
+
+Unexpect
+In a flesh aquarium
+2006
+4
+Summoning scences
+experimental,metal,chaotic
+7:47
+Canada
+
+Unexpect
+In a flesh aquarium
+2006
+5
+Silence 011010701
+experimental,metal,chaotic,instrumental
+5:13
+Canada
+
+Unexpect
+In a flesh aquarium
+2006
+6
+Megalomaniac trees
+experimental,metal,chaotic
+5:57
+Canada
+
+Unexpect
+In a flesh aquarium
+2006
+7
+The shiver: a clown's mindtrap
+experimental,metal,chaotic,gloomy
+3:00
+Canada
+
+Unexpect
+In a flesh aquarium
+2006
+8
+The shiver: meet me at the carrousel
+experimental,metal,chaotic
+4:07
+Canada
+
+Unexpect
+In a flesh aquarium
+2006
+9
+The shiver: another dissonant chord
+experimental,metal,chaotic
+3:41
+Canada
+
+Vangelis
+Portraits
+1996
+1
+To the unknown man
+electronica,tranquil,instrumental
+6:34
+Greece
+
+Vangelis
+Portraits
+1996
+10
+Conquest of paradise
+electronica,choir,score
+5:31
+Greece
+
+Vangelis
+Portraits
+1996
+11
+Hymn
+electronica,choir
+5:06
+Greece
+
+Vangelis
+Portraits
+1996
+12
+Antarctica
+electronica,tranquil
+3:44
+Greece
+
+Vangelis
+Portraits
+1996
+13
+Sauvage et Beau
+electronica,boring,instrumental
+3:18
+Greece
+
+Vangelis
+Portraits
+1996
+14
+Chariots of fire
+electronica,tranquil,score,instrumental
+3:21
+Greece
+
+Vangelis
+Portraits
+1996
+15
+So long ago, so clear
+electronica,tranquil
+4:58
+Greece
+
+Vangelis
+Portraits
+1996
+2
+Italian song
+electronica,tranquil
+2:50
+Greece
+
+Vangelis
+Portraits
+1996
+3
+Pulstar
+electronica,instrumental
+5:38
+Greece
+
+Vangelis
+Portraits
+1996
+4
+La petite fille de la mer
+electronica,tranquil,boring,instrumental
+5:49
+Greece
+
+Vangelis
+Portraits
+1996
+5
+Alpha
+electronica,tranquil,instrumental
+5:34
+Greece
+
+Vangelis
+Portraits
+1996
+6
+I hear you now
+electronica,tranquil
+5:06
+Greece
+
+Vangelis
+Portraits
+1996
+7
+I'll find my way home
+electronica
+4:25
+Greece
+
+Vangelis
+Portraits
+1996
+8
+State of independence
+electronica
+6:08
+Greece
+
+Vangelis
+Portraits
+1996
+9
+Himalaya
+electronica,tranquil,soundscape,instrumental
+6:53
+Greece
+
+Virgin Records Ltd.
+The virgin (Directory of world music)
+1991
+1
+Watani laysa hakiba (Palestinian Student Karmel Group)
+world,pop,boring,compilation
+4:06
+Palestine
+
+Virgin Records Ltd.
+The virgin (Directory of world music)
+1991
+10
+Thuto kelefa (Mahlathini & the Mahotella Queens)
+world,pop,compilation
+5:01
+South Africa
+
+Virgin Records Ltd.
+The virgin (Directory of world music)
+1991
+11
+Oppskrift for herrefolk (Mari Boine Persen)
+folk,compilation
+3:54
+Lapland
+
+Virgin Records Ltd.
+The virgin (Directory of world music)
+1991
+12
+Akatswela (love is so bewildering) (Eyuphuro)
+world,pop,compilation
+4:50
+Mozambique
+
+Virgin Records Ltd.
+The virgin (Directory of world music)
+1991
+13
+Mix up (The Gladiators)
+reggae,compilation
+3:04
+Jamaica
+
+Virgin Records Ltd.
+The virgin (Directory of world music)
+1991
+14
+Ngoma yekwedu (Thomas Mapfumo & the Blacks Unlimited)
+world,pop,compilation
+5:05
+Zimbabwe
+
+Virgin Records Ltd.
+The virgin (Directory of world music)
+1991
+15
+El juguito (Henry Fiol)
+pop,compilation
+4:37
+U.S.A.
+
+Virgin Records Ltd.
+The virgin (Directory of world music)
+1991
+2
+Step by step (The Guo brothers)
+folk,compilation
+1:46
+China
+
+Virgin Records Ltd.
+The virgin (Directory of world music)
+1991
+3
+Ma-nsal (Cheb Zahouaini)
+world,pop,electronica,compilation
+5:49
+Algeria
+
+Virgin Records Ltd.
+The virgin (Directory of world music)
+1991
+4
+Dancé bonne pà dancé (Gerard Hubert)
+world,pop,compilation
+4:55
+French Antilles
+
+Virgin Records Ltd.
+The virgin (Directory of world music)
+1991
+5
+Mustt mustt (Massive Attack remix) (Nusrat Fateh Ali Khan)
+world,pop,electronica,compilation
+5:32
+Pakistan
+
+Virgin Records Ltd.
+The virgin (Directory of world music)
+1991
+6
+African typic collection (Sam Fan Thomas)
+world,pop,compilation
+6:38
+Cameroon
+
+Virgin Records Ltd.
+The virgin (Directory of world music)
+1991
+7
+Land of Anaka (Geoffrey Oryema)
+world,pop,tranquil,compilation
+5:21
+Uganda
+
+Virgin Records Ltd.
+The virgin (Directory of world music)
+1991
+8
+Porushka (The Dmitri Pokrovsky Ensemble)
+world,folk,vocal,compilation
+3:11
+Russia
+
+Virgin Records Ltd.
+The virgin (Directory of world music)
+1991
+9
+Camina y ven (Celina Gonzalez)
+world,folk,compilation
+3:20
+Cuba
+
+Vivaldi & Corelli & Albinoni
+Vivaldi & Corelli & Albinoni
+1992
+1
+The four seasons - Spring - Allegro
+classic,strings,baroque
+3:23
+Italy
+
+Vivaldi & Corelli & Albinoni
+Vivaldi & Corelli & Albinoni
+1992
+10
+The four seasons - Winter - Allegro non molto
+classic,strings,baroque
+3:34
+Italy
+
+Vivaldi & Corelli & Albinoni
+Vivaldi & Corelli & Albinoni
+1992
+11
+The four seasons - Winter - Largo
+classic,strings,baroque
+1:44
+Italy
+
+Vivaldi & Corelli & Albinoni
+Vivaldi & Corelli & Albinoni
+1992
+12
+The four seasons - Winter - Allegro
+classic,strings,baroque
+3:25
+Italy
+
+Vivaldi & Corelli & Albinoni
+Vivaldi & Corelli & Albinoni
+1992
+13
+Violin concerto in A Minor - Allegro moderato e deciso
+classic,strings,baroque
+3:04
+Italy
+
+Vivaldi & Corelli & Albinoni
+Vivaldi & Corelli & Albinoni
+1992
+14
+Violin concerto in A Minor - Largo
+classic,strings,baroque
+2:28
+Italy
+
+Vivaldi & Corelli & Albinoni
+Vivaldi & Corelli & Albinoni
+1992
+15
+Violin concerto in A Minor - Presto
+classic,strings,baroque
+2:19
+Italy
+
+Vivaldi & Corelli & Albinoni
+Vivaldi & Corelli & Albinoni
+1992
+16
+Concerto Op.6/4 - Adagio - allegro
+classic,strings,baroque
+2:51
+Italy
+
+Vivaldi & Corelli & Albinoni
+Vivaldi & Corelli & Albinoni
+1992
+17
+Concerto Op.6/4 - Adagio
+classic,strings,baroque
+2:42
+Italy
+
+Vivaldi & Corelli & Albinoni
+Vivaldi & Corelli & Albinoni
+1992
+18
+Concerto Op.6/4 - Vivace
+classic,strings,baroque
+1:11
+Italy
+
+Vivaldi & Corelli & Albinoni
+Vivaldi & Corelli & Albinoni
+1992
+19
+Concerto Op.6/4 - Allegro
+classic,strings,baroque
+3:15
+Italy
+
+Vivaldi & Corelli & Albinoni
+Vivaldi & Corelli & Albinoni
+1992
+2
+The four seasons - Spring - Largo
+classic,strings,baroque
+2:13
+Italy
+
+Vivaldi & Corelli & Albinoni
+Vivaldi & Corelli & Albinoni
+1992
+20
+Concerto a cinque - Allegro moderato
+classic,strings,baroque
+2:02
+Italy
+
+Vivaldi & Corelli & Albinoni
+Vivaldi & Corelli & Albinoni
+1992
+21
+Concerto a cinque - Adagio
+classic,strings,baroque
+1:30
+Italy
+
+Vivaldi & Corelli & Albinoni
+Vivaldi & Corelli & Albinoni
+1992
+22
+Concerto a cinque - Allegro vivace
+classic,strings,baroque
+1:29
+Italy
+
+Vivaldi & Corelli & Albinoni
+Vivaldi & Corelli & Albinoni
+1992
+3
+The four seasons - Spring - Allegro
+classic,strings,baroque
+3:58
+Italy
+
+Vivaldi & Corelli & Albinoni
+Vivaldi & Corelli & Albinoni
+1992
+4
+The four seasons - Summer - Allegro non molto - allegro
+classic,strings,baroque
+5:14
+Italy
+
+Vivaldi & Corelli & Albinoni
+Vivaldi & Corelli & Albinoni
+1992
+5
+The four seasons - Summer - Adagio - Presto - Adagio
+classic,strings,baroque
+2:08
+Italy
+
+Vivaldi & Corelli & Albinoni
+Vivaldi & Corelli & Albinoni
+1992
+6
+The four seasons - Summer - Presto
+classic,strings,baroque
+2:53
+Italy
+
+Vivaldi & Corelli & Albinoni
+Vivaldi & Corelli & Albinoni
+1992
+7
+The four seasons - Autumn - Allegro
+classic,strings,baroque
+5:05
+Italy
+
+Vivaldi & Corelli & Albinoni
+Vivaldi & Corelli & Albinoni
+1992
+8
+The four seasons - Autumn - Adagio molto
+classic,strings,baroque
+2:05
+Italy
+
+Vivaldi & Corelli & Albinoni
+Vivaldi & Corelli & Albinoni
+1992
+9
+The four seasons - Autumn - Allegro
+classic,strings,baroque
+3:16
+Italy
+
+Wende
+Last resistance
+2013
+1
+Ask the tree
+experimental,pop
+3:06
+Netherlands
+
+Wende
+Last resistance
+2013
+10
+Threat of happiness
+experimental,pop
+5:38
+Netherlands
+
+Wende
+Last resistance
+2013
+11
+Goodbye
+experimental,pop
+3:12
+Netherlands
+
+Wende
+Last resistance
+2013
+2
+Do Berlin
+experimental,pop
+3:42
+Netherlands
+
+Wende
+Last resistance
+2013
+3
+Nude
+experimental,pop
+3:39
+Netherlands
+
+Wende
+Last resistance
+2013
+4
+Dragon's tongue
+experimental,pop
+3:17
+Netherlands
+
+Wende
+Last resistance
+2013
+5
+Last resistance
+experimental,pop
+4:02
+Netherlands
+
+Wende
+Last resistance
+2013
+6
+Devil's pact
+experimental,pop
+4:06
+Netherlands
+
+Wende
+Last resistance
+2013
+7
+Not today, you're mine
+experimental,pop
+5:05
+Netherlands
+
+Wende
+Last resistance
+2013
+8
+Black feather
+experimental,pop
+3:26
+Netherlands
+
+Wende
+Last resistance
+2013
+9
+The garden
+experimental,pop
+4:09
+Netherlands
+
+Within Temptation
+Mother Earth
+2000
+1
+Mother earth
+metal,gothic,female fronted,progressive
+5:29
+Netherlands
+
+Within Temptation
+Mother Earth
+2000
+10
+In perfect harmony
+metal,gothic,female fronted,ballad
+6:58
+Netherlands
+
+Within Temptation
+Mother Earth
+2000
+2
+Ice queen
+metal,gothic,female fronted,progressive
+5:20
+Netherlands
+
+Within Temptation
+Mother Earth
+2000
+3
+Our farewell
+metal,gothic,female fronted,ballad
+5:18
+Netherlands
+
+Within Temptation
+Mother Earth
+2000
+4
+Caged
+metal,gothic,female fronted,progressive
+5:46
+Netherlands
+
+Within Temptation
+Mother Earth
+2000
+5
+The promise
+metal,gothic,female fronted,progressive
+8:00
+Netherlands
+
+Within Temptation
+Mother Earth
+2000
+6
+Never-ending story
+metal,gothic,female fronted,ballad
+4:02
+Netherlands
+
+Within Temptation
+Mother Earth
+2000
+7
+Deceiver of fools
+metal,gothic,female fronted,progressive
+7:34
+Netherlands
+
+Within Temptation
+Mother Earth
+2000
+8
+Intro
+metal,gothic,female fronted,instrumental,progressive
+1:08
+Netherlands
+
+Within Temptation
+Mother Earth
+2000
+9
+Dark wings
+metal,gothic,female fronted,progressive
+4:14
+Netherlands
+
+Within Temptation
+The silent force
+2004
+1
+Intro
+metal,gothic,female fronted,progressive
+1:58
+Netherlands
+
+Within Temptation
+The silent force
+2004
+10
+It's the fear
+metal,gothic,female fronted,progressive
+4:06
+Netherlands
+
+Within Temptation
+The silent force
+2004
+11
+Somewhere
+metal,gothic,female fronted,progressive
+4:13
+Netherlands
+
+Within Temptation
+The silent force
+2004
+12
+Video stand my ground
+metal,gothic,female fronted
+3:55
+Netherlands
+
+Within Temptation
+The silent force
+2004
+2
+See who I am
+metal,gothic,female fronted,progressive
+4:51
+Netherlands
+
+Within Temptation
+The silent force
+2004
+3
+Jillian (I'd give my heart)
+metal,gothic,female fronted,progressive
+4:46
+Netherlands
+
+Within Temptation
+The silent force
+2004
+4
+Stand my ground
+metal,gothic,female fronted,progressive
+4:26
+Netherlands
+
+Within Temptation
+The silent force
+2004
+5
+Pale
+metal,gothic,female fronted,progressive
+4:28
+Netherlands
+
+Within Temptation
+The silent force
+2004
+6
+Forsaken
+metal,gothic,female fronted,progressive
+4:53
+Netherlands
+
+Within Temptation
+The silent force
+2004
+7
+Angels
+metal,gothic,female fronted,progressive
+4:00
+Netherlands
+
+Within Temptation
+The silent force
+2004
+8
+Memories
+metal,gothic,female fronted,progressive
+3:51
+Netherlands
+
+Within Temptation
+The silent force
+2004
+9
+Aquarius
+metal,gothic,female fronted,progressive
+4:46
+Netherlands
+
+Wolfgang Amadeus Mozart
+Requiem
+1989
+1
+Introitus: requiem aeternam
+classic,symphonic
+5:02
+Austria
+
+Wolfgang Amadeus Mozart
+Requiem
+1989
+10
+Offertorium - Hostias et preces
+classic,symphonic
+4:38
+Austria
+
+Wolfgang Amadeus Mozart
+Requiem
+1989
+11
+Sanctus
+classic,symphonic
+1:36
+Austria
+
+Wolfgang Amadeus Mozart
+Requiem
+1989
+12
+Benedictus
+classic,symphonic
+5:34
+Austria
+
+Wolfgang Amadeus Mozart
+Requiem
+1989
+13
+Agnus dei
+classic,symphonic
+3:41
+Austria
+
+Wolfgang Amadeus Mozart
+Requiem
+1989
+14
+Communio: lux aeterna
+classic,symphonic
+5:46
+Austria
+
+Wolfgang Amadeus Mozart
+Requiem
+1989
+2
+Kyrie eleison
+classic,symphonic
+2:44
+Austria
+
+Wolfgang Amadeus Mozart
+Requiem
+1989
+3
+Sequentia - Dies irea
+classic,symphonic
+1:44
+Austria
+
+Wolfgang Amadeus Mozart
+Requiem
+1989
+4
+Sequentia - Tuba mirum
+classic,symphonic
+4:17
+Austria
+
+Wolfgang Amadeus Mozart
+Requiem
+1989
+5
+Sequentia - Rex tremendae majestatis
+classic,symphonic
+2:17
+Austria
+
+Wolfgang Amadeus Mozart
+Requiem
+1989
+6
+Sequentia - Recordare: Jesu pie
+classic,symphonic
+6:25
+Austria
+
+Wolfgang Amadeus Mozart
+Requiem
+1989
+7
+Sequentia - Confutatis maledictis
+classic,symphonic
+3:05
+Austria
+
+Wolfgang Amadeus Mozart
+Requiem
+1989
+8
+Sequentia - Lacrimosa dies illa
+classic,symphonic
+3:18
+Austria
+
+Wolfgang Amadeus Mozart
+Requiem
+1989
+9
+Offertorium - Domine Jesu Christe
+classic,symphonic
+3:31
+Austria
+
+Wolfmother
+Cosmic egg
+2009
+1
+California queen
+hard rock
+3:54
+Australia
+
+Wolfmother
+Cosmic egg
+2009
+10
+In the castle
+hard rock
+5:42
+Australia
+
+Wolfmother
+Cosmic egg
+2009
+11
+Phoenix
+hard rock
+4:45
+Australia
+
+Wolfmother
+Cosmic egg
+2009
+12
+Violence of the sun
+hard rock
+6:02
+Australia
+
+Wolfmother
+Cosmic egg
+2009
+2
+New moon rising
+hard rock
+3:45
+Australia
+
+Wolfmother
+Cosmic egg
+2009
+3
+White feather
+hard rock
+3:04
+Australia
+
+Wolfmother
+Cosmic egg
+2009
+4
+Sundial
+hard rock
+3:47
+Australia
+
+Wolfmother
+Cosmic egg
+2009
+5
+In the morning
+hard rock
+5:39
+Australia
+
+Wolfmother
+Cosmic egg
+2009
+6
+10,000 feet
+hard rock
+4:08
+Australia
+
+Wolfmother
+Cosmic egg
+2009
+7
+Cosmic egg
+hard rock
+4:04
+Australia
+
+Wolfmother
+Cosmic egg
+2009
+8
+Far away
+hard rock
+4:00
+Australia
+
+Wolfmother
+Cosmic egg
+2009
+9
+Pilgrim
+hard rock
+4:50
+Australia
+
+Wolfmother
+Wolfmother
+2006
+1
+Dimension
+hard rock,debut album
+4:21
+Australia
+
+Wolfmother
+Wolfmother
+2006
+10
+Witchcraft
+hard rock,debut album
+3:25
+Australia
+
+Wolfmother
+Wolfmother
+2006
+11
+Tales
+hard rock,debut album
+3:39
+Australia
+
+Wolfmother
+Wolfmother
+2006
+12
+Love train
+hard rock,debut album
+3:03
+Australia
+
+Wolfmother
+Wolfmother
+2006
+13
+Vagabond
+hard rock,debut album
+3:50
+Australia
+
+Wolfmother
+Wolfmother
+2006
+2
+White unicorn
+hard rock,debut album
+5:04
+Australia
+
+Wolfmother
+Wolfmother
+2006
+3
+Woman
+hard rock,debut album
+2:56
+Australia
+
+Wolfmother
+Wolfmother
+2006
+4
+Where eagles have been
+hard rock,debut album
+5:34
+Australia
+
+Wolfmother
+Wolfmother
+2006
+5
+Apple tree
+hard rock,debut album
+3:30
+Australia
+
+Wolfmother
+Wolfmother
+2006
+6
+Joker & the thief
+hard rock,debut album
+4:40
+Australia
+
+Wolfmother
+Wolfmother
+2006
+7
+Colossal
+hard rock,debut album
+5:04
+Australia
+
+Wolfmother
+Wolfmother
+2006
+8
+Mind's eye
+hard rock,debut album
+4:54
+Australia
+
+Wolfmother
+Wolfmother
+2006
+9
+Pyramid
+hard rock,debut album
+4:28
+Australia
+
+Yes
+90125
+1983
+1
+Owner of a lonely heart
+progressive,rock
+4:27
+England
+
+Yes
+90125
+1983
+2
+Hold on
+progressive,rock
+5:15
+England
+
+Yes
+90125
+1983
+3
+It can happen
+progressive,rock
+5:39
+England
+
+Yes
+90125
+1983
+4
+Changes
+progressive,rock
+6:16
+England
+
+Yes
+90125
+1983
+5
+Cinema
+progressive,rock,instrumental
+2:09
+England
+
+Yes
+90125
+1983
+6
+Leave it
+progressive,rock
+4:10
+England
+
+Yes
+90125
+1983
+7
+Our song
+progressive,rock
+4:16
+England
+
+Yes
+90125
+1983
+8
+City of love
+progressive,rock
+4:48
+England
+
+Yes
+90125
+1983
+9
+Hearts
+progressive,rock
+7:34
+England
+
+Yes
+Big generator
+1987
+1
+Rhythm of love
+progressive,rock
+4:49
+England
+
+Yes
+Big generator
+1987
+2
+Big generator
+progressive,rock
+4:31
+England
+
+Yes
+Big generator
+1987
+3
+Shoot high aim low
+progressive,rock
+6:59
+England
+
+Yes
+Big generator
+1987
+4
+Almost like love
+progressive,rock
+4:58
+England
+
+Yes
+Big generator
+1987
+5
+Love will find a way
+progressive,rock
+4:48
+England
+
+Yes
+Big generator
+1987
+6
+Final eyes
+progressive,rock
+6:20
+England
+
+Yes
+Big generator
+1987
+7
+I'm running
+progressive,rock
+7:34
+England
+
+Yes
+Big generator
+1987
+8
+Holy lamb (Song for harmonic convergence)
+progressive,rock,tranquil
+3:15
+England
+
+Yes
+Close to the edge
+1972
+1
+Close to the edge
+progressive,rock
+18:50
+England
+
+Yes
+Close to the edge
+1972
+2
+And you and I
+progressive,rock
+10:09
+England
+
+Yes
+Close to the edge
+1972
+3
+Siberian khatru
+progressive,rock
+8:57
+England
+
+Yes
+Fly from here
+2011
+1
+Fly from here - overture
+instrumental,rock
+1:53
+England
+
+Yes
+Fly from here
+2011
+10
+Solitaire
+guitar hero,instrumental,tranquil
+3:30
+England
+
+Yes
+Fly from here
+2011
+11
+Into the storm
+progressive,rock
+6:54
+England
+
+Yes
+Fly from here
+2011
+2
+Fly from here pt.1 - we can fly
+progressive,rock
+6:00
+England
+
+Yes
+Fly from here
+2011
+3
+Fly from here pt.2 - sad night at the airfield
+progressive,rock
+6:41
+England
+
+Yes
+Fly from here
+2011
+4
+Fly from here pt.3 - madman at the screens
+progressive,rock
+5:16
+England
+
+Yes
+Fly from here
+2011
+5
+Fly from here pt.4 - bumpy ride
+progressive,rock
+2:15
+England
+
+Yes
+Fly from here
+2011
+6
+Fly from here pt.5 - we can fly reprise
+progressive,rock
+1:44
+England
+
+Yes
+Fly from here
+2011
+7
+The man you always wanted me to be
+progressive,rock
+5:08
+England
+
+Yes
+Fly from here
+2011
+8
+Life on a film set
+progressive,rock
+5:01
+England
+
+Yes
+Fly from here
+2011
+9
+Hour of need
+progressive,rock
+3:07
+England
+
+Yes
+Fragile
+1972
+1
+Roundabout
+progressive,rock
+8:29
+England
+
+Yes
+Fragile
+1972
+2
+Cans and Brahms (Extracts from Brahms' 4th Symphony in E Minor Third Movement)
+progressive,rock,instrumental
+1:35
+England
+
+Yes
+Fragile
+1972
+3
+We have heaven
+vocal
+1:30
+England
+
+Yes
+Fragile
+1972
+4
+South side of the sky
+progressive,rock
+7:53
+England
+
+Yes
+Fragile
+1972
+5
+Five per cent for nothing
+progressive,rock,instrumental
+0:35
+England
+
+Yes
+Fragile
+1972
+6
+Long distance runaround
+progressive,rock
+3:33
+England
+
+Yes
+Fragile
+1972
+7
+The fish (Shindleria Praematurus)
+progressive,rock
+2:35
+England
+
+Yes
+Fragile
+1972
+8
+Mood for a day
+progressive,rock,instrumental,guitar
+2:57
+England
+
+Yes
+Fragile
+1972
+9
+Heart of the sunrise
+progressive,rock
+11:24
+England
+
+Yes
+Going for the one
+1977
+1
+Going for the one
+progressive,rock,experimental
+5:30
+England
+
+Yes
+Going for the one
+1977
+2
+Turn of the century
+progressive,rock
+7:58
+England
+
+Yes
+Going for the one
+1977
+3
+Parallels
+progressive,rock
+5:52
+England
+
+Yes
+Going for the one
+1977
+4
+Wonderous stories
+progressive,rock
+3:45
+England
+
+Yes
+Going for the one
+1977
+5
+Awaken
+progressive,rock
+15:38
+England
+
+Yes
+Magnification
+2001
+1
+Magnification
+progressive,rock
+7:15
+England
+
+Yes
+Magnification
+2001
+10
+Time is time
+progressive,rock,tranquil
+2:08
+England
+
+Yes
+Magnification
+2001
+2
+Spirit of survival
+progressive,rock
+6:01
+England
+
+Yes
+Magnification
+2001
+3
+Don't go
+progressive,rock
+4:26
+England
+
+Yes
+Magnification
+2001
+4
+Give love each day
+progressive,rock
+7:43
+England
+
+Yes
+Magnification
+2001
+5
+Can you imagine
+progressive,rock
+2:58
+England
+
+Yes
+Magnification
+2001
+6
+We agree
+progressive,rock
+6:30
+England
+
+Yes
+Magnification
+2001
+7
+Soft as a dove
+progressive,rock,tranquil
+2:17
+England
+
+Yes
+Magnification
+2001
+8
+Dreamtime
+progressive,rock
+10:45
+England
+
+Yes
+Magnification
+2001
+9
+In the presence of
+progressive,rock
+10:24
+England
+
+Yes
+Relayer
+1974
+1
+The gates of delirium
+progressive,rock
+21:55
+England
+
+Yes
+Relayer
+1974
+2
+Sound chaser
+progressive,rock,experimental
+9:25
+England
+
+Yes
+Relayer
+1974
+3
+To be over
+progressive,rock
+9:08
+England
+
+Yes
+Tales from topographic oceans
+1973
+1
+The revealing science of God / Dance of the dawn
+progressive,rock,experimental
+22:37
+England
+
+Yes
+Tales from topographic oceans
+1973
+2
+The remembering / High the memory
+progressive,rock,experimental
+20:53
+England
+
+Yes
+Tales from topographic oceans
+1973
+3
+The ancient giants under the sun
+progressive,rock,experimental
+18:35
+England
+
+Yes
+Tales from topographic oceans
+1973
+4
+Ritual (nous sommes du soleil)
+progressive,rock,experimental
+21:52
+England
+
+Yes
+Tales from topographic oceans
+1973
+5
+Dance of the dawn (studio run-through)
+progressive,rock,experimental
+23:35
+England
+
+Yes
+Tales from topographic oceans
+1973
+6
+Giants under the sun (studio run-through)
+progressive,rock,experimental
+17:17
+England
+
+Yes
+The Yes album
+1971
+1
+Yours is no disgrace
+progressive,rock
+9:36
+England
+
+Yes
+The Yes album
+1971
+2
+The clap
+progressive,rock,instrumental,guitar
+3:07
+England
+
+Yes
+The Yes album
+1971
+3
+Starship trooper
+progressive,rock
+9:23
+England
+
+Yes
+The Yes album
+1971
+4
+I've seen all good people
+progressive,rock
+6:47
+England
+
+Yes
+The Yes album
+1971
+5
+A venture
+progressive,rock
+3:13
+England
+
+Yes
+The Yes album
+1971
+6
+Perpetual change
+progressive,rock
+8:50
+England
+
+Yes
+The ladder
+1999
+1
+Homeworld (the ladder)
+progressive,rock
+9:32
+England
+
+Yes
+The ladder
+1999
+10
+New language
+progressive,rock
+9:19
+England
+
+Yes
+The ladder
+1999
+11
+Nine voices (longwalker)
+progressive,rock
+3:22
+England
+
+Yes
+The ladder
+1999
+2
+It will be a good day (the river)
+progressive,rock
+4:53
+England
+
+Yes
+The ladder
+1999
+3
+Lightning strikes
+progressive,rock
+4:35
+England
+
+Yes
+The ladder
+1999
+4
+Can I?
+progressive,rock
+1:31
+England
+
+Yes
+The ladder
+1999
+5
+Face to face
+progressive,rock
+5:02
+England
+
+Yes
+The ladder
+1999
+6
+If only you knew
+progressive,rock
+5:42
+England
+
+Yes
+The ladder
+1999
+7
+To be alive (hep yadda)
+progressive,rock
+5:07
+England
+
+Yes
+The ladder
+1999
+8
+Finally
+progressive,rock
+6:01
+England
+
+Yes
+The ladder
+1999
+9
+The messenger
+progressive,rock
+5:12
+England
+
+Yes
+Time and a word
+1970
+1
+No opportunity necessary: no experience needed
+progressive,rock
+4:47
+England
+
+Yes
+Time and a word
+1970
+2
+Then
+progressive,rock
+5:42
+England
+
+Yes
+Time and a word
+1970
+3
+Everydays
+progressive,rock
+6:06
+England
+
+Yes
+Time and a word
+1970
+4
+Sweet dreams
+progressive,rock
+3:48
+England
+
+Yes
+Time and a word
+1970
+5
+The prophet
+progressive,rock
+6:32
+England
+
+Yes
+Time and a word
+1970
+6
+Clear days
+progressive,rock,tranquil
+2:04
+England
+
+Yes
+Time and a word
+1970
+7
+Astral traveller
+progressive,rock
+5:50
+England
+
+Yes
+Time and a word
+1970
+8
+Time and a word
+progressive,rock
+4:31
+England
+
+Yes
+Tormato
+1978
+1
+Future times / Rejoice
+progressive,rock
+6:45
+England
+
+Yes
+Tormato
+1978
+2
+Don't kill the whale
+progressive,rock
+3:56
+England
+
+Yes
+Tormato
+1978
+3
+Madrigal
+progressive,rock,tranquil
+2:23
+England
+
+Yes
+Tormato
+1978
+4
+Release: release
+progressive,rock,live
+5:47
+England
+
+Yes
+Tormato
+1978
+5
+Arriving UFO
+progressive,rock
+6:03
+England
+
+Yes
+Tormato
+1978
+6
+Circus of heaven
+progressive,rock
+4:30
+England
+
+Yes
+Tormato
+1978
+7
+Onward
+progressive,rock
+4:02
+England
+
+Yes
+Tormato
+1978
+8
+On the silent wings of freedom
+progressive,rock
+7:47
+England
+
+Yes
+Union
+1991
+1
+I would have waited forever
+progressive,rock
+6:33
+England
+
+Yes
+Union
+1991
+10
+Angkor Wat
+progressive,rock
+5:24
+England
+
+Yes
+Union
+1991
+11
+Dangerous (look in the light of what you're searching for)
+progressive,rock
+3:39
+England
+
+Yes
+Union
+1991
+12
+Holding on
+progressive,rock
+5:24
+England
+
+Yes
+Union
+1991
+13
+Evensong
+progressive,rock,instrumental
+0:52
+England
+
+Yes
+Union
+1991
+14
+Take the water to the mountain
+progressive,rock
+3:12
+England
+
+Yes
+Union
+1991
+15
+Give and take
+progressive,rock
+4:30
+England
+
+Yes
+Union
+1991
+2
+Shock to the system
+progressive,rock
+5:09
+England
+
+Yes
+Union
+1991
+3
+Masquerade
+progressive,rock
+2:18
+England
+
+Yes
+Union
+1991
+4
+Lift me up
+progressive,rock
+6:30
+England
+
+Yes
+Union
+1991
+5
+Without hope you cannot start the day
+progressive,rock
+5:19
+England
+
+Yes
+Union
+1991
+6
+Saving my heart
+progressive,rock
+4:41
+England
+
+Yes
+Union
+1991
+7
+Miracle of life
+progressive,rock
+7:31
+England
+
+Yes
+Union
+1991
+8
+Silent talking
+progressive,rock
+4:00
+England
+
+Yes
+Union
+1991
+9
+The more we live - let go
+progressive,rock
+4:54
+England
+
+Yes
+Yes
+1969
+1
+Beyond and before
+progressive,rock,debut album
+4:50
+England
+
+Yes
+Yes
+1969
+2
+I see you
+progressive,rock,debut album
+6:33
+England
+
+Yes
+Yes
+1969
+3
+Yesterday and today
+progressive,rock,debut album,tranquil
+2:37
+England
+
+Yes
+Yes
+1969
+4
+Looking around
+progressive,rock,debut album
+3:49
+England
+
+Yes
+Yes
+1969
+5
+Harold Land
+progressive,rock,debut album
+5:26
+England
+
+Yes
+Yes
+1969
+6
+Every little thing
+progressive,rock,debut album
+5:24
+England
+
+Yes
+Yes
+1969
+7
+Sweetness
+progressive,rock,debut album,tranquil
+4:19
+England
+
+Yes
+Yes
+1969
+8
+Survival
+progressive,rock,debut album
+6:01
+England
+
+dEUS
+Following sea
+2012
+1
+Quatre mains
+alternative
+4:55
+Belgium
+
+dEUS
+Following sea
+2012
+10
+One thing about waves
+alternative
+6:23
+Belgium
+
+dEUS
+Following sea
+2012
+2
+Sirens
+alternative,rock
+4:12
+Belgium
+
+dEUS
+Following sea
+2012
+3
+Hidden wounds
+alternative,gloomy
+6:15
+Belgium
+
+dEUS
+Following sea
+2012
+4
+Girls keep drinking
+alternative
+3:48
+Belgium
+
+dEUS
+Following sea
+2012
+5
+Nothings
+alternative
+2:29
+Belgium
+
+dEUS
+Following sea
+2012
+6
+The soft fall
+alternative
+4:05
+Belgium
+
+dEUS
+Following sea
+2012
+7
+Crazy about you
+alternative
+3:45
+Belgium
+
+dEUS
+Following sea
+2012
+8
+The give up gene
+alternative
+4:57
+Belgium
+
+dEUS
+Following sea
+2012
+9
+Fire up the Google beast algorithm
+alternative
+2:04
+Belgium
+
+dEUS
+Keep you close
+2011
+1
+Keep you close
+alternative,rock
+5:16
+Belgium
+
+dEUS
+Keep you close
+2011
+2
+The final blast
+alternative,rock
+4:39
+Belgium
+
+dEUS
+Keep you close
+2011
+3
+Dark sets in
+alternative,rock
+4:53
+Belgium
+
+dEUS
+Keep you close
+2011
+4
+Twice (we survive)
+alternative,rock
+4:33
+Belgium
+
+dEUS
+Keep you close
+2011
+5
+Ghost
+alternative,rock
+4:36
+Belgium
+
+dEUS
+Keep you close
+2011
+6
+Constant now
+alternative,rock
+3:48
+Belgium
+
+dEUS
+Keep you close
+2011
+7
+The end of romance
+alternative,rock
+4:38
+Belgium
+
+dEUS
+Keep you close
+2011
+8
+Second nature
+alternative,rock
+4:03
+Belgium
+
+dEUS
+Keep you close
+2011
+9
+Easy
+alternative,rock
+6:38
+Belgium
+
+van Dinter records
+Easy does it, vol. 1
+2004
+1
+Luka (Suzanne Vega)
+pop,compilation
+3:53
+U.S.A.
+
+van Dinter records
+Easy does it, vol. 1
+2004
+10
+Is there anybody out there (Pink Floyd)
+progressive,rock,compilation
+2:42
+England
+
+van Dinter records
+Easy does it, vol. 1
+2004
+11
+Everybody hurts (R.E.M.)
+alternative,rock,compilation
+5:22
+U.S.A.
+
+van Dinter records
+Easy does it, vol. 1
+2004
+12
+Many rivers to cross (Joe Cocker)
+pop,compilation
+3:46
+England
+
+van Dinter records
+Easy does it, vol. 1
+2004
+13
+Here comes the sun (The Beatles)
+pop,tranquil,compilation
+3:09
+England
+
+van Dinter records
+Easy does it, vol. 1
+2004
+14
+Give a little bit (Supertramp)
+pop,compilation
+4:11
+England
+
+van Dinter records
+Easy does it, vol. 1
+2004
+15
+J'y suis jamais alle (Yann Tiersen)
+pop,compilation
+1:34
+France
+
+van Dinter records
+Easy does it, vol. 1
+2004
+2
+Forbidden colour (David Sylvian)
+alternative,pop,compilation
+6:01
+England
+
+van Dinter records
+Easy does it, vol. 1
+2004
+3
+Heaven still cries (16 Down)
+pop,compilation
+3:47
+Netherlands
+
+van Dinter records
+Easy does it, vol. 1
+2004
+4
+Porcelain (Moby)
+pop,electronica,compilation
+4:03
+U.S.A.
+
+van Dinter records
+Easy does it, vol. 1
+2004
+5
+Mad about you (Hooverphonic)
+pop,compilation
+3:45
+Belgium
+
+van Dinter records
+Easy does it, vol. 1
+2004
+6
+Day is done (Johan)
+pop,compilation
+4:20
+Netherlands
+
+van Dinter records
+Easy does it, vol. 1
+2004
+7
+Stay (Lisa Loeb)
+pop,compilation
+3:05
+U.S.A.
+
+van Dinter records
+Easy does it, vol. 1
+2004
+8
+Brand new friend (Lloyd Cole & The Commotions)
+pop,compilation
+4:52
+England
+
+van Dinter records
+Easy does it, vol. 1
+2004
+9
+Wherever I lay my hat (Paul Young)
+pop,compilation
+6:03
+England
+
+van Dinter records
+Easy does it, vol. 2
+2004
+1
+Sing (Travis)
+pop,tranquil,compilation
+3:50
+Scotland
+
+van Dinter records
+Easy does it, vol. 2
+2004
+10
+Perfect day (Lou Reed)
+alternative,pop,tranquil,compilation
+3:46
+U.S.A.
+
+van Dinter records
+Easy does it, vol. 2
+2004
+11
+Day is done (Johan)
+pop,compilation
+4:20
+Netherlands
+
+van Dinter records
+Easy does it, vol. 2
+2004
+12
+Save tonight (Eagle Eye Cherry)
+pop,compilation
+3:58
+Sweden
+
+van Dinter records
+Easy does it, vol. 2
+2004
+13
+Flowers in the window (Travis)
+pop,compilation
+3:43
+Scotland
+
+van Dinter records
+Easy does it, vol. 2
+2004
+14
+I mean I guess (Johan)
+pop,compilation
+2:54
+Netherlands
+
+van Dinter records
+Easy does it, vol. 2
+2004
+15
+Hallelujah (Jeff Buckley)
+pop,tranquil,compilation
+6:55
+U.S.A.
+
+van Dinter records
+Easy does it, vol. 2
+2004
+16
+Tumble and fall (Johan)
+pop,compilation
+3:30
+Netherlands
+
+van Dinter records
+Easy does it, vol. 2
+2004
+17
+Mr. E's beautiful blues (Eels)
+pop,alternative,compilation
+3:58
+U.S.A.
+
+van Dinter records
+Easy does it, vol. 2
+2004
+2
+Graceland (Kashmir)
+pop,compilation
+4:51
+Denmark
+
+van Dinter records
+Easy does it, vol. 2
+2004
+3
+A thousand miles (Vanessa Carlton)
+pop,compilation
+3:58
+U.S.A.
+
+van Dinter records
+Easy does it, vol. 2
+2004
+4
+Drawn from memory (Embrace)
+pop,compilation
+7:02
+England
+
+van Dinter records
+Easy does it, vol. 2
+2004
+5
+The second you sleep (Saybia)
+pop,compilation
+4:10
+Denmark
+
+van Dinter records
+Easy does it, vol. 2
+2004
+6
+Fallin' (Alicia Keys)
+pop,compilation
+3:17
+U.S.A.
+
+van Dinter records
+Easy does it, vol. 2
+2004
+7
+In my place (Coldplay)
+pop,alternative,compilation
+3:50
+England
+
+van Dinter records
+Easy does it, vol. 2
+2004
+8
+I am calling you (Jevetta Steele)
+pop,compilation
+5:19
+U.S.A.
+
+van Dinter records
+Easy does it, vol. 2
+2004
+9
+Alcoholic (Starsailor)
+pop,compilation
+2:57
+England
diff --git a/files/practicum/OTP.icl b/files/practicum/OTP.icl new file mode 100644 index 0000000..f138a63 --- /dev/null +++ b/files/practicum/OTP.icl @@ -0,0 +1,4 @@ +module OTP
+
+import StdEnv, RandomGetallen, SimpleFileIO
+
diff --git a/files/practicum/OhDennenboom.dcl b/files/practicum/OhDennenboom.dcl new file mode 100644 index 0000000..e298d68 --- /dev/null +++ b/files/practicum/OhDennenboom.dcl @@ -0,0 +1,4 @@ +definition module OhDennenboom
+
+driehoek :: Int -> String
+dennenboom :: Int -> String
diff --git a/files/practicum/OhDennenboom.icl b/files/practicum/OhDennenboom.icl new file mode 100644 index 0000000..0bb4782 --- /dev/null +++ b/files/practicum/OhDennenboom.icl @@ -0,0 +1,10 @@ +implementation module OhDennenboom
+
+import StdEnv
+
+Start = driehoek 5
+//Start = dennenboom 5
+
+driehoek :: Int -> String
+
+dennenboom :: Int -> String
diff --git a/files/practicum/OhDennenboom2.icl b/files/practicum/OhDennenboom2.icl new file mode 100644 index 0000000..56ae4ba --- /dev/null +++ b/files/practicum/OhDennenboom2.icl @@ -0,0 +1,6 @@ +implementation module OhDennenboom2
+
+import StdEnv
+import OhDennenboom
+
+Start world = ...
diff --git a/files/practicum/Origami.icl b/files/practicum/Origami.icl new file mode 100644 index 0000000..304ca73 --- /dev/null +++ b/files/practicum/Origami.icl @@ -0,0 +1,20 @@ +module Origami
+
+import StdEnv
+
+Start = and
+ [ sum` [1 .. 5] == sum [1 .. 5]
+ , prod` [1 .. 5] == prod [1 .. 5]
+ , flatten` [[],[1],[1,2],[1,2,3]] == flatten [[],[1],[1,2],[1,2,3]]
+ , reverse` [1 .. 5] == reverse [1 .. 5]
+ , takeWhile` ((<>) 0) [1,2,3,0,4,5,6] == takeWhile ((<>) 0) [1,2,3,0,4,5,6]
+ , maxList` [1 .. 5] == maxList [1 .. 5]
+ ]
+
+sum` = ...
+prod` = ...
+flatten` = ...
+length` = ...
+reverse` = ...
+takeWhile` = ...
+maxList` = ...
diff --git a/files/practicum/Othello.icl b/files/practicum/Othello.icl new file mode 100644 index 0000000..0aa46f9 --- /dev/null +++ b/files/practicum/Othello.icl @@ -0,0 +1,3 @@ +implementation module Othello
+
+import StdEnv
diff --git a/files/practicum/Partities.dcl b/files/practicum/Partities.dcl new file mode 100644 index 0000000..87f7424 --- /dev/null +++ b/files/practicum/Partities.dcl @@ -0,0 +1,3 @@ +definition module Partities
+
+partities :: // meest algemene type
diff --git a/files/practicum/Partities.icl b/files/practicum/Partities.icl new file mode 100644 index 0000000..cdf1bcc --- /dev/null +++ b/files/practicum/Partities.icl @@ -0,0 +1,8 @@ +implementation module Partities
+
+import StdEnv
+
+Start = partities [4,4,4,4]
+
+partities :: // meest algemene type
+partities ...
diff --git a/files/practicum/Perms.dcl b/files/practicum/Perms.dcl new file mode 100644 index 0000000..b17db00 --- /dev/null +++ b/files/practicum/Perms.dcl @@ -0,0 +1,3 @@ +definition module Perms
+
+perms :: // meest algemene type
diff --git a/files/practicum/Perms.icl b/files/practicum/Perms.icl new file mode 100644 index 0000000..bc294b7 --- /dev/null +++ b/files/practicum/Perms.icl @@ -0,0 +1,8 @@ +implementation module Perms
+
+import StdEnv
+
+Start = perms [1..5]
+
+perms :: // meest algemene type
+perms ...
diff --git a/files/practicum/Pesten.icl b/files/practicum/Pesten.icl new file mode 100644 index 0000000..0b981e4 --- /dev/null +++ b/files/practicum/Pesten.icl @@ -0,0 +1,5 @@ +implementation module Pesten
+
+import StdEnv, RandomGetallen, Kaart
+
+Start = 0
diff --git a/files/practicum/Priemfactoren.icl b/files/practicum/Priemfactoren.icl new file mode 100644 index 0000000..2944b85 --- /dev/null +++ b/files/practicum/Priemfactoren.icl @@ -0,0 +1,12 @@ +module Priemfactoren
+
+import StdEnv
+import Priemgetal
+
+priemfactoren :: Int -> String
+
+Start = ( priemfactoren 36, '\n'
+ , priemfactoren 133, '\n'
+ , priemfactoren 52, '\n'
+ , priemfactoren 123456789,'\n'
+ )
diff --git a/files/practicum/Priemgetal.dcl b/files/practicum/Priemgetal.dcl new file mode 100644 index 0000000..2740660 --- /dev/null +++ b/files/practicum/Priemgetal.dcl @@ -0,0 +1,3 @@ +definition module Priemgetal
+
+isPriemgetal :: Int -> Bool
diff --git a/files/practicum/Priemgetal.icl b/files/practicum/Priemgetal.icl new file mode 100644 index 0000000..98656a3 --- /dev/null +++ b/files/practicum/Priemgetal.icl @@ -0,0 +1,19 @@ +implementation module Priemgetal
+
+import StdEnv
+
+// Hier moet True uitkomen:
+Start = [x \\ x <- [1 .. 1000] | isPriemgetal x]
+ ==
+ [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71,
+ 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173,
+ 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241, 251, 257, 263, 269, 271, 277, 281,
+ 283, 293, 307, 311, 313, 317, 331, 337, 347, 349, 353, 359, 367, 373, 379, 383, 389, 397, 401, 409,
+ 419, 421, 431, 433, 439, 443, 449, 457, 461, 463, 467, 479, 487, 491, 499, 503, 509, 521, 523, 541,
+ 547, 557, 563, 569, 571, 577, 587, 593, 599, 601, 607, 613, 617, 619, 631, 641, 643, 647, 653, 659,
+ 661, 673, 677, 683, 691, 701, 709, 719, 727, 733, 739, 743, 751, 757, 761, 769, 773, 787, 797, 809,
+ 811, 821, 823, 827, 829, 839, 853, 857, 859, 863, 877, 881, 883, 887, 907, 911, 919, 929, 937, 941,
+ 947, 953, 967, 971, 977, 983, 991, 997
+ ]
+
+isPriemgetal :: Int -> Bool
diff --git a/files/practicum/PropositieLogica2.dcl b/files/practicum/PropositieLogica2.dcl new file mode 100644 index 0000000..555022f --- /dev/null +++ b/files/practicum/PropositieLogica2.dcl @@ -0,0 +1,21 @@ +definition module PropositieLogica2
+
+import StdEnv
+
+// Definitie PropL moet gekopieerd worden uit PropositieLogica2.icl
+:: PropL = Waar // logische waarheid
+ | Onwaar // logische onwaarheid
+ | Niet PropL // ontkenning van een term
+ | En PropL PropL // logische conjunctie
+ | Of PropL PropL // logische disjunctie
+ | Var Ident // variabele v met gegeven index i
+:: Ident :== Int // variabelen hebben een index i (> 0)
+:: Valuatie // valuatie van variabelen naar booleans
+
+instance toString PropL
+
+eval1 :: PropL -> Bool
+eval2 :: Valuatie PropL -> Bool
+vars :: PropL -> [Ident]
+vals :: [Ident] -> [Valuatie]
+truths :: PropL -> [Valuatie]
diff --git a/files/practicum/PropositieLogica2.icl b/files/practicum/PropositieLogica2.icl new file mode 100644 index 0000000..af19488 --- /dev/null +++ b/files/practicum/PropositieLogica2.icl @@ -0,0 +1,26 @@ +implementation module PropositieLogica2
+
+import StdEnv
+
+:: PropL ...
+:: Valuatie ...
+
+instance toString PropL where
+ toString ...
+
+eval1 :: PropL -> Bool
+eval1 ...
+
+eval2 :: Valuatie PropL -> Bool
+eval2 ...
+
+vars :: PropL -> ...
+vars ...
+
+vals :: ...
+vals ...
+
+truths :: PropL -> [Valuatie]
+truths ...
+
+Start = 0
diff --git a/files/practicum/PropositieLogica3.dcl b/files/practicum/PropositieLogica3.dcl new file mode 100644 index 0000000..af03b10 --- /dev/null +++ b/files/practicum/PropositieLogica3.dcl @@ -0,0 +1,34 @@ +definition module PropositieLogica3
+
+import StdBool2, StdClass
+
+// Definitie PropL moet gekopieerd worden uit PropositieLogica3.icl
+:: PropL d = Con d // constante d (2-waardig of 3-waardig)
+ | Var Ident // variabele met gegeven naam
+ | Niet (PropL d) // ontkenning van een term
+ | En (PropL d) (PropL d) // logische conjunctie
+ | Of (PropL d) (PropL d) // logische disjunctie
+:: Ident :== Int // variabelen hebben een index i (> 0)
+:: Valuatie d // valuatie van variabelen naar booleans
+
+:: Bool3 = Waar | Onwaar | Onbekend
+
+class domein d :: [d]
+class true d :: d
+
+instance domein Bool
+instance domein Bool3
+instance true Bool
+instance true Bool3
+instance == Bool3
+instance ~~ Bool3
+instance ||| Bool3
+instance &&& Bool3
+instance toString Bool3
+instance toString (PropL d) | toString d
+
+
+vars :: (PropL d) -> [Ident]
+vals :: [Ident] -> [Valuatie d] | domein d
+eval :: (Valuatie d) (PropL d) -> d | ~~, |||, &&& d
+truths :: (PropL d) -> [Valuatie d] | ~~, |||, &&&, ==, domein, true d
diff --git a/files/practicum/PropositieLogica3.icl b/files/practicum/PropositieLogica3.icl new file mode 100644 index 0000000..12a2110 --- /dev/null +++ b/files/practicum/PropositieLogica3.icl @@ -0,0 +1,24 @@ +implementation module PropositieLogica3
+
+import StdEnv
+
+:: PropL ...
+:: Valuatie ...
+:: Waarde ...
+
+instance toString PropL where
+ toString ...
+
+eval :: Valuatie PropL -> Waarde
+eval ...
+
+vars :: PropL -> ...
+vars ...
+
+vals :: ...
+vals ...
+
+truths :: PropL -> [Valuatie]
+truths ...
+
+Start = 0
diff --git a/files/practicum/Random.dcl b/files/practicum/Random.dcl new file mode 100644 index 0000000..cc4f646 --- /dev/null +++ b/files/practicum/Random.dcl @@ -0,0 +1,22 @@ +definition module Random
+
+// **************************************************************************************************
+//
+// General utility for random number generation.
+//
+// This module has been written in Clean 1.3.2 and uses the Clean Standard Object I/O library 1.2
+//
+// **************************************************************************************************
+
+import StdTime
+
+:: RandomSeed
+
+nullRandomSeed :: RandomSeed
+// nullRandomSeed generates a useless RandomSeed (random nullRandomSeed = (0,nullRandomSeed)).
+
+getNewRandomSeed:: !*env -> (!RandomSeed, !*env) | TimeEnv env
+// GetNewRandomSeed generates a useful RandomSeed, using the current time.
+
+random :: !RandomSeed -> .(!Int, !RandomSeed)
+// Given a RandomSeed, Random generates a random number and a new RandomSeed.
diff --git a/files/practicum/Random.icl b/files/practicum/Random.icl new file mode 100644 index 0000000..2983656 --- /dev/null +++ b/files/practicum/Random.icl @@ -0,0 +1,23 @@ +implementation module Random
+
+import StdInt, StdClass
+import StdTime
+
+:: RandomSeed :== Int
+
+nullRandomSeed :: RandomSeed
+nullRandomSeed
+ = 0
+
+getNewRandomSeed :: !*env -> (!RandomSeed, !*env) | TimeEnv env
+getNewRandomSeed env
+# ({hours,minutes,seconds}, env) = getCurrentTime env
+= (1+(hours+minutes+seconds) bitand 65535, env)
+
+random :: !RandomSeed -> .(!Int,!RandomSeed)
+random seed
+ = (newSeed,newSeed)
+where
+ newSeed = if (nextSeed>=0) nextSeed (nextSeed+65537)
+ nextSeed = (seed75 bitand 65535)-(seed75>>16)
+ seed75 = seed*75
diff --git a/files/practicum/RandomGetallen.dcl b/files/practicum/RandomGetallen.dcl new file mode 100644 index 0000000..2ca4b27 --- /dev/null +++ b/files/practicum/RandomGetallen.dcl @@ -0,0 +1,7 @@ +definition module RandomGetallen
+
+import Random
+
+random_n :: Int RandomSeed -> ([Int],RandomSeed)
+random_inf :: RandomSeed -> [Int]
+shuffle :: [a] RandomSeed -> [a]
diff --git a/files/practicum/RandomGetallen.icl b/files/practicum/RandomGetallen.icl new file mode 100644 index 0000000..9d57268 --- /dev/null +++ b/files/practicum/RandomGetallen.icl @@ -0,0 +1,20 @@ +implementation module RandomGetallen
+
+import StdEnv, Random
+
+Start :: *World -> ([Int],*World)
+Start world
+# (rs,world) = getNewRandomSeed world
+= (shuffle [1..10] rs,world)
+
+random_n :: Int RandomSeed -> ([Int],RandomSeed)
+random_n ...
+
+random_inf :: RandomSeed -> [Int]
+random_inf ...
+
+iterateSt :: (s -> (a,s)) s -> [a]
+iterateSt ...
+
+shuffle :: [a] RandomSeed -> [a]
+shuffle ...
diff --git a/files/practicum/ReducerenVanLijsten.icl b/files/practicum/ReducerenVanLijsten.icl new file mode 100644 index 0000000..42eda28 --- /dev/null +++ b/files/practicum/ReducerenVanLijsten.icl @@ -0,0 +1,34 @@ +module ReducerenVanLijsten
+
+import StdEnv
+
+// 1.
+Start
+= [] ++ []
+
+
+// 2.
+Start
+= [] ++ [x 0,x 1] ++ []
+
+
+// 3.
+Start
+= [[]] ++ [x 0,x 1]
+
+
+// 4.
+Start
+= [[x 0,x 1]] ++ [[]]
+
+
+// 5.
+Start
+= [] ++ ([x 0] ++ ([x 1,x 2] ++ [x 3,x 4,x 5]))
+
+
+// 6.
+Start
+= (([] ++ [x 0]) ++ [x 1,x 2]) ++ [x 3,x 4,x 5]
+
+x i = "x" +++ toString i
diff --git a/files/practicum/RefactorX.dcl b/files/practicum/RefactorX.dcl new file mode 100644 index 0000000..3ddc8a4 --- /dev/null +++ b/files/practicum/RefactorX.dcl @@ -0,0 +1,18 @@ +definition module RefactorX
+
+import StdEnv
+
+:: Expr = NR Int
+ | VAR Name
+ | OP Expr Operator Expr
+ | LET Name Expr Expr
+:: Name :== String
+:: Operator = PLUS | MIN | MUL | DIV
+:: Val = Result Int | Undef
+
+from StdClass import class toString
+
+instance toString Expr
+free :: Expr -> [Name]
+remove_unused_lets :: Expr -> Expr
+eval :: Expr -> Val
diff --git a/files/practicum/RefactorX.icl b/files/practicum/RefactorX.icl new file mode 100644 index 0000000..a2b5614 --- /dev/null +++ b/files/practicum/RefactorX.icl @@ -0,0 +1,32 @@ +implementation module RefactorX
+
+import StdEnv
+
+Start = map toString [E1,E2,E3,E4,E5]
+
+E1 = (let x = 42 - 3 in x / 0) + (let y = 6 in y * y)
+E2 = let x = 42 in x + (let x = 58 in x)
+E3 = let x = 1 in let y = 2 in let x = 3 in 4
+E4 = let x = 1 in x + y
+E5 = (let x = 1 in x) * x
+
+:: Expr = NR Int
+ | VAR Name
+ | OP Expr Operator Expr
+ | LET Name Expr Expr
+:: Name :== String
+:: Operator = PLUS | MIN | MUL | DIV
+:: Val = Result Int | Undef
+
+// expressies afdrukken:
+instance toString Expr where
+ toString ...
+
+// vrije variabelen:
+free :: Expr -> [Name]
+
+// verwijder deelexpressies met ongebruikte let-variabelen:
+remove_unused_lets :: Expr -> Expr
+
+// evaluator met tabel van naam-waarde paren:
+eval :: Expr -> Val
diff --git a/files/practicum/RefactorXX.dcl b/files/practicum/RefactorXX.dcl new file mode 100644 index 0000000..4b7748f --- /dev/null +++ b/files/practicum/RefactorXX.dcl @@ -0,0 +1,26 @@ +definition module RefactorXX
+
+:: Expr = NR Int
+ | VAR Name
+ | OP Expr Operator Expr
+ | LET Name Expr Expr
+:: Name :== String
+:: Operator = PLUS | MIN | MUL | DIV
+:: Val a = Result a | Undef
+
+class fail c :: c a
+class return c :: a -> c a
+class (>>=) infix 0 c :: (c a) (a -> c b) -> c b
+class Monad c | return, >>= c
+class MonadFail c | Monad, fail c
+
+instance fail [], Val
+instance return [], Val
+instance >>= [], Val
+
+from StdClass import class toString
+
+instance toString Expr
+free :: Expr -> [Name]
+remove_unused_lets :: Expr -> Expr
+eval :: Expr -> c Int | MonadFail c
diff --git a/files/practicum/RefactorXX.icl b/files/practicum/RefactorXX.icl new file mode 100644 index 0000000..e7d249f --- /dev/null +++ b/files/practicum/RefactorXX.icl @@ -0,0 +1,62 @@ +implementation module RefactorXX
+
+import StdClass, StdInt, StdList, StdOverloaded, StdString
+
+//Start = map toString [E1,E2,E3,E4,E5]
+
+/*
+E1 = (let x = 42 - 3 in x / 0) + (let y = 6 in y * y)
+E2 = let x = 42 in x + (let x = 58 in x)
+E3 = let x = 1 in let y = 2 in let x = 3 in 4
+E4 = let x = 1 in x + y
+E5 = (let x = 1 in x) * x
+E6 = let x = 5 in let y = x in 0
+*/
+
+E1 = (OP (LET "x" (OP (NR 42) MIN (NR 3)) (OP (VAR "x") DIV (NR 0))) PLUS (LET "y" (NR 6) (OP (VAR "y") MUL (VAR "y"))))
+E2 = (LET "x" (NR 42) (OP (VAR "x") PLUS (LET "x" (NR 58) (VAR "x"))))
+E3 = (LET "x" (NR 1) (LET "y" (NR 2) (LET "x" (NR 3) (NR 4))))
+E4 = (LET "x" (NR 1) (OP (VAR "x") PLUS (VAR "y")))
+E5 = (OP (LET "x" (NR 1) (VAR "x")) MUL (VAR "x"))
+E6 = (LET "x" (NR 5) (LET "y" (VAR "x") (NR 0)))
+
+:: Expr = NR Int
+ | VAR Name
+ | OP Expr Operator Expr
+ | LET Name Expr Expr
+:: Name :== String
+:: Operator = PLUS | MIN | MUL | DIV
+:: Val a = Result a | Undef
+
+class fail c :: c a
+class return c :: a -> c a
+class (>>=) infix 0 c :: (c a) (a -> c b) -> c b
+class Monad c | return, >>= c
+class MonadFail c | Monad, fail c
+
+instance fail Val where // maak deze instance af
+instance return Val where // maak deze instance af
+instance >>= Val where // maak deze instance af
+
+instance fail [] where // maak deze instance af
+instance return [] where // maak deze instance af
+instance >>= [] where // maak deze instance af
+
+// expressies afdrukken:
+instance toString Expr where // maak deze instance af
+
+// vrije variabelen:
+free :: Expr -> [Name]
+free // maak deze functie af
+
+// verwijder deelexpressies met ongebruikte let-variabelen:
+remove_unused_lets :: Expr -> Expr
+remove_unused_lets // maak deze functie af
+
+// evaluator, monadische stijl:
+eval :: Expr -> c Int | MonadFail c
+eval // maak deze functie af
+
+
+Start :: [[Int]]
+Start = [eval E1, eval E2, eval E3, eval E4, eval E5]
diff --git a/files/practicum/ReturnEnBind.icl b/files/practicum/ReturnEnBind.icl new file mode 100644 index 0000000..c6cf089 --- /dev/null +++ b/files/practicum/ReturnEnBind.icl @@ -0,0 +1,14 @@ +module ReturnEnBind
+
+import StdEnv, Random
+
+Start = 42
+
+(bind1) infix 0 :: (St s a) (a -> (St s b)) -> St s b
+(bind1) f1 f2 = ...
+
+som2 :: (RandomSeed -> (Int,RandomSeed))
+som2 ...
+
+seqList1 :: [St s a] -> St s [a]
+seqList1 ...
diff --git a/files/practicum/RomeinsGetal.dcl b/files/practicum/RomeinsGetal.dcl new file mode 100644 index 0000000..4657184 --- /dev/null +++ b/files/practicum/RomeinsGetal.dcl @@ -0,0 +1,9 @@ +definition module RomeinsGetal
+
+import StdEnv
+
+:: RD = M | D | C | L | X | V | I
+:: Roman = Roman [RD]
+
+instance toInt Roman
+instance fromInt Roman
diff --git a/files/practicum/RomeinsGetal.icl b/files/practicum/RomeinsGetal.icl new file mode 100644 index 0000000..4f85866 --- /dev/null +++ b/files/practicum/RomeinsGetal.icl @@ -0,0 +1,13 @@ +implementation module RomeinsGetal
+
+import StdEnv
+
+Start :: [Roman]
+Start = [fromInt 42, fromInt 999, fromInt 1024]
+
+
+:: RD = M | D | C | L | X | V | I
+:: Roman = Roman [RD]
+
+instance toInt Roman where // maak deze instantie af
+instance fromInt Roman where // maak deze instantie af
diff --git a/files/practicum/ScanEnIterate.icl b/files/practicum/ScanEnIterate.icl new file mode 100644 index 0000000..8a8034b --- /dev/null +++ b/files/practicum/ScanEnIterate.icl @@ -0,0 +1,11 @@ +module ScanEnIterate
+
+import StdEnv
+
+Start = scan (+) 0 [1 .. 10] = ?
+
+Start = scan (*) 1 [2 .. 10] = ?
+
+Start = take 5 (iterate (flip (^) 2) 2) = ?
+
+Start = take 10 (iterate (flip (/) 10) 123456) = ?
diff --git a/files/practicum/SeqEnSeqList.icl b/files/practicum/SeqEnSeqList.icl new file mode 100644 index 0000000..c303c57 --- /dev/null +++ b/files/practicum/SeqEnSeqList.icl @@ -0,0 +1,16 @@ +module SeqEnSeqList
+
+import StdEnv, StdStack
+
+Start = and
+ [ elements` s1 == elements s2
+ , elements` (popn` 3 s1) == elements (popn 3 s2)
+ , topn` 3 s1 == topn 3 s2
+ , elements` s1 == elements s2
+ ]
+where (s1,s2) = (pushes` [1..5] newStack, pushes [1..5] newStack)
+
+pushes` = // expressie met seq en push
+popn` = // expressie met seq en pop
+topn` n s = // expressie met seqList, top en pop
+elements` s = // expressie met seqList, top en pop
diff --git a/files/practicum/SimpleFileIO.dcl b/files/practicum/SimpleFileIO.dcl new file mode 100644 index 0000000..30ef941 --- /dev/null +++ b/files/practicum/SimpleFileIO.dcl @@ -0,0 +1,14 @@ +definition module SimpleFileIO
+
+import StdFile, StdOverloaded, StdMaybe
+
+// 1.
+readFile :: String *env -> (Maybe String, *env) | FileSystem env
+writeFile :: String String *env -> (Bool, *env) | FileSystem env
+
+// 2.
+readLines :: String *env -> (Maybe [String],*env) | FileSystem env
+writeLines :: String [String] *env -> (Bool, *env) | FileSystem env
+
+// 3.
+mapFile :: String String (a -> b) *env -> (Bool, *env) | FileSystem env & ... a & ... b
diff --git a/files/practicum/SimpleFileIO.icl b/files/practicum/SimpleFileIO.icl new file mode 100644 index 0000000..1339769 --- /dev/null +++ b/files/practicum/SimpleFileIO.icl @@ -0,0 +1,21 @@ +implementation module SimpleFileIO
+
+import StdBool, StdFile, StdList, StdMaybe
+
+// 1.
+readFile :: String *env -> (Maybe String,*env) | FileSystem env
+readFile ...
+
+writeFile :: String String *env -> (Bool,*env) | FileSystem env
+writeFile ...
+
+// 2.
+readLines :: String *env -> (Maybe [String],*env) | FileSystem env
+readLines ...
+
+writeLines :: String [String] *env -> (Bool,*env) | FileSystem env
+writeLines ...
+
+// 3.
+mapFile :: String String (a -> b) *env -> (Bool,*env) | FileSystem env & ... a & ... b
+mapFile ...
diff --git a/files/practicum/StamBoom.dcl b/files/practicum/StamBoom.dcl new file mode 100644 index 0000000..b8bf99e --- /dev/null +++ b/files/practicum/StamBoom.dcl @@ -0,0 +1,27 @@ +definition module StamBoom
+
+import GenTree
+
+:: FamilyTree :== GenTree Couple Single
+:: Couple = Couple Person Person
+:: Single = Single Person
+:: Person = Person DateOfBirth Gender String
+:: Gender = Male | Female
+:: DateOfBirth = DoB Year Month Day
+:: Year :== Int
+:: Month :== Int
+:: Day :== Int
+
+instance < DateOfBirth
+instance == DateOfBirth
+instance == Couple
+instance == Person
+instance == Gender
+
+okFamilyTree :: FamilyTree -> Bool
+rootAncestor :: FamilyTree -> Person
+inFamilyTree :: Person FamilyTree -> Bool
+marry :: Person Person FamilyTree -> FamilyTree
+addChild :: Person Couple FamilyTree -> FamilyTree
+children :: Person FamilyTree -> [Person]
+offspring :: Person FamilyTree -> [Person]
diff --git a/files/practicum/StamBoom.icl b/files/practicum/StamBoom.icl new file mode 100644 index 0000000..d2ca227 --- /dev/null +++ b/files/practicum/StamBoom.icl @@ -0,0 +1,37 @@ +implementation module StamBoom
+
+import StdEnv, GenTree
+
+Start = 0
+
+:: FamilyTree :== GenTree Couple Single
+:: Couple = Couple Person Person
+:: Single = Single Person
+:: Person = Person DateOfBirth Gender String
+:: Gender = Male | Female
+:: DateOfBirth = DoB Year Month Day
+:: Year :== Int
+:: Month :== Int
+:: Day :== Int
+
+
+okFamilyTree :: FamilyTree -> Bool
+okFamilyTree ...
+
+rootAncestor :: FamilyTree -> Person
+rootAncestor ...
+
+inFamilyTree :: Person FamilyTree -> Bool
+inFamilyTree ...
+
+marry :: Person Person FamilyTree -> FamilyTree
+marry ...
+
+addChild :: Person Couple FamilyTree -> FamilyTree
+addChild ...
+
+children :: Person FamilyTree -> [Person]
+children ...
+
+offspring :: Person FamilyTree -> [Person]
+offspring ...
diff --git a/files/practicum/StamBoomPrint.icl b/files/practicum/StamBoomPrint.icl new file mode 100644 index 0000000..9359b89 --- /dev/null +++ b/files/practicum/StamBoomPrint.icl @@ -0,0 +1,80 @@ +module StamBoomPrint
+
+import StdEnv
+import StamBoom
+import GenTreePrint
+import TextCompose
+
+Start = toString Baggins_of_Hobbiton
+
+/** source family tree Bilbo Baggins:
+ http://www.frodoforever.com/tree.php
+ (date december 10 2011)
+*/
+Baggins_of_Hobbiton
+ = Node (Couple (m "Balbo Baggins") (f "Berylla Boffin"))
+ [Node (Couple (m "Mungo Baggins") (f "Laura Grubb"))
+ [Node (Couple (m "Bungo Baggins") (f "Belladonna Took"))
+ [Leaf (Single (m "Bilbo Baggins"))
+ ]
+ ,Node (Couple (f "Belba Baggins") (m "Rudigar Bolger"))
+ []
+ ,Node (Couple (m "Longo Baggins") (f "Camellia Sackville"))
+ [Node (Couple (m "Otho Sackville-Baggins") (f "Lobelia Bracegirdle"))
+ [Leaf (Single (m "Lotho"))
+ ]
+ ]
+ ,Node (Couple (f "Linda Baggins") (m "Bodo Proudfoot"))
+ [Leaf (Single (m "Odo Proudfoot"))
+ ]
+ ,Node (Couple (m "Bingo Baggins") (f "Chica Chubb"))
+ [Node (Couple (m "Falco Chubb-Baggins") unknown)
+ [Node (Couple (f "Poppy Chubb-Baggins") (m "Filibert Bolger"))
+ []
+ ]
+ ]
+ ]
+ ,Node (Couple (f "Pansy Baggins") (m "Fastolph Bolger"))
+ []
+ ,Node (Couple (m "Ponto Baggins") (f "Mimosa Bunce"))
+ [Node (Couple (f "Rosa Baggins") (m "Hildigrim Took"))
+ []
+ ,Node (Couple (m "Polo Baggins") unknown)
+ [Node (Couple (m "Posco Baggins") (f "Gilly Brownlock"))
+ [Node (Couple (m "Ponto Baggins") unknown)
+ [Leaf (Single (f "Angelica Baggins"))]
+ ,Leaf (Single (m "Porto Baggins"))
+ ,Node (Couple (f "Peony Baggins") (m "Milo Burrows"))
+ [Leaf (Single (m "Mosco Baggins"))
+ ,Leaf (Single (m "Moro Baggins"))
+ ,Leaf (Single (f "Myrtle Baggins"))
+ ,Leaf (Single (m "Minto Baggins"))
+ ]
+ ]
+ ,Node (Couple (f "Prisca Baggins") (m "Wilibald Bolger"))
+ []
+ ]
+ ]
+ ,Node (Couple (m "Largo Baggins") (f "Tanta Hornblower"))
+ [Node (Couple (m "Fosco Baggins") (f "Ruby Bolger"))
+ [Leaf (Single (f "Dora Baggins"))
+ ,Node (Couple (m "Drogo Baggins") (f "Primula Brandybuck"))
+ [Leaf (Single (m "Frodo Baggins"))
+ ]
+ ,Node (Couple (m "Dudo Baggins") unknown)
+ [Node (Couple (f "Daisy Baggins") (m "Griffo Boffin"))
+ []
+ ]
+ ]
+ ]
+ ,Node (Couple (f "Lily Baggins") (m "Togo Goodbody"))
+ []
+ ]
+where
+ unknown = m "?"
+
+instance zero (a,b,c) | zero a & zero b & zero c where zero = (zero,zero,zero)
+
+p (d,m,y) gender name = Person (DoB y m d) gender name
+m name = p zero Male name
+f name = p zero Female name
diff --git a/files/practicum/Start.icl b/files/practicum/Start.icl new file mode 100644 index 0000000..8ac8e81 --- /dev/null +++ b/files/practicum/Start.icl @@ -0,0 +1,7 @@ +module Start
+
+import StdEnv
+
+Start = expr0
+
+expr0 = "Hello World!"
diff --git a/files/practicum/StdAVLTree.dcl b/files/practicum/StdAVLTree.dcl new file mode 100644 index 0000000..68d2acd --- /dev/null +++ b/files/practicum/StdAVLTree.dcl @@ -0,0 +1,12 @@ +definition module StdAVLTree
+
+import StdClass
+
+:: AVLTree a
+
+mkAVLLeaf :: AVLTree a
+mkAVLNode :: a -> AVLTree a
+isMemberAVLTree :: a (AVLTree a) -> Bool | Eq, Ord a
+insertAVLTree :: a (AVLTree a) -> AVLTree a | Eq, Ord a
+deleteAVLTree :: a (AVLTree a) -> AVLTree a | Eq, Ord a
+isAVLTree :: (AVLTree a) -> Bool | Eq, Ord a
diff --git a/files/practicum/StdAVLTree.icl b/files/practicum/StdAVLTree.icl new file mode 100644 index 0000000..741c936 --- /dev/null +++ b/files/practicum/StdAVLTree.icl @@ -0,0 +1,23 @@ +implementation module StdAVLTree
+
+import StdEnv
+
+:: AVLTree a = ...
+
+mkAVLLeaf :: AVLTree a
+mkAVLLeaf ...
+
+mkAVLNode :: a -> AVLTree a
+mkAVLNode ...
+
+isMemberAVLTree :: a (AVLTree a) -> Bool | Eq, Ord a
+isMemberAVLTree ...
+
+insertAVLTree :: a (AVLTree a) -> AVLTree a | Eq, Ord a
+insertAVLTree ...
+
+deleteAVLTree :: a (AVLTree a) -> AVLTree a | Eq, Ord a
+deleteAVLTree ...
+
+isAVLTree :: (AVLTree a) -> Bool | Eq, Ord a
+isAVLTree ...
diff --git a/files/practicum/StdAssocList.dcl b/files/practicum/StdAssocList.dcl new file mode 100644 index 0000000..95c9e51 --- /dev/null +++ b/files/practicum/StdAssocList.dcl @@ -0,0 +1,11 @@ +definition module StdAssocList
+
+import StdClass
+
+:: AssocList k a
+
+newAssocList :: AssocList k a // lege associatie lijst
+countValues :: (AssocList k a) -> Int // aantal elementen
+lookupKey :: k (AssocList k a) -> [a] | Eq, Ord k // elementen met sleutelwaarde
+updateKey :: k a (AssocList k a) -> AssocList k a | Eq, Ord k // verander waarde van key-value paar
+removeKey :: k (AssocList k a) -> AssocList k a | Eq, Ord k // verwijder elementen
diff --git a/files/practicum/StdAssocList.icl b/files/practicum/StdAssocList.icl new file mode 100644 index 0000000..2cf9754 --- /dev/null +++ b/files/practicum/StdAssocList.icl @@ -0,0 +1,5 @@ +implementation module StdAssocList
+
+import StdClass
+
+:: AssocList k a
diff --git a/files/practicum/StdAssocListTest.icl b/files/practicum/StdAssocListTest.icl new file mode 100644 index 0000000..81f112c --- /dev/null +++ b/files/practicum/StdAssocListTest.icl @@ -0,0 +1,56 @@ +module StdAssocListTest
+
+/* Test module StdAssocList
+ Voor werken met Gast:
+ (*) gebruik Environment 'Gast'
+ (*) zet Project Options op 'Basic Values Only' en '2M' Maximum Heap Size
+*/
+
+import gast
+import StdAssocList
+
+Start
+ = testn 1000
+ (\x ->
+ newAssocList_is_leeg /\
+ aantal_elementen_klopt x /\
+ lookup_after_update x /\
+ lookup_after_update2 x /\
+ keys_zijn_uniek x /\
+ True
+ )
+
+newIntStringAssocList :: AssocList Int String
+newIntStringAssocList = newAssocList
+
+vulIntStringAssocList :: (AssocList Int String) Int -> AssocList Int String
+vulIntStringAssocList l n = seq [updateKey k (toString k) \\ k <- [1..n]] l
+
+newAssocList_is_leeg :: Property
+newAssocList_is_leeg = name "newAssocList_is_leeg"
+ (countValues newIntStringAssocList == 0)
+
+aantal_elementen_klopt :: Int -> Property
+aantal_elementen_klopt n = name "aantal_elementen_klopt"
+ (countValues (vulIntStringAssocList newIntStringAssocList n`) == max 0 n`)
+where n` = min n 100
+
+lookup_after_update :: Int -> Property
+lookup_after_update n = name "lookup_after_update"
+ (lookupKey k (updateKey k v (vulIntStringAssocList newIntStringAssocList n`)) == [v])
+where n` = min n 100
+ k = n+1
+ v = toString k
+
+lookup_after_update2 :: Int -> Property
+lookup_after_update2 n = name "lookup_after_update"
+ (lookupKey k (vulIntStringAssocList (updateKey k v newIntStringAssocList) n`) == [v])
+where n` = min n 100
+ k = n+1
+ v = toString k
+
+keys_zijn_uniek :: Int -> Property
+keys_zijn_uniek n = name "keys_zijn_uniek"
+ (lookupKey k (removeKey k (vulIntStringAssocList newIntStringAssocList n`)) == [])
+where n` = min n 100
+ k = n/2
diff --git a/files/practicum/StdBool2.dcl b/files/practicum/StdBool2.dcl new file mode 100644 index 0000000..66172cc --- /dev/null +++ b/files/practicum/StdBool2.dcl @@ -0,0 +1,15 @@ +definition module StdBool2
+
+import StdBool
+
+class ~~ a :: !a -> a
+class (|||) infixr 2 a :: !a !a -> a
+class (&&&) infixr 3 a :: !a !a -> a
+
+instance ~~ Bool
+instance ||| Bool
+instance &&& Bool
+
+instance ~~ (a -> Bool)
+instance ||| (a -> Bool)
+instance &&& (a -> Bool)
diff --git a/files/practicum/StdBool2.icl b/files/practicum/StdBool2.icl new file mode 100644 index 0000000..9efebc4 --- /dev/null +++ b/files/practicum/StdBool2.icl @@ -0,0 +1,27 @@ +implementation module StdBool2
+
+import StdEnv
+
+lift0 :: // meest algemene type
+lift0 f a = f a
+
+lift1 :: // meest algemene type
+lift1 f g1 a = f (g1 a)
+
+lift2 :: // meest algemene type
+lift2 f g1 g2 a = f (g1 a) (g2 a)
+
+lift3 :: // meest algemene type
+lift3 f g1 g2 g3 a = f (g1 a) (g2 a) (g3 a)
+
+instance ~~ Bool where ...
+instance ||| Bool where ...
+instance &&& Bool where ...
+
+instance ~~ (a -> Bool) where ...
+instance ||| (a -> Bool) where ...
+instance &&& (a -> Bool) where ...
+
+Start = ( filter ((<) 3 &&& (>) 8) [1 .. 10]
+ , filter (~~ ((==) 5)) [1 .. 10]
+ )
diff --git a/files/practicum/StdGameTree.dcl b/files/practicum/StdGameTree.dcl new file mode 100644 index 0000000..85948a2 --- /dev/null +++ b/files/practicum/StdGameTree.dcl @@ -0,0 +1,13 @@ +definition module StdGameTree
+
+import StdRoseTree
+
+:: Moves s :== s -> [s]
+:: Worth s w :== s -> w
+
+gametree :: (Moves s) s -> RoseTree s
+minimaxvalue :: (RoseTree w) -> w | Ord,~ w
+ab_minimaxvalue :: (w,w) (RoseTree w) -> w | Ord,~,Eq w
+minimaxtree :: (RoseTree w) -> RoseTree w | Ord,~ w
+
+nextmoves :: PruneDepth (Worth s w) (Moves s) s -> [s] | Ord,~,Eq w
diff --git a/files/practicum/StdGameTree.icl b/files/practicum/StdGameTree.icl new file mode 100644 index 0000000..57e7ef6 --- /dev/null +++ b/files/practicum/StdGameTree.icl @@ -0,0 +1,54 @@ +implementation module StdGameTree
+
+import StdRoseTree
+import StdEnv
+
+// bereken game tree met moves functie en begin toestand:
+gametree :: (Moves s) s -> RoseTree s
+gametree moves s = iteratetree moves s
+
+// bereken minimax-waarde van de root van de game tree:
+minimaxvalue :: (RoseTree w) -> w | Ord,~ w
+minimaxvalue (Node w []) = w
+minimaxvalue (Node _ ts) = w
+where ws = map minimaxvalue ts
+ w = ~(minList ws)
+
+// bereken minimax-waarde m.b.v. alpha-beta pruning:
+ab_minimaxvalue :: (w,w) (RoseTree w) -> w | Ord,~,Eq w
+ab_minimaxvalue (a,b) (Node w [ ]) = max a (min w b)
+ab_minimaxvalue (a,b) (Node _ ts) = bound (a,b) ts
+where
+ bound :: (w,w) [RoseTree w] -> w | Ord,~,Eq w
+ bound (a,b) [] = a
+ bound (a,b) [t : ts] = if (a` == b) a` (bound (a`,b) ts)
+ where a` = ~ (ab_minimaxvalue (~b,~a) t)
+
+// bereken minimax-waarden van alle nodes van de game tree:
+minimaxtree :: (RoseTree w) -> RoseTree w | Ord,~ w
+minimaxtree (Node w []) = Node w []
+minimaxtree (Node _ ts) = Node w ts`
+where ts` = map minimaxtree ts
+ w = ~(minList (map root ts`))
+
+// bereken look-ahead van n ronden, en bereken alle minimax-waarden van de nodes:
+minimax :: PruneDepth (Worth s w) (Moves s) -> s -> RoseTree w | Ord, ~ w
+minimax n w moves = minimaxtree
+ o (maptree w)
+ o (prunetree (2*n))
+ o (gametree moves)
+
+// selecteer optimale volgende zet, met look-ahead n ronden, gebruik makend van minimax waarden
+// van alle nodes van de game tree:
+nextmoves :: PruneDepth (Worth s w) (Moves s) s -> [s] | Ord,~,Eq w
+nextmoves n w moves s = [ s` \\ s` <- moves s
+ & w` <- children mtree
+ | ~(root w`) == root mtree
+ ]
+where mtree = minimax n w moves s
+
+// sorting sub trees for better states first:
+high (Node w ts) = Node w (sortBy higher (map low ts))
+low (Node w ts) = Node w (sortBy lower (map high ts))
+higher t1 t2 = root t1 > root t2
+lower t1 t2 = root t1 <= root t2
diff --git a/files/practicum/StdGameTree_en_StdRoseTree.zip b/files/practicum/StdGameTree_en_StdRoseTree.zip Binary files differnew file mode 100644 index 0000000..8b33bb5 --- /dev/null +++ b/files/practicum/StdGameTree_en_StdRoseTree.zip diff --git a/files/practicum/StdGameTree_en_StdRoseTree/StdGameTree.dcl b/files/practicum/StdGameTree_en_StdRoseTree/StdGameTree.dcl new file mode 100644 index 0000000..85948a2 --- /dev/null +++ b/files/practicum/StdGameTree_en_StdRoseTree/StdGameTree.dcl @@ -0,0 +1,13 @@ +definition module StdGameTree
+
+import StdRoseTree
+
+:: Moves s :== s -> [s]
+:: Worth s w :== s -> w
+
+gametree :: (Moves s) s -> RoseTree s
+minimaxvalue :: (RoseTree w) -> w | Ord,~ w
+ab_minimaxvalue :: (w,w) (RoseTree w) -> w | Ord,~,Eq w
+minimaxtree :: (RoseTree w) -> RoseTree w | Ord,~ w
+
+nextmoves :: PruneDepth (Worth s w) (Moves s) s -> [s] | Ord,~,Eq w
diff --git a/files/practicum/StdGameTree_en_StdRoseTree/StdGameTree.icl b/files/practicum/StdGameTree_en_StdRoseTree/StdGameTree.icl new file mode 100644 index 0000000..57e7ef6 --- /dev/null +++ b/files/practicum/StdGameTree_en_StdRoseTree/StdGameTree.icl @@ -0,0 +1,54 @@ +implementation module StdGameTree
+
+import StdRoseTree
+import StdEnv
+
+// bereken game tree met moves functie en begin toestand:
+gametree :: (Moves s) s -> RoseTree s
+gametree moves s = iteratetree moves s
+
+// bereken minimax-waarde van de root van de game tree:
+minimaxvalue :: (RoseTree w) -> w | Ord,~ w
+minimaxvalue (Node w []) = w
+minimaxvalue (Node _ ts) = w
+where ws = map minimaxvalue ts
+ w = ~(minList ws)
+
+// bereken minimax-waarde m.b.v. alpha-beta pruning:
+ab_minimaxvalue :: (w,w) (RoseTree w) -> w | Ord,~,Eq w
+ab_minimaxvalue (a,b) (Node w [ ]) = max a (min w b)
+ab_minimaxvalue (a,b) (Node _ ts) = bound (a,b) ts
+where
+ bound :: (w,w) [RoseTree w] -> w | Ord,~,Eq w
+ bound (a,b) [] = a
+ bound (a,b) [t : ts] = if (a` == b) a` (bound (a`,b) ts)
+ where a` = ~ (ab_minimaxvalue (~b,~a) t)
+
+// bereken minimax-waarden van alle nodes van de game tree:
+minimaxtree :: (RoseTree w) -> RoseTree w | Ord,~ w
+minimaxtree (Node w []) = Node w []
+minimaxtree (Node _ ts) = Node w ts`
+where ts` = map minimaxtree ts
+ w = ~(minList (map root ts`))
+
+// bereken look-ahead van n ronden, en bereken alle minimax-waarden van de nodes:
+minimax :: PruneDepth (Worth s w) (Moves s) -> s -> RoseTree w | Ord, ~ w
+minimax n w moves = minimaxtree
+ o (maptree w)
+ o (prunetree (2*n))
+ o (gametree moves)
+
+// selecteer optimale volgende zet, met look-ahead n ronden, gebruik makend van minimax waarden
+// van alle nodes van de game tree:
+nextmoves :: PruneDepth (Worth s w) (Moves s) s -> [s] | Ord,~,Eq w
+nextmoves n w moves s = [ s` \\ s` <- moves s
+ & w` <- children mtree
+ | ~(root w`) == root mtree
+ ]
+where mtree = minimax n w moves s
+
+// sorting sub trees for better states first:
+high (Node w ts) = Node w (sortBy higher (map low ts))
+low (Node w ts) = Node w (sortBy lower (map high ts))
+higher t1 t2 = root t1 > root t2
+lower t1 t2 = root t1 <= root t2
diff --git a/files/practicum/StdGameTree_en_StdRoseTree/StdRoseTree.dcl b/files/practicum/StdGameTree_en_StdRoseTree/StdRoseTree.dcl new file mode 100644 index 0000000..5d6609d --- /dev/null +++ b/files/practicum/StdGameTree_en_StdRoseTree/StdRoseTree.dcl @@ -0,0 +1,20 @@ +definition module StdRoseTree
+
+import StdClass
+
+/** This module defines rose trees.
+*/
+:: RoseTree a = Node a [RoseTree a]
+:: Children a :== a -> [a]
+:: PruneDepth :== Int
+
+iteratetree :: !(Children a) a -> RoseTree a
+
+root :: !(RoseTree a) -> a
+children :: !(RoseTree a) -> [RoseTree a]
+depth :: !(RoseTree a) -> Int
+
+maptree :: (a -> b) !(RoseTree a) -> RoseTree b
+prunetree :: !PruneDepth !(RoseTree a) -> RoseTree a
+bonsai :: !(RoseTree a) -> RoseTree a | Eq a
+paths :: !(RoseTree a) -> [[a]]
diff --git a/files/practicum/StdGameTree_en_StdRoseTree/StdRoseTree.icl b/files/practicum/StdGameTree_en_StdRoseTree/StdRoseTree.icl new file mode 100644 index 0000000..ddefbca --- /dev/null +++ b/files/practicum/StdGameTree_en_StdRoseTree/StdRoseTree.icl @@ -0,0 +1,38 @@ +implementation module StdRoseTree
+
+/** This module defines rose trees.
+*/
+import StdEnv
+
+root :: !(RoseTree a) -> a
+root (Node r _) = r
+
+children :: !(RoseTree a) -> [RoseTree a]
+children (Node _ ts) = ts
+
+depth :: !(RoseTree a) -> Int
+depth (Node _ []) = 1
+depth (Node _ xs) = 1 + maxList (map depth xs)
+
+prunetree :: !PruneDepth !(RoseTree a) -> RoseTree a
+prunetree d (Node x ts)
+| d <= 1 = Node x []
+| otherwise = Node x (map (prunetree (d-1)) ts)
+
+bonsai :: !(RoseTree a) -> RoseTree a | Eq a
+bonsai t = bonsai` [] t
+where
+ bonsai` :: ![a] !(RoseTree a) -> RoseTree a | Eq a
+ bonsai` path (Node v ts) = Node v (filter (\t -> not (isMember (root t) [v:path]))
+ (map (bonsai` [v:path]) ts)
+ )
+
+iteratetree :: !(Children a) a -> RoseTree a
+iteratetree f s = Node s (map (iteratetree f) (f s))
+
+maptree :: (a -> b) !(RoseTree a) -> RoseTree b
+maptree f (Node x ts) = Node (f x) (map (maptree f) ts)
+
+paths :: !(RoseTree a) -> [[a]]
+paths (Node x []) = [[x]]
+paths (Node x ts) = [[x:path] \\ t <- ts, path <- paths t]
diff --git a/files/practicum/StdNum.dcl b/files/practicum/StdNum.dcl new file mode 100644 index 0000000..2c091c6 --- /dev/null +++ b/files/practicum/StdNum.dcl @@ -0,0 +1,37 @@ +definition module StdNum
+
+import StdClass
+import StdQ // optioneel als je StdQ geimplementeerd hebt
+
+:: Num
+
+instance == Num
+instance < Num
+
+instance + Num
+instance - Num
+instance zero Num
+
+instance * Num
+instance / Num
+instance one Num
+
+instance abs Num
+instance sign Num
+instance ~ Num
+
+instance toInt Num
+instance toReal Num
+instance toQ Num // optioneel als je StdQ geimplementeerd hebt
+
+class fromNum a :: !Num -> a
+instance fromNum Int
+instance fromNum Real
+instance fromNum Q // optioneel als je StdQ geimplementeerd hebt
+
+class toNum a :: !a -> Num
+instance toNum Int
+instance toNum Real
+instance toNum Q // optioneel als je StdQ geimplementeerd hebt
+
+instance toString Num
diff --git a/files/practicum/StdNum.icl b/files/practicum/StdNum.icl new file mode 100644 index 0000000..32ad0a3 --- /dev/null +++ b/files/practicum/StdNum.icl @@ -0,0 +1,6 @@ +implementation module StdNum
+
+import StdEnv
+import StdQ // optioneel als je StdQ geimplementeerd hebt
+
+:: Num = ...
diff --git a/files/practicum/StdQ.dcl b/files/practicum/StdQ.dcl new file mode 100644 index 0000000..71d3f5a --- /dev/null +++ b/files/practicum/StdQ.dcl @@ -0,0 +1,39 @@ +definition module StdQ
+
+import StdOverloaded
+
+:: Q
+
+instance == Q // gelijkheid van rationale getallen
+instance < Q // ordening op rationale getallen
+
+instance + Q // optellen van rationale getallen
+instance - Q // aftrekken van rationale getallen
+instance zero Q // het neutrale element van optellen (x+zero = zero+x = x)
+
+instance * Q // vermenigvuldigen van rationale getallen
+instance / Q // delen van rationale getallen
+instance one Q // het neutrale element van vermenigvuldigen (x*one = one*x = x)
+
+instance abs Q // de absolute waarde van een rationaal getal
+instance sign Q // het teken van het rationale getal
+instance ~ Q // teken-omkering van het rationale getal
+
+isInt :: Q -> Bool // test of het rationale getal een geheel getal representeert
+instance toInt Q // zet een rationaal getal om naar een Int (met evt. afronding)
+instance toReal Q // zet een rationaal getal om naar een Real (bij benadering)
+
+class toQ a :: a -> Q
+instance toQ Int // zet een Int om naar een rationaal getal
+instance toQ Real // zet een Real om naar een rationaal getal
+instance toQ (Int,Int) // zet een (t,n) om naar rationaal getal met t de teller, en n de noemer
+instance toQ (Int,Int,Int) // zet een (x,t,n) om naar het rationale getal toQ (x*n+t,n)
+instance toString Q // toon een rationaal getal q als "s(x+t/n)" zodanig dat:
+ // q = x + t/n (volgens wiskundige regels)
+ // 0 < abs (t/n) < 1
+ // s = "" als q>=0; s = -1 anders
+ // vb: toString (toQ 11 2) = "(5+1/2)"
+ // vb: toString (toQ -11 2) = "-(5+1/2)"
+
+ // als abs (t/n) == 0, toon dan alleen x
+ // vb: toString (toQ 10 2) = "5"
diff --git a/files/practicum/StdQ.icl b/files/practicum/StdQ.icl new file mode 100644 index 0000000..84ff69e --- /dev/null +++ b/files/practicum/StdQ.icl @@ -0,0 +1,5 @@ +implementation module StdQ
+
+import StdEnv
+
+:: Q = ...
diff --git a/files/practicum/StdQTest.icl b/files/practicum/StdQTest.icl new file mode 100644 index 0000000..23a9717 --- /dev/null +++ b/files/practicum/StdQTest.icl @@ -0,0 +1,73 @@ +module StdQTest
+
+/* Test module StdQTest
+ Voor werken met Gast:
+ (*) gebruik Environment 'Gast'
+ (*) zet Project Options op 'Basic Values Only'
+*/
+
+import StdQ
+import StdEnv
+import gast
+
+Start
+ = testn 1000
+ (\ a b c ->
+ let qa = fromInt a
+ in zero_is_neutral_for_addition qa /\
+ zero_is_neutral_for_subtraction qa /\
+ one_is_neutral_for_multiplication qa /\
+ one_is_neutral_for_division qa /\
+ negation_is_idempotent qa /\
+ add_then_subtract_yields_identity qa /\
+ subtract_then_add_yields_identity qa /\
+ abs_is_positive qa /\
+ isInt_holds_for_Ints qa /\
+ toQ_yields_rational a b c /\
+ True
+ )
+
+zero_is_neutral_for_addition :: Q -> Property
+zero_is_neutral_for_addition a = name "zero_is_neutral_for_addition"
+ (zero + a == a && a == a + zero)
+
+zero_is_neutral_for_subtraction :: Q -> Property
+zero_is_neutral_for_subtraction a = name "zero_is_neutral_for_subtraction"
+ (a - zero == a && a == ~ (zero - a))
+
+one_is_neutral_for_multiplication :: Q -> Property
+one_is_neutral_for_multiplication a = name "one_is_neutral_for_multiplication"
+ (one * a == a && a == a * one)
+
+zero_is_zero_for_multiplication :: Q -> Property
+zero_is_zero_for_multiplication a = name "zero_is_zero_for_multiplication"
+ (zero * a == zero && zero == a * zero)
+
+one_is_neutral_for_division :: Q -> Property
+one_is_neutral_for_division a = name "one_is_neutral_for_division"
+ (a / one == a)
+
+negation_is_idempotent :: Q -> Property
+negation_is_idempotent a = name "negation_is_idempotent"
+ (~ (~ a) == a)
+
+add_then_subtract_yields_identity :: Q -> Property
+add_then_subtract_yields_identity a = name "add then subtract" ((a + a) - a == a)
+
+subtract_then_add_yields_identity :: Q -> Property
+subtract_then_add_yields_identity a = name "subtract then add" ((zero - a - a) + a + a == zero)
+
+abs_is_positive :: Q -> Property
+abs_is_positive a = name "abs is positive" (abs a >= zero)
+
+isInt_holds_for_Ints :: Q -> Property
+isInt_holds_for_Ints a = name "isInt holds for Ints" (isInt a && (a == zero || not (isInt (a / (a+a)))))
+
+toQ_yields_rational :: Int Int Int -> Property
+toQ_yields_rational a b c = name "toQ yields rational"
+ ( (abs a > 2^30 || abs b > 2^30 || a*b == zero || toQ (a,b) * toQ b == toQ a)
+ &&
+ (abs a > 2^30 || abs b > 2^30 || abs c > 2^30 || a*b*c == zero || (toQ (c,a,b) - toQ c) * toQ b == toQ a)
+ )
+
+instance fromInt Q where fromInt i = toQ i
diff --git a/files/practicum/StdRoman.dcl b/files/practicum/StdRoman.dcl new file mode 100644 index 0000000..a9756c9 --- /dev/null +++ b/files/practicum/StdRoman.dcl @@ -0,0 +1,42 @@ +definition module StdRoman
+
+import RomeinsGetal
+import StdOverloaded
+
+instance + Roman
+
+instance - Roman
+
+instance zero Roman
+
+instance * Roman
+
+instance / Roman
+instance one Roman
+
+
+instance ^ Roman
+instance abs Roman
+instance sign Roman
+instance ~ Roman
+
+instance == Roman
+instance < Roman
+instance isEven Roman // True if arg1 is an even number
+instance isOdd Roman // True if arg1 is an odd number
+
+class toRoman a :: !a -> Roman
+instance toRoman Char
+instance toRoman Int
+instance toRoman Real
+instance toRoman {#Char}
+
+class fromRoman a :: !Roman -> a
+instance fromRoman Int
+instance fromRoman Char
+instance fromRoman Real
+instance fromRoman {#Char}
+
+instance rem Roman
+instance gcd Roman
+instance lcm Roman
diff --git a/files/practicum/StdRoman.icl b/files/practicum/StdRoman.icl new file mode 100644 index 0000000..fec4461 --- /dev/null +++ b/files/practicum/StdRoman.icl @@ -0,0 +1,46 @@ +implementation module StdRoman
+
+import StdEnv, RomeinsGetal
+
+instance + Roman where ...
+instance - Roman where ...
+
+instance zero Roman where ...
+
+instance * Roman where ...
+
+instance / Roman where ...
+instance one Roman where ...
+
+
+instance ^ Roman where ...
+instance abs Roman where ...
+instance sign Roman where ...
+instance ~ Roman where ...
+
+instance == Roman where ...
+instance < Roman where ...
+instance isEven Roman where ...
+instance isOdd Roman where ...
+
+class toRoman a :: !a -> Roman
+instance toRoman Char where ...
+instance toRoman Int where ...
+instance toRoman Real where ...
+instance toRoman {#Char} where ...
+
+class fromRoman a :: !Roman -> a
+instance fromRoman Int where ...
+instance fromRoman Char where ...
+instance fromRoman Real where ...
+instance fromRoman {#Char}where ...
+
+instance rem Roman where ...
+instance gcd Roman where ...
+instance lcm Roman where ...
+
+Start :: (Roman,String,Int,Int)
+Start = (r,fromRoman r,toInt r,n)
+where
+ r = (toRoman 42) * (toRoman 101)
+ n = 42 * 101
diff --git a/files/practicum/StdRoseTree.dcl b/files/practicum/StdRoseTree.dcl new file mode 100644 index 0000000..5d6609d --- /dev/null +++ b/files/practicum/StdRoseTree.dcl @@ -0,0 +1,20 @@ +definition module StdRoseTree
+
+import StdClass
+
+/** This module defines rose trees.
+*/
+:: RoseTree a = Node a [RoseTree a]
+:: Children a :== a -> [a]
+:: PruneDepth :== Int
+
+iteratetree :: !(Children a) a -> RoseTree a
+
+root :: !(RoseTree a) -> a
+children :: !(RoseTree a) -> [RoseTree a]
+depth :: !(RoseTree a) -> Int
+
+maptree :: (a -> b) !(RoseTree a) -> RoseTree b
+prunetree :: !PruneDepth !(RoseTree a) -> RoseTree a
+bonsai :: !(RoseTree a) -> RoseTree a | Eq a
+paths :: !(RoseTree a) -> [[a]]
diff --git a/files/practicum/StdRoseTree.icl b/files/practicum/StdRoseTree.icl new file mode 100644 index 0000000..ddefbca --- /dev/null +++ b/files/practicum/StdRoseTree.icl @@ -0,0 +1,38 @@ +implementation module StdRoseTree
+
+/** This module defines rose trees.
+*/
+import StdEnv
+
+root :: !(RoseTree a) -> a
+root (Node r _) = r
+
+children :: !(RoseTree a) -> [RoseTree a]
+children (Node _ ts) = ts
+
+depth :: !(RoseTree a) -> Int
+depth (Node _ []) = 1
+depth (Node _ xs) = 1 + maxList (map depth xs)
+
+prunetree :: !PruneDepth !(RoseTree a) -> RoseTree a
+prunetree d (Node x ts)
+| d <= 1 = Node x []
+| otherwise = Node x (map (prunetree (d-1)) ts)
+
+bonsai :: !(RoseTree a) -> RoseTree a | Eq a
+bonsai t = bonsai` [] t
+where
+ bonsai` :: ![a] !(RoseTree a) -> RoseTree a | Eq a
+ bonsai` path (Node v ts) = Node v (filter (\t -> not (isMember (root t) [v:path]))
+ (map (bonsai` [v:path]) ts)
+ )
+
+iteratetree :: !(Children a) a -> RoseTree a
+iteratetree f s = Node s (map (iteratetree f) (f s))
+
+maptree :: (a -> b) !(RoseTree a) -> RoseTree b
+maptree f (Node x ts) = Node (f x) (map (maptree f) ts)
+
+paths :: !(RoseTree a) -> [[a]]
+paths (Node x []) = [[x]]
+paths (Node x ts) = [[x:path] \\ t <- ts, path <- paths t]
diff --git a/files/practicum/StdSet.dcl b/files/practicum/StdSet.dcl new file mode 100644 index 0000000..6cad7f1 --- /dev/null +++ b/files/practicum/StdSet.dcl @@ -0,0 +1,25 @@ +definition module StdSet
+
+import StdClass
+
+:: Set a
+
+toSet :: [a] -> Set a | Eq a
+fromSet :: (Set a) -> [a]
+
+isEmptySet :: (Set a) -> Bool
+isDisjoint :: (Set a) (Set a) -> Bool | Eq a
+isSubset :: (Set a) (Set a) -> Bool | Eq a
+isStrictSubset :: (Set a) (Set a) -> Bool | Eq a
+memberOfSet :: a (Set a) -> Bool | Eq a
+union :: (Set a) (Set a) -> Set a | Eq a
+intersection :: (Set a) (Set a) -> Set a | Eq a
+nrOfElements :: (Set a) -> Int
+without :: (Set a) (Set a) -> Set a | Eq a
+
+product :: (Set a) (Set b) -> Set (a,b)
+
+instance zero (Set a)
+instance == (Set a) | Eq a
+
+powerSet :: (Set a) -> Set (Set a)
diff --git a/files/practicum/StdSet.icl b/files/practicum/StdSet.icl new file mode 100644 index 0000000..b152f37 --- /dev/null +++ b/files/practicum/StdSet.icl @@ -0,0 +1,5 @@ +implementation module StdSet
+
+import StdEnv
+
+:: Set a
diff --git a/files/practicum/StdSetTest.icl b/files/practicum/StdSetTest.icl new file mode 100644 index 0000000..3b75c3e --- /dev/null +++ b/files/practicum/StdSetTest.icl @@ -0,0 +1,124 @@ +module StdSetTest
+
+/* Test module StdSet
+ Voor werken met Gast:
+ (*) gebruik Environment 'Gast'
+ (*) zet Project Options op 'Basic Values Only' en '8M' Maximum Heap Size.
+*/
+
+import gast
+import GenLexOrd
+import StdSet
+
+Start = testn 2000
+ (\n` n2` m -> let n = cast [A,B,C] n`
+ n2 = cast [A,B,C] n2`
+ in
+ membership m n /\
+ conversion_invariant n /\
+ length_property n /\
+ subset_property n n2 /\
+ strictsubset_property n n2 /\
+ empty_properties m n /\
+ disjoint_properties n n2 /\
+ product_properties n n2 /\
+ intersect_properties n n2 /\
+ setminus_properties n n2 /\
+ union_properties n n2 /\
+ powset_properties n /\
+ True
+ )
+
+:: Enum = A | B | C
+
+derive bimap []
+derive ggen Enum
+derive genShow Enum
+derive gEq Enum
+derive gLexOrd Enum
+instance == Enum where (==) x y = gEq{|*|} x y
+instance < Enum where (<) x y = gEq{|*|} (gLexOrd{|*|} x y) LT
+
+// clean should have something like this!
+cast :: a a -> a
+cast _ x = x
+
+membership :: Enum [Enum] -> Property
+membership x xs
+ = name "membership"
+ ( memberOfSet x s <==> isMember x xs )
+ where s = toSet xs
+
+conversion_invariant :: [Enum] -> Property
+conversion_invariant xs
+ = name "conversion_invariant"
+ ( toSet (fromSet xs`) == xs` )
+ where xs` = toSet xs
+
+length_property :: [Enum] -> Property
+length_property xs
+ = name "length_property"
+ ( nrOfElements s == length (removeDup xs) )
+ where s = toSet xs
+
+subset_property :: [Enum] [Enum] -> Property
+subset_property xs ys
+ = name "subset_property"
+ ( (isSubset u v) <==> all (flip isMember ys) xs)
+ where (u,v) = (toSet xs, toSet ys)
+
+strictsubset_property :: [Enum] [Enum] -> Property
+strictsubset_property xs ys
+ = name "strictsubset_property"
+ ( (isStrictSubset u v) <==> (all (flip isMember ys) xs && not (all (flip isMember xs) ys)) )
+ where (u,v) = (toSet xs, toSet ys)
+
+// everything you alwys wanted to know about the empty set...
+// ... but were afraid to ask
+empty_properties :: Enum [Enum] -> Property
+empty_properties x xs
+ = name "empty_properties"
+ ( isEmptySet (cast dummy zero) /\ isEmptySet (toSet (cast [A] [])) /\
+ ((nrOfElements s == 0) <==> isEmptySet s) /\
+ ((zero == s) <==> isEmptySet s) )
+ where s = toSet xs
+ dummy :: Set Enum
+ dummy = undef
+
+product_properties :: [Enum] [Enum] -> Property
+product_properties xs ys
+ = name "product_properties"
+ ( product u v == toSet [(x,y) \\ x<-xs, y<-ys ] )
+ where (u,v) = (toSet xs, toSet ys)
+
+powset_properties :: [Enum] -> Property
+powset_properties xs
+ = name "powset_properties"
+ ( powerSet s == toSet (map toSet (subs xs)) )
+ where s = toSet xs
+ subs [] = [[]]
+ subs [x:xs] = subs xs ++ [ [x:xs`] \\ xs` <- subs xs ]
+
+union_properties :: [Enum] [Enum] -> Property
+union_properties xs ys
+ = name "union_properties"
+ ( union u v == toSet (xs++ys) )
+ where (u,v) = (toSet xs, toSet ys)
+
+intersect_properties :: [Enum] [Enum] -> Property
+intersect_properties xs ys
+ = name "intersect_properties"
+ ( intersection u v == toSet [ x \\ x<-xs | isMember x ys ] )
+ where (u,v) = (toSet xs, toSet ys)
+
+setminus_properties :: [Enum] [Enum] -> Property
+setminus_properties xs ys
+ = name "setminus_properties"
+ ( without u v == toSet [ x \\ x<-xs | not (isMember x ys) ])
+ where (u,v) = (toSet xs, toSet ys)
+
+disjoint_properties :: [Enum] [Enum] -> Property
+disjoint_properties xs ys
+ = name "disjoint_properties"
+ ( isDisjoint u v <==> (nrOfElements u + nrOfElements v == nrOfElements (union u v)) )
+ where (u,v) = (toSet xs, toSet ys)
diff --git a/files/practicum/StdSortList.dcl b/files/practicum/StdSortList.dcl new file mode 100644 index 0000000..46bd238 --- /dev/null +++ b/files/practicum/StdSortList.dcl @@ -0,0 +1,18 @@ +definition module StdSortList
+
+import StdClass
+
+:: SortList a
+
+newSortList :: SortList a // lege gesorteerde lijst
+memberSort :: a (SortList a) -> Bool | Eq, Ord a // is element van
+insertSort :: a (SortList a) -> SortList a | Ord a // voeg element toe
+removeFirst :: a (SortList a) -> SortList a | Eq, Ord a // verwijder eerste voorkomen
+removeAll :: a (SortList a) -> SortList a | Eq, Ord a // verwijder alle voorkomens
+elements :: (SortList a) -> [a] // geef alle elementen
+count :: (SortList a) -> Int // aantal elementen
+
+minimum :: (SortList a) -> a // huidige minimum waarde
+maximum :: (SortList a) -> a // huidige maximum waarde
+
+mergeSortList :: (SortList a) (SortList a) -> SortList a | Eq, Ord a // meng gesorteerde lijsten
diff --git a/files/practicum/StdSortList.icl b/files/practicum/StdSortList.icl new file mode 100644 index 0000000..5621887 --- /dev/null +++ b/files/practicum/StdSortList.icl @@ -0,0 +1,5 @@ +implementation module StdSortList
+
+import StdEnv
+
+:: SortList a
diff --git a/files/practicum/StdSortListTest.icl b/files/practicum/StdSortListTest.icl new file mode 100644 index 0000000..411f7ca --- /dev/null +++ b/files/practicum/StdSortListTest.icl @@ -0,0 +1,107 @@ +module StdSortListTest
+
+/* Test module StdSortList
+ Voor werken met Gast:
+ (*) gebruik Environment 'Gast'
+ (*) zet Project Options op 'Basic Values Only' en '16M' Maximum Heap Size.
+*/
+
+import gast
+import GenLexOrd
+import StdSortList
+
+Start = testn 10000
+ (\n` n2` m -> let n = lst2slst (cast [A,B,C] n` )
+ n2 = lst2slst (cast [A,B,C] n2`)
+ in
+ leeg_is_leeg /\
+ count_matches_elems n /\
+ is_sorted_elems n /\
+ member_is_member n m /\
+ member_na_insert n m /\
+ member_na_remove n m /\
+ insert_remove_invariant n m /\
+ minimum_property n /\
+ maximum_property n /\
+ merge_additive n n2 /\
+ merge_member n n2 m /\
+ True
+ )
+
+:: Enum = A | B | C
+
+derive bimap []
+derive ggen Enum
+derive genShow Enum
+derive gEq Enum
+derive gLexOrd Enum
+instance == Enum where (==) x y = gEq{|*|} x y
+instance < Enum where (<) x y = gEq{|*|} (gLexOrd{|*|} x y) LT
+
+// clean should have something like this!
+cast :: a a -> a
+cast _ x = x
+
+leeg_is_leeg :: Property
+leeg_is_leeg
+ = name "leeg_is_leeg"
+ (count newSortList == 0)
+
+count_matches_elems :: (SortList a) -> Property | Eq, Ord a
+count_matches_elems n
+ = name "count_matches_elems"
+ (length (elements n) == count n)
+
+is_sorted_elems :: (SortList a) -> Property | Eq, Ord a
+is_sorted_elems n
+ = name "is_sorted_elems"
+ (isSorted (elements n))
+ where isSorted lst = and [ x<=y \\ x<-lst & y<-tl lst ]
+
+member_is_member :: (SortList a) a -> Property | Eq, Ord a
+member_is_member lst e
+ = name "member_is_member"
+ ((isMember e (elements lst)) <==> (memberSort e lst))
+
+member_na_insert :: (SortList a) a -> Property | Eq, Ord a
+member_na_insert lst e
+ = name "member_na_insert"
+ (memberSort e (insertSort e lst))
+
+member_na_remove :: (SortList a) a -> Property | Eq, Ord a
+member_na_remove lst e
+ = name "member_na_remove"
+ (not (memberSort e (removeAll e lst)))
+
+insert_remove_invariant :: (SortList a) a -> Property | Eq, Ord a
+insert_remove_invariant lst e
+ = name "insert_remove_invariant"
+ (memberSort e lst <==> memberSort e lst`)
+ where lst` = removeFirst e (insertSort e lst)
+
+minimum_property :: (SortList a) -> Property | Eq,Ord a
+minimum_property n
+ = name "minimum_property"
+ (count n > 0 ==> (memberSort min n /\ all ((<=) min) (elements n)))
+ where min = minimum n
+
+maximum_property :: (SortList a) -> Property | Eq,Ord a
+maximum_property n
+ = name "maximum_property"
+ (count n > 0 ==> (memberSort max n /\ all ((>=) max) (elements n)))
+ where max = maximum n
+
+merge_member :: (SortList a) (SortList a) a -> Property | Eq,Ord a
+merge_member n m e
+ = name "merge_member"
+ (memberSort e nm <==> (memberSort e n \/ memberSort e m))
+ where nm = mergeSortList n m
+
+merge_additive :: (SortList a) (SortList a) -> Property | Eq,Ord a
+merge_additive n m
+ = name "merge_additive"
+ (count n + count m == count nm)
+ where nm = mergeSortList n m
+
+lst2slst :: [a] -> SortList a | Eq,Ord a
+lst2slst xs = seq (map insertSort xs) newSortList
diff --git a/files/practicum/StdStack.dcl b/files/practicum/StdStack.dcl new file mode 100644 index 0000000..8c861a1 --- /dev/null +++ b/files/practicum/StdStack.dcl @@ -0,0 +1,13 @@ +definition module StdStack
+
+:: Stack a
+
+newStack :: Stack a // lege stack
+push :: a (Stack a) -> Stack a // plaats nieuw element bovenop de stack
+pushes :: [a] (Stack a) -> Stack a // plaats elementen achtereenvolgens bovenop stack
+pop :: (Stack a) -> Stack a // haal top element van stack
+popn :: Int (Stack a) -> Stack a // haal bovenste $n$ top elementen van stack
+top :: (Stack a) -> a // geef top element van stack
+topn :: Int (Stack a) -> [a] // geef bovenste $n$ top elementen van stack
+elements :: (Stack a) -> [a] // geef alle elementen van stack
+count :: (Stack a) -> Int // tel aantal elementen in stack
diff --git a/files/practicum/StdStack.icl b/files/practicum/StdStack.icl new file mode 100644 index 0000000..f8583d5 --- /dev/null +++ b/files/practicum/StdStack.icl @@ -0,0 +1,24 @@ +implementation module StdStack
+
+import StdEnv
+
+:: Stack a
+
+Start = ( "s0 = newStack = ", s0,'\n'
+ , "s1 = push 1 s0 = ", s1,'\n'
+ , "s2 = pushes [2..5] s1 = ",s2,'\n'
+ , "s3 = pop s2 = ", s3,'\n'
+ , "s4 = popn 3 s3 = ", s4,'\n'
+ , "s5 = top s4 = ", s5,'\n'
+ , "s6 = topn 3 s2 = ", s6,'\n'
+ , "s7 = elements s2 = ", s7,'\n'
+ )
+where
+ s0 = newStack
+ s1 = push 1 s0
+ s2 = pushes [2..5] s1
+ s3 = pop s2
+ s4 = popn 3 s3
+ s5 = top s4
+ s6 = topn 3 s2
+ s7 = elements s2
diff --git a/files/practicum/StdStack2.dcl b/files/practicum/StdStack2.dcl new file mode 100644 index 0000000..064d8f7 --- /dev/null +++ b/files/practicum/StdStack2.dcl @@ -0,0 +1,8 @@ +definition module StdStack2
+
+:: Stack2 elem = E.impl: { stack :: impl
+ , push :: elem impl -> impl
+ , pop :: impl -> impl
+ , top :: impl -> elem
+ , elements :: impl -> [elem]
+ }
diff --git a/files/practicum/StdStack2.icl b/files/practicum/StdStack2.icl new file mode 100644 index 0000000..3d4e80c --- /dev/null +++ b/files/practicum/StdStack2.icl @@ -0,0 +1,22 @@ +implementation module StdStack2
+
+import StdEnv
+
+:: Stack2 elem = E.impl: { stack :: impl
+ , push :: elem impl -> impl
+ , pop :: impl -> impl
+ , top :: impl -> elem
+ , elements :: impl -> [elem]
+ }
+
+push :: elem (Stack2 elem) -> Stack2 elem
+push ...
+
+pop :: (Stack2 elem) -> Stack2 elem
+pop ...
+
+top :: (Stack2 elem) -> elem
+top ...
+
+elements :: (Stack2 elem) -> [elem]
+elements ...
diff --git a/files/practicum/StdStackTest.icl b/files/practicum/StdStackTest.icl new file mode 100644 index 0000000..8127f53 --- /dev/null +++ b/files/practicum/StdStackTest.icl @@ -0,0 +1,60 @@ +module StdStackTest
+
+/* Test module StdStack
+ Voor werken met Gast:
+ (*) gebruik Environment 'Gast'
+ (*) zet Project Options op 'Basic Values Only' en '2M' Maximum Heap Size
+*/
+
+import gast
+import StdStack
+
+Start
+ = testn 1000
+ (\x n ->
+ newStack_is_empty /\
+ stack_is_reverse n /\
+ pop_empty_is_ok /\
+ top_na_push n x /\
+ pop_na_push x /\
+ count_counts n x /\
+ pop_maakt_stack_korter n /\
+ True
+ )
+
+newStack_is_empty :: Property
+newStack_is_empty = name "newStack_is_empty" (isEmpty (elements empty))
+
+stack_is_reverse :: Int -> Property
+stack_is_reverse n = name "stack_is_reverse"
+ (elements (pushes [1..n`] newStack) == reverse [1..n`])
+where n` = min (abs n) 100
+
+pop_empty_is_ok :: Property
+pop_empty_is_ok = name "pop_empty_is_ok" (count (pop empty) == 0)
+
+top_na_push :: Int Int -> Property
+top_na_push x n = name "top_na_push"
+ (top (push x (pushes [1..n`] newStack)) == x)
+where n` = min (abs n) 100
+
+pop_na_push :: Int -> Property
+pop_na_push a = name "pop_na_push"
+ (top (pop (pop (pushes [a,b,c] newStack))) == a)
+where b = a + a + one
+ c = b + a + one
+
+count_counts :: Int Int -> Property
+count_counts n x = name "count_counts"
+ (length (elements stack) == count stack)
+where stack = pushes [1..n`] newStack
+ n` = min (abs n) 100
+
+pop_maakt_stack_korter :: Int -> Property
+pop_maakt_stack_korter n = name "pop_maakt_stack_korter"
+ (count stack == 0 || count (pop stack) == count stack - 1)
+where stack = pushes [1..n`] newStack
+ n` = min (abs n) 100
+
+empty :: Stack Int
+empty = newStack
diff --git a/files/practicum/StdT.dcl b/files/practicum/StdT.dcl new file mode 100644 index 0000000..ca97fdc --- /dev/null +++ b/files/practicum/StdT.dcl @@ -0,0 +1,18 @@ +definition module StdT
+
+import StdOverloaded
+
+:: T
+
+instance == T
+instance < T
+
+instance zero T
+instance + T
+instance - T
+
+instance toInt T
+instance fromInt T
+
+instance toString T
+instance fromString T
diff --git a/files/practicum/StdT.icl b/files/practicum/StdT.icl new file mode 100644 index 0000000..4136172 --- /dev/null +++ b/files/practicum/StdT.icl @@ -0,0 +1,18 @@ +implementation module StdT
+
+import StdEnv
+
+:: T = // implementeer een algebraisch type *of* een record type
+
+instance == T where == // maak implementatie af
+instance < T where < // maak implementatie af
+
+instance zero T where zero // maak implementatie af
+instance + T where + // maak implementatie af
+instance - T where - // maak implementatie af
+
+instance toInt T where toInt // maak implementatie af
+instance fromInt T where fromInt // maak implementatie af
+
+instance toString T where toString // maak implementatie af
+instance fromString T where fromString // maak implementatie af
diff --git a/files/practicum/StdTTest.icl b/files/practicum/StdTTest.icl new file mode 100644 index 0000000..6af64fc --- /dev/null +++ b/files/practicum/StdTTest.icl @@ -0,0 +1,45 @@ +module StdTTest
+
+/* Test module StdTTest
+ Voor werken met Gast:
+ (*) gebruik Environment 'Gast'
+ (*) zet Project Options op 'Basic Values Only'
+*/
+
+import StdT
+import StdEnv
+import gast
+
+Start
+ = testn 1000
+ (\ i ->
+ gelijkheid_is_symmetrisch i /\
+ ordening_is_monotoon i /\
+ negatieve_tijd_bestaat_niet i /\
+ omzetten_naar_Int_is_consistent i /\
+ parse_print_is_consistent i /\
+ True
+ )
+
+t :: Int -> T
+t x = fromInt x
+
+gelijkheid_is_symmetrisch :: Int -> Property
+gelijkheid_is_symmetrisch i = name "gelijkheid_is_symmetrisch"
+ (t i == t i)
+
+ordening_is_monotoon :: Int -> Property
+ordening_is_monotoon i = name "ordening_is_monotoon"
+ ((i <= i+1) ==> t i <= t (i+1))
+
+negatieve_tijd_bestaat_niet :: Int -> Property
+negatieve_tijd_bestaat_niet i = name "negatieve_tijd_bestaat_niet"
+ ((i + 1 >= i) ==> t i - t (i+1) == zero)
+
+omzetten_naar_Int_is_consistent :: Int -> Property
+omzetten_naar_Int_is_consistent i = name "omzetten_naar_Int_is_consistent"
+ ((abs i >= 0) ==> toInt (t (abs i)) == abs i)
+
+parse_print_is_consistent :: Int -> Property
+parse_print_is_consistent i = name "parse_print_is_consistent"
+ (fromString (toString (t i)) == t i)
diff --git a/files/practicum/Subs.dcl b/files/practicum/Subs.dcl new file mode 100644 index 0000000..2ef6e97 --- /dev/null +++ b/files/practicum/Subs.dcl @@ -0,0 +1,3 @@ +definition module Subs
+
+subs :: // meest algemene type
diff --git a/files/practicum/Subs.icl b/files/practicum/Subs.icl new file mode 100644 index 0000000..f7f2d94 --- /dev/null +++ b/files/practicum/Subs.icl @@ -0,0 +1,8 @@ +implementation module Subs
+
+import StdEnv
+
+Start = subs [1..5]
+
+subs :: // meest algemene type
+subs ...
diff --git a/files/practicum/SubsTest.icl b/files/practicum/SubsTest.icl new file mode 100644 index 0000000..6092bc0 --- /dev/null +++ b/files/practicum/SubsTest.icl @@ -0,0 +1,40 @@ +module SubsTest
+
+/* Test module Subs
+ Voor werken met Gast:
+ (*) gebruik Environment 'Gast'
+ (*) zet Project Options op 'Basic Values Only'
+*/
+
+import StdEnv
+import gast
+import Subs
+
+Start
+ = testn 1000
+ (\xs -> alle_lengtes_komen_voor xs /\
+ alle_elementen_zijn_sub xs /\
+ subs_xs_bevat_xs xs /\
+ True
+ )
+
+alle_lengtes_komen_voor :: [Int] -> Property
+alle_lengtes_komen_voor xs = name "alle_lengtes_komen_voor"
+ (let n = length xs
+ in sort (removeDup (map length (subs xs))) == [0..n]
+ )
+
+alle_elementen_zijn_sub :: [Int] -> Property
+alle_elementen_zijn_sub xs = name "alle_elementen_zijn_sub" (and [is_sub f xs \\ f <- subs xs])
+
+subs_xs_bevat_xs :: [Int] -> Property
+subs_xs_bevat_xs xs = name "subs_xs_bevat_xs" (isMember xs (subs xs))
+
+/* is_sub sub lijst is True alleen als alle elementen van sub achtereenvolgens voorkomen in lijst.
+*/
+is_sub :: [a] [a] -> Bool | Eq a
+is_sub [] _ = True
+is_sub _ [] = False
+is_sub [x:xs] [y:ys]
+| x == y = is_sub xs ys
+| otherwise = is_sub [x:xs] ys
diff --git a/files/practicum/TaylorReeks.icl b/files/practicum/TaylorReeks.icl new file mode 100644 index 0000000..2ee6ff8 --- /dev/null +++ b/files/practicum/TaylorReeks.icl @@ -0,0 +1,23 @@ +module TaylorReeks
+
+import StdEnv
+
+/* 1. Schrijf de functie plusminus die een lijst van waarden krijgt, [x0 ... xn], en die de
+ waarde x0 - x1 + x2 - x3 + ... oplevert.
+*/
+plusminus :: // meest algemene type
+plusminus ...
+
+Start = (1-2+3-4+5-6+7-8+9-10,plusminus [1..10])
+
+/* 2. Implementeer de Taylor-reeks voor de sinus functie m.b.v. de plusminus functie.
+*/
+sinus x = plusminus ...
+
+Start = (sin 0.25, sinus 0.25)
+
+/* 3. Implementeer de Taylor-reeks voor de cosinus functie m.b.v. de plusminus functie.
+*/
+cosinus x = plusminus ...
+
+Start = (cos 0.25, cosinus 0.25)
diff --git a/files/practicum/TestFigure.icl b/files/practicum/TestFigure.icl new file mode 100644 index 0000000..a04c726 --- /dev/null +++ b/files/practicum/TestFigure.icl @@ -0,0 +1,87 @@ +module TestFigure + +/** Example library to demonstrate the use of Existential Types. + The library implements a simple set of drawing objects. + + Create a new project. Set the Environment to "Object IO". + Set "Project Options" to "No Console". + + Have fun. + + Peter Achten + April 14 2008. +*/ +import StdEnv, Figure + +Start :: *World -> *World +Start world = drawFigure figure6 world + +figure0 = mkFigures + [ rectangle a b + , ellips a b + , text "Hello" (movePoint {vx=(b.x-a.x)/5,vy=(b.y-a.y)/2} a) + ] +where + a = {x=20, y=20 } + b = {x=180,y=180} + +figure1 = mkFigures + [ ellips a (movePoint {vx=r,vy=r} a) \\ r <- [10,20..400]] +where + a = {x=20,y=20} + +figure2 = mkFigures + [ text (toString c) {x=r,y=r} \\ c <- ['a'..'z'] & r <- [0,25..]] + +figure3 = mkFigures [figure0,figure1,figure2] + +figure4 = mkFigures + [ line c (movePoint {vx=toInt (r*(cos angle)),vy=toInt (r*(sin angle))} c) + \\ angle <- [0.0,2.0*PI/360.0..2.0*PI] + ] +where + c = {x=200,y=200} + r = 180.0 + +figure5 = mkFigures + [ text (toString cc) (movePoint {vx=toInt (radius*(cos angle)),vy=toInt (radius*(sin angle))} c) + \\ angle <- [0.0,2.0*PI/(toReal nrchars)..2.0*PI] + & cc <- chars + ] +where + c = {x=200,y=200} + radius = 180.0 + chars = ['A'..'Z'] + nrchars = length chars + +figure5` = mkFigures + [ mkFigures [pencolour colour, text (toString cc) (movePoint {vx=toInt (radius*(cos angle)),vy=toInt (radius*(sin angle))} c)] + \\ angle <- [0.0,2.0*PI/(toReal nrchars)..2.0*PI] + & cc <- chars + & colour <- [ RGB { r = begin.r + (eind.r-begin.r)*i/nrchars + , g = begin.g + (eind.g-begin.g)*i/nrchars + , b = begin.b + (eind.b-begin.b)*i/nrchars + } + \\ i <- [1..nrchars] + ] + ] +where + c = {x=200,y=200} + radius = 180.0 + chars = ['A'..'Z'] + nrchars = length chars + begin = {r=255, g= 20, b=200} + eind = {r=0, g=234, b=100} + +figure6 = mkFigures ( + [ pensize 3 ] ++ + [ move {vx=(edges-1)*(toInt (2.0 * radius)),vy=toInt (1.5 * radius)} + ( mkFigures [ line {x=toInt (cos ( i *2.0*PI/(toReal edges))*radius), y=toInt (sin ( i *2.0*PI/(toReal edges))*radius)} + {x=toInt (cos ((i+1.0)*2.0*PI/(toReal edges))*radius), y=toInt (sin ((i+1.0)*2.0*PI/(toReal edges))*radius)} + \\ i <- map toReal [1..edges] + ] + ) + \\ edges <- [2..8] + ]) +where + radius = 80.0 diff --git a/files/practicum/TestSimpleFileIO.icl b/files/practicum/TestSimpleFileIO.icl new file mode 100644 index 0000000..539e155 --- /dev/null +++ b/files/practicum/TestSimpleFileIO.icl @@ -0,0 +1,31 @@ +module TestSimpleFileIO
+
+import SimpleFileIO, StdEnv
+
+bestand n :== "TestSimpleFileIO" +++ toString n +++ ".icl"
+
+Start :: *World -> (String,*World)
+
+/* Test onderdeel 1: */
+Start world
+ = case readFile (bestand "") world of
+ (Just inhoud,world)
+ = case writeFile (bestand 1) inhoud world of
+ (True,world) = ("Bestand '" +++ bestand 1 +++ "' geschreven.\n", world)
+ (_, world) = ("Bestand '" +++ bestand 1 +++ "'niet geschreven.\n",world)
+ (nothing, world) = ("Kon '" +++ bestand "" +++ "' niet lezen.\n",world)
+
+/* Test onderdeel 2: */
+Start world
+ = case readLines (bestand 1) world of
+ (Just regels,world)
+ = case writeLines (bestand 2) (reverse regels) world of
+ (True, world) = ("Bestand '" +++ bestand 2 +++ "' geschreven.\n", world)
+ (False,world) = ("Bestand '" +++ bestand 2 +++ "' niet geschreven.\n",world)
+ (nothing,world) = ("Kon '" +++ bestand 1 +++ "' niet lezen.\n",world)
+
+/* Test onderdeel 3: */
+Start world
+ = case mapFile (bestand 2) (bestand 3) (map toUpper) world of
+ (False,world) = ("Kon '" +++ bestand 2 +++ "' niet lezen of '" +++ bestand 3 +++ "' niet schrijven.\n",world)
+ (_, world) = ("Bestand '" +++ bestand 3 +++ "' geschreven.\n",world)
diff --git a/files/practicum/TestStdStack2.icl b/files/practicum/TestStdStack2.icl new file mode 100644 index 0000000..7df0734 --- /dev/null +++ b/files/practicum/TestStdStack2.icl @@ -0,0 +1,9 @@ +module TestStdStack2
+
+import StdStack2
+
+listStack :: Stack2 a
+listStack = { stack = [], ... }
+
+charStack :: Stack2 Char
+charStack = { stack = "", ... }
diff --git a/files/practicum/TextCompose.dcl b/files/practicum/TextCompose.dcl new file mode 100644 index 0000000..85962d6 --- /dev/null +++ b/files/practicum/TextCompose.dcl @@ -0,0 +1,73 @@ +definition module TextCompose
+
+import StdEnv
+
+/** This module implements a number of operations to compose blocks of text.
+*/
+:: Text
+:: AlignH = LeftH | CenterH | RightH // align left, center, right horizontally
+:: AlignV = TopV | CenterV | BottomV // align top, center, bottom vertically
+:: Width :== NrOfChars
+:: Height :== NrOfLines
+:: NrOfChars :== Int // 0 <= nr of chars
+:: NrOfLines :== Int // 0 <= nr of lines
+
+/** zero
+ returns the empty text: horz align [zero] = zero and vert align [zero] = zero.
+*/
+instance zero Text
+
+/** toText (ah,reqw) (av,reqh) a
+ transforms the String representation of a into a text block that is atleast
+ reqw characters wide and consists of atleast reqh lines.
+ The String representation of a determines whether more width or height is
+ required.
+ The text is aligned horizontally according to ah, and vertically according to av.
+*/
+toText :: !(!AlignH,!Width) !(!AlignV,!Height) !a -> Text | toString a
+
+/** fitText a
+ transforms the String representation of a with: toText (LeftH,0) (TopV,0) a.
+*/
+fitText :: !a -> Text | toString a
+
+/** toString text
+ adds a newline character to each line in text, and concatenates them.
+*/
+instance toString Text
+
+/** sizeOf x
+ determines the number of characters text block x is wide and the number of lines
+ it consists of.
+*/
+class sizeOf a :: !a -> (!Width,!Height)
+instance sizeOf String
+instance sizeOf Text
+
+/** horz av texts
+ puts all text blocks within texts next to each other, and aligning them according to av.
+ It is assumed that all lines within a text block have the same width.
+*/
+horz :: !AlignV ![Text] -> Text
+
+/** vert ah texts
+ puts all text blocks within text below each other, and aligning them according to ah.
+*/
+vert :: !AlignH ![Text] -> Text
+
+/** repeath n c
+ creates a single line of text consisting of n occurrences of c.
+ It is illegal to pass '\n' as argument c.
+*/
+repeath :: !Int !Char -> Text
+
+/** repeatv n c
+ creates a single column of text consisting of n occurrences of c.
+ It is illegal to pass '\n' as argument c.
+*/
+repeatv :: !Int !Char -> Text
+
+/** frame t
+ creates a new text that has a frame around t.
+*/
+frame :: !Text -> Text
diff --git a/files/practicum/TextCompose.icl b/files/practicum/TextCompose.icl new file mode 100644 index 0000000..a87395f --- /dev/null +++ b/files/practicum/TextCompose.icl @@ -0,0 +1,3 @@ +implementation module TextCompose
+
+import StdEnv
diff --git a/files/practicum/TupleOverloading.dcl b/files/practicum/TupleOverloading.dcl new file mode 100644 index 0000000..6831948 --- /dev/null +++ b/files/practicum/TupleOverloading.dcl @@ -0,0 +1,25 @@ +definition module TupleOverloading
+
+import StdEnv
+
+instance + (a,b) | + a & + b
+instance + (a,b,c) | + a & + b & + c
+
+
+instance - (a,b) | - a & - b
+instance - (a,b,c) | - a & - b & - c
+
+instance * (a,b) | * a & * b
+instance * (a,b,c) | * a & * b & * c
+
+instance / (a,b) | / a & / b
+instance / (a,b,c) | / a & / b & / c
+
+instance zero (a,b) | zero a & zero b
+instance zero (a,b,c) | zero a & zero b & zero c
+
+instance one (a,b) | one a & one b
+instance one (a,b,c) | one a & one b & one c
+
+instance ~ (a,b) | ~ a & ~ b
+instance ~ (a,b,c) | ~ a & ~ b & ~ c
diff --git a/files/practicum/TupleOverloading.icl b/files/practicum/TupleOverloading.icl new file mode 100644 index 0000000..2d34276 --- /dev/null +++ b/files/practicum/TupleOverloading.icl @@ -0,0 +1,35 @@ +implementation module TupleOverloading
+
+import StdEnv
+
+instance + (a,b) | + a & + b where
+instance + (a,b,c) | + a & + b & + c where
+
+
+instance - (a,b) | - a & - b where
+instance - (a,b,c) | - a & - b & - c where
+
+instance * (a,b) | * a & * b where
+instance * (a,b,c) | * a & * b & * c where
+
+instance / (a,b) | / a & / b where
+instance / (a,b,c) | / a & / b & / c where
+
+instance zero (a,b) | zero a & zero b where
+instance zero (a,b,c) | zero a & zero b & zero c where
+
+instance one (a,b) | one a & one b where
+instance one (a,b,c) | one a & one b & one c where
+
+instance ~ (a,b) | ~ a & ~ b where
+instance ~ (a,b,c) | ~ a & ~ b & ~ c where
+
+Start = (test (1,2), test (1,2,3))
+
+test a = ( zero + a == a && a == a + zero
+ , a - zero == a && a == ~ (zero - a)
+ , one * a == a && a == a * one
+ , zero * a == zero && zero == a * zero
+ , a / one == a
+ , ~ (~ a) == a
+ )
diff --git a/files/practicum/TupleOverloadingTest.icl b/files/practicum/TupleOverloadingTest.icl new file mode 100644 index 0000000..91417f7 --- /dev/null +++ b/files/practicum/TupleOverloadingTest.icl @@ -0,0 +1,64 @@ +module TupleOverloadingTest + +/* Test module VectorOverloading + Voor werken met Gast: + (*) gebruik Environment 'Gast' + (*) zet Project Options op 'Basic Values Only' +*/ + +import TupleOverloading +import StdEnv +import gast + +Start + = testn 1000 + (\v -> + zero_is_neutral_for_addition v /\ + zero_is_neutral_for_subtraction v /\ + one_is_neutral_for_multiplication v /\ + one_is_neutral_for_division v /\ + negation_is_idempotent v /\ + add_then_subtract_yields_identity v /\ + subtract_then_add_yields_identity v /\ + True + ) + +:: Vector2 a :== (a,a) +:: BaseType + :== Int +// :== Real + +zero_is_neutral_for_addition :: (Vector2 BaseType) -> Property +zero_is_neutral_for_addition a = name "zero_is_neutral_for_addition" + (zero + a == a && a == a + zero) + +zero_is_neutral_for_subtraction :: (Vector2 BaseType) -> Property +zero_is_neutral_for_subtraction a = name "zero_is_neutral_for_subtraction" + (a - zero == a && a == ~ (zero - a)) + +one_is_neutral_for_multiplication :: (Vector2 BaseType) -> Property +one_is_neutral_for_multiplication a = name "one_is_neutral_for_multiplication" + (one * a == a && a == a * one) + +zero_is_zero_for_multiplication :: (Vector2 BaseType) -> Property +zero_is_zero_for_multiplication a = name "zero_is_zero_for_multiplication" + (zero * a == zero && zero == a * zero) + +one_is_neutral_for_division :: (Vector2 BaseType) -> Property +one_is_neutral_for_division a = name "one_is_neutral_for_division" + (a / one == a) + +negation_is_idempotent :: (Vector2 BaseType) -> Property +negation_is_idempotent a = name "negation_is_idempotent" + (~ (~ a) == a) + + +add_then_subtract_yields_identity :: (Vector2 BaseType) -> Property +add_then_subtract_yields_identity a = name "add then subtract" ((a + a) - a == a) + +subtract_then_add_yields_identity :: (Vector2 BaseType) -> Property +subtract_then_add_yields_identity a = name "subtract then add" ((zero - a - a) + a + a == zero) + +//derive genShow (,) +//derive ggen (,) +derive bimap [] diff --git a/files/practicum/Twice.icl b/files/practicum/Twice.icl new file mode 100644 index 0000000..7602d7a --- /dev/null +++ b/files/practicum/Twice.icl @@ -0,0 +1,12 @@ +module Twice
+
+// Zet de Maximum Heap Size *en* de Stack Size beide op 1M.
+
+import StdEnv
+
+Start = ( inc 0
+ , twice inc 0
+ , twice twice inc 0
+ , twice twice twice inc 0
+ , twice twice twice twice inc 0
+ )
diff --git a/files/practicum/Uitlijnen.icl b/files/practicum/Uitlijnen.icl new file mode 100644 index 0000000..44bb8ac --- /dev/null +++ b/files/practicum/Uitlijnen.icl @@ -0,0 +1,159 @@ +module Uitlijnen
+
+import StdEnv, StdIO
+
+// Een aantal synomiem types:
+:: UitlijnMode :== Char
+:: Tekst :== String
+:: Woord :== String
+:: Regel :== String
+:: TekstBreedte :== Int
+:: LetterBreedte :== Int
+:: Spatie :== String // De witruimte tussen twee woorden. Lengte > 0, en alle tekens zijn ' '.
+
+// UitlijnMode geeft de mogelijkheden weer van het algoritme.
+Links = 'l'
+Centreren = 'c'
+Rechts = 'r'
+Uitlijnen = 'u'
+
+/* uitlijnen is de functie die je zelf moet schrijven.
+ Argumenten:
+ UitlijnMode: hoe moet de uitvoer uitgelijnd worden (links, gecentreerd, rechts, of uitgelijnd)
+ LetterBreedte: breedte van een letterteken (alle lettertekens zijn even breed)
+ TekstBreedte: breedte van het uitvoervenster
+ Tekst: de brontekst die uitgelijnd dient te worden.
+ Uitvoer:
+ [Regel]: de lijst van regels die onder elkaar getekend worden.
+ De lengte van alle regels moet gelijk zijn.
+*/
+
+uitlijnen :: UitlijnMode LetterBreedte TekstBreedte Tekst -> [Regel]
+uitlijnen ...
+
+
+/* Vanaf hier volgt het voorgegeven deel van het programma dat een venster op je scherm
+ tevoorschijn tovert. Dit deel hoef je niet te snappen. We nodigen je wel van harte uit
+ om eens naar dit stuk functioneel programma te kijken als je nieuwsgierig bent hoe dat
+ werkt.
+ Uit gewoonte is de rest van dit programma in het Engels geschreven.
+*/
+
+// The data types used in the program:
+:: FontInfo
+ = { font :: !Font
+ , width :: !Int
+ , height :: !Int
+ }
+:: State
+ = { fontInfo:: !FontInfo
+ , mode :: !UitlijnMode
+ , window :: !Id
+ }
+
+/* The text to be outlined. You can change this value to test your program. This example contains sufficient
+ problems. ;-)
+*/
+text =: "In dit kleine verhaaltje komen korte woorden voor, zoals 'a', 'b', 'c' en 'd' maar ook " +++
+ "exorbitant lange woorden zoals 'hottentottententententoonstellingexhibitieruimte'. " +++
+ "Je algoritme moet natuurlijk ook regels met zulke lange woorden aankunnen. "
+
+Start :: *World -> *World
+Start world
+# (fontInfo,world) = accScreenPicture (getFontInfo 8) world
+# (windowId,world) = openId world
+# initialState = {fontInfo=fontInfo,mode=Links,window=windowId}
+= startIO SDI initialState initialiseGUI [ProcessClose closeProcess] world
+where
+// initialiseGUI creates the window and menu of this interactive process.
+ initialiseGUI :: (PSt State) -> PSt State
+ initialiseGUI pst=:{ls=state}
+ # (error,pst) = openWindow undef wdef pst
+ | error<>NoError= abort "Could not open the window."
+ # (error,pst) = openMenu undef mdef pst
+ | error<>NoError= abort "Could not open the menu."
+ | otherwise = pst
+ where
+ // mdef defines the menu of the application.
+ mdef = Menu
+ "&File" // The menu title
+ ( // The menu elements
+ SubMenu "Font&Size"
+ ( RadioMenu [ (toString fsize,Nothing,Nothing,noLS (setFontSize fsize))
+ \\ fsize<-[8,10..30]
+ ] 0 []
+ ) []
+ :+: SubMenu "Mode"
+ ( RadioMenu [ (toString mode,Nothing,Nothing,noLS (setMode mode))
+ \\ mode<-[Links,Centreren,Rechts,Uitlijnen]
+ ] 0 []
+ ) []
+ :+: MenuSeparator []
+ :+: MenuItem "E&xit" [MenuShortKey 'q',MenuFunction (noLS closeProcess)]
+ ) [] // The menu has no attributes
+ where
+ // setFontSize sets the new size of the current font and redraws everything.
+ setFontSize :: Int (PSt State) -> PSt State
+ setFontSize fsize pst=:{ls=state,io}
+ # (maybe_info,io) = accWindowPicture window (getFontInfo fsize) io
+ | isNothing maybe_info
+ = abort ("Could not retrieve font information of size "+++toString fsize)
+ | otherwise
+ # info = fromJust maybe_info
+ # state = {state & fontInfo=fromJust maybe_info}
+ # io = appWindowPicture window (setPenFont info.font) io
+ # io = setWindowLook window True (False,look state) io
+ = {pst & ls=state,io=io}
+ where
+ window = state.window
+
+ // setMode sets the new UitlijnMode and redraws everything.
+ setMode :: UitlijnMode (PSt State) -> PSt State
+ setMode mode pst=:{ls=state,io}
+ # state = {state & mode=mode}
+ # io = setWindowLook window True (False,look state) io
+ = {pst & ls=state,io=io}
+ where
+ window = state.window
+
+
+ // wdef defines the window that displays the text.
+ wdef = Window
+ "Uitlijnen" // The window title
+ NilLS // The window contains no controls
+ [ // Window attributes:
+ WindowClose (noLS closeProcess) // Closing the window terminates the program
+ , WindowLook False (look state) // The visible content of the window
+ , WindowId state.window // The identification value of the window
+ , WindowInit (noLS (appPIO (appWindowPicture state.window (setPenFont state.fontInfo.font))))
+ // Set a non-proportional font
+ , WindowViewSize {w=300,h=300}
+ ]
+
+// getFontInfo retrieves the font metrics and non-proportional font.
+ getFontInfo :: Int *Picture -> (FontInfo,*Picture)
+ getFontInfo fsize picture
+ # ((ok,font),picture) = openFont {NonProportionalFontDef & fSize=fsize} picture
+ | not ok
+ = abort "Could not retrieve NonProportionalFontDef from screen picture"
+ | otherwise
+ # (metrics,picture) = getFontMetrics font picture
+ = ({font=font,width=metrics.fMaxWidth,height=fontLineHeight metrics},picture)
+
+// look draws the visible content of the window.
+ look :: State SelectState UpdateState *Picture -> *Picture
+ look {fontInfo,mode} _ {oldFrame,newFrame} picture
+ # picture = unfill newFrame picture
+ # picture = setPenColour Red picture
+ # picture = drawAt {zero & x=framewidth/charwidth*charwidth} {zero & vy=frameheight} picture
+ # picture = setPenColour Black picture
+ = seq [ drawAt {x=i*charwidth,y=y} line.[i]
+ \\ line<-linedtext & y<-[lineheight,2*lineheight..], i<-[0..size line-1]
+ ] picture
+ where
+ linedtext = uitlijnen mode charwidth framewidth text
+ framesize = rectangleSize newFrame
+ framewidth = framesize.w
+ frameheight = framesize.h
+ lineheight = fontInfo.height
+ charwidth = fontInfo.width
diff --git a/files/practicum/VectorOverloading.dcl b/files/practicum/VectorOverloading.dcl new file mode 100644 index 0000000..76f8520 --- /dev/null +++ b/files/practicum/VectorOverloading.dcl @@ -0,0 +1,14 @@ +definition module VectorOverloading
+
+import StdEnv
+
+:: Vector2 a = {x0 :: a, x1 :: a}
+
+instance == (Vector2 a) | == a
+instance zero (Vector2 a) | zero a
+instance one (Vector2 a) | one a
+instance ~ (Vector2 a) | ~ a
+instance + (Vector2 a) | + a
+instance - (Vector2 a) | - a
+instance * (Vector2 a) | * a
+instance / (Vector2 a) | / a
diff --git a/files/practicum/VectorOverloading.icl b/files/practicum/VectorOverloading.icl new file mode 100644 index 0000000..ad11e4e --- /dev/null +++ b/files/practicum/VectorOverloading.icl @@ -0,0 +1,14 @@ +implementation module VectorOverloading
+
+import StdEnv
+
+:: Vector2 a = {x0 :: a, x1 :: a}
+
+instance == (Vector2 a) | == a where // maak instantie af
+instance zero (Vector2 a) | zero a where // maak instantie af
+instance one (Vector2 a) | one a where // maak instantie af
+instance ~ (Vector2 a) | ~ a where // maak instantie af
+instance + (Vector2 a) | + a where // maak instantie af
+instance - (Vector2 a) | - a where // maak instantie af
+instance * (Vector2 a) | * a where // maak instantie af
+instance / (Vector2 a) | / a where // maak instantie af
diff --git a/files/practicum/VectorOverloadingTest.icl b/files/practicum/VectorOverloadingTest.icl new file mode 100644 index 0000000..e5571bb --- /dev/null +++ b/files/practicum/VectorOverloadingTest.icl @@ -0,0 +1,62 @@ +module VectorOverloadingTest
+
+/* Test module VectorOverloading
+ Voor werken met Gast:
+ (*) gebruik Environment 'Gast'
+ (*) zet Project Options op 'Basic Values Only'
+*/
+
+import VectorOverloading
+import StdEnv
+import gast
+
+Start
+ = testn 1000
+ (\v ->
+ zero_is_neutral_for_addition v /\
+ zero_is_neutral_for_subtraction v /\
+ one_is_neutral_for_multiplication v /\
+ one_is_neutral_for_division v /\
+ negation_is_idempotent v /\
+ add_then_subtract_yields_identity v /\
+ subtract_then_add_yields_identity v /\
+ True
+ )
+
+:: BaseType
+ :== Int
+// :== Real
+
+zero_is_neutral_for_addition :: (Vector2 BaseType) -> Property
+zero_is_neutral_for_addition a = name "zero_is_neutral_for_addition"
+ (zero + a == a && a == a + zero)
+
+zero_is_neutral_for_subtraction :: (Vector2 BaseType) -> Property
+zero_is_neutral_for_subtraction a = name "zero_is_neutral_for_subtraction"
+ (a - zero == a && a == ~ (zero - a))
+
+one_is_neutral_for_multiplication :: (Vector2 BaseType) -> Property
+one_is_neutral_for_multiplication a = name "one_is_neutral_for_multiplication"
+ (one * a == a && a == a * one)
+
+zero_is_zero_for_multiplication :: (Vector2 BaseType) -> Property
+zero_is_zero_for_multiplication a = name "zero_is_zero_for_multiplication"
+ (zero * a == zero && zero == a * zero)
+
+one_is_neutral_for_division :: (Vector2 BaseType) -> Property
+one_is_neutral_for_division a = name "one_is_neutral_for_division"
+ (a / one == a)
+
+negation_is_idempotent :: (Vector2 BaseType) -> Property
+negation_is_idempotent a = name "negation_is_idempotent"
+ (~ (~ a) == a)
+
+add_then_subtract_yields_identity :: (Vector2 BaseType) -> Property
+add_then_subtract_yields_identity a = name "add then subtract" ((a + a) - a == a)
+
+subtract_then_add_yields_identity :: (Vector2 BaseType) -> Property
+subtract_then_add_yields_identity a = name "subtract then add" ((zero - a - a) + a + a == zero)
+
+derive genShow Vector2
+derive ggen Vector2
+derive bimap []
diff --git a/files/practicum/VierOpEenRij.icl b/files/practicum/VierOpEenRij.icl new file mode 100644 index 0000000..fd93358 --- /dev/null +++ b/files/practicum/VierOpEenRij.icl @@ -0,0 +1,5 @@ +module VierOpEenRij
+
+import StdEnv
+
+Start = ...
diff --git a/files/practicum/VindtDeRedex.icl b/files/practicum/VindtDeRedex.icl new file mode 100644 index 0000000..a53462a --- /dev/null +++ b/files/practicum/VindtDeRedex.icl @@ -0,0 +1,15 @@ +module VindtDeRedex
+
+import StdEnv
+
+e1 = 42
+
+e2 = 1 + 125 * 8 / 10 - 59
+
+e3 = not True || True && False
+
+e4 = 1 + 2 == 6 - 3
+
+e5 = "1 + 2" == "6 - 3"
+
+e6 = "1111 + 2222" == "1111" +++ " + " +++ "2222"
diff --git a/files/practicum/WC.dcl b/files/practicum/WC.dcl new file mode 100644 index 0000000..28f30e1 --- /dev/null +++ b/files/practicum/WC.dcl @@ -0,0 +1,5 @@ +definition module WC
+
+import StdFile
+
+wc :: String *env -> (Int,*env) | FileSystem env
diff --git a/files/practicum/WC.icl b/files/practicum/WC.icl new file mode 100644 index 0000000..1bc88be --- /dev/null +++ b/files/practicum/WC.icl @@ -0,0 +1,9 @@ +implementation module WC
+
+import StdEnv, Words, SimpleFileIO
+
+Start :: *World -> (Int,*World)
+Start world = wc "WC.icl" world
+
+wc :: String *env -> (Int,*env) | FileSystem env
+wc ...
diff --git a/files/practicum/WF.dcl b/files/practicum/WF.dcl new file mode 100644 index 0000000..a9036e1 --- /dev/null +++ b/files/practicum/WF.dcl @@ -0,0 +1,5 @@ +definition module WF
+
+import StdFile
+
+wf :: String *env -> ([(String,Int)],*env) | FileSystem env
diff --git a/files/practicum/WF.icl b/files/practicum/WF.icl new file mode 100644 index 0000000..d8b8d52 --- /dev/null +++ b/files/practicum/WF.icl @@ -0,0 +1,12 @@ +implementation module WF
+
+import StdEnv, Woordfrequentie, SimpleFileIO
+import FrequentielijstGUI
+
+Start :: *World -> *World
+Start world
+# (fl,world) = wf "WF.icl" world
+= toonFrequentielijst2 fl world
+
+wf :: String *env -> ([(String,Int)],*env) | FileSystem env
+wf ...
diff --git a/files/practicum/Wisselgeld.dcl b/files/practicum/Wisselgeld.dcl new file mode 100644 index 0000000..9348eab --- /dev/null +++ b/files/practicum/Wisselgeld.dcl @@ -0,0 +1,11 @@ +definition module Wisselgeld
+
+:: Bedrag :== Int // een positief getal
+:: Valuta :== Int // een positief getal
+:: Valutas :== [Valuta] // een niet-lege lijst
+:: Munt :== Int // een positief getal
+:: K :== Int // een positief getal
+:: WisselGeld :== [Munt]
+
+// Implementeer en test onderstaande functie:
+wissel :: Bedrag Valutas K -> [WisselGeld]
diff --git a/files/practicum/Wisselgeld.icl b/files/practicum/Wisselgeld.icl new file mode 100644 index 0000000..493e507 --- /dev/null +++ b/files/practicum/Wisselgeld.icl @@ -0,0 +1,21 @@ +implementation module Wisselgeld
+
+import StdEnv
+
+:: Bedrag :== Int // een positief getal
+:: Valuta :== Int // een positief getal
+:: Valutas :== [Valuta] // een niet-lege lijst
+:: Munt :== Int // een positief getal
+:: K :== Int // een positief getal
+:: WisselGeld :== [Munt]
+
+// Implementeer en test onderstaande functie:
+wissel :: Bedrag Valutas K -> [WisselGeld]
+wissel ...
+
+// Test-cases uit opdrachtenbundel:
+Start = ( wissel 50 [100,50,20,10,5,1] 1
+ , wissel 50 [100,50,20,10,5,1] 2
+ , wissel 50 [100,50,20,10,5,1] 3
+ , wissel 50 [100,50,20,10,5,1] 4
+ )
diff --git a/files/practicum/Woordfrequentie.dcl b/files/practicum/Woordfrequentie.dcl new file mode 100644 index 0000000..b7092de --- /dev/null +++ b/files/practicum/Woordfrequentie.dcl @@ -0,0 +1,3 @@ +definition module Woordfrequentie
+
+woordfrequentie :: String -> [(String,Int)]
diff --git a/files/practicum/Woordfrequentie.icl b/files/practicum/Woordfrequentie.icl new file mode 100644 index 0000000..0dc03ad --- /dev/null +++ b/files/practicum/Woordfrequentie.icl @@ -0,0 +1,28 @@ +implementation module Woordfrequentie
+
+import StdEnv, Frequentielijst, Words, FrequentielijstGUI
+
+// Zonder GUI:
+Start = lijst
+// Met GUI:
+Start world = toonFrequentielijst2 lijst world
+
+woordfrequentie :: String -> [(String,Int)]
+woordfrequentie ...
+
+lijst = woordfrequentie tekst
+tekst = foldl (+++) "" regels
+where
+ regels = ["Far out in the uncharted backwaters of the unfashionable end of the western spiral\n"
+ ,"arm of the Galaxy lies a small unregarded yellow sun.\n"
+ ,"\n"
+ ,"Orbiting this at a distance of roughly ninety-two million miles is an utterly\n"
+ ,"insignificant little blue-green planet whose ape-descended life forms are so \n"
+ ,"amazingly primitive that they still think digital watches are a pretty neat idea.\n"
+ ,"\n"
+ ,"This planet has - or rather had - a problem, which was this: most of the people\n"
+ ,"living on it were unhappy for pretty much of the time.\n"
+ ,"Many solutions were suggested for this problem, but most of these where largely\n"
+ ,"concerned with the movements of small green pieces of paper, which is odd because\n"
+ ,"on the whole it wasn’t the small green pieces of paper that were unhappy.\n"
+ ]
diff --git a/files/practicum/Woordzoeker.dcl b/files/practicum/Woordzoeker.dcl new file mode 100644 index 0000000..e16d475 --- /dev/null +++ b/files/practicum/Woordzoeker.dcl @@ -0,0 +1,9 @@ +definition module Woordzoeker
+
+import VectorOverloading
+
+:: Puzzel :== [[Char]] // lijst van rijen van leestekens (van links naar rechts, van boven naar beneden)
+:: Woord :== [Char]
+:: Coord :== Vector2 Int
+
+woordZoeker :: Puzzel [Woord] -> Woord
diff --git a/files/practicum/Woordzoeker.icl b/files/practicum/Woordzoeker.icl new file mode 100644 index 0000000..10a7f81 --- /dev/null +++ b/files/practicum/Woordzoeker.icl @@ -0,0 +1,11 @@ +implementation module Woordzoeker
+
+import StdEnv
+import VectorOverloading
+
+:: Puzzel :== [[Char]] // lijst van rijen van leestekens (van links naar rechts, van boven naar beneden)
+:: Woord :== [Char]
+:: Coord :== Vector2 Int
+
+woordZoeker :: Puzzel [Woord] -> Woord
+woordZoeker ...
diff --git a/files/practicum/Words.dcl b/files/practicum/Words.dcl new file mode 100644 index 0000000..d7494ef --- /dev/null +++ b/files/practicum/Words.dcl @@ -0,0 +1,3 @@ +definition module Words
+
+words :: // meest algemene type
diff --git a/files/practicum/Words.icl b/files/practicum/Words.icl new file mode 100644 index 0000000..804d70c --- /dev/null +++ b/files/practicum/Words.icl @@ -0,0 +1,23 @@ +implementation module Words
+
+import StdEnv, Group
+
+Start = words tekst
+
+tekst = flatten
+ [ [ 'Far out in the uncharted backwaters of the unfashionable end of the western spiral\n' ]
+ ,[ 'arm of the Galaxy lies a small unregarded yellow sun.\n' ]
+ ,[ '\n' ]
+ ,[ 'Orbiting this at a distance of roughly ninety-two million miles is an utterly\n' ]
+ ,[ 'insignificant little blue-green planet whose ape-descended life forms are so \n' ]
+ ,[ 'amazingly primitive that they still think digital watches are a pretty neat idea.\n' ]
+ ,[ '\n' ]
+ ,[ 'This planet has - or rather had - a problem, which was this: most of the people\n' ]
+ ,[ 'living on it were unhappy for pretty much of the time.\n' ]
+ ,[ 'Many solutions were suggested for this problem, but most of these where largely\n' ]
+ ,[ 'concerned with the movements of small green pieces of paper, which is odd because\n' ]
+ ,[ 'on the whole it wasn’t the small green pieces of paper that were unhappy.\n' ]
+ ]
+
+words :: // meest algemene type
+words ...
diff --git a/files/practicum/ZFRemoveAt.dcl b/files/practicum/ZFRemoveAt.dcl new file mode 100644 index 0000000..73c61b8 --- /dev/null +++ b/files/practicum/ZFRemoveAt.dcl @@ -0,0 +1,3 @@ +definition module ZFRemoveAt
+
+removeAt2 :: Int [a] -> [a]
diff --git a/files/practicum/ZFRemoveAt.icl b/files/practicum/ZFRemoveAt.icl new file mode 100644 index 0000000..60f59c9 --- /dev/null +++ b/files/practicum/ZFRemoveAt.icl @@ -0,0 +1,8 @@ +implementation module ZFRemoveAt
+
+import StdEnv
+
+Start = removeAt 101 [1 .. 100] == removeAt2 101 [1 .. 100]
+
+removeAt2 :: Int [a] -> [a]
+removeAt2 ...
diff --git a/files/practicum/ZFRemoveAtTest.icl b/files/practicum/ZFRemoveAtTest.icl new file mode 100644 index 0000000..1eca25d --- /dev/null +++ b/files/practicum/ZFRemoveAtTest.icl @@ -0,0 +1,23 @@ +module ZFRemoveAtTest
+
+/* Test module ZFRemoveAt
+ Voor werken met Gast:
+ (*) gebruik Environment 'Gast'
+ (*) zet Project Options op 'Basic Values Only'
+*/
+import gast
+import ZFRemoveAt
+
+Start
+ = testn 1000
+ (\m n ->
+ let l = [1 .. (n>>20)] in
+ identiek_aan_removeAt m l /\
+ True
+ )
+
+identiek_aan_removeAt :: Int [Int] -> Property
+identiek_aan_removeAt m l = name "identiek aan removeAt"
+ (removeAt m l == removeAt2 m l)
+ /\
+ (ForEach [1..length l] (\i -> removeAt i l == removeAt2 i l))
diff --git a/files/practicum/ZFSort.icl b/files/practicum/ZFSort.icl new file mode 100644 index 0000000..c4cf192 --- /dev/null +++ b/files/practicum/ZFSort.icl @@ -0,0 +1,13 @@ +module ZFSort
+
+import StdEnv
+import Perms
+
+
+is_gesorteerd :: // meest algemene type
+is_gesorteerd ...
+
+sorteer :: // meest algemene type
+sorteer ...
+
+Start = sorteer [10,9..1]
diff --git a/files/practicum/ZFUpdateAt.dcl b/files/practicum/ZFUpdateAt.dcl new file mode 100644 index 0000000..cae5f7e --- /dev/null +++ b/files/practicum/ZFUpdateAt.dcl @@ -0,0 +1,3 @@ +definition module ZFUpdateAt
+
+updateAt2 :: !Int a ![a] -> [a]
diff --git a/files/practicum/ZFUpdateAt.icl b/files/practicum/ZFUpdateAt.icl new file mode 100644 index 0000000..4059352 --- /dev/null +++ b/files/practicum/ZFUpdateAt.icl @@ -0,0 +1,8 @@ +implementation module ZFUpdateAt
+
+import StdEnv
+
+Start = updateAt2 300 42 [100,90 .. 0] == updateAt 300 42 [100,90 .. 0]
+
+updateAt2 :: !Int a ![a] -> [a]
+updateAt2 ...
diff --git a/files/practicum/ZFUpdateAtTest.icl b/files/practicum/ZFUpdateAtTest.icl new file mode 100644 index 0000000..2c096bd --- /dev/null +++ b/files/practicum/ZFUpdateAtTest.icl @@ -0,0 +1,23 @@ +module ZFUpdateAtTest
+
+/* Test module ZFUpdateAt
+ Voor werken met Gast:
+ (*) gebruik Environment 'Gast'
+ (*) zet Project Options op 'Basic Values Only'
+*/
+import gast
+import ZFUpdateAt
+
+Start
+ = testn 1000
+ (\m n x ->
+ let l = [1 .. n bitand 0xFF] in
+ identiek_aan_updateAt m l x /\
+ True
+ )
+
+identiek_aan_updateAt :: Int [Int] Int -> Property
+identiek_aan_updateAt m l x = name "identiek aan updateAt"
+ (updateAt m x l == updateAt2 m x l)
+ /\
+ (ForEach [1 .. length l] (\i -> updateAt i x l == updateAt2 i x l))
diff --git a/files/practicum/ZFZoek.dcl b/files/practicum/ZFZoek.dcl new file mode 100644 index 0000000..a395cb7 --- /dev/null +++ b/files/practicum/ZFZoek.dcl @@ -0,0 +1,5 @@ +definition module ZFZoek
+
+import StdEnv
+
+(??) infixl 9 :: ![a] !a -> Int | Eq a
diff --git a/files/practicum/ZFZoek.icl b/files/practicum/ZFZoek.icl new file mode 100644 index 0000000..cc4c725 --- /dev/null +++ b/files/practicum/ZFZoek.icl @@ -0,0 +1,14 @@ +implementation module ZFZoek
+
+import StdEnv
+
+(??) infixl 9 :: ![a] !a -> Int | Eq a
+//(??) ...
+
+// Het resultaat moet True zijn.
+Start = [ [1,2,3,4,5,6] ?? 3
+ , [1,2,3,4,5,6] ?? 10
+ , ['Hello world'] ?? 'o'
+ ]
+ ==
+ [ 2, -1, 4 ]
diff --git a/files/practicum/ZFZoekTest.icl b/files/practicum/ZFZoekTest.icl new file mode 100644 index 0000000..f45d2a9 --- /dev/null +++ b/files/practicum/ZFZoekTest.icl @@ -0,0 +1,26 @@ +module ZFZoekTest
+
+/* Test module ZFZoek
+ Voor werken met Gast:
+ (*) gebruik Environment 'Gast'
+ (*) zet Project Options op 'Basic Values Only'
+*/
+import gast
+import ZFZoek
+
+Start
+ = testn 1000
+ (\m n ->
+ let l = [1 .. n bitand 0xFF] in
+ elementen_worden_gevonden l /\
+ niet_elementen_worden_niet_gevonden m l /\
+ True
+ )
+
+elementen_worden_gevonden :: [Int] -> Property
+elementen_worden_gevonden l = name "elementen worden gevonden"
+ (ForEach l (\x -> let i = l??x in 0 <= i && i < length l && l!!i == x))
+
+niet_elementen_worden_niet_gevonden :: Int [Int] -> Property
+niet_elementen_worden_niet_gevonden m l = name "niet-elementen worden niet gevonden"
+ (not (isMember m l)) ==> l??m == -1
diff --git a/files/practicum/Zakkenvuller.icl b/files/practicum/Zakkenvuller.icl new file mode 100644 index 0000000..ffb620a --- /dev/null +++ b/files/practicum/Zakkenvuller.icl @@ -0,0 +1,3 @@ +module Zakkenvuller
+
+import StdEnv
diff --git a/files/practicum/Zakkenvuller2.icl b/files/practicum/Zakkenvuller2.icl new file mode 100644 index 0000000..8054baf --- /dev/null +++ b/files/practicum/Zakkenvuller2.icl @@ -0,0 +1,4 @@ +module Zakkenvuller2
+
+import StdEnv
+
diff --git a/files/practicum/Zinspelingen.icl b/files/practicum/Zinspelingen.icl new file mode 100644 index 0000000..633892b --- /dev/null +++ b/files/practicum/Zinspelingen.icl @@ -0,0 +1,6 @@ +implementation module Zinspelingen
+
+import StdEnv, Firsts, Frags, Subs, Perms, Words
+
+Start :: *World -> ...
+Start world = ...
diff --git a/files/practicum/freqNL.txt b/files/practicum/freqNL.txt new file mode 100644 index 0000000..1b168d6 --- /dev/null +++ b/files/practicum/freqNL.txt @@ -0,0 +1,26 @@ +A 7.49
+B 1.58
+C 1.24
+D 5.93
+E 18.91
+F 0.81
+G 3.40
+H 2.38
+I 6.50
+J 1.46
+K 2.25
+L 3.57
+M 2.21
+N 10.03
+O 6.06
+P 1.57
+Q 0.01
+R 6.41
+S 3.73
+T 6.79
+U 1.99
+V 2.85
+W 1.52
+X 0.04
+Y 0.03
+Z 1.39
diff --git a/files/practicum/huffmanNL.txt b/files/practicum/huffmanNL.txt new file mode 100644 index 0000000..55d465a --- /dev/null +++ b/files/practicum/huffmanNL.txt @@ -0,0 +1,26 @@ +A 0010
+B 001101
+C 0001010
+D 1001
+E 11
+F 00010110
+G 01100
+H 10110
+I 0101
+J 101000
+K 10111
+L 00111
+M 000100
+N 0000
+O 1000
+P 011010
+Q 0001011101
+R 0111
+S 00011
+T 0100
+U 001100
+V 10101
+W 011011
+X 000101111
+Y 0001011100
+Z 101001
diff --git a/files/practicum/support.dcl b/files/practicum/support.dcl new file mode 100644 index 0000000..c96ece6 --- /dev/null +++ b/files/practicum/support.dcl @@ -0,0 +1,36 @@ +definition module support
+
+import StdEnv, StdIO
+
+:: Pos // A position
+ = { rx :: !Real // 0.0 <= rx <= 1.0
+ , ry :: !Real // 0.0 <= ry <= 1.0
+ }
+:: Vel // A velocity
+ = { v0 :: !Real // -1.0 <= v0 <= 1.0
+ , v1 :: !Real // -1.0 <= v1 <= 1.0
+ }
+
+toPoint2 :: Size Pos -> Point2
+fromPoint2 :: Size Point2 -> Pos
+
+circle :: Int -> Oval
+
+movePos :: Vel Pos -> Pos
+
+instance zero Pos
+instance zero Vel
+instance + Pos
+instance - Pos
+instance + Vel
+instance - Vel
+
+class scale a :: !Real !a -> a
+class toVel a :: !a -> Vel
+class dist a :: !a !a -> Real
+
+instance scale Pos
+instance scale Vel
+instance toVel Pos
+instance dist Pos
+instance dist Real
diff --git a/files/practicum/support.icl b/files/practicum/support.icl new file mode 100644 index 0000000..612b00d --- /dev/null +++ b/files/practicum/support.icl @@ -0,0 +1,47 @@ +implementation module support
+
+import StdEnv, StdIO
+
+toPoint2 :: Size Pos -> Point2
+toPoint2 {w,h} {rx,ry} = {x=toInt ((toReal w)*rx),y=toInt ((toReal h)*ry)}
+
+fromPoint2 :: Size Point2 -> Pos
+fromPoint2 {w,h} {x,y} = {rx=(toReal x)/(toReal w),ry=(toReal y)/(toReal h)}
+
+circle :: Int -> Oval
+circle r = {oval_rx=r,oval_ry=r}
+
+instance zero Pos where
+ zero = {rx=zero,ry=zero}
+instance zero Vel where
+ zero = {v0=zero,v1=zero}
+instance + Pos where
+ (+) p1 p2 = {rx=p1.rx+p2.rx,ry=p1.ry+p2.ry}
+instance - Pos where
+ (-) p1 p2 = {rx=p1.rx-p2.rx,ry=p1.ry-p2.ry}
+instance + Vel where
+ (+) a b = {v0=a.v0+b.v0,v1=a.v1+b.v1}
+instance - Vel where
+ (-) a b = {v0=a.v0-b.v0,v1=a.v1-b.v1}
+
+class scale a :: !Real !a -> a
+
+instance scale Pos where
+ scale r p = {rx=r*p.rx,ry=r*p.ry}
+instance scale Vel where
+ scale r v = {v0=r*v.v0,v1=r*v.v1}
+
+class toVel a :: !a -> Vel
+
+instance toVel Pos where
+ toVel p = {v0=p.rx,v1=p.ry}
+
+class dist a :: !a !a -> Real
+
+instance dist Pos where
+ dist p1 p2 = sqrt ((p1.rx - p2.rx)^2.0 + (p1.ry - p2.ry)^2.0)
+instance dist Real where
+ dist r1 r2 = abs (r1 - r2)
+
+movePos :: Vel Pos -> Pos
+movePos v p = {p & rx=p.rx+v.v0,ry=p.ry+v.v1}
|