hornairs-scrobbler 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (161) hide show
  1. data/.gitignore +13 -0
  2. data/.loadpath +5 -0
  3. data/History.txt +5 -0
  4. data/MIT-LICENSE +19 -0
  5. data/Manifest +75 -0
  6. data/README.rdoc +104 -0
  7. data/Rakefile +10 -0
  8. data/VERSION.yml +5 -0
  9. data/examples/album.rb +20 -0
  10. data/examples/artist.rb +13 -0
  11. data/examples/playlist.rb +7 -0
  12. data/examples/scrobble.rb +31 -0
  13. data/examples/tag.rb +11 -0
  14. data/examples/track.rb +12 -0
  15. data/examples/user.rb +15 -0
  16. data/lib/scrobbler.rb +33 -0
  17. data/lib/scrobbler/album.rb +181 -0
  18. data/lib/scrobbler/artist.rb +165 -0
  19. data/lib/scrobbler/auth.rb +47 -0
  20. data/lib/scrobbler/base.rb +105 -0
  21. data/lib/scrobbler/event.rb +105 -0
  22. data/lib/scrobbler/geo.rb +27 -0
  23. data/lib/scrobbler/helper/image.rb +52 -0
  24. data/lib/scrobbler/helper/streamable.rb +40 -0
  25. data/lib/scrobbler/library.rb +112 -0
  26. data/lib/scrobbler/playing.rb +49 -0
  27. data/lib/scrobbler/playlist.rb +87 -0
  28. data/lib/scrobbler/radio.rb +12 -0
  29. data/lib/scrobbler/rest.rb +47 -0
  30. data/lib/scrobbler/scrobble.rb +116 -0
  31. data/lib/scrobbler/session.rb +9 -0
  32. data/lib/scrobbler/shout.rb +21 -0
  33. data/lib/scrobbler/simpleauth.rb +60 -0
  34. data/lib/scrobbler/tag.rb +113 -0
  35. data/lib/scrobbler/track.rb +152 -0
  36. data/lib/scrobbler/user.rb +222 -0
  37. data/lib/scrobbler/venue.rb +67 -0
  38. data/setup.rb +1585 -0
  39. data/tasks/jeweler.rake +15 -0
  40. data/tasks/rdoc.rake +7 -0
  41. data/tasks/tests.rake +13 -0
  42. data/tasks/yardoc.rake +8 -0
  43. data/test/fixtures/xml/album/info.xml +43 -0
  44. data/test/fixtures/xml/artist/fans.xml +52 -0
  45. data/test/fixtures/xml/artist/info.xml +58 -0
  46. data/test/fixtures/xml/artist/similar.xml +1004 -0
  47. data/test/fixtures/xml/artist/topalbums.xml +61 -0
  48. data/test/fixtures/xml/artist/toptags.xml +19 -0
  49. data/test/fixtures/xml/artist/toptracks.xml +62 -0
  50. data/test/fixtures/xml/auth/session.xml +7 -0
  51. data/test/fixtures/xml/auth/token.xml +3 -0
  52. data/test/fixtures/xml/event/attend.xml +3 -0
  53. data/test/fixtures/xml/event/attendees.xml +53 -0
  54. data/test/fixtures/xml/event/event.xml +35 -0
  55. data/test/fixtures/xml/event/shouts.xml +35 -0
  56. data/test/fixtures/xml/geo/events-distance-p1.xml +151 -0
  57. data/test/fixtures/xml/geo/events-lat-long.xml +167 -0
  58. data/test/fixtures/xml/geo/events-p1.xml +152 -0
  59. data/test/fixtures/xml/geo/events-p2.xml +380 -0
  60. data/test/fixtures/xml/geo/events-p3.xml +427 -0
  61. data/test/fixtures/xml/geo/top_artists-p1.xml +76 -0
  62. data/test/fixtures/xml/geo/top_tracks-p1.xml +77 -0
  63. data/test/fixtures/xml/library/albums-f30.xml +454 -0
  64. data/test/fixtures/xml/library/albums-p1.xml +754 -0
  65. data/test/fixtures/xml/library/albums-p2.xml +754 -0
  66. data/test/fixtures/xml/library/albums-p3.xml +754 -0
  67. data/test/fixtures/xml/library/albums-p4.xml +739 -0
  68. data/test/fixtures/xml/library/albums-p5.xml +754 -0
  69. data/test/fixtures/xml/library/albums-p6.xml +754 -0
  70. data/test/fixtures/xml/library/albums-p7.xml +739 -0
  71. data/test/fixtures/xml/library/albums-p8.xml +724 -0
  72. data/test/fixtures/xml/library/artists-f30.xml +334 -0
  73. data/test/fixtures/xml/library/artists-p1.xml +554 -0
  74. data/test/fixtures/xml/library/artists-p2.xml +554 -0
  75. data/test/fixtures/xml/library/artists-p3.xml +554 -0
  76. data/test/fixtures/xml/library/artists-p4.xml +554 -0
  77. data/test/fixtures/xml/library/artists-p5.xml +554 -0
  78. data/test/fixtures/xml/library/artists-p6.xml +554 -0
  79. data/test/fixtures/xml/library/artists-p7.xml +444 -0
  80. data/test/fixtures/xml/library/tracks-f30.xml +472 -0
  81. data/test/fixtures/xml/library/tracks-p1.xml +789 -0
  82. data/test/fixtures/xml/library/tracks-p10.xml +771 -0
  83. data/test/fixtures/xml/library/tracks-p11.xml +792 -0
  84. data/test/fixtures/xml/library/tracks-p12.xml +777 -0
  85. data/test/fixtures/xml/library/tracks-p13.xml +762 -0
  86. data/test/fixtures/xml/library/tracks-p14.xml +759 -0
  87. data/test/fixtures/xml/library/tracks-p15.xml +762 -0
  88. data/test/fixtures/xml/library/tracks-p16.xml +756 -0
  89. data/test/fixtures/xml/library/tracks-p17.xml +780 -0
  90. data/test/fixtures/xml/library/tracks-p18.xml +756 -0
  91. data/test/fixtures/xml/library/tracks-p19.xml +774 -0
  92. data/test/fixtures/xml/library/tracks-p2.xml +765 -0
  93. data/test/fixtures/xml/library/tracks-p20.xml +777 -0
  94. data/test/fixtures/xml/library/tracks-p21.xml +777 -0
  95. data/test/fixtures/xml/library/tracks-p22.xml +771 -0
  96. data/test/fixtures/xml/library/tracks-p23.xml +765 -0
  97. data/test/fixtures/xml/library/tracks-p24.xml +783 -0
  98. data/test/fixtures/xml/library/tracks-p25.xml +777 -0
  99. data/test/fixtures/xml/library/tracks-p26.xml +777 -0
  100. data/test/fixtures/xml/library/tracks-p27.xml +756 -0
  101. data/test/fixtures/xml/library/tracks-p28.xml +771 -0
  102. data/test/fixtures/xml/library/tracks-p29.xml +753 -0
  103. data/test/fixtures/xml/library/tracks-p3.xml +771 -0
  104. data/test/fixtures/xml/library/tracks-p30.xml +780 -0
  105. data/test/fixtures/xml/library/tracks-p31.xml +753 -0
  106. data/test/fixtures/xml/library/tracks-p32.xml +771 -0
  107. data/test/fixtures/xml/library/tracks-p33.xml +762 -0
  108. data/test/fixtures/xml/library/tracks-p34.xml +538 -0
  109. data/test/fixtures/xml/library/tracks-p4.xml +792 -0
  110. data/test/fixtures/xml/library/tracks-p5.xml +780 -0
  111. data/test/fixtures/xml/library/tracks-p6.xml +789 -0
  112. data/test/fixtures/xml/library/tracks-p7.xml +789 -0
  113. data/test/fixtures/xml/library/tracks-p8.xml +780 -0
  114. data/test/fixtures/xml/library/tracks-p9.xml +774 -0
  115. data/test/fixtures/xml/tag/similar.xml +254 -0
  116. data/test/fixtures/xml/tag/topalbums.xml +805 -0
  117. data/test/fixtures/xml/tag/topartists.xml +605 -0
  118. data/test/fixtures/xml/tag/toptags.xml +1254 -0
  119. data/test/fixtures/xml/tag/toptracks.xml +852 -0
  120. data/test/fixtures/xml/track/fans.xml +34 -0
  121. data/test/fixtures/xml/track/info.xml +53 -0
  122. data/test/fixtures/xml/track/toptags.xml +504 -0
  123. data/test/fixtures/xml/user/events.xml +401 -0
  124. data/test/fixtures/xml/user/friends.xml +30 -0
  125. data/test/fixtures/xml/user/lovedtracks.xml +678 -0
  126. data/test/fixtures/xml/user/neighbours.xml +23 -0
  127. data/test/fixtures/xml/user/playlists.xml +61 -0
  128. data/test/fixtures/xml/user/profile.xml +12 -0
  129. data/test/fixtures/xml/user/recentbannedtracks.xml +24 -0
  130. data/test/fixtures/xml/user/recentlovedtracks.xml +24 -0
  131. data/test/fixtures/xml/user/recenttracks.xml +124 -0
  132. data/test/fixtures/xml/user/systemrecs.xml +18 -0
  133. data/test/fixtures/xml/user/topalbums.xml +61 -0
  134. data/test/fixtures/xml/user/topartists.xml +41 -0
  135. data/test/fixtures/xml/user/toptags.xml +44 -0
  136. data/test/fixtures/xml/user/toptracks.xml +65 -0
  137. data/test/fixtures/xml/user/weeklyalbumchart.xml +256 -0
  138. data/test/fixtures/xml/user/weeklyartistchart.xml +220 -0
  139. data/test/fixtures/xml/user/weeklytrackchart.xml +746 -0
  140. data/test/fixtures/xml/venue/events.xml +151 -0
  141. data/test/fixtures/xml/venue/venue.xml +16 -0
  142. data/test/mocks/rest.rb +212 -0
  143. data/test/spec_helper.rb +7 -0
  144. data/test/test_helper.rb +20 -0
  145. data/test/unit/album_spec.rb +52 -0
  146. data/test/unit/artist_spec.rb +130 -0
  147. data/test/unit/auth_spec.rb +36 -0
  148. data/test/unit/event_spec.rb +109 -0
  149. data/test/unit/geo_spec.rb +148 -0
  150. data/test/unit/library_spec.rb +133 -0
  151. data/test/unit/playing_test.rb +53 -0
  152. data/test/unit/playlist_spec.rb +25 -0
  153. data/test/unit/radio_spec.rb +22 -0
  154. data/test/unit/scrobble_spec.rb +55 -0
  155. data/test/unit/scrobble_test.rb +69 -0
  156. data/test/unit/simpleauth_test.rb +45 -0
  157. data/test/unit/tag_spec.rb +101 -0
  158. data/test/unit/track_spec.rb +95 -0
  159. data/test/unit/user_spec.rb +264 -0
  160. data/test/unit/venue_spec.rb +104 -0
  161. metadata +265 -0
