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="21" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>Get Thy Bearings 2004</name>
6
+ <playcount>2</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Zero+7/_/Get+Thy+Bearings+2004</url>
10
+ <streamable fulltrack="0">0</streamable>
11
+ <artist>
12
+ <name>Zero 7</name>
13
+ <mbid>c23b637b-97c6-41eb-8ef6-6c724efc80a8</mbid>
14
+ <url>http://www.last.fm/music/Zero+7</url>
15
+ </artist>
16
+ </track>
17
+ <track>
18
+ <name>Whatsername</name>
19
+ <playcount>2</playcount>
20
+ <tagcount></tagcount>
21
+ <mbid></mbid>
22
+ <url>http://www.last.fm/music/Green+Day/_/Whatsername</url>
23
+ <streamable fulltrack="0">1</streamable>
24
+ <artist>
25
+ <name>Green Day</name>
26
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
27
+ <url>http://www.last.fm/music/Green+Day</url>
28
+ </artist>
29
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8638429.jpg</image>
30
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8638429.jpg</image>
31
+ <image size="large">http://userserve-ak.last.fm/serve/126/8638429.jpg</image>
32
+ </track>
33
+ <track>
34
+ <name>Mein Parfum</name>
35
+ <playcount>2</playcount>
36
+ <tagcount></tagcount>
37
+ <mbid></mbid>
38
+ <url>http://www.last.fm/music/Jennifer+Rostock/_/Mein+Parfum</url>
39
+ <streamable fulltrack="0">1</streamable>
40
+ <artist>
41
+ <name>Jennifer Rostock</name>
42
+ <mbid></mbid>
43
+ <url>http://www.last.fm/music/Jennifer+Rostock</url>
44
+ </artist>
45
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4393040.jpg</image>
46
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4393040.jpg</image>
47
+ <image size="large">http://userserve-ak.last.fm/serve/126/4393040.jpg</image>
48
+ </track>
49
+ <track>
50
+ <name>kopf oder zahl (single version)</name>
51
+ <playcount>2</playcount>
52
+ <tagcount></tagcount>
53
+ <mbid></mbid>
54
+ <url>http://www.last.fm/music/Jennifer+Rostock/_/kopf+oder+zahl+%28single+version%29</url>
55
+ <streamable fulltrack="0">0</streamable>
56
+ <artist>
57
+ <name>Jennifer Rostock</name>
58
+ <mbid></mbid>
59
+ <url>http://www.last.fm/music/Jennifer+Rostock</url>
60
+ </artist>
61
+ </track>
62
+ <track>
63
+ <name>Hey Huh (in Scheiben)</name>
64
+ <playcount>2</playcount>
65
+ <tagcount></tagcount>
66
+ <mbid></mbid>
67
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Hey+Huh+%28in+Scheiben%29</url>
68
+ <streamable fulltrack="0">1</streamable>
69
+ <artist>
70
+ <name>Die Ärzte</name>
71
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
72
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
73
+ </artist>
74
+ <image size="small">http://images-eu.amazon.com/images/P/B00000AR9A.03.MZZZZZZZ.jpg</image>
75
+ <image size="medium">http://images-eu.amazon.com/images/P/B00000AR9A.03.MZZZZZZZ.jpg</image>
76
+ <image size="large">http://images-eu.amazon.com/images/P/B00000AR9A.03.MZZZZZZZ.jpg</image>
77
+ </track>
78
+ <track>
79
+ <name>Omaboy</name>
80
+ <playcount>2</playcount>
81
+ <tagcount></tagcount>
82
+ <mbid></mbid>
83
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Omaboy</url>
84
+ <streamable fulltrack="0">1</streamable>
85
+ <artist>
86
+ <name>Die Ärzte</name>
87
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
88
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
89
+ </artist>
90
+ <image size="small">http://images-eu.amazon.com/images/P/B00000AR9A.03.MZZZZZZZ.jpg</image>
91
+ <image size="medium">http://images-eu.amazon.com/images/P/B00000AR9A.03.MZZZZZZZ.jpg</image>
92
+ <image size="large">http://images-eu.amazon.com/images/P/B00000AR9A.03.MZZZZZZZ.jpg</image>
93
+ </track>
94
+ <track>
95
+ <name>Papa Noah</name>
96
+ <playcount>2</playcount>
97
+ <tagcount></tagcount>
98
+ <mbid></mbid>
99
+ <url>http://www.last.fm/music/Seeed/_/Papa+Noah</url>
100
+ <streamable fulltrack="0">1</streamable>
101
+ <artist>
102
+ <name>Seeed</name>
103
+ <mbid>49c43c49-328d-4b14-8a1d-be99cafaec14</mbid>
104
+ <url>http://www.last.fm/music/Seeed</url>
105
+ </artist>
106
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8671531.jpg</image>
107
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8671531.jpg</image>
108
+ <image size="large">http://userserve-ak.last.fm/serve/126/8671531.jpg</image>
109
+ </track>
110
+ <track>
111
+ <name>The End of the Line</name>
112
+ <playcount>2</playcount>
113
+ <tagcount></tagcount>
114
+ <mbid></mbid>
115
+ <url>http://www.last.fm/music/The+Offspring/_/The+End+of+the+Line</url>
116
+ <streamable fulltrack="0">1</streamable>
117
+ <artist>
118
+ <name>The Offspring</name>
119
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
120
+ <url>http://www.last.fm/music/The+Offspring</url>
121
+ </artist>
122
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23714755.jpg</image>
123
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23714755.jpg</image>
124
+ <image size="large">http://userserve-ak.last.fm/serve/126/23714755.jpg</image>
125
+ </track>
126
+ <track>
127
+ <name>The Brightest Bulb Has Burned Out</name>
128
+ <playcount>2</playcount>
129
+ <tagcount></tagcount>
130
+ <mbid></mbid>
131
+ <url>http://www.last.fm/music/Less+Than+Jake/_/The+Brightest+Bulb+Has+Burned+Out</url>
132
+ <streamable fulltrack="0">0</streamable>
133
+ <artist>
134
+ <name>Less Than Jake</name>
135
+ <mbid>e54e065f-0ce6-4779-9a9a-afd7b997471f</mbid>
136
+ <url>http://www.last.fm/music/Less+Than+Jake</url>
137
+ </artist>
138
+ <image size="small">http://ec1.images-amazon.com/images/P/B00009EPYB.01._SCMZZZZZZZ_.jpg</image>
139
+ <image size="medium">http://ec1.images-amazon.com/images/P/B00009EPYB.01._SCMZZZZZZZ_.jpg</image>
140
+ <image size="large">http://ec1.images-amazon.com/images/P/B00009EPYB.01._SCMZZZZZZZ_.jpg</image>
141
+ </track>
142
+ <track>
143
+ <name>Tuesday Morning</name>
144
+ <playcount>2</playcount>
145
+ <tagcount></tagcount>
146
+ <mbid></mbid>
147
+ <url>http://www.last.fm/music/The+Pogues/_/Tuesday+Morning</url>
148
+ <streamable fulltrack="0">1</streamable>
149
+ <artist>
150
+ <name>The Pogues</name>
151
+ <mbid>d41a6875-b626-4c0f-89a1-aecb643d29ff</mbid>
152
+ <url>http://www.last.fm/music/The+Pogues</url>
153
+ </artist>
154
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8693795.jpg</image>
155
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8693795.jpg</image>
156
+ <image size="large">http://userserve-ak.last.fm/serve/126/8693795.jpg</image>
157
+ </track>
158
+ <track>
159
+ <name>Außer dir</name>
160
+ <playcount>2</playcount>
161
+ <tagcount></tagcount>
162
+ <mbid></mbid>
163
+ <url>http://www.last.fm/music/Wir+sind+Helden/_/Au%C3%9Fer+dir</url>
164
+ <streamable fulltrack="0">1</streamable>
165
+ <artist>
166
+ <name>Wir sind Helden</name>
167
+ <mbid>908fedf4-548a-430f-b806-38fca9507dc4</mbid>
168
+ <url>http://www.last.fm/music/Wir+sind+Helden</url>
169
+ </artist>
170
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15183527.jpg</image>
171
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15183527.jpg</image>
172
+ <image size="large">http://userserve-ak.last.fm/serve/126/15183527.jpg</image>
173
+ </track>
174
+ <track>
175
+ <name>Anders als auf Ansichtskarten</name>
176
+ <playcount>2</playcount>
177
+ <tagcount></tagcount>
178
+ <mbid></mbid>
179
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Anders+als+auf+Ansichtskarten</url>
180
+ <streamable fulltrack="1">1</streamable>
181
+ <artist>
182
+ <name>Sportfreunde Stiller</name>
183
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
184
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
185
+ </artist>
186
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10054959.jpg</image>
187
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10054959.jpg</image>
188
+ <image size="large">http://userserve-ak.last.fm/serve/126/10054959.jpg</image>
189
+ </track>
190
+ <track>
191
+ <name>A Start</name>
192
+ <playcount>2</playcount>
193
+ <tagcount></tagcount>
194
+ <mbid></mbid>
195
+ <url>http://www.last.fm/music/Anti-Flag/_/A+Start</url>
196
+ <streamable fulltrack="0">1</streamable>
197
+ <artist>
198
+ <name>Anti-Flag</name>
199
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
200
+ <url>http://www.last.fm/music/Anti-Flag</url>
201
+ </artist>
202
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19837175.jpg</image>
203
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19837175.jpg</image>
204
+ <image size="large">http://userserve-ak.last.fm/serve/126/19837175.jpg</image>
205
+ </track>
206
+ <track>
207
+ <name>Frequent Traveller</name>
208
+ <playcount>2</playcount>
209
+ <tagcount></tagcount>
210
+ <mbid></mbid>
211
+ <url>http://www.last.fm/music/Scooter/_/Frequent+Traveller</url>
212
+ <streamable fulltrack="0">1</streamable>
213
+ <artist>
214
+ <name>Scooter</name>
215
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
216
+ <url>http://www.last.fm/music/Scooter</url>
217
+ </artist>
218
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8698075.jpg</image>
219
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8698075.jpg</image>
220
+ <image size="large">http://userserve-ak.last.fm/serve/126/8698075.jpg</image>
221
+ </track>
222
+ <track>
223
+ <name>Mountain</name>
224
+ <playcount>2</playcount>
225
+ <tagcount></tagcount>
226
+ <mbid></mbid>
227
+ <url>http://www.last.fm/music/Good+Charlotte/_/Mountain</url>
228
+ <streamable fulltrack="0">1</streamable>
229
+ <artist>
230
+ <name>Good Charlotte</name>
231
+ <mbid>b267ca80-034e-4dc1-9ed4-ec45f1fed41d</mbid>
232
+ <url>http://www.last.fm/music/Good+Charlotte</url>
233
+ </artist>
234
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19445721.jpg</image>
235
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19445721.jpg</image>
236
+ <image size="large">http://userserve-ak.last.fm/serve/126/19445721.jpg</image>
237
+ </track>
238
+ <track>
239
+ <name>No News Is Good News</name>
240
+ <playcount>2</playcount>
241
+ <tagcount></tagcount>
242
+ <mbid></mbid>
243
+ <url>http://www.last.fm/music/New+Found+Glory/_/No+News+Is+Good+News</url>
244
+ <streamable fulltrack="0">1</streamable>
245
+ <artist>
246
+ <name>New Found Glory</name>
247
+ <mbid>6acb932e-840d-47ac-8e0d-725ad8a6e52c</mbid>
248
+ <url>http://www.last.fm/music/New+Found+Glory</url>
249
+ </artist>
250
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8676165.jpg</image>
251
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8676165.jpg</image>
252
+ <image size="large">http://userserve-ak.last.fm/serve/126/8676165.jpg</image>
253
+ </track>
254
+ <track>
255
+ <name>Paralyzed</name>
256
+ <playcount>2</playcount>
257
+ <tagcount></tagcount>
258
+ <mbid></mbid>
259
+ <url>http://www.last.fm/music/Mando+Diao/_/Paralyzed</url>
260
+ <streamable fulltrack="0">1</streamable>
261
+ <artist>
262
+ <name>Mando Diao</name>
263
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
264
+ <url>http://www.last.fm/music/Mando+Diao</url>
265
+ </artist>
266
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11406701.jpg</image>
267
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11406701.jpg</image>
268
+ <image size="large">http://userserve-ak.last.fm/serve/126/11406701.jpg</image>
269
+ </track>
270
+ <track>
271
+ <name>The Forbidden Pool</name>
272
+ <playcount>2</playcount>
273
+ <tagcount></tagcount>
274
+ <mbid></mbid>
275
+ <url>http://www.last.fm/music/Howard+Shore/_/The+Forbidden+Pool</url>
276
+ <streamable fulltrack="0">1</streamable>
277
+ <artist>
278
+ <name>Howard Shore</name>
279
+ <mbid>9b58672a-e68e-4972-956e-a8985a165a1f</mbid>
280
+ <url>http://www.last.fm/music/Howard+Shore</url>
281
+ </artist>
282
+ <image size="small">http://userserve-ak.last.fm/serve/34s/13142565.jpg</image>
283
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/13142565.jpg</image>
284
+ <image size="large">http://userserve-ak.last.fm/serve/126/13142565.jpg</image>
285
+ </track>
286
+ <track>
287
+ <name>Stars and Stripes</name>
288
+ <playcount>2</playcount>
289
+ <tagcount></tagcount>
290
+ <mbid></mbid>
291
+ <url>http://www.last.fm/music/Anti-Flag/_/Stars+and+Stripes</url>
292
+ <streamable fulltrack="0">1</streamable>
293
+ <artist>
294
+ <name>Anti-Flag</name>
295
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
296
+ <url>http://www.last.fm/music/Anti-Flag</url>
297
+ </artist>
298
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19837175.jpg</image>
299
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19837175.jpg</image>
300
+ <image size="large">http://userserve-ak.last.fm/serve/126/19837175.jpg</image>
301
+ </track>
302
+ <track>
303
+ <name>O Girlfriend</name>
304
+ <playcount>2</playcount>
305
+ <tagcount></tagcount>
306
+ <mbid></mbid>
307
+ <url>http://www.last.fm/music/Weezer/_/O+Girlfriend</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>Another Round</name>
320
+ <playcount>1</playcount>
321
+ <tagcount></tagcount>
322
+ <mbid></mbid>
323
+ <url>http://www.last.fm/music/Foo+Fighters/_/Another+Round</url>
324
+ <streamable fulltrack="0">1</streamable>
325
+ <artist>
326
+ <name>Foo Fighters</name>
327
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
328
+ <url>http://www.last.fm/music/Foo+Fighters</url>
329
+ </artist>
330
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23752293.jpg</image>
331
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23752293.jpg</image>
332
+ <image size="large">http://userserve-ak.last.fm/serve/126/23752293.jpg</image>
333
+ </track>
334
+ <track>
335
+ <name>TNT</name>
336
+ <playcount>1</playcount>
337
+ <tagcount></tagcount>
338
+ <mbid></mbid>
339
+ <url>http://www.last.fm/music/Six+Feet+Under/_/TNT</url>
340
+ <streamable fulltrack="1">1</streamable>
341
+ <artist>
342
+ <name>Six Feet Under</name>
343
+ <mbid>5a8688d2-696f-4060-9dd0-f772886ff95b</mbid>
344
+ <url>http://www.last.fm/music/Six+Feet+Under</url>
345
+ </artist>
346
+ <image size="small">http://images.amazon.com/images/P/B00004Z43H.01.MZZZZZZZ.jpg</image>
347
+ <image size="medium">http://images.amazon.com/images/P/B00004Z43H.01.MZZZZZZZ.jpg</image>
348
+ <image size="large">http://images.amazon.com/images/P/B00004Z43H.01.MZZZZZZZ.jpg</image>
349
+ </track>
350
+ <track>
351
+ <name>Paris Is Burning</name>
352
+ <playcount>1</playcount>
353
+ <tagcount></tagcount>
354
+ <mbid></mbid>
355
+ <url>http://www.last.fm/music/Ladyhawke/_/Paris+Is+Burning</url>
356
+ <streamable fulltrack="1">1</streamable>
357
+ <artist>
358
+ <name>Ladyhawke</name>
359
+ <mbid></mbid>
360
+ <url>http://www.last.fm/music/Ladyhawke</url>
361
+ </artist>
362
+ </track>
363
+ <track>
364
+ <name>Kasey Keller</name>
365
+ <playcount>1</playcount>
366
+ <tagcount></tagcount>
367
+ <mbid></mbid>
368
+ <url>http://www.last.fm/music/Barcelona/_/Kasey+Keller</url>
369
+ <streamable fulltrack="1">1</streamable>
370
+ <artist>
371
+ <name>Barcelona</name>
372
+ <mbid>5f31d68e-de72-4dd3-a767-e99cf27a1267</mbid>
373
+ <url>http://www.last.fm/music/Barcelona</url>
374
+ </artist>
375
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15964303.jpg</image>
376
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15964303.jpg</image>
377
+ <image size="large">http://userserve-ak.last.fm/serve/126/15964303.jpg</image>
378
+ </track>
379
+ <track>
380
+ <name>Blut geleckt</name>
381
+ <playcount>1</playcount>
382
+ <tagcount></tagcount>
383
+ <mbid></mbid>
384
+ <url>http://www.last.fm/music/Jennifer+Rostock/_/Blut+geleckt</url>
385
+ <streamable fulltrack="0">1</streamable>
386
+ <artist>
387
+ <name>Jennifer Rostock</name>
388
+ <mbid></mbid>
389
+ <url>http://www.last.fm/music/Jennifer+Rostock</url>
390
+ </artist>
391
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4393040.jpg</image>
392
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4393040.jpg</image>
393
+ <image size="large">http://userserve-ak.last.fm/serve/126/4393040.jpg</image>
394
+ </track>
395
+ <track>
396
+ <name>No Other Way</name>
397
+ <playcount>1</playcount>
398
+ <tagcount></tagcount>
399
+ <mbid></mbid>
400
+ <url>http://www.last.fm/music/Jack+Johnson/_/No+Other+Way</url>
401
+ <streamable fulltrack="1">1</streamable>
402
+ <artist>
403
+ <name>Jack Johnson</name>
404
+ <mbid>ff6e677f-91dd-4986-a174-8db0474b1799</mbid>
405
+ <url>http://www.last.fm/music/Jack+Johnson</url>
406
+ </artist>
407
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8673183.jpg</image>
408
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8673183.jpg</image>
409
+ <image size="large">http://userserve-ak.last.fm/serve/126/8673183.jpg</image>
410
+ </track>
411
+ <track>
412
+ <name>7 Years Down</name>
413
+ <playcount>1</playcount>
414
+ <tagcount></tagcount>
415
+ <mbid></mbid>
416
+ <url>http://www.last.fm/music/Rancid/_/7+Years+Down</url>
417
+ <streamable fulltrack="0">0</streamable>
418
+ <artist>
419
+ <name>Rancid</name>
420
+ <mbid>24f8d8a5-269b-475c-a1cb-792990b0b2ee</mbid>
421
+ <url>http://www.last.fm/music/Rancid</url>
422
+ </artist>
423
+ <image size="small">http://images.amazon.com/images/P/B000001IPP.01._SCMZZZZZZZ_.jpg</image>
424
+ <image size="medium">http://images.amazon.com/images/P/B000001IPP.01._SCMZZZZZZZ_.jpg</image>
425
+ <image size="large">http://images.amazon.com/images/P/B000001IPP.01._SCMZZZZZZZ_.jpg</image>
426
+ </track>
427
+ <track>
428
+ <name>Sweet Ride</name>
429
+ <playcount>1</playcount>
430
+ <tagcount></tagcount>
431
+ <mbid></mbid>
432
+ <url>http://www.last.fm/music/Mando+Diao/_/Sweet+Ride</url>
433
+ <streamable fulltrack="0">1</streamable>
434
+ <artist>
435
+ <name>Mando Diao</name>
436
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
437
+ <url>http://www.last.fm/music/Mando+Diao</url>
438
+ </artist>
439
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11406701.jpg</image>
440
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11406701.jpg</image>
441
+ <image size="large">http://userserve-ak.last.fm/serve/126/11406701.jpg</image>
442
+ </track>
443
+ <track>
444
+ <name>Local Boy</name>
445
+ <playcount>1</playcount>
446
+ <tagcount></tagcount>
447
+ <mbid></mbid>
448
+ <url>http://www.last.fm/music/The+Rifles/_/Local+Boy</url>
449
+ <streamable fulltrack="0">1</streamable>
450
+ <artist>
451
+ <name>The Rifles</name>
452
+ <mbid>03cfb17e-9d4a-462c-88ee-1fa348bc3a0d</mbid>
453
+ <url>http://www.last.fm/music/The+Rifles</url>
454
+ </artist>
455
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19880503.jpg</image>
456
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19880503.jpg</image>
457
+ <image size="large">http://userserve-ak.last.fm/serve/126/19880503.jpg</image>
458
+ </track>
459
+ <track>
460
+ <name>Cruelty</name>
461
+ <playcount>1</playcount>
462
+ <tagcount></tagcount>
463
+ <mbid></mbid>
464
+ <url>http://www.last.fm/music/Sick+of+It+All/_/Cruelty</url>
465
+ <streamable fulltrack="0">1</streamable>
466
+ <artist>
467
+ <name>Sick of It All</name>
468
+ <mbid>e204ed91-3684-4561-b29b-d0b53f8459a7</mbid>
469
+ <url>http://www.last.fm/music/Sick+of+It+All</url>
470
+ </artist>
471
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19879251.jpg</image>
472
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19879251.jpg</image>
473
+ <image size="large">http://userserve-ak.last.fm/serve/126/19879251.jpg</image>
474
+ </track>
475
+ <track>
476
+ <name>I've Got All This Ringing in My Ears and None on My Fingers</name>
477
+ <playcount>1</playcount>
478
+ <tagcount></tagcount>
479
+ <mbid></mbid>
480
+ <url>http://www.last.fm/music/Fall+Out+Boy/_/I%27ve+Got+All+This+Ringing+in+My+Ears+and+None+on+My+Fingers</url>
481
+ <streamable fulltrack="1">1</streamable>
482
+ <artist>
483
+ <name>Fall Out Boy</name>
484
+ <mbid>516cef4d-0718-4007-9939-f9b38af3f784</mbid>
485
+ <url>http://www.last.fm/music/Fall+Out+Boy</url>
486
+ </artist>
487
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9104309.jpg</image>
488
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9104309.jpg</image>
489
+ <image size="large">http://userserve-ak.last.fm/serve/126/9104309.jpg</image>
490
+ </track>
491
+ <track>
492
+ <name>Expecting More From Ratty</name>
493
+ <playcount>1</playcount>
494
+ <tagcount></tagcount>
495
+ <mbid></mbid>
496
+ <url>http://www.last.fm/music/Scooter/_/Expecting+More+From+Ratty</url>
497
+ <streamable fulltrack="0">1</streamable>
498
+ <artist>
499
+ <name>Scooter</name>
500
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
501
+ <url>http://www.last.fm/music/Scooter</url>
502
+ </artist>
503
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8698075.jpg</image>
504
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8698075.jpg</image>
505
+ <image size="large">http://userserve-ak.last.fm/serve/126/8698075.jpg</image>
506
+ </track>
507
+ <track>
508
+ <name>Shine On</name>
509
+ <playcount>1</playcount>
510
+ <tagcount></tagcount>
511
+ <mbid></mbid>
512
+ <url>http://www.last.fm/music/The+Kooks/_/Shine+On</url>
513
+ <streamable fulltrack="0">1</streamable>
514
+ <artist>
515
+ <name>The Kooks</name>
516
+ <mbid>f82f3a3e-29c2-42ca-b589-bc5dc210fa9e</mbid>
517
+ <url>http://www.last.fm/music/The+Kooks</url>
518
+ </artist>
519
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15158593.jpg</image>
520
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15158593.jpg</image>
521
+ <image size="large">http://userserve-ak.last.fm/serve/126/15158593.jpg</image>
522
+ </track>
523
+ <track>
524
+ <name>Hounds of Love</name>
525
+ <playcount>1</playcount>
526
+ <tagcount></tagcount>
527
+ <mbid></mbid>
528
+ <url>http://www.last.fm/music/The+Futureheads/_/Hounds+of+Love</url>
529
+ <streamable fulltrack="0">1</streamable>
530
+ <artist>
531
+ <name>The Futureheads</name>
532
+ <mbid>0cf9d983-aecf-4d57-9e94-fde2beac014f</mbid>
533
+ <url>http://www.last.fm/music/The+Futureheads</url>
534
+ </artist>
535
+ <image size="small">http://images.amazon.com/images/P/B0007U8XIE.01._SCMZZZZZZZ_.jpg</image>
536
+ <image size="medium">http://images.amazon.com/images/P/B0007U8XIE.01._SCMZZZZZZZ_.jpg</image>
537
+ <image size="large">http://images.amazon.com/images/P/B0007U8XIE.01._SCMZZZZZZZ_.jpg</image>
538
+ </track>
539
+ <track>
540
+ <name>Hund am Strand / Neues Lied</name>
541
+ <playcount>1</playcount>
542
+ <tagcount></tagcount>
543
+ <mbid></mbid>
544
+ <url>http://www.last.fm/music/Hund+am+Strand/_/Hund%2Bam%2BStrand%2B%252F%2BNeues%2BLied</url>
545
+ <streamable fulltrack="0">0</streamable>
546
+ <artist>
547
+ <name>Hund am Strand</name>
548
+ <mbid>3c46699e-cccf-4897-84fb-25fb5b38975e</mbid>
549
+ <url>http://www.last.fm/music/Hund+am+Strand</url>
550
+ </artist>
551
+ </track>
552
+ <track>
553
+ <name>Hey Du</name>
554
+ <playcount>1</playcount>
555
+ <tagcount></tagcount>
556
+ <mbid></mbid>
557
+ <url>http://www.last.fm/music/Beatsteaks/_/Hey+Du</url>
558
+ <streamable fulltrack="0">0</streamable>
559
+ <artist>
560
+ <name>Beatsteaks</name>
561
+ <mbid>a9b88ebb-83aa-4ef7-b674-fabeb572c14e</mbid>
562
+ <url>http://www.last.fm/music/Beatsteaks</url>
563
+ </artist>
564
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4507693.jpg</image>
565
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4507693.jpg</image>
566
+ <image size="large">http://userserve-ak.last.fm/serve/126/4507693.jpg</image>
567
+ </track>
568
+ <track>
569
+ <name>Ich weiß nicht (ob es Liebe ist)</name>
570
+ <playcount>1</playcount>
571
+ <tagcount></tagcount>
572
+ <mbid></mbid>
573
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Ich+wei%C3%9F+nicht+%28ob+es+Liebe+ist%29</url>
574
+ <streamable fulltrack="0">1</streamable>
575
+ <artist>
576
+ <name>Die Ärzte</name>
577
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
578
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
579
+ </artist>
580
+ <image size="small">http://userserve-ak.last.fm/serve/34s/6201581.jpg</image>
581
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/6201581.jpg</image>
582
+ <image size="large">http://userserve-ak.last.fm/serve/126/6201581.jpg</image>
583
+ </track>
584
+ <track>
585
+ <name>Hard To Bear</name>
586
+ <playcount>1</playcount>
587
+ <tagcount></tagcount>
588
+ <mbid></mbid>
589
+ <url>http://www.last.fm/music/The+Futureheads/_/Hard+To+Bear</url>
590
+ <streamable fulltrack="0">1</streamable>
591
+ <artist>
592
+ <name>The Futureheads</name>
593
+ <mbid>0cf9d983-aecf-4d57-9e94-fde2beac014f</mbid>
594
+ <url>http://www.last.fm/music/The+Futureheads</url>
595
+ </artist>
596
+ </track>
597
+ <track>
598
+ <name>Whoops, I OD'd</name>
599
+ <playcount>1</playcount>
600
+ <tagcount></tagcount>
601
+ <mbid></mbid>
602
+ <url>http://www.last.fm/music/NOFX/_/Whoops%2C+I+OD%27d</url>
603
+ <streamable fulltrack="0">1</streamable>
604
+ <artist>
605
+ <name>NOFX</name>
606
+ <mbid>dcaa4f81-bfb7-44eb-8594-4e74f004b6e4</mbid>
607
+ <url>http://www.last.fm/music/NOFX</url>
608
+ </artist>
609
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12625529.jpg</image>
610
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12625529.jpg</image>
611
+ <image size="large">http://userserve-ak.last.fm/serve/126/12625529.jpg</image>
612
+ </track>
613
+ <track>
614
+ <name>Where the White Boys Dance</name>
615
+ <playcount>1</playcount>
616
+ <tagcount></tagcount>
617
+ <mbid></mbid>
618
+ <url>http://www.last.fm/music/The+Killers/_/Where+the+White+Boys+Dance</url>
619
+ <streamable fulltrack="1">1</streamable>
620
+ <artist>
621
+ <name>The Killers</name>
622
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
623
+ <url>http://www.last.fm/music/The+Killers</url>
624
+ </artist>
625
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9192209.jpg</image>
626
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9192209.jpg</image>
627
+ <image size="large">http://userserve-ak.last.fm/serve/126/9192209.jpg</image>
628
+ </track>
629
+ <track>
630
+ <name>Telemark</name>
631
+ <playcount>1</playcount>
632
+ <tagcount></tagcount>
633
+ <mbid></mbid>
634
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Telemark</url>
635
+ <streamable fulltrack="1">1</streamable>
636
+ <artist>
637
+ <name>Sportfreunde Stiller</name>
638
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
639
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
640
+ </artist>
641
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8738475.jpg</image>
642
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8738475.jpg</image>
643
+ <image size="large">http://userserve-ak.last.fm/serve/126/8738475.jpg</image>
644
+ </track>
645
+ <track>
646
+ <name>You Suck</name>
647
+ <playcount>1</playcount>
648
+ <tagcount></tagcount>
649
+ <mbid></mbid>
650
+ <url>http://www.last.fm/music/Anti-Flag/_/You+Suck</url>
651
+ <streamable fulltrack="0">0</streamable>
652
+ <artist>
653
+ <name>Anti-Flag</name>
654
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
655
+ <url>http://www.last.fm/music/Anti-Flag</url>
656
+ </artist>
657
+ </track>
658
+ <track>
659
+ <name>Augenblick</name>
660
+ <playcount>1</playcount>
661
+ <tagcount></tagcount>
662
+ <mbid></mbid>
663
+ <url>http://www.last.fm/music/Farin+Urlaub/_/Augenblick</url>
664
+ <streamable fulltrack="0">0</streamable>
665
+ <artist>
666
+ <name>Farin Urlaub</name>
667
+ <mbid>23620454-4dca-45b7-8496-066e94d99826</mbid>
668
+ <url>http://www.last.fm/music/Farin+Urlaub</url>
669
+ </artist>
670
+ <image size="small">http://images.amazon.com/images/P/B0007QCGFE.01.MZZZZZZZ.jpg</image>
671
+ <image size="medium">http://images.amazon.com/images/P/B0007QCGFE.01.MZZZZZZZ.jpg</image>
672
+ <image size="large">http://images.amazon.com/images/P/B0007QCGFE.01.MZZZZZZZ.jpg</image>
673
+ </track>
674
+ <track>
675
+ <name>Enjoy the silence 2004</name>
676
+ <playcount>1</playcount>
677
+ <tagcount></tagcount>
678
+ <mbid></mbid>
679
+ <url>http://www.last.fm/music/Depeche+Mode/_/Enjoy+the+silence+2004</url>
680
+ <streamable fulltrack="0">0</streamable>
681
+ <artist>
682
+ <name>Depeche Mode</name>
683
+ <mbid>8538e728-ca0b-4321-b7e5-cff6565dd4c0</mbid>
684
+ <url>http://www.last.fm/music/Depeche+Mode</url>
685
+ </artist>
686
+ </track>
687
+ <track>
688
+ <name>Mach die Augen zu</name>
689
+ <playcount>1</playcount>
690
+ <tagcount></tagcount>
691
+ <mbid></mbid>
692
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Mach+die+Augen+zu</url>
693
+ <streamable fulltrack="0">0</streamable>
694
+ <artist>
695
+ <name>Die Ärzte</name>
696
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
697
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
698
+ </artist>
699
+ <image size="small">http://images-eu.amazon.com/images/P/B00000AR9A.03.MZZZZZZZ.jpg</image>
700
+ <image size="medium">http://images-eu.amazon.com/images/P/B00000AR9A.03.MZZZZZZZ.jpg</image>
701
+ <image size="large">http://images-eu.amazon.com/images/P/B00000AR9A.03.MZZZZZZZ.jpg</image>
702
+ </track>
703
+ <track>
704
+ <name>Enter Shikari - Anything Can H</name>
705
+ <playcount>1</playcount>
706
+ <tagcount></tagcount>
707
+ <mbid></mbid>
708
+ <url>http://www.last.fm/music/Enter+Shikari/_/Enter+Shikari+-+Anything+Can+H</url>
709
+ <streamable fulltrack="0">0</streamable>
710
+ <artist>
711
+ <name>Enter Shikari</name>
712
+ <mbid>329f95db-f02e-40bf-a5f7-0dea11529ce3</mbid>
713
+ <url>http://www.last.fm/music/Enter+Shikari</url>
714
+ </artist>
715
+ </track>
716
+ <track>
717
+ <name>Liebe und Schmerz</name>
718
+ <playcount>1</playcount>
719
+ <tagcount></tagcount>
720
+ <mbid></mbid>
721
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Liebe+und+Schmerz</url>
722
+ <streamable fulltrack="0">1</streamable>
723
+ <artist>
724
+ <name>Die Ärzte</name>
725
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
726
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
727
+ </artist>
728
+ <image size="small">http://images-eu.amazon.com/images/P/B00000JP3Y.03.MZZZZZZZ.jpg</image>
729
+ <image size="medium">http://images-eu.amazon.com/images/P/B00000JP3Y.03.MZZZZZZZ.jpg</image>
730
+ <image size="large">http://images-eu.amazon.com/images/P/B00000JP3Y.03.MZZZZZZZ.jpg</image>
731
+ </track>
732
+ <track>
733
+ <name>city blues</name>
734
+ <playcount>1</playcount>
735
+ <tagcount></tagcount>
736
+ <mbid></mbid>
737
+ <url>http://www.last.fm/music/Absolute+Beginner/_/city+blues</url>
738
+ <streamable fulltrack="0">0</streamable>
739
+ <artist>
740
+ <name>Absolute Beginner</name>
741
+ <mbid>897db291-e88a-49be-baaa-d12e300d971c</mbid>
742
+ <url>http://www.last.fm/music/Absolute+Beginner</url>
743
+ </artist>
744
+ </track>
745
+ <track>
746
+ <name>Kill Again</name>
747
+ <playcount>1</playcount>
748
+ <tagcount></tagcount>
749
+ <mbid></mbid>
750
+ <url>http://www.last.fm/music/Slayer/_/Kill+Again</url>
751
+ <streamable fulltrack="1">1</streamable>
752
+ <artist>
753
+ <name>Slayer</name>
754
+ <mbid>bdacc37b-8633-4bf8-9dd5-4662ee651aec</mbid>
755
+ <url>http://www.last.fm/music/Slayer</url>
756
+ </artist>
757
+ <image size="small">http://images.amazon.com/images/P/B000001C6K.01.MZZZZZZZ.jpg</image>
758
+ <image size="medium">http://images.amazon.com/images/P/B000001C6K.01.MZZZZZZZ.jpg</image>
759
+ <image size="large">http://images.amazon.com/images/P/B000001C6K.01.MZZZZZZZ.jpg</image>
760
+ </track>
761
+ <track>
762
+ <name>Music</name>
763
+ <playcount>1</playcount>
764
+ <tagcount></tagcount>
765
+ <mbid></mbid>
766
+ <url>http://www.last.fm/music/Patrice/_/Music</url>
767
+ <streamable fulltrack="0">1</streamable>
768
+ <artist>
769
+ <name>Patrice</name>
770
+ <mbid>826dc91a-6dd3-4279-ae8d-bb710db646bb</mbid>
771
+ <url>http://www.last.fm/music/Patrice</url>
772
+ </artist>
773
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11841565.jpg</image>
774
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11841565.jpg</image>
775
+ <image size="large">http://userserve-ak.last.fm/serve/126/11841565.jpg</image>
776
+ </track>
777
+ </tracks></lfm>