scrobbler-ng 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (156) hide show
  1. data/.gitignore +11 -0
  2. data/MIT-LICENSE +19 -0
  3. data/README.rdoc +104 -0
  4. data/Rakefile +11 -0
  5. data/VERSION.yml +4 -0
  6. data/examples/album.rb +19 -0
  7. data/examples/artist.rb +13 -0
  8. data/examples/scrobble.rb +31 -0
  9. data/examples/tag.rb +11 -0
  10. data/examples/track.rb +6 -0
  11. data/examples/user.rb +14 -0
  12. data/lib/scrobbler/album.rb +165 -0
  13. data/lib/scrobbler/artist.rb +169 -0
  14. data/lib/scrobbler/auth.rb +47 -0
  15. data/lib/scrobbler/base.rb +124 -0
  16. data/lib/scrobbler/event.rb +105 -0
  17. data/lib/scrobbler/geo.rb +27 -0
  18. data/lib/scrobbler/helper/image.rb +52 -0
  19. data/lib/scrobbler/helper/streamable.rb +40 -0
  20. data/lib/scrobbler/library.rb +123 -0
  21. data/lib/scrobbler/playing.rb +49 -0
  22. data/lib/scrobbler/playlist.rb +45 -0
  23. data/lib/scrobbler/radio.rb +12 -0
  24. data/lib/scrobbler/rest.rb +47 -0
  25. data/lib/scrobbler/scrobble.rb +116 -0
  26. data/lib/scrobbler/session.rb +9 -0
  27. data/lib/scrobbler/shout.rb +21 -0
  28. data/lib/scrobbler/simpleauth.rb +60 -0
  29. data/lib/scrobbler/tag.rb +113 -0
  30. data/lib/scrobbler/track.rb +138 -0
  31. data/lib/scrobbler/user.rb +222 -0
  32. data/lib/scrobbler/venue.rb +67 -0
  33. data/lib/scrobbler.rb +34 -0
  34. data/tasks/jeweler.rake +18 -0
  35. data/tasks/rdoc.rake +7 -0
  36. data/tasks/tests.rake +13 -0
  37. data/tasks/yardoc.rake +8 -0
  38. data/test/fixtures/xml/album/info.xml +43 -0
  39. data/test/fixtures/xml/artist/fans.xml +52 -0
  40. data/test/fixtures/xml/artist/info.xml +58 -0
  41. data/test/fixtures/xml/artist/similar.xml +1004 -0
  42. data/test/fixtures/xml/artist/topalbums.xml +61 -0
  43. data/test/fixtures/xml/artist/toptags.xml +19 -0
  44. data/test/fixtures/xml/artist/toptracks.xml +62 -0
  45. data/test/fixtures/xml/auth/session.xml +7 -0
  46. data/test/fixtures/xml/auth/token.xml +3 -0
  47. data/test/fixtures/xml/event/attend.xml +3 -0
  48. data/test/fixtures/xml/event/attendees.xml +53 -0
  49. data/test/fixtures/xml/event/event.xml +35 -0
  50. data/test/fixtures/xml/event/shouts.xml +35 -0
  51. data/test/fixtures/xml/geo/events-distance-p1.xml +151 -0
  52. data/test/fixtures/xml/geo/events-lat-long.xml +167 -0
  53. data/test/fixtures/xml/geo/events-p1.xml +152 -0
  54. data/test/fixtures/xml/geo/events-p2.xml +380 -0
  55. data/test/fixtures/xml/geo/events-p3.xml +427 -0
  56. data/test/fixtures/xml/geo/top_artists-p1.xml +76 -0
  57. data/test/fixtures/xml/geo/top_tracks-p1.xml +77 -0
  58. data/test/fixtures/xml/library/albums-f30.xml +454 -0
  59. data/test/fixtures/xml/library/albums-p1.xml +754 -0
  60. data/test/fixtures/xml/library/albums-p2.xml +754 -0
  61. data/test/fixtures/xml/library/albums-p3.xml +754 -0
  62. data/test/fixtures/xml/library/albums-p4.xml +739 -0
  63. data/test/fixtures/xml/library/albums-p5.xml +754 -0
  64. data/test/fixtures/xml/library/albums-p6.xml +754 -0
  65. data/test/fixtures/xml/library/albums-p7.xml +739 -0
  66. data/test/fixtures/xml/library/albums-p8.xml +724 -0
  67. data/test/fixtures/xml/library/artists-f30.xml +334 -0
  68. data/test/fixtures/xml/library/artists-p1.xml +554 -0
  69. data/test/fixtures/xml/library/artists-p2.xml +554 -0
  70. data/test/fixtures/xml/library/artists-p3.xml +554 -0
  71. data/test/fixtures/xml/library/artists-p4.xml +554 -0
  72. data/test/fixtures/xml/library/artists-p5.xml +554 -0
  73. data/test/fixtures/xml/library/artists-p6.xml +554 -0
  74. data/test/fixtures/xml/library/artists-p7.xml +444 -0
  75. data/test/fixtures/xml/library/tracks-f30.xml +472 -0
  76. data/test/fixtures/xml/library/tracks-p1.xml +789 -0
  77. data/test/fixtures/xml/library/tracks-p10.xml +771 -0
  78. data/test/fixtures/xml/library/tracks-p11.xml +792 -0
  79. data/test/fixtures/xml/library/tracks-p12.xml +777 -0
  80. data/test/fixtures/xml/library/tracks-p13.xml +762 -0
  81. data/test/fixtures/xml/library/tracks-p14.xml +759 -0
  82. data/test/fixtures/xml/library/tracks-p15.xml +762 -0
  83. data/test/fixtures/xml/library/tracks-p16.xml +756 -0
  84. data/test/fixtures/xml/library/tracks-p17.xml +780 -0
  85. data/test/fixtures/xml/library/tracks-p18.xml +756 -0
  86. data/test/fixtures/xml/library/tracks-p19.xml +774 -0
  87. data/test/fixtures/xml/library/tracks-p2.xml +765 -0
  88. data/test/fixtures/xml/library/tracks-p20.xml +777 -0
  89. data/test/fixtures/xml/library/tracks-p21.xml +777 -0
  90. data/test/fixtures/xml/library/tracks-p22.xml +771 -0
  91. data/test/fixtures/xml/library/tracks-p23.xml +765 -0
  92. data/test/fixtures/xml/library/tracks-p24.xml +783 -0
  93. data/test/fixtures/xml/library/tracks-p25.xml +777 -0
  94. data/test/fixtures/xml/library/tracks-p26.xml +777 -0
  95. data/test/fixtures/xml/library/tracks-p27.xml +756 -0
  96. data/test/fixtures/xml/library/tracks-p28.xml +771 -0
  97. data/test/fixtures/xml/library/tracks-p29.xml +753 -0
  98. data/test/fixtures/xml/library/tracks-p3.xml +771 -0
  99. data/test/fixtures/xml/library/tracks-p30.xml +780 -0
  100. data/test/fixtures/xml/library/tracks-p31.xml +753 -0
  101. data/test/fixtures/xml/library/tracks-p32.xml +771 -0
  102. data/test/fixtures/xml/library/tracks-p33.xml +762 -0
  103. data/test/fixtures/xml/library/tracks-p34.xml +538 -0
  104. data/test/fixtures/xml/library/tracks-p4.xml +792 -0
  105. data/test/fixtures/xml/library/tracks-p5.xml +780 -0
  106. data/test/fixtures/xml/library/tracks-p6.xml +789 -0
  107. data/test/fixtures/xml/library/tracks-p7.xml +789 -0
  108. data/test/fixtures/xml/library/tracks-p8.xml +780 -0
  109. data/test/fixtures/xml/library/tracks-p9.xml +774 -0
  110. data/test/fixtures/xml/tag/similar.xml +254 -0
  111. data/test/fixtures/xml/tag/topalbums.xml +805 -0
  112. data/test/fixtures/xml/tag/topartists.xml +605 -0
  113. data/test/fixtures/xml/tag/toptags.xml +1254 -0
  114. data/test/fixtures/xml/tag/toptracks.xml +852 -0
  115. data/test/fixtures/xml/track/fans.xml +34 -0
  116. data/test/fixtures/xml/track/info.xml +53 -0
  117. data/test/fixtures/xml/track/toptags.xml +504 -0
  118. data/test/fixtures/xml/user/events.xml +401 -0
  119. data/test/fixtures/xml/user/friends.xml +30 -0
  120. data/test/fixtures/xml/user/lovedtracks.xml +678 -0
  121. data/test/fixtures/xml/user/neighbours.xml +23 -0
  122. data/test/fixtures/xml/user/playlists.xml +61 -0
  123. data/test/fixtures/xml/user/profile.xml +12 -0
  124. data/test/fixtures/xml/user/recentbannedtracks.xml +24 -0
  125. data/test/fixtures/xml/user/recentlovedtracks.xml +24 -0
  126. data/test/fixtures/xml/user/recenttracks.xml +124 -0
  127. data/test/fixtures/xml/user/systemrecs.xml +18 -0
  128. data/test/fixtures/xml/user/topalbums.xml +61 -0
  129. data/test/fixtures/xml/user/topartists.xml +41 -0
  130. data/test/fixtures/xml/user/toptags.xml +44 -0
  131. data/test/fixtures/xml/user/toptracks.xml +65 -0
  132. data/test/fixtures/xml/user/weeklyalbumchart.xml +256 -0
  133. data/test/fixtures/xml/user/weeklyartistchart.xml +220 -0
  134. data/test/fixtures/xml/user/weeklytrackchart.xml +746 -0
  135. data/test/fixtures/xml/venue/events.xml +151 -0
  136. data/test/fixtures/xml/venue/venue.xml +16 -0
  137. data/test/mocks/rest.rb +212 -0
  138. data/test/spec_helper.rb +7 -0
  139. data/test/test_helper.rb +20 -0
  140. data/test/unit/album_spec.rb +51 -0
  141. data/test/unit/artist_spec.rb +130 -0
  142. data/test/unit/auth_spec.rb +36 -0
  143. data/test/unit/event_spec.rb +109 -0
  144. data/test/unit/geo_spec.rb +148 -0
  145. data/test/unit/library_spec.rb +133 -0
  146. data/test/unit/playing_test.rb +53 -0
  147. data/test/unit/playlist_spec.rb +25 -0
  148. data/test/unit/radio_spec.rb +22 -0
  149. data/test/unit/scrobble_spec.rb +55 -0
  150. data/test/unit/scrobble_test.rb +69 -0
  151. data/test/unit/simpleauth_test.rb +45 -0
  152. data/test/unit/tag_spec.rb +101 -0
  153. data/test/unit/track_spec.rb +95 -0
  154. data/test/unit/user_spec.rb +264 -0
  155. data/test/unit/venue_spec.rb +104 -0
  156. metadata +253 -0