@@ -0,0 +1,777 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="25" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>There Goes The Fear</name>
6
+ <playcount>1</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Doves/_/There+Goes+The+Fear</url>
10
+ <streamable fulltrack="0">1</streamable>
11
+ <artist>
12
+ <name>Doves</name>
13
+ <mbid>9de8f66e-3cd1-4f11-8328-38200f0612b0</mbid>
14
+ <url>http://www.last.fm/music/Doves</url>
15
+ </artist>
16
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14097681.jpg</image>
17
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14097681.jpg</image>
18
+ <image size="large">http://userserve-ak.last.fm/serve/126/14097681.jpg</image>
19
+ </track>
20
+ <track>
21
+ <name>Points of Authority (live)</name>
22
+ <playcount>1</playcount>
23
+ <tagcount></tagcount>
24
+ <mbid></mbid>
25
+ <url>http://www.last.fm/music/Linkin+Park/_/Points+of+Authority+%28live%29</url>
26
+ <streamable fulltrack="0">0</streamable>
27
+ <artist>
28
+ <name>Linkin Park</name>
29
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
30
+ <url>http://www.last.fm/music/Linkin+Park</url>
31
+ </artist>
32
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4024738.jpg</image>
33
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4024738.jpg</image>
34
+ <image size="large">http://userserve-ak.last.fm/serve/126/4024738.jpg</image>
35
+ </track>
36
+ <track>
37
+ <name>Place for My Head</name>
38
+ <playcount>1</playcount>
39
+ <tagcount></tagcount>
40
+ <mbid></mbid>
41
+ <url>http://www.last.fm/music/Linkin+Park/_/Place+for+My+Head</url>
42
+ <streamable fulltrack="0">1</streamable>
43
+ <artist>
44
+ <name>Linkin Park</name>
45
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
46
+ <url>http://www.last.fm/music/Linkin+Park</url>
47
+ </artist>
48
+ <image size="small">http://images.amazon.com/images/P/B0000CGAEJ.09._SCMZZZZZZZ_.jpg</image>
49
+ <image size="medium">http://images.amazon.com/images/P/B0000CGAEJ.09._SCMZZZZZZZ_.jpg</image>
50
+ <image size="large">http://images.amazon.com/images/P/B0000CGAEJ.09._SCMZZZZZZZ_.jpg</image>
51
+ </track>
52
+ <track>
53
+ <name>Demokratie</name>
54
+ <playcount>1</playcount>
55
+ <tagcount></tagcount>
56
+ <mbid></mbid>
57
+ <url>http://www.last.fm/music/Andreas+Dorau/_/Demokratie</url>
58
+ <streamable fulltrack="1">1</streamable>
59
+ <artist>
60
+ <name>Andreas Dorau</name>
61
+ <mbid>d3281dc6-1484-4627-a344-3715347952e0</mbid>
62
+ <url>http://www.last.fm/music/Andreas+Dorau</url>
63
+ </artist>
64
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8689475.jpg</image>
65
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8689475.jpg</image>
66
+ <image size="large">http://userserve-ak.last.fm/serve/126/8689475.jpg</image>
67
+ </track>
68
+ <track>
69
+ <name>The White Rider</name>
70
+ <playcount>1</playcount>
71
+ <tagcount></tagcount>
72
+ <mbid></mbid>
73
+ <url>http://www.last.fm/music/Howard+Shore/_/The+White+Rider</url>
74
+ <streamable fulltrack="0">1</streamable>
75
+ <artist>
76
+ <name>Howard Shore</name>
77
+ <mbid>9b58672a-e68e-4972-956e-a8985a165a1f</mbid>
78
+ <url>http://www.last.fm/music/Howard+Shore</url>
79
+ </artist>
80
+ <image size="small">http://userserve-ak.last.fm/serve/34s/13142565.jpg</image>
81
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/13142565.jpg</image>
82
+ <image size="large">http://userserve-ak.last.fm/serve/126/13142565.jpg</image>
83
+ </track>
84
+ <track>
85
+ <name>Teddy Boys</name>
86
+ <playcount>1</playcount>
87
+ <tagcount></tagcount>
88
+ <mbid></mbid>
89
+ <url>http://www.last.fm/music/Adam+Green/_/Teddy+Boys</url>
90
+ <streamable fulltrack="0">0</streamable>
91
+ <artist>
92
+ <name>Adam Green</name>
93
+ <mbid>150e799b-3244-45d9-a6cb-5a3e8c33d430</mbid>
94
+ <url>http://www.last.fm/music/Adam+Green</url>
95
+ </artist>
96
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12623975.jpg</image>
97
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12623975.jpg</image>
98
+ <image size="large">http://userserve-ak.last.fm/serve/126/12623975.jpg</image>
99
+ </track>
100
+ <track>
101
+ <name>Solamente por Pensar (en Italiano)</name>
102
+ <playcount>1</playcount>
103
+ <tagcount></tagcount>
104
+ <mbid></mbid>
105
+ <url>http://www.last.fm/music/Ska-P/_/Solamente+por+Pensar+%28en+Italiano%29</url>
106
+ <streamable fulltrack="0">0</streamable>
107
+ <artist>
108
+ <name>Ska-P</name>
109
+ <mbid>2de794c8-8826-48d0-90e0-6900183ba9e0</mbid>
110
+ <url>http://www.last.fm/music/Ska-P</url>
111
+ </artist>
112
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
113
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
114
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
115
+ </track>
116
+ <track>
117
+ <name>Round Round</name>
118
+ <playcount>1</playcount>
119
+ <tagcount></tagcount>
120
+ <mbid></mbid>
121
+ <url>http://www.last.fm/music/Far+%2A+East+Movement/_/Round+Round</url>
122
+ <streamable fulltrack="0">0</streamable>
123
+ <artist>
124
+ <name>Far * East Movement</name>
125
+ <mbid>6bd5655c-b7fe-48ee-8925-c2d2d8798618</mbid>
126
+ <url>http://www.last.fm/music/Far+%2A+East+Movement</url>
127
+ </artist>
128
+ </track>
129
+ <track>
130
+ <name>Kirby's House</name>
131
+ <playcount>1</playcount>
132
+ <tagcount></tagcount>
133
+ <mbid></mbid>
134
+ <url>http://www.last.fm/music/Razorlight/_/Kirby%27s+House</url>
135
+ <streamable fulltrack="1">1</streamable>
136
+ <artist>
137
+ <name>Razorlight</name>
138
+ <mbid>f2cb0435-d643-4fab-9587-fdb0279330a7</mbid>
139
+ <url>http://www.last.fm/music/Razorlight</url>
140
+ </artist>
141
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8846369.jpg</image>
142
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8846369.jpg</image>
143
+ <image size="large">http://userserve-ak.last.fm/serve/126/8846369.jpg</image>
144
+ </track>
145
+ <track>
146
+ <name>Lion's Den</name>
147
+ <playcount>1</playcount>
148
+ <tagcount></tagcount>
149
+ <mbid></mbid>
150
+ <url>http://www.last.fm/music/Gentleman/_/Lion%27s+Den</url>
151
+ <streamable fulltrack="0">1</streamable>
152
+ <artist>
153
+ <name>Gentleman</name>
154
+ <mbid>8de4a831-7c25-4d34-90cf-254de0c36e49</mbid>
155
+ <url>http://www.last.fm/music/Gentleman</url>
156
+ </artist>
157
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28019385.jpg</image>
158
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28019385.jpg</image>
159
+ <image size="large">http://userserve-ak.last.fm/serve/126/28019385.jpg</image>
160
+ </track>
161
+ <track>
162
+ <name>Treat Me Like a Woman</name>
163
+ <playcount>1</playcount>
164
+ <tagcount></tagcount>
165
+ <mbid></mbid>
166
+ <url>http://www.last.fm/music/Lisa+Stansfield/_/Treat+Me+Like+a+Woman</url>
167
+ <streamable fulltrack="0">1</streamable>
168
+ <artist>
169
+ <name>Lisa Stansfield</name>
170
+ <mbid>8f632c44-c97f-4b12-b1cd-caf2c6e2ed06</mbid>
171
+ <url>http://www.last.fm/music/Lisa+Stansfield</url>
172
+ </artist>
173
+ <image size="small">http://userserve-ak.last.fm/serve/34s/18272501.jpg</image>
174
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/18272501.jpg</image>
175
+ <image size="large">http://userserve-ak.last.fm/serve/126/18272501.jpg</image>
176
+ </track>
177
+ <track>
178
+ <name>Born Free (live)</name>
179
+ <playcount>1</playcount>
180
+ <tagcount></tagcount>
181
+ <mbid></mbid>
182
+ <url>http://www.last.fm/music/The+Bouncing+Souls/_/Born+Free+%28live%29</url>
183
+ <streamable fulltrack="0">0</streamable>
184
+ <artist>
185
+ <name>The Bouncing Souls</name>
186
+ <mbid>429d5f26-329c-41cc-bdff-17c29dbf1fb8</mbid>
187
+ <url>http://www.last.fm/music/The+Bouncing+Souls</url>
188
+ </artist>
189
+ </track>
190
+ <track>
191
+ <name>Photograph</name>
192
+ <playcount>1</playcount>
193
+ <tagcount></tagcount>
194
+ <mbid></mbid>
195
+ <url>http://www.last.fm/music/Weezer/_/Photograph</url>
196
+ <streamable fulltrack="1">1</streamable>
197
+ <artist>
198
+ <name>Weezer</name>
199
+ <mbid>6fe07aa5-fec0-4eca-a456-f29bff451b04</mbid>
200
+ <url>http://www.last.fm/music/Weezer</url>
201
+ </artist>
202
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8593525.jpg</image>
203
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8593525.jpg</image>
204
+ <image size="large">http://userserve-ak.last.fm/serve/126/8593525.jpg</image>
205
+ </track>
206
+ <track>
207
+ <name>40 Days And 40 Nights</name>
208
+ <playcount>1</playcount>
209
+ <tagcount></tagcount>
210
+ <mbid></mbid>
211
+ <url>http://www.last.fm/music/The+Enemy/_/40+Days+And+40+Nights</url>
212
+ <streamable fulltrack="0">1</streamable>
213
+ <artist>
214
+ <name>The Enemy</name>
215
+ <mbid></mbid>
216
+ <url>http://www.last.fm/music/The+Enemy</url>
217
+ </artist>
218
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9687255.jpg</image>
219
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9687255.jpg</image>
220
+ <image size="large">http://userserve-ak.last.fm/serve/126/9687255.jpg</image>
221
+ </track>
222
+ <track>
223
+ <name>Schunder-Song</name>
224
+ <playcount>1</playcount>
225
+ <tagcount></tagcount>
226
+ <mbid></mbid>
227
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Schunder-Song</url>
228
+ <streamable fulltrack="0">1</streamable>
229
+ <artist>
230
+ <name>Die Ärzte</name>
231
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
232
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
233
+ </artist>
234
+ <image size="small">http://images.amazon.com/images/P/B000031X8H.01._SCMZZZZZZZ_.jpg</image>
235
+ <image size="medium">http://images.amazon.com/images/P/B000031X8H.01._SCMZZZZZZZ_.jpg</image>
236
+ <image size="large">http://images.amazon.com/images/P/B000031X8H.01._SCMZZZZZZZ_.jpg</image>
237
+ </track>
238
+ <track>
239
+ <name>Sag mir</name>
240
+ <playcount>1</playcount>
241
+ <tagcount></tagcount>
242
+ <mbid></mbid>
243
+ <url>http://www.last.fm/music/Spillsbury/_/Sag+mir</url>
244
+ <streamable fulltrack="0">0</streamable>
245
+ <artist>
246
+ <name>Spillsbury</name>
247
+ <mbid>9daa003e-6390-4d2b-9cde-899589826cf3</mbid>
248
+ <url>http://www.last.fm/music/Spillsbury</url>
249
+ </artist>
250
+ <image size="small">http://images.amazon.com/images/P/B000ANXLH6.01._SCMZZZZZZZ_.jpg</image>
251
+ <image size="medium">http://images.amazon.com/images/P/B000ANXLH6.01._SCMZZZZZZZ_.jpg</image>
252
+ <image size="large">http://images.amazon.com/images/P/B000ANXLH6.01._SCMZZZZZZZ_.jpg</image>
253
+ </track>
254
+ <track>
255
+ <name>Intifada</name>
256
+ <playcount>1</playcount>
257
+ <tagcount></tagcount>
258
+ <mbid></mbid>
259
+ <url>http://www.last.fm/music/Ska-P/_/Intifada</url>
260
+ <streamable fulltrack="0">1</streamable>
261
+ <artist>
262
+ <name>Ska-P</name>
263
+ <mbid>2de794c8-8826-48d0-90e0-6900183ba9e0</mbid>
264
+ <url>http://www.last.fm/music/Ska-P</url>
265
+ </artist>
266
+ <image size="small">http://userserve-ak.last.fm/serve/34s/16461953.jpg</image>
267
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/16461953.jpg</image>
268
+ <image size="large">http://userserve-ak.last.fm/serve/126/16461953.jpg</image>
269
+ </track>
270
+ <track>
271
+ <name>Simple Pages</name>
272
+ <playcount>1</playcount>
273
+ <tagcount></tagcount>
274
+ <mbid></mbid>
275
+ <url>http://www.last.fm/music/Weezer/_/Simple+Pages</url>
276
+ <streamable fulltrack="1">1</streamable>
277
+ <artist>
278
+ <name>Weezer</name>
279
+ <mbid>6fe07aa5-fec0-4eca-a456-f29bff451b04</mbid>
280
+ <url>http://www.last.fm/music/Weezer</url>
281
+ </artist>
282
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8593525.jpg</image>
283
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8593525.jpg</image>
284
+ <image size="large">http://userserve-ak.last.fm/serve/126/8593525.jpg</image>
285
+ </track>
286
+ <track>
287
+ <name>Heat Dies Down</name>
288
+ <playcount>1</playcount>
289
+ <tagcount></tagcount>
290
+ <mbid></mbid>
291
+ <url>http://www.last.fm/music/Kaiser+Chiefs/_/Heat+Dies+Down</url>
292
+ <streamable fulltrack="1">1</streamable>
293
+ <artist>
294
+ <name>Kaiser Chiefs</name>
295
+ <mbid>90218af4-4d58-4821-8d41-2ee295ebbe21</mbid>
296
+ <url>http://www.last.fm/music/Kaiser+Chiefs</url>
297
+ </artist>
298
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9218885.gif</image>
299
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9218885.gif</image>
300
+ <image size="large">http://userserve-ak.last.fm/serve/126/9218885.gif</image>
301
+ </track>
302
+ <track>
303
+ <name>Glorious Day</name>
304
+ <playcount>1</playcount>
305
+ <tagcount></tagcount>
306
+ <mbid></mbid>
307
+ <url>http://www.last.fm/music/Weezer/_/Glorious+Day</url>
308
+ <streamable fulltrack="1">1</streamable>
309
+ <artist>
310
+ <name>Weezer</name>
311
+ <mbid>6fe07aa5-fec0-4eca-a456-f29bff451b04</mbid>
312
+ <url>http://www.last.fm/music/Weezer</url>
313
+ </artist>
314
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8593525.jpg</image>
315
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8593525.jpg</image>
316
+ <image size="large">http://userserve-ak.last.fm/serve/126/8593525.jpg</image>
317
+ </track>
318
+ <track>
319
+ <name>I'm Your Pusher</name>
320
+ <playcount>1</playcount>
321
+ <tagcount></tagcount>
322
+ <mbid></mbid>
323
+ <url>http://www.last.fm/music/Scooter/_/I%27m+Your+Pusher</url>
324
+ <streamable fulltrack="0">1</streamable>
325
+ <artist>
326
+ <name>Scooter</name>
327
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
328
+ <url>http://www.last.fm/music/Scooter</url>
329
+ </artist>
330
+ <image size="small">http://images.amazon.com/images/P/B00006SFDT.01.MZZZZZZZ.jpg</image>
331
+ <image size="medium">http://images.amazon.com/images/P/B00006SFDT.01.MZZZZZZZ.jpg</image>
332
+ <image size="large">http://images.amazon.com/images/P/B00006SFDT.01.MZZZZZZZ.jpg</image>
333
+ </track>
334
+ <track>
335
+ <name>Club Foot</name>
336
+ <playcount>1</playcount>
337
+ <tagcount></tagcount>
338
+ <mbid></mbid>
339
+ <url>http://www.last.fm/music/Kasabian/_/Club+Foot</url>
340
+ <streamable fulltrack="0">1</streamable>
341
+ <artist>
342
+ <name>Kasabian</name>
343
+ <mbid>69b39eab-6577-46a4-a9f5-817839092033</mbid>
344
+ <url>http://www.last.fm/music/Kasabian</url>
345
+ </artist>
346
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19746191.jpg</image>
347
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19746191.jpg</image>
348
+ <image size="large">http://userserve-ak.last.fm/serve/126/19746191.jpg</image>
349
+ </track>
350
+ <track>
351
+ <name>Out of Time</name>
352
+ <playcount>1</playcount>
353
+ <tagcount></tagcount>
354
+ <mbid></mbid>
355
+ <url>http://www.last.fm/music/Manic+Street+Preachers/_/Out+of+Time</url>
356
+ <streamable fulltrack="0">1</streamable>
357
+ <artist>
358
+ <name>Manic Street Preachers</name>
359
+ <mbid>32efea44-6cb5-4b4f-bdaa-c8b8f6cef981</mbid>
360
+ <url>http://www.last.fm/music/Manic+Street+Preachers</url>
361
+ </artist>
362
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4325935.jpg</image>
363
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4325935.jpg</image>
364
+ <image size="large">http://userserve-ak.last.fm/serve/126/4325935.jpg</image>
365
+ </track>
366
+ <track>
367
+ <name>St Pauli</name>
368
+ <playcount>1</playcount>
369
+ <tagcount></tagcount>
370
+ <mbid></mbid>
371
+ <url>http://www.last.fm/music/Art+Brut/_/St+Pauli</url>
372
+ <streamable fulltrack="0">0</streamable>
373
+ <artist>
374
+ <name>Art Brut</name>
375
+ <mbid>1c89bbcc-a253-452a-9181-546eb536e06f</mbid>
376
+ <url>http://www.last.fm/music/Art+Brut</url>
377
+ </artist>
378
+ </track>
379
+ <track>
380
+ <name>Come On Eileen (feat. Jools Holland and his Rhythm &amp; Blues Orchestra)</name>
381
+ <playcount>1</playcount>
382
+ <tagcount></tagcount>
383
+ <mbid></mbid>
384
+ <url>http://www.last.fm/music/Badly+Drawn+Boy/_/Come%2BOn%2BEileen%2B%2528feat.%2BJools%2BHolland%2Band%2Bhis%2BRhythm%2B%2526%2BBlues%2BOrchestra%2529</url>
385
+ <streamable fulltrack="0">0</streamable>
386
+ <artist>
387
+ <name>Badly Drawn Boy</name>
388
+ <mbid>0881daf1-20df-4a3e-a84f-6476a84bb172</mbid>
389
+ <url>http://www.last.fm/music/Badly+Drawn+Boy</url>
390
+ </artist>
391
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4599869.jpg</image>
392
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4599869.jpg</image>
393
+ <image size="large">http://userserve-ak.last.fm/serve/126/4599869.jpg</image>
394
+ </track>
395
+ <track>
396
+ <name>I Want Something Else</name>
397
+ <playcount>1</playcount>
398
+ <tagcount></tagcount>
399
+ <mbid></mbid>
400
+ <url>http://www.last.fm/music/Matchbox+Twenty/_/I+Want+Something+Else</url>
401
+ <streamable fulltrack="0">0</streamable>
402
+ <artist>
403
+ <name>Matchbox Twenty</name>
404
+ <mbid>75af9d25-cf32-49c0-9192-60bd8e9784e6</mbid>
405
+ <url>http://www.last.fm/music/Matchbox+Twenty</url>
406
+ </artist>
407
+ </track>
408
+ <track>
409
+ <name>Misty Mountains</name>
410
+ <playcount>1</playcount>
411
+ <tagcount></tagcount>
412
+ <mbid></mbid>
413
+ <url>http://www.last.fm/music/Mando+Diao/_/Misty+Mountains</url>
414
+ <streamable fulltrack="0">1</streamable>
415
+ <artist>
416
+ <name>Mando Diao</name>
417
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
418
+ <url>http://www.last.fm/music/Mando+Diao</url>
419
+ </artist>
420
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15249355.jpg</image>
421
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15249355.jpg</image>
422
+ <image size="large">http://userserve-ak.last.fm/serve/126/15249355.jpg</image>
423
+ </track>
424
+ <track>
425
+ <name>Fire Coming Out of the Monkey's Head</name>
426
+ <playcount>1</playcount>
427
+ <tagcount></tagcount>
428
+ <mbid></mbid>
429
+ <url>http://www.last.fm/music/Gorillaz/_/Fire+Coming+Out+of+the+Monkey%27s+Head</url>
430
+ <streamable fulltrack="0">1</streamable>
431
+ <artist>
432
+ <name>Gorillaz</name>
433
+ <mbid>e21857d5-3256-4547-afb3-4b6ded592596</mbid>
434
+ <url>http://www.last.fm/music/Gorillaz</url>
435
+ </artist>
436
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11453045.jpg</image>
437
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11453045.jpg</image>
438
+ <image size="large">http://userserve-ak.last.fm/serve/126/11453045.jpg</image>
439
+ </track>
440
+ <track>
441
+ <name>Thriller</name>
442
+ <playcount>1</playcount>
443
+ <tagcount></tagcount>
444
+ <mbid></mbid>
445
+ <url>http://www.last.fm/music/Fall+Out+Boy/_/Thriller</url>
446
+ <streamable fulltrack="1">1</streamable>
447
+ <artist>
448
+ <name>Fall Out Boy</name>
449
+ <mbid>516cef4d-0718-4007-9939-f9b38af3f784</mbid>
450
+ <url>http://www.last.fm/music/Fall+Out+Boy</url>
451
+ </artist>
452
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9104309.jpg</image>
453
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9104309.jpg</image>
454
+ <image size="large">http://userserve-ak.last.fm/serve/126/9104309.jpg</image>
455
+ </track>
456
+ <track>
457
+ <name>'94 (Novanta Quattro)</name>
458
+ <playcount>1</playcount>
459
+ <tagcount></tagcount>
460
+ <mbid></mbid>
461
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/%2794+%28Novanta+Quattro%29</url>
462
+ <streamable fulltrack="0">1</streamable>
463
+ <artist>
464
+ <name>Sportfreunde Stiller</name>
465
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
466
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
467
+ </artist>
468
+ <image size="small">http://images.amazon.com/images/P/B00004SYZC.01.THUMBZZZ.jpg</image>
469
+ <image size="medium">http://images.amazon.com/images/P/B00004SYZC.01.MZZZZZZZ.jpg</image>
470
+ <image size="large">http://images.amazon.com/images/P/B00004SYZC.01.LZZZZZZZ.jpg</image>
471
+ </track>
472
+ <track>
473
+ <name>Come Alive</name>
474
+ <playcount>1</playcount>
475
+ <tagcount></tagcount>
476
+ <mbid></mbid>
477
+ <url>http://www.last.fm/music/Foo+Fighters/_/Come+Alive</url>
478
+ <streamable fulltrack="0">1</streamable>
479
+ <artist>
480
+ <name>Foo Fighters</name>
481
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
482
+ <url>http://www.last.fm/music/Foo+Fighters</url>
483
+ </artist>
484
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23313761.jpg</image>
485
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23313761.jpg</image>
486
+ <image size="large">http://userserve-ak.last.fm/serve/126/23313761.jpg</image>
487
+ </track>
488
+ <track>
489
+ <name>Underground Network</name>
490
+ <playcount>1</playcount>
491
+ <tagcount></tagcount>
492
+ <mbid></mbid>
493
+ <url>http://www.last.fm/music/Anti-Flag/_/Underground+Network</url>
494
+ <streamable fulltrack="0">1</streamable>
495
+ <artist>
496
+ <name>Anti-Flag</name>
497
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
498
+ <url>http://www.last.fm/music/Anti-Flag</url>
499
+ </artist>
500
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19837175.jpg</image>
501
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19837175.jpg</image>
502
+ <image size="large">http://userserve-ak.last.fm/serve/126/19837175.jpg</image>
503
+ </track>
504
+ <track>
505
+ <name>Zieh dir was an</name>
506
+ <playcount>1</playcount>
507
+ <tagcount></tagcount>
508
+ <mbid></mbid>
509
+ <url>http://www.last.fm/music/Wir+sind+Helden/_/Zieh+dir+was+an</url>
510
+ <streamable fulltrack="0">1</streamable>
511
+ <artist>
512
+ <name>Wir sind Helden</name>
513
+ <mbid>908fedf4-548a-430f-b806-38fca9507dc4</mbid>
514
+ <url>http://www.last.fm/music/Wir+sind+Helden</url>
515
+ </artist>
516
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14689581.jpg</image>
517
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14689581.jpg</image>
518
+ <image size="large">http://userserve-ak.last.fm/serve/126/14689581.jpg</image>
519
+ </track>
520
+ <track>
521
+ <name>Four Elements</name>
522
+ <playcount>1</playcount>
523
+ <tagcount></tagcount>
524
+ <mbid></mbid>
525
+ <url>http://www.last.fm/music/Soulfly/_/Four+Elements</url>
526
+ <streamable fulltrack="0">0</streamable>
527
+ <artist>
528
+ <name>Soulfly</name>
529
+ <mbid>832a43c7-aa7d-439b-a6b4-4f1afa671c24</mbid>
530
+ <url>http://www.last.fm/music/Soulfly</url>
531
+ </artist>
532
+ </track>
533
+ <track>
534
+ <name>The Escapist</name>
535
+ <playcount>1</playcount>
536
+ <tagcount></tagcount>
537
+ <mbid></mbid>
538
+ <url>http://www.last.fm/music/The+Streets/_/The+Escapist</url>
539
+ <streamable fulltrack="0">0</streamable>
540
+ <artist>
541
+ <name>The Streets</name>
542
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
543
+ <url>http://www.last.fm/music/The+Streets</url>
544
+ </artist>
545
+ </track>
546
+ <track>
547
+ <name>Don't Go Away</name>
548
+ <playcount>1</playcount>
549
+ <tagcount></tagcount>
550
+ <mbid></mbid>
551
+ <url>http://www.last.fm/music/Oasis/_/Don%27t+Go+Away</url>
552
+ <streamable fulltrack="0">1</streamable>
553
+ <artist>
554
+ <name>Oasis</name>
555
+ <mbid>39ab1aed-75e0-4140-bd47-540276886b60</mbid>
556
+ <url>http://www.last.fm/music/Oasis</url>
557
+ </artist>
558
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23745807.jpg</image>
559
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23745807.jpg</image>
560
+ <image size="large">http://userserve-ak.last.fm/serve/126/23745807.jpg</image>
561
+ </track>
562
+ <track>
563
+ <name>Fingers</name>
564
+ <playcount>1</playcount>
565
+ <tagcount></tagcount>
566
+ <mbid></mbid>
567
+ <url>http://www.last.fm/music/P%21nk/_/Fingers</url>
568
+ <streamable fulltrack="0">0</streamable>
569
+ <artist>
570
+ <name>P!nk</name>
571
+ <mbid></mbid>
572
+ <url>http://www.last.fm/music/P%21nk</url>
573
+ </artist>
574
+ </track>
575
+ <track>
576
+ <name>[untitled]</name>
577
+ <playcount>1</playcount>
578
+ <tagcount></tagcount>
579
+ <mbid></mbid>
580
+ <url>http://www.last.fm/music/Oasis/_/%5Buntitled%5D</url>
581
+ <streamable fulltrack="0">0</streamable>
582
+ <artist>
583
+ <name>Oasis</name>
584
+ <mbid>39ab1aed-75e0-4140-bd47-540276886b60</mbid>
585
+ <url>http://www.last.fm/music/Oasis</url>
586
+ </artist>
587
+ </track>
588
+ <track>
589
+ <name>Wir müssen gewinnen</name>
590
+ <playcount>1</playcount>
591
+ <tagcount></tagcount>
592
+ <mbid></mbid>
593
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Wir+m%C3%BCssen+gewinnen</url>
594
+ <streamable fulltrack="0">1</streamable>
595
+ <artist>
596
+ <name>Sportfreunde Stiller</name>
597
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
598
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
599
+ </artist>
600
+ <image size="small">http://images.amazon.com/images/P/B00004SYZC.01.THUMBZZZ.jpg</image>
601
+ <image size="medium">http://images.amazon.com/images/P/B00004SYZC.01.MZZZZZZZ.jpg</image>
602
+ <image size="large">http://images.amazon.com/images/P/B00004SYZC.01.LZZZZZZZ.jpg</image>
603
+ </track>
604
+ <track>
605
+ <name>Long Road to Ruin</name>
606
+ <playcount>1</playcount>
607
+ <tagcount></tagcount>
608
+ <mbid></mbid>
609
+ <url>http://www.last.fm/music/Foo+Fighters/_/Long+Road+to+Ruin</url>
610
+ <streamable fulltrack="0">1</streamable>
611
+ <artist>
612
+ <name>Foo Fighters</name>
613
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
614
+ <url>http://www.last.fm/music/Foo+Fighters</url>
615
+ </artist>
616
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23313761.jpg</image>
617
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23313761.jpg</image>
618
+ <image size="large">http://userserve-ak.last.fm/serve/126/23313761.jpg</image>
619
+ </track>
620
+ <track>
621
+ <name>Cast No Shadow</name>
622
+ <playcount>1</playcount>
623
+ <tagcount></tagcount>
624
+ <mbid></mbid>
625
+ <url>http://www.last.fm/music/Oasis/_/Cast+No+Shadow</url>
626
+ <streamable fulltrack="0">1</streamable>
627
+ <artist>
628
+ <name>Oasis</name>
629
+ <mbid>39ab1aed-75e0-4140-bd47-540276886b60</mbid>
630
+ <url>http://www.last.fm/music/Oasis</url>
631
+ </artist>
632
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23722513.jpg</image>
633
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23722513.jpg</image>
634
+ <image size="large">http://userserve-ak.last.fm/serve/126/23722513.jpg</image>
635
+ </track>
636
+ <track>
637
+ <name>Slow Country</name>
638
+ <playcount>1</playcount>
639
+ <tagcount></tagcount>
640
+ <mbid></mbid>
641
+ <url>http://www.last.fm/music/Gorillaz/_/Slow+Country</url>
642
+ <streamable fulltrack="0">1</streamable>
643
+ <artist>
644
+ <name>Gorillaz</name>
645
+ <mbid>e21857d5-3256-4547-afb3-4b6ded592596</mbid>
646
+ <url>http://www.last.fm/music/Gorillaz</url>
647
+ </artist>
648
+ <image size="small">http://userserve-ak.last.fm/serve/34s/24507751.png</image>
649
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/24507751.png</image>
650
+ <image size="large">http://userserve-ak.last.fm/serve/126/24507751.png</image>
651
+ </track>
652
+ <track>
653
+ <name>God Knows</name>
654
+ <playcount>1</playcount>
655
+ <tagcount></tagcount>
656
+ <mbid></mbid>
657
+ <url>http://www.last.fm/music/Mando+Diao/_/God+Knows</url>
658
+ <streamable fulltrack="0">1</streamable>
659
+ <artist>
660
+ <name>Mando Diao</name>
661
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
662
+ <url>http://www.last.fm/music/Mando+Diao</url>
663
+ </artist>
664
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14519449.jpg</image>
665
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14519449.jpg</image>
666
+ <image size="large">http://userserve-ak.last.fm/serve/126/14519449.jpg</image>
667
+ </track>
668
+ <track>
669
+ <name>Wo willst du hin?</name>
670
+ <playcount>1</playcount>
671
+ <tagcount></tagcount>
672
+ <mbid></mbid>
673
+ <url>http://www.last.fm/music/Xavier+Naidoo/_/Wo+willst+du+hin%3F</url>
674
+ <streamable fulltrack="0">0</streamable>
675
+ <artist>
676
+ <name>Xavier Naidoo</name>
677
+ <mbid>83a45847-0c18-4794-964a-500e49df7aac</mbid>
678
+ <url>http://www.last.fm/music/Xavier+Naidoo</url>
679
+ </artist>
680
+ <image size="small">http://images.amazon.com/images/P/B00009LWLT.01.MZZZZZZZ.jpg</image>
681
+ <image size="medium">http://images.amazon.com/images/P/B00009LWLT.01.MZZZZZZZ.jpg</image>
682
+ <image size="large">http://images.amazon.com/images/P/B00009LWLT.01.MZZZZZZZ.jpg</image>
683
+ </track>
684
+ <track>
685
+ <name>Volunteer (Bonus Demo Track)</name>
686
+ <playcount>1</playcount>
687
+ <tagcount></tagcount>
688
+ <mbid></mbid>
689
+ <url>http://www.last.fm/music/The+Libertines/_/Volunteer+%28Bonus+Demo+Track%29</url>
690
+ <streamable fulltrack="1">1</streamable>
691
+ <artist>
692
+ <name>The Libertines</name>
693
+ <mbid>82b304c0-7da4-45d3-896a-0767c7ae1141</mbid>
694
+ <url>http://www.last.fm/music/The+Libertines</url>
695
+ </artist>
696
+ <image size="small">http://userserve-ak.last.fm/serve/34s/16034017.jpg</image>
697
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/16034017.jpg</image>
698
+ <image size="large">http://userserve-ak.last.fm/serve/126/16034017.jpg</image>
699
+ </track>
700
+ <track>
701
+ <name>Spiders</name>
702
+ <playcount>1</playcount>
703
+ <tagcount></tagcount>
704
+ <mbid></mbid>
705
+ <url>http://www.last.fm/music/Moby/_/Spiders</url>
706
+ <streamable fulltrack="0">1</streamable>
707
+ <artist>
708
+ <name>Moby</name>
709
+ <mbid>8970d868-0723-483b-a75b-51088913d3d4</mbid>
710
+ <url>http://www.last.fm/music/Moby</url>
711
+ </artist>
712
+ <image size="small">http://images.amazon.com/images/P/B0007CZPIS.01.MZZZZZZZ.jpg</image>
713
+ <image size="medium">http://images.amazon.com/images/P/B0007CZPIS.01.MZZZZZZZ.jpg</image>
714
+ <image size="large">http://images.amazon.com/images/P/B0007CZPIS.01.MZZZZZZZ.jpg</image>
715
+ </track>
716
+ <track>
717
+ <name>Call Me Mañana</name>
718
+ <playcount>1</playcount>
719
+ <tagcount></tagcount>
720
+ <mbid></mbid>
721
+ <url>http://www.last.fm/music/Scooter/_/Call+Me+Ma%C3%B1ana</url>
722
+ <streamable fulltrack="0">1</streamable>
723
+ <artist>
724
+ <name>Scooter</name>
725
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
726
+ <url>http://www.last.fm/music/Scooter</url>
727
+ </artist>
728
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8698075.jpg</image>
729
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8698075.jpg</image>
730
+ <image size="large">http://userserve-ak.last.fm/serve/126/8698075.jpg</image>
731
+ </track>
732
+ <track>
733
+ <name>Summer's End</name>
734
+ <playcount>1</playcount>
735
+ <tagcount></tagcount>
736
+ <mbid></mbid>
737
+ <url>http://www.last.fm/music/Foo+Fighters/_/Summer%27s+End</url>
738
+ <streamable fulltrack="0">1</streamable>
739
+ <artist>
740
+ <name>Foo Fighters</name>
741
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
742
+ <url>http://www.last.fm/music/Foo+Fighters</url>
743
+ </artist>
744
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23313761.jpg</image>
745
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23313761.jpg</image>
746
+ <image size="large">http://userserve-ak.last.fm/serve/126/23313761.jpg</image>
747
+ </track>
748
+ <track>
749
+ <name>Ich betäube mich (feat. Sarah Walker)</name>
750
+ <playcount>1</playcount>
751
+ <tagcount></tagcount>
752
+ <mbid></mbid>
753
+ <url>http://www.last.fm/music/Deichkind/_/Ich+bet%C3%A4ube+mich+%28feat.+Sarah+Walker%29</url>
754
+ <streamable fulltrack="0">0</streamable>
755
+ <artist>
756
+ <name>Deichkind</name>
757
+ <mbid>5de80871-f721-4c7c-b0c5-4ad0d350c232</mbid>
758
+ <url>http://www.last.fm/music/Deichkind</url>
759
+ </artist>
760
+ </track>
761
+ <track>
762
+ <name>Nordisch by Nature</name>
763
+ <playcount>1</playcount>
764
+ <tagcount></tagcount>
765
+ <mbid></mbid>
766
+ <url>http://www.last.fm/music/Fettes+Brot/_/Nordisch+by+Nature</url>
767
+ <streamable fulltrack="0">1</streamable>
768
+ <artist>
769
+ <name>Fettes Brot</name>
770
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
771
+ <url>http://www.last.fm/music/Fettes+Brot</url>
772
+ </artist>
773
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14335359.jpg</image>
774
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14335359.jpg</image>
775
+ <image size="large">http://userserve-ak.last.fm/serve/126/14335359.jpg</image>
776
+ </track>
777
+ </tracks></lfm>