@@ -0,0 +1,754 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <albums user="xhochy" page="3" perPage="50" totalPages="8">
4
+ <album>
5
+ <name>The Best... Album In the World... Ever! Volume 4 (disc 1)</name>
6
+ <playcount>17</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Underworld/The+Best...+Album+In+the+World...+Ever%21+Volume+4+%28disc+1%29</url>
10
+ <artist>
11
+ <name>Underworld</name>
12
+ <mbid>ba2f4f3b-0293-4bc8-bb94-2f73b5207343</mbid>
13
+ <url>http://www.last.fm/music/Underworld</url>
14
+ </artist>
15
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
16
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
17
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
18
+ </album>
19
+ <album>
20
+ <name>Echoes, Silence, Patience &amp; Grace</name>
21
+ <playcount>17</playcount>
22
+ <tagcount></tagcount>
23
+ <mbid></mbid>
24
+ <url>http://www.last.fm/music/Foo+Fighters/Echoes%252C%2BSilence%252C%2BPatience%2B%2526%2BGrace</url>
25
+ <artist>
26
+ <name>Foo Fighters</name>
27
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
28
+ <url>http://www.last.fm/music/Foo+Fighters</url>
29
+ </artist>
30
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23313761.jpg</image>
31
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23313761.jpg</image>
32
+ <image size="large">http://userserve-ak.last.fm/serve/126/23313761.jpg</image>
33
+ </album>
34
+ <album>
35
+ <name>Infinity On High</name>
36
+ <playcount>17</playcount>
37
+ <tagcount></tagcount>
38
+ <mbid></mbid>
39
+ <url>http://www.last.fm/music/Fall+Out+Boy/Infinity+On+High</url>
40
+ <artist>
41
+ <name>Fall Out Boy</name>
42
+ <mbid>516cef4d-0718-4007-9939-f9b38af3f784</mbid>
43
+ <url>http://www.last.fm/music/Fall+Out+Boy</url>
44
+ </artist>
45
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9104309.jpg</image>
46
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9104309.jpg</image>
47
+ <image size="large">http://userserve-ak.last.fm/serve/126/9104309.jpg</image>
48
+ </album>
49
+ <album>
50
+ <name>Arbeit nervt</name>
51
+ <playcount>16</playcount>
52
+ <tagcount></tagcount>
53
+ <mbid></mbid>
54
+ <url>http://www.last.fm/music/Deichkind/Arbeit+nervt</url>
55
+ <artist>
56
+ <name>Deichkind</name>
57
+ <mbid>5de80871-f721-4c7c-b0c5-4ad0d350c232</mbid>
58
+ <url>http://www.last.fm/music/Deichkind</url>
59
+ </artist>
60
+ <image size="small">http://userserve-ak.last.fm/serve/34s/27384963.jpg</image>
61
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/27384963.jpg</image>
62
+ <image size="large">http://userserve-ak.last.fm/serve/126/27384963.jpg</image>
63
+ </album>
64
+ <album>
65
+ <name>null</name>
66
+ <playcount>16</playcount>
67
+ <tagcount></tagcount>
68
+ <mbid></mbid>
69
+ <url>http://www.last.fm/music/blink-182/null</url>
70
+ <artist>
71
+ <name>blink-182</name>
72
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
73
+ <url>http://www.last.fm/music/blink-182</url>
74
+ </artist>
75
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
76
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
77
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
78
+ </album>
79
+ <album>
80
+ <name>The Black and White album</name>
81
+ <playcount>15</playcount>
82
+ <tagcount></tagcount>
83
+ <mbid></mbid>
84
+ <url>http://www.last.fm/music/The+Hives/The+Black+and+White+album</url>
85
+ <artist>
86
+ <name>The Hives</name>
87
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
88
+ <url>http://www.last.fm/music/The+Hives</url>
89
+ </artist>
90
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9788079.jpg</image>
91
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9788079.jpg</image>
92
+ <image size="large">http://userserve-ak.last.fm/serve/126/9788079.jpg</image>
93
+ </album>
94
+ <album>
95
+ <name>Wir wollen nur deine Seele (disc 1: Nö Sleep 'til Viehauktiönshalle Öldenbürg)</name>
96
+ <playcount>15</playcount>
97
+ <tagcount></tagcount>
98
+ <mbid></mbid>
99
+ <url>http://www.last.fm/music/Die+%C3%84rzte/Wir+wollen+nur+deine+Seele+%28disc+1%3A+N%C3%B6+Sleep+%27til+Viehaukti%C3%B6nshalle+%C3%96ldenb%C3%BCrg%29</url>
100
+ <artist>
101
+ <name>Die Ärzte</name>
102
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
103
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
104
+ </artist>
105
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
106
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
107
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
108
+ </album>
109
+ <album>
110
+ <name>blink-182</name>
111
+ <playcount>15</playcount>
112
+ <tagcount></tagcount>
113
+ <mbid>f0359d59-315e-45e6-bf7b-170754bac198</mbid>
114
+ <url>http://www.last.fm/music/blink-182/blink-182</url>
115
+ <artist>
116
+ <name>blink-182</name>
117
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
118
+ <url>http://www.last.fm/music/blink-182</url>
119
+ </artist>
120
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5260368.jpg</image>
121
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5260368.jpg</image>
122
+ <image size="large">http://userserve-ak.last.fm/serve/126/5260368.jpg</image>
123
+ </album>
124
+ <album>
125
+ <name>Noch Fünf Minuten Mutti</name>
126
+ <playcount>14</playcount>
127
+ <tagcount></tagcount>
128
+ <mbid>0958cf15-4fcd-4ddf-a4a3-4da0aff243c8</mbid>
129
+ <url>http://www.last.fm/music/Deichkind/Noch+F%C3%BCnf+Minuten+Mutti</url>
130
+ <artist>
131
+ <name>Deichkind</name>
132
+ <mbid>5de80871-f721-4c7c-b0c5-4ad0d350c232</mbid>
133
+ <url>http://www.last.fm/music/Deichkind</url>
134
+ </artist>
135
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8621281.jpg</image>
136
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8621281.jpg</image>
137
+ <image size="large">http://userserve-ak.last.fm/serve/126/8621281.jpg</image>
138
+ </album>
139
+ <album>
140
+ <name>In Your Honor (disc 1)</name>
141
+ <playcount>14</playcount>
142
+ <tagcount></tagcount>
143
+ <mbid>472f08f0-8105-4780-b654-4d9172dc84e7</mbid>
144
+ <url>http://www.last.fm/music/Foo+Fighters/In+Your+Honor+%28disc+1%29</url>
145
+ <artist>
146
+ <name>Foo Fighters</name>
147
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
148
+ <url>http://www.last.fm/music/Foo+Fighters</url>
149
+ </artist>
150
+ <image size="small">http://images.amazon.com/images/P/B0009HLDFU.01.MZZZZZZZ.jpg</image>
151
+ <image size="medium">http://images.amazon.com/images/P/B0009HLDFU.01.MZZZZZZZ.jpg</image>
152
+ <image size="large">http://images.amazon.com/images/P/B0009HLDFU.01.MZZZZZZZ.jpg</image>
153
+ </album>
154
+ <album>
155
+ <name>Blink 182 Greatest Hits</name>
156
+ <playcount>14</playcount>
157
+ <tagcount></tagcount>
158
+ <mbid></mbid>
159
+ <url>http://www.last.fm/music/Blink-182/Blink+182+Greatest+Hits</url>
160
+ <artist>
161
+ <name>blink-182</name>
162
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
163
+ <url>http://www.last.fm/music/blink-182</url>
164
+ </artist>
165
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23895451.jpg</image>
166
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23895451.jpg</image>
167
+ <image size="large">http://userserve-ak.last.fm/serve/126/23895451.jpg</image>
168
+ </album>
169
+ <album>
170
+ <name>Ulysses EP</name>
171
+ <playcount>13</playcount>
172
+ <tagcount></tagcount>
173
+ <mbid></mbid>
174
+ <url>http://www.last.fm/music/Franz+Ferdinand/Ulysses+EP</url>
175
+ <artist>
176
+ <name>Franz Ferdinand</name>
177
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
178
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
179
+ </artist>
180
+ <image size="small">http://userserve-ak.last.fm/serve/34s/24682317.jpg</image>
181
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/24682317.jpg</image>
182
+ <image size="large">http://userserve-ak.last.fm/serve/126/24682317.jpg</image>
183
+ </album>
184
+ <album>
185
+ <name>Brain Thrust Mastery</name>
186
+ <playcount>13</playcount>
187
+ <tagcount></tagcount>
188
+ <mbid></mbid>
189
+ <url>http://www.last.fm/music/We+Are+Scientists/Brain+Thrust+Mastery</url>
190
+ <artist>
191
+ <name>We Are Scientists</name>
192
+ <mbid>9386b36e-87f3-4716-a219-79a07a4e29cc</mbid>
193
+ <url>http://www.last.fm/music/We+Are+Scientists</url>
194
+ </artist>
195
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15219273.jpg</image>
196
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15219273.jpg</image>
197
+ <image size="large">http://userserve-ak.last.fm/serve/126/15219273.jpg</image>
198
+ </album>
199
+ <album>
200
+ <name>Runter mit den Spendierhosen, Unsichtbarer!</name>
201
+ <playcount>13</playcount>
202
+ <tagcount></tagcount>
203
+ <mbid>f1793d61-a672-4113-a833-f5dcedf88785</mbid>
204
+ <url>http://www.last.fm/music/Die+%C3%84rzte/Runter+mit+den+Spendierhosen%2C+Unsichtbarer%21</url>
205
+ <artist>
206
+ <name>Die Ärzte</name>
207
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
208
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
209
+ </artist>
210
+ <image size="small">http://images-eu.amazon.com/images/P/B00004ZC4S.03.MZZZZZZZ.jpg</image>
211
+ <image size="medium">http://images-eu.amazon.com/images/P/B00004ZC4S.03.MZZZZZZZ.jpg</image>
212
+ <image size="large">http://images-eu.amazon.com/images/P/B00004ZC4S.03.MZZZZZZZ.jpg</image>
213
+ </album>
214
+ <album>
215
+ <name>Weezer (Green Album)</name>
216
+ <playcount>13</playcount>
217
+ <tagcount></tagcount>
218
+ <mbid>ec7c97cc-1d06-4c74-bcb5-6773391f90b2</mbid>
219
+ <url>http://www.last.fm/music/Weezer/Weezer+%28Green+Album%29</url>
220
+ <artist>
221
+ <name>Weezer</name>
222
+ <mbid>6fe07aa5-fec0-4eca-a456-f29bff451b04</mbid>
223
+ <url>http://www.last.fm/music/Weezer</url>
224
+ </artist>
225
+ <image size="small">http://userserve-ak.last.fm/serve/34s/17077497.jpg</image>
226
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/17077497.jpg</image>
227
+ <image size="large">http://userserve-ak.last.fm/serve/126/17077497.jpg</image>
228
+ </album>
229
+ <album>
230
+ <name>Von hier an blind</name>
231
+ <playcount>12</playcount>
232
+ <tagcount></tagcount>
233
+ <mbid>b4402489-d5bb-4831-9608-54713bede8da</mbid>
234
+ <url>http://www.last.fm/music/Wir+sind+Helden/Von+hier+an+blind</url>
235
+ <artist>
236
+ <name>Wir sind Helden</name>
237
+ <mbid>908fedf4-548a-430f-b806-38fca9507dc4</mbid>
238
+ <url>http://www.last.fm/music/Wir+sind+Helden</url>
239
+ </artist>
240
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14689581.jpg</image>
241
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14689581.jpg</image>
242
+ <image size="large">http://userserve-ak.last.fm/serve/126/14689581.jpg</image>
243
+ </album>
244
+ <album>
245
+ <name>Live</name>
246
+ <playcount>12</playcount>
247
+ <tagcount></tagcount>
248
+ <mbid>1f4e114b-c70d-4caf-9e5f-8fcc3641f44b</mbid>
249
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/Live</url>
250
+ <artist>
251
+ <name>Sportfreunde Stiller</name>
252
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
253
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
254
+ </artist>
255
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8764971.jpg</image>
256
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8764971.jpg</image>
257
+ <image size="large">http://userserve-ak.last.fm/serve/126/8764971.jpg</image>
258
+ </album>
259
+ <album>
260
+ <name>Ins offene Messer</name>
261
+ <playcount>11</playcount>
262
+ <tagcount></tagcount>
263
+ <mbid></mbid>
264
+ <url>http://www.last.fm/music/Jennifer+Rostock/Ins+offene+Messer</url>
265
+ <artist>
266
+ <name>Jennifer Rostock</name>
267
+ <mbid></mbid>
268
+ <url>http://www.last.fm/music/Jennifer+Rostock</url>
269
+ </artist>
270
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4393040.jpg</image>
271
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4393040.jpg</image>
272
+ <image size="large">http://userserve-ak.last.fm/serve/126/4393040.jpg</image>
273
+ </album>
274
+ <album>
275
+ <name>Demon Days</name>
276
+ <playcount>11</playcount>
277
+ <tagcount></tagcount>
278
+ <mbid>be144352-0bad-4dd6-b4e7-95e5ef43522a</mbid>
279
+ <url>http://www.last.fm/music/Gorillaz/Demon+Days</url>
280
+ <artist>
281
+ <name>Gorillaz</name>
282
+ <mbid>e21857d5-3256-4547-afb3-4b6ded592596</mbid>
283
+ <url>http://www.last.fm/music/Gorillaz</url>
284
+ </artist>
285
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11453045.jpg</image>
286
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11453045.jpg</image>
287
+ <image size="large">http://userserve-ak.last.fm/serve/126/11453045.jpg</image>
288
+ </album>
289
+ <album>
290
+ <name>Crap Attack</name>
291
+ <playcount>11</playcount>
292
+ <tagcount></tagcount>
293
+ <mbid></mbid>
294
+ <url>http://www.last.fm/music/We+Are+Scientists/Crap+Attack</url>
295
+ <artist>
296
+ <name>We Are Scientists</name>
297
+ <mbid>9386b36e-87f3-4716-a219-79a07a4e29cc</mbid>
298
+ <url>http://www.last.fm/music/We+Are+Scientists</url>
299
+ </artist>
300
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23356977.jpg</image>
301
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23356977.jpg</image>
302
+ <image size="large">http://userserve-ak.last.fm/serve/126/23356977.jpg</image>
303
+ </album>
304
+ <album>
305
+ <name>The Shape of Punk to Come</name>
306
+ <playcount>10</playcount>
307
+ <tagcount></tagcount>
308
+ <mbid>0ddc4e9a-17d4-4412-9d7e-c227c22fea6b</mbid>
309
+ <url>http://www.last.fm/music/Refused/The+Shape+of+Punk+to+Come</url>
310
+ <artist>
311
+ <name>Refused</name>
312
+ <mbid>42884e27-dfb8-453d-990f-2ffd90bc2d1a</mbid>
313
+ <url>http://www.last.fm/music/Refused</url>
314
+ </artist>
315
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12622239.jpg</image>
316
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12622239.jpg</image>
317
+ <image size="large">http://userserve-ak.last.fm/serve/126/12622239.jpg</image>
318
+ </album>
319
+ <album>
320
+ <name>Bring 'em In</name>
321
+ <playcount>10</playcount>
322
+ <tagcount></tagcount>
323
+ <mbid>a9b89866-23ae-4e5f-9a19-b1acb4a266c0</mbid>
324
+ <url>http://www.last.fm/music/Mando+Diao/Bring+%27em+In</url>
325
+ <artist>
326
+ <name>Mando Diao</name>
327
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
328
+ <url>http://www.last.fm/music/Mando+Diao</url>
329
+ </artist>
330
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11406701.jpg</image>
331
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11406701.jpg</image>
332
+ <image size="large">http://userserve-ak.last.fm/serve/126/11406701.jpg</image>
333
+ </album>
334
+ <album>
335
+ <name>Debil</name>
336
+ <playcount>10</playcount>
337
+ <tagcount></tagcount>
338
+ <mbid>f8426ec1-4fd1-4fce-b517-09779e64c0d6</mbid>
339
+ <url>http://www.last.fm/music/Die+%C3%84rzte/Debil</url>
340
+ <artist>
341
+ <name>Die Ärzte</name>
342
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
343
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
344
+ </artist>
345
+ <image size="small">http://images.amazon.com/images/P/B00000ARRT.01._SCMZZZZZZZ_.jpg</image>
346
+ <image size="medium">http://images.amazon.com/images/P/B00000ARRT.01._SCMZZZZZZZ_.jpg</image>
347
+ <image size="large">http://images.amazon.com/images/P/B00000ARRT.01._SCMZZZZZZZ_.jpg</image>
348
+ </album>
349
+ <album>
350
+ <name>Elephant</name>
351
+ <playcount>10</playcount>
352
+ <tagcount></tagcount>
353
+ <mbid>9bf86596-1ef0-4bd4-8f5e-bb205a77b075</mbid>
354
+ <url>http://www.last.fm/music/The+White+Stripes/Elephant</url>
355
+ <artist>
356
+ <name>The White Stripes</name>
357
+ <mbid>11ae9fbb-f3d7-4a47-936f-4c0a04d3b3b5</mbid>
358
+ <url>http://www.last.fm/music/The+White+Stripes</url>
359
+ </artist>
360
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8594965.jpg</image>
361
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8594965.jpg</image>
362
+ <image size="large">http://userserve-ak.last.fm/serve/126/8594965.jpg</image>
363
+ </album>
364
+ <album>
365
+ <name>Frieden im Krieg</name>
366
+ <playcount>10</playcount>
367
+ <tagcount></tagcount>
368
+ <mbid></mbid>
369
+ <url>http://www.last.fm/music/Madsen/Frieden+im+Krieg</url>
370
+ <artist>
371
+ <name>Madsen</name>
372
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
373
+ <url>http://www.last.fm/music/Madsen</url>
374
+ </artist>
375
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5548067.jpg</image>
376
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5548067.jpg</image>
377
+ <image size="large">http://userserve-ak.last.fm/serve/126/5548067.jpg</image>
378
+ </album>
379
+ <album>
380
+ <name>Our Earthly Pleasures</name>
381
+ <playcount>10</playcount>
382
+ <tagcount></tagcount>
383
+ <mbid></mbid>
384
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park/Our+Earthly+Pleasures</url>
385
+ <artist>
386
+ <name>Maxïmo Park</name>
387
+ <mbid>92e634a7-6023-4be8-be15-ebba822f5b34</mbid>
388
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park</url>
389
+ </artist>
390
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22802109.jpg</image>
391
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22802109.jpg</image>
392
+ <image size="large">http://userserve-ak.last.fm/serve/126/22802109.jpg</image>
393
+ </album>
394
+ <album>
395
+ <name>The Ultimate Collection (bonus disc: Live at the Brixton Academy)</name>
396
+ <playcount>10</playcount>
397
+ <tagcount></tagcount>
398
+ <mbid></mbid>
399
+ <url>http://www.last.fm/music/The+Pogues/The+Ultimate+Collection+%28bonus+disc%3A+Live+at+the+Brixton+Academy%29</url>
400
+ <artist>
401
+ <name>The Pogues</name>
402
+ <mbid>d41a6875-b626-4c0f-89a1-aecb643d29ff</mbid>
403
+ <url>http://www.last.fm/music/The+Pogues</url>
404
+ </artist>
405
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
406
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
407
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
408
+ </album>
409
+ <album>
410
+ <name>Ode to Ochrasy</name>
411
+ <playcount>9</playcount>
412
+ <tagcount></tagcount>
413
+ <mbid></mbid>
414
+ <url>http://www.last.fm/music/Mando+Diao/Ode+to+Ochrasy</url>
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/14611643.jpg</image>
421
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14611643.jpg</image>
422
+ <image size="large">http://userserve-ak.last.fm/serve/126/14611643.jpg</image>
423
+ </album>
424
+ <album>
425
+ <name>Blackout</name>
426
+ <playcount>9</playcount>
427
+ <tagcount></tagcount>
428
+ <mbid>4e7de1d8-e143-4366-b307-335e07ef327b</mbid>
429
+ <url>http://www.last.fm/music/Dropkick+Murphys/Blackout</url>
430
+ <artist>
431
+ <name>Dropkick Murphys</name>
432
+ <mbid>e8374874-4178-4869-b92e-fef6bf30dc04</mbid>
433
+ <url>http://www.last.fm/music/Dropkick+Murphys</url>
434
+ </artist>
435
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634937.jpg</image>
436
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634937.jpg</image>
437
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634937.jpg</image>
438
+ </album>
439
+ <album>
440
+ <name>The Ultimate Collection (disc 1)</name>
441
+ <playcount>9</playcount>
442
+ <tagcount></tagcount>
443
+ <mbid>96058b86-b032-41f8-8f4a-a3bba20e2311</mbid>
444
+ <url>http://www.last.fm/music/The+Pogues/The+Ultimate+Collection+%28disc+1%29</url>
445
+ <artist>
446
+ <name>The Pogues</name>
447
+ <mbid>d41a6875-b626-4c0f-89a1-aecb643d29ff</mbid>
448
+ <url>http://www.last.fm/music/The+Pogues</url>
449
+ </artist>
450
+ <image size="small">http://images.amazon.com/images/P/B0007U8XHU.01.MZZZZZZZ.jpg</image>
451
+ <image size="medium">http://images.amazon.com/images/P/B0007U8XHU.01.MZZZZZZZ.jpg</image>
452
+ <image size="large">http://images.amazon.com/images/P/B0007U8XHU.01.MZZZZZZZ.jpg</image>
453
+ </album>
454
+ <album>
455
+ <name>Fleet Foxes</name>
456
+ <playcount>9</playcount>
457
+ <tagcount></tagcount>
458
+ <mbid></mbid>
459
+ <url>http://www.last.fm/music/Fleet+Foxes/Fleet+Foxes</url>
460
+ <artist>
461
+ <name>Fleet Foxes</name>
462
+ <mbid></mbid>
463
+ <url>http://www.last.fm/music/Fleet+Foxes</url>
464
+ </artist>
465
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22210745.jpg</image>
466
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22210745.jpg</image>
467
+ <image size="large">http://userserve-ak.last.fm/serve/126/22210745.jpg</image>
468
+ </album>
469
+ <album>
470
+ <name>Wir wollen nur deine Seele (disc 2: Halt's Maul und spiel!)</name>
471
+ <playcount>9</playcount>
472
+ <tagcount></tagcount>
473
+ <mbid>98f91929-2eb1-4939-b225-01b8f8bee811</mbid>
474
+ <url>http://www.last.fm/music/Die+%C3%84rzte/Wir+wollen+nur+deine+Seele+%28disc+2%3A+Halt%27s+Maul+und+spiel%21%29</url>
475
+ <artist>
476
+ <name>Die Ärzte</name>
477
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
478
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
479
+ </artist>
480
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11281187.jpg</image>
481
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11281187.jpg</image>
482
+ <image size="large">http://userserve-ak.last.fm/serve/126/11281187.jpg</image>
483
+ </album>
484
+ <album>
485
+ <name>Endlich Urlaub!</name>
486
+ <playcount>9</playcount>
487
+ <tagcount></tagcount>
488
+ <mbid>81032d7f-3915-4016-b1f5-606926329bb0</mbid>
489
+ <url>http://www.last.fm/music/Farin+Urlaub/Endlich+Urlaub%21</url>
490
+ <artist>
491
+ <name>Farin Urlaub</name>
492
+ <mbid>23620454-4dca-45b7-8496-066e94d99826</mbid>
493
+ <url>http://www.last.fm/music/Farin+Urlaub</url>
494
+ </artist>
495
+ <image size="small">http://userserve-ak.last.fm/serve/34s/3608376.jpg</image>
496
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/3608376.jpg</image>
497
+ <image size="large">http://userserve-ak.last.fm/serve/126/3608376.jpg</image>
498
+ </album>
499
+ <album>
500
+ <name>To Lose My Life</name>
501
+ <playcount>8</playcount>
502
+ <tagcount></tagcount>
503
+ <mbid></mbid>
504
+ <url>http://www.last.fm/music/White+Lies/To+Lose+My+Life</url>
505
+ <artist>
506
+ <name>White Lies</name>
507
+ <mbid></mbid>
508
+ <url>http://www.last.fm/music/White+Lies</url>
509
+ </artist>
510
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22881861.jpg</image>
511
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22881861.jpg</image>
512
+ <image size="large">http://userserve-ak.last.fm/serve/126/22881861.jpg</image>
513
+ </album>
514
+ <album>
515
+ <name>International Superhits!</name>
516
+ <playcount>8</playcount>
517
+ <tagcount></tagcount>
518
+ <mbid>24e81c15-616b-4063-b2fd-3002cf7666b9</mbid>
519
+ <url>http://www.last.fm/music/Green+Day/International+Superhits%21</url>
520
+ <artist>
521
+ <name>Green Day</name>
522
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
523
+ <url>http://www.last.fm/music/Green+Day</url>
524
+ </artist>
525
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8672845.jpg</image>
526
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8672845.jpg</image>
527
+ <image size="large">http://userserve-ak.last.fm/serve/126/8672845.jpg</image>
528
+ </album>
529
+ <album>
530
+ <name>Urban Hymns</name>
531
+ <playcount>8</playcount>
532
+ <tagcount></tagcount>
533
+ <mbid>839a1568-b862-43a7-81e6-a4040496f369</mbid>
534
+ <url>http://www.last.fm/music/The+Verve/Urban+Hymns</url>
535
+ <artist>
536
+ <name>The Verve</name>
537
+ <mbid>d4d17620-fd97-4574-92a8-a2cb7e72ce42</mbid>
538
+ <url>http://www.last.fm/music/The+Verve</url>
539
+ </artist>
540
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14233169.jpg</image>
541
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14233169.jpg</image>
542
+ <image size="large">http://userserve-ak.last.fm/serve/126/14233169.jpg</image>
543
+ </album>
544
+ <album>
545
+ <name>Live in Texas</name>
546
+ <playcount>8</playcount>
547
+ <tagcount></tagcount>
548
+ <mbid>52f313e9-fcdd-4bc4-8110-b45affd241e9</mbid>
549
+ <url>http://www.last.fm/music/Linkin+Park/Live+in+Texas</url>
550
+ <artist>
551
+ <name>Linkin Park</name>
552
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
553
+ <url>http://www.last.fm/music/Linkin+Park</url>
554
+ </artist>
555
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8680433.jpg</image>
556
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8680433.jpg</image>
557
+ <image size="large">http://userserve-ak.last.fm/serve/126/8680433.jpg</image>
558
+ </album>
559
+ <album>
560
+ <name>Skin And Bones</name>
561
+ <playcount>8</playcount>
562
+ <tagcount></tagcount>
563
+ <mbid></mbid>
564
+ <url>http://www.last.fm/music/Foo+Fighters/Skin+And+Bones</url>
565
+ <artist>
566
+ <name>Foo Fighters</name>
567
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
568
+ <url>http://www.last.fm/music/Foo+Fighters</url>
569
+ </artist>
570
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23753673.jpg</image>
571
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23753673.jpg</image>
572
+ <image size="large">http://userserve-ak.last.fm/serve/126/23753673.jpg</image>
573
+ </album>
574
+ <album>
575
+ <name>Viel</name>
576
+ <playcount>8</playcount>
577
+ <tagcount></tagcount>
578
+ <mbid>16cfa056-e615-4979-a52f-f76ccd1d4177</mbid>
579
+ <url>http://www.last.fm/music/Die+Fantastischen+Vier/Viel</url>
580
+ <artist>
581
+ <name>Die Fantastischen Vier</name>
582
+ <mbid>7928481f-848e-4551-b658-472c0aaf0c85</mbid>
583
+ <url>http://www.last.fm/music/Die+Fantastischen+Vier</url>
584
+ </artist>
585
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19560765.jpg</image>
586
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19560765.jpg</image>
587
+ <image size="large">http://userserve-ak.last.fm/serve/126/19560765.jpg</image>
588
+ </album>
589
+ <album>
590
+ <name>Wer hätte das gedacht?</name>
591
+ <playcount>8</playcount>
592
+ <tagcount></tagcount>
593
+ <mbid>bd15ccd6-ea95-40b8-8a61-c47fb4d5b30f</mbid>
594
+ <url>http://www.last.fm/music/ASD/Wer+h%C3%A4tte+das+gedacht%3F</url>
595
+ <artist>
596
+ <name>ASD</name>
597
+ <mbid>82ea804c-cbce-46c7-91d5-50ba8b8b32e9</mbid>
598
+ <url>http://www.last.fm/music/ASD</url>
599
+ </artist>
600
+ <image size="small">http://images.amazon.com/images/P/B00008GQTU.03.MZZZZZZZ.jpg</image>
601
+ <image size="medium">http://images.amazon.com/images/P/B00008GQTU.03.MZZZZZZZ.jpg</image>
602
+ <image size="large">http://images.amazon.com/images/P/B00008GQTU.03.MZZZZZZZ.jpg</image>
603
+ </album>
604
+ <album>
605
+ <name>The Dog's....! (disc 1)</name>
606
+ <playcount>8</playcount>
607
+ <tagcount></tagcount>
608
+ <mbid>8d9ee2eb-49dc-4803-9af7-54ee47bdb570</mbid>
609
+ <url>http://www.last.fm/music/Various+Artists/The+Dog%27s....%21+%28disc+1%29</url>
610
+ <artist>
611
+ <name>Various Artists</name>
612
+ <mbid>89ad4ac3-39f7-470e-963a-56509c546377</mbid>
613
+ <url>http://www.last.fm/music/Various+Artists</url>
614
+ </artist>
615
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
616
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
617
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
618
+ </album>
619
+ <album>
620
+ <name>The Great Escape</name>
621
+ <playcount>8</playcount>
622
+ <tagcount></tagcount>
623
+ <mbid>2b781d64-7974-436e-97ee-88e45ec54ec0</mbid>
624
+ <url>http://www.last.fm/music/Blur/The+Great+Escape</url>
625
+ <artist>
626
+ <name>Blur</name>
627
+ <mbid>ba853904-ae25-4ebb-89d6-c44cfbd71bd2</mbid>
628
+ <url>http://www.last.fm/music/Blur</url>
629
+ </artist>
630
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14401319.jpg</image>
631
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14401319.jpg</image>
632
+ <image size="large">http://userserve-ak.last.fm/serve/126/14401319.jpg</image>
633
+ </album>
634
+ <album>
635
+ <name>Q: Live From Glastonbury</name>
636
+ <playcount>8</playcount>
637
+ <tagcount></tagcount>
638
+ <mbid></mbid>
639
+ <url>http://www.last.fm/music/The+Killers/Q%3A+Live+From+Glastonbury</url>
640
+ <artist>
641
+ <name>The Killers</name>
642
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
643
+ <url>http://www.last.fm/music/The+Killers</url>
644
+ </artist>
645
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
646
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
647
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
648
+ </album>
649
+ <album>
650
+ <name>Am Ende der Sonne</name>
651
+ <playcount>8</playcount>
652
+ <tagcount></tagcount>
653
+ <mbid>ee2ded2b-e706-4e20-9ae6-98bba2e4e291</mbid>
654
+ <url>http://www.last.fm/music/Farin+Urlaub/Am+Ende+der+Sonne</url>
655
+ <artist>
656
+ <name>Farin Urlaub</name>
657
+ <mbid>23620454-4dca-45b7-8496-066e94d99826</mbid>
658
+ <url>http://www.last.fm/music/Farin+Urlaub</url>
659
+ </artist>
660
+ <image size="small">http://images.amazon.com/images/P/B0007QCGFE.01.MZZZZZZZ.jpg</image>
661
+ <image size="medium">http://images.amazon.com/images/P/B0007QCGFE.01.MZZZZZZZ.jpg</image>
662
+ <image size="large">http://images.amazon.com/images/P/B0007QCGFE.01.MZZZZZZZ.jpg</image>
663
+ </album>
664
+ <album>
665
+ <name>What A Waster (Single)</name>
666
+ <playcount>8</playcount>
667
+ <tagcount></tagcount>
668
+ <mbid></mbid>
669
+ <url>http://www.last.fm/music/The+Libertines/What+A+Waster+%28Single%29</url>
670
+ <artist>
671
+ <name>The Libertines</name>
672
+ <mbid>82b304c0-7da4-45d3-896a-0767c7ae1141</mbid>
673
+ <url>http://www.last.fm/music/The+Libertines</url>
674
+ </artist>
675
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5855990.png</image>
676
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5855990.png</image>
677
+ <image size="large">http://userserve-ak.last.fm/serve/126/5855990.png</image>
678
+ </album>
679
+ <album>
680
+ <name>Barely Legal</name>
681
+ <playcount>8</playcount>
682
+ <tagcount></tagcount>
683
+ <mbid>1644f5b6-e1e3-4555-8492-22a8c7091810</mbid>
684
+ <url>http://www.last.fm/music/The+Hives/Barely+Legal</url>
685
+ <artist>
686
+ <name>The Hives</name>
687
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
688
+ <url>http://www.last.fm/music/The+Hives</url>
689
+ </artist>
690
+ <image size="small">http://userserve-ak.last.fm/serve/34s/26502921.png</image>
691
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/26502921.png</image>
692
+ <image size="large">http://userserve-ak.last.fm/serve/126/26502921.png</image>
693
+ </album>
694
+ <album>
695
+ <name>In Your Honor (disc 2)</name>
696
+ <playcount>8</playcount>
697
+ <tagcount></tagcount>
698
+ <mbid>5374d722-5b21-484f-a768-17c13b1bc5ce</mbid>
699
+ <url>http://www.last.fm/music/Foo+Fighters/In+Your+Honor+%28disc+2%29</url>
700
+ <artist>
701
+ <name>Foo Fighters</name>
702
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
703
+ <url>http://www.last.fm/music/Foo+Fighters</url>
704
+ </artist>
705
+ <image size="small">http://images.amazon.com/images/P/B0009HLDFU.01.MZZZZZZZ.jpg</image>
706
+ <image size="medium">http://images.amazon.com/images/P/B0009HLDFU.01.MZZZZZZZ.jpg</image>
707
+ <image size="large">http://images.amazon.com/images/P/B0009HLDFU.01.MZZZZZZZ.jpg</image>
708
+ </album>
709
+ <album>
710
+ <name>Livealbum Of Death</name>
711
+ <playcount>7</playcount>
712
+ <tagcount></tagcount>
713
+ <mbid></mbid>
714
+ <url>http://www.last.fm/music/Farin+Urlaub+Racing+Team/Livealbum+Of+Death</url>
715
+ <artist>
716
+ <name>Farin Urlaub Racing Team</name>
717
+ <mbid>57f81560-caef-4059-95ae-f396afe0b6f3</mbid>
718
+ <url>http://www.last.fm/music/+noredirect/Farin+Urlaub+Racing+Team</url>
719
+ </artist>
720
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
721
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
722
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
723
+ </album>
724
+ <album>
725
+ <name>Music for the Jilted Generation</name>
726
+ <playcount>7</playcount>
727
+ <tagcount></tagcount>
728
+ <mbid>4cfca905-7d38-4bc7-881f-6202a0394786</mbid>
729
+ <url>http://www.last.fm/music/The+Prodigy/Music+for+the+Jilted+Generation</url>
730
+ <artist>
731
+ <name>The Prodigy</name>
732
+ <mbid>4a4ee089-93b1-4470-af9a-6ff575d32704</mbid>
733
+ <url>http://www.last.fm/music/The+Prodigy</url>
734
+ </artist>
735
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12622007.jpg</image>
736
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12622007.jpg</image>
737
+ <image size="large">http://userserve-ak.last.fm/serve/126/12622007.jpg</image>
738
+ </album>
739
+ <album>
740
+ <name>Yours Truly</name>
741
+ <playcount>7</playcount>
742
+ <tagcount></tagcount>
743
+ <mbid>70a944d6-ec5d-477c-bde9-88209f6d5792</mbid>
744
+ <url>http://www.last.fm/music/Sick+of+It+All/Yours+Truly</url>
745
+ <artist>
746
+ <name>Sick of It All</name>
747
+ <mbid>e204ed91-3684-4561-b29b-d0b53f8459a7</mbid>
748
+ <url>http://www.last.fm/music/Sick+of+It+All</url>
749
+ </artist>
750
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19879251.jpg</image>
751
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19879251.jpg</image>
752
+ <image size="large">http://userserve-ak.last.fm/serve/126/19879251.jpg</image>
753
+ </album>
754
+ </albums></lfm>