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,754 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <albums user="xhochy" page="5" perPage="50" totalPages="8">
4
+ <album>
5
+ <name>(What's the Story) Morning Glory?</name>
6
+ <playcount>3</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid>2189b85b-5424-474e-bb57-6dea20611250</mbid>
9
+ <url>http://www.last.fm/music/Oasis/%28What%27s+the+Story%29+Morning+Glory%3F</url>
10
+ <artist>
11
+ <name>Oasis</name>
12
+ <mbid>39ab1aed-75e0-4140-bd47-540276886b60</mbid>
13
+ <url>http://www.last.fm/music/Oasis</url>
14
+ </artist>
15
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23722513.jpg</image>
16
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23722513.jpg</image>
17
+ <image size="large">http://userserve-ak.last.fm/serve/126/23722513.jpg</image>
18
+ </album>
19
+ <album>
20
+ <name>Big Shiny Tunes 9</name>
21
+ <playcount>3</playcount>
22
+ <tagcount></tagcount>
23
+ <mbid>14ba65f8-54e0-48d4-ac60-2f105f5fd5dd</mbid>
24
+ <url>http://www.last.fm/music/Various+Artists/Big+Shiny+Tunes+9</url>
25
+ <artist>
26
+ <name>Various Artists</name>
27
+ <mbid>89ad4ac3-39f7-470e-963a-56509c546377</mbid>
28
+ <url>http://www.last.fm/music/Various+Artists</url>
29
+ </artist>
30
+ <image size="small">http://userserve-ak.last.fm/serve/34s/6039819.jpg</image>
31
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/6039819.jpg</image>
32
+ <image size="large">http://userserve-ak.last.fm/serve/126/6039819.jpg</image>
33
+ </album>
34
+ <album>
35
+ <name>From Under the Cork Tree</name>
36
+ <playcount>3</playcount>
37
+ <tagcount></tagcount>
38
+ <mbid>97a6dd79-4a19-427c-927c-8ab63f99b0f0</mbid>
39
+ <url>http://www.last.fm/music/Fall+Out+Boy/From+Under+the+Cork+Tree</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/8673657.jpg</image>
46
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8673657.jpg</image>
47
+ <image size="large">http://userserve-ak.last.fm/serve/126/8673657.jpg</image>
48
+ </album>
49
+ <album>
50
+ <name>Nick &amp; Norah's Infinite Playlist (OST)</name>
51
+ <playcount>3</playcount>
52
+ <tagcount></tagcount>
53
+ <mbid></mbid>
54
+ <url>http://www.last.fm/music/Paul+Tiernan/Nick%2B%2526%2BNorah%2527s%2BInfinite%2BPlaylist%2B%2528OST%2529</url>
55
+ <artist>
56
+ <name>Paul Tiernan</name>
57
+ <mbid>2bf8fb93-a9ed-4105-9706-2d7b9f4cfd74</mbid>
58
+ <url>http://www.last.fm/music/Paul+Tiernan</url>
59
+ </artist>
60
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
61
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
62
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
63
+ </album>
64
+ <album>
65
+ <name>Colour It In</name>
66
+ <playcount>3</playcount>
67
+ <tagcount></tagcount>
68
+ <mbid></mbid>
69
+ <url>http://www.last.fm/music/The+Maccabees/Colour+It+In</url>
70
+ <artist>
71
+ <name>The Maccabees</name>
72
+ <mbid>83b86967-6b1a-4ca8-9cf0-c7cfe047ef3f</mbid>
73
+ <url>http://www.last.fm/music/The+Maccabees</url>
74
+ </artist>
75
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10284487.jpg</image>
76
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10284487.jpg</image>
77
+ <image size="large">http://userserve-ak.last.fm/serve/126/10284487.jpg</image>
78
+ </album>
79
+ <album>
80
+ <name>Play</name>
81
+ <playcount>3</playcount>
82
+ <tagcount></tagcount>
83
+ <mbid>679841df-599d-402f-9f89-0d0bb6e94368</mbid>
84
+ <url>http://www.last.fm/music/Moby/Play</url>
85
+ <artist>
86
+ <name>Moby</name>
87
+ <mbid>8970d868-0723-483b-a75b-51088913d3d4</mbid>
88
+ <url>http://www.last.fm/music/Moby</url>
89
+ </artist>
90
+ <image size="small">http://images.amazon.com/images/P/B00000J6AG.01.THUMBZZZ.jpg</image>
91
+ <image size="medium">http://images.amazon.com/images/P/B00000J6AG.01.MZZZZZZZ.jpg</image>
92
+ <image size="large">http://images.amazon.com/images/P/B00000J6AG.01.LZZZZZZZ.jpg</image>
93
+ </album>
94
+ <album>
95
+ <name>Scouting For Girls</name>
96
+ <playcount>3</playcount>
97
+ <tagcount></tagcount>
98
+ <mbid></mbid>
99
+ <url>http://www.last.fm/music/Scouting+for+Girls/Scouting+For+Girls</url>
100
+ <artist>
101
+ <name>Scouting for Girls</name>
102
+ <mbid></mbid>
103
+ <url>http://www.last.fm/music/Scouting+for+Girls</url>
104
+ </artist>
105
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23757539.jpg</image>
106
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23757539.jpg</image>
107
+ <image size="large">http://userserve-ak.last.fm/serve/126/23757539.jpg</image>
108
+ </album>
109
+ <album>
110
+ <name>2002-12-18: Peel Christmas Session</name>
111
+ <playcount>3</playcount>
112
+ <tagcount></tagcount>
113
+ <mbid></mbid>
114
+ <url>http://www.last.fm/music/Belle+and+Sebastian/2002-12-18%3A+Peel+Christmas+Session</url>
115
+ <artist>
116
+ <name>Belle and Sebastian</name>
117
+ <mbid>e5c7b94f-e264-473c-bb0f-37c85d4d5c70</mbid>
118
+ <url>http://www.last.fm/music/Belle+and+Sebastian</url>
119
+ </artist>
120
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
121
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
122
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
123
+ </album>
124
+ <album>
125
+ <name>Pocketrock</name>
126
+ <playcount>3</playcount>
127
+ <tagcount></tagcount>
128
+ <mbid>fd2f82e1-b45c-4858-bfc9-b5f194cd4575</mbid>
129
+ <url>http://www.last.fm/music/Donots/Pocketrock</url>
130
+ <artist>
131
+ <name>Donots</name>
132
+ <mbid>06a4a555-1b69-4175-83df-2528a8e5af05</mbid>
133
+ <url>http://www.last.fm/music/Donots</url>
134
+ </artist>
135
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11842759.jpg</image>
136
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11842759.jpg</image>
137
+ <image size="large">http://userserve-ak.last.fm/serve/126/11842759.jpg</image>
138
+ </album>
139
+ <album>
140
+ <name>Primitive</name>
141
+ <playcount>3</playcount>
142
+ <tagcount></tagcount>
143
+ <mbid>17bb2226-31fa-4724-9940-8d85afa8f20c</mbid>
144
+ <url>http://www.last.fm/music/Soulfly/Primitive</url>
145
+ <artist>
146
+ <name>Soulfly</name>
147
+ <mbid>832a43c7-aa7d-439b-a6b4-4f1afa671c24</mbid>
148
+ <url>http://www.last.fm/music/Soulfly</url>
149
+ </artist>
150
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8600543.jpg</image>
151
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8600543.jpg</image>
152
+ <image size="large">http://userserve-ak.last.fm/serve/126/8600543.jpg</image>
153
+ </album>
154
+ <album>
155
+ <name>See You on the Other Side</name>
156
+ <playcount>3</playcount>
157
+ <tagcount></tagcount>
158
+ <mbid>cc3ebe4a-f596-4f74-b684-69054a0fa453</mbid>
159
+ <url>http://www.last.fm/music/Korn/See+You+on+the+Other+Side</url>
160
+ <artist>
161
+ <name>Korn</name>
162
+ <mbid>ac865b2e-bba8-4f5a-8756-dd40d5e39f46</mbid>
163
+ <url>http://www.last.fm/music/+noredirect/Korn</url>
164
+ </artist>
165
+ <image size="small">http://images.amazon.com/images/P/B000BMSTMS.01.MZZZZZZZ.jpg</image>
166
+ <image size="medium">http://images.amazon.com/images/P/B000BMSTMS.01.MZZZZZZZ.jpg</image>
167
+ <image size="large">http://images.amazon.com/images/P/B000BMSTMS.01.MZZZZZZZ.jpg</image>
168
+ </album>
169
+ <album>
170
+ <name>Never Mind</name>
171
+ <playcount>3</playcount>
172
+ <tagcount></tagcount>
173
+ <mbid></mbid>
174
+ <url>http://www.last.fm/music/Nirvana/Never+Mind</url>
175
+ <artist>
176
+ <name>Nirvana</name>
177
+ <mbid>5b11f4ce-a62d-471e-81fc-a69a8278c7da</mbid>
178
+ <url>http://www.last.fm/music/Nirvana</url>
179
+ </artist>
180
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11034347.jpg</image>
181
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11034347.jpg</image>
182
+ <image size="large">http://userserve-ak.last.fm/serve/126/11034347.jpg</image>
183
+ </album>
184
+ <album>
185
+ <name>Better Living Through Chemistry</name>
186
+ <playcount>3</playcount>
187
+ <tagcount></tagcount>
188
+ <mbid>aca0100e-8aee-4d7c-b6cd-a34d05977237</mbid>
189
+ <url>http://www.last.fm/music/Fatboy+Slim/Better+Living+Through+Chemistry</url>
190
+ <artist>
191
+ <name>Fatboy Slim</name>
192
+ <mbid>34c63966-445c-4613-afe1-4f0e1e53ae9a</mbid>
193
+ <url>http://www.last.fm/music/Fatboy+Slim</url>
194
+ </artist>
195
+ <image size="small">http://userserve-ak.last.fm/serve/34s/16665891.jpg</image>
196
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/16665891.jpg</image>
197
+ <image size="large">http://userserve-ak.last.fm/serve/126/16665891.jpg</image>
198
+ </album>
199
+ <album>
200
+ <name>Q Magazine - Classic Glastonbury Live</name>
201
+ <playcount>3</playcount>
202
+ <tagcount></tagcount>
203
+ <mbid></mbid>
204
+ <url>http://www.last.fm/music/Bloc+Party/Q+Magazine+-+Classic+Glastonbury+Live</url>
205
+ <artist>
206
+ <name>Bloc Party</name>
207
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
208
+ <url>http://www.last.fm/music/Bloc+Party</url>
209
+ </artist>
210
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
211
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
212
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
213
+ </album>
214
+ <album>
215
+ <name>Started A Fire</name>
216
+ <playcount>3</playcount>
217
+ <tagcount></tagcount>
218
+ <mbid></mbid>
219
+ <url>http://www.last.fm/music/One+Night+Only/Started+A+Fire</url>
220
+ <artist>
221
+ <name>One Night Only</name>
222
+ <mbid></mbid>
223
+ <url>http://www.last.fm/music/One+Night+Only</url>
224
+ </artist>
225
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10306013.jpg</image>
226
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10306013.jpg</image>
227
+ <image size="large">http://userserve-ak.last.fm/serve/126/10306013.jpg</image>
228
+ </album>
229
+ <album>
230
+ <name>A Hangover You Don't Deserve</name>
231
+ <playcount>3</playcount>
232
+ <tagcount></tagcount>
233
+ <mbid>db3e4fd3-29d2-42aa-9794-83acfee1a83f</mbid>
234
+ <url>http://www.last.fm/music/Bowling+for+Soup/A+Hangover+You+Don%27t+Deserve</url>
235
+ <artist>
236
+ <name>Bowling for Soup</name>
237
+ <mbid>bcb95908-5c6e-453a-97fc-d69003d250ff</mbid>
238
+ <url>http://www.last.fm/music/Bowling+for+Soup</url>
239
+ </artist>
240
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15937155.jpg</image>
241
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15937155.jpg</image>
242
+ <image size="large">http://userserve-ak.last.fm/serve/126/15937155.jpg</image>
243
+ </album>
244
+ <album>
245
+ <name>Once Upon A Time In The West</name>
246
+ <playcount>3</playcount>
247
+ <tagcount></tagcount>
248
+ <mbid></mbid>
249
+ <url>http://www.last.fm/music/Hard-Fi/Once+Upon+A+Time+In+The+West</url>
250
+ <artist>
251
+ <name>Hard-Fi</name>
252
+ <mbid>46d18823-6a15-49ee-8376-c5f7a49530a6</mbid>
253
+ <url>http://www.last.fm/music/Hard-Fi</url>
254
+ </artist>
255
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9934353.jpg</image>
256
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9934353.jpg</image>
257
+ <image size="large">http://userserve-ak.last.fm/serve/126/9934353.jpg</image>
258
+ </album>
259
+ <album>
260
+ <name>Once</name>
261
+ <playcount>3</playcount>
262
+ <tagcount></tagcount>
263
+ <mbid>d8b43e13-a1be-47c0-8cea-cb42ac9fb5e5</mbid>
264
+ <url>http://www.last.fm/music/Nightwish/Once</url>
265
+ <artist>
266
+ <name>Nightwish</name>
267
+ <mbid>00a9f935-ba93-4fc8-a33a-993abe9c936b</mbid>
268
+ <url>http://www.last.fm/music/Nightwish</url>
269
+ </artist>
270
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8673353.jpg</image>
271
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8673353.jpg</image>
272
+ <image size="large">http://userserve-ak.last.fm/serve/126/8673353.jpg</image>
273
+ </album>
274
+ <album>
275
+ <name>Shotter's Nation</name>
276
+ <playcount>3</playcount>
277
+ <tagcount></tagcount>
278
+ <mbid></mbid>
279
+ <url>http://www.last.fm/music/Babyshambles/Shotter%27s+Nation</url>
280
+ <artist>
281
+ <name>Babyshambles</name>
282
+ <mbid>8e1e03fe-ebbc-467a-b541-857144db10fb</mbid>
283
+ <url>http://www.last.fm/music/Babyshambles</url>
284
+ </artist>
285
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14070721.jpg</image>
286
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14070721.jpg</image>
287
+ <image size="large">http://userserve-ak.last.fm/serve/126/14070721.jpg</image>
288
+ </album>
289
+ <album>
290
+ <name>How Do You Call It?</name>
291
+ <playcount>3</playcount>
292
+ <tagcount></tagcount>
293
+ <mbid>a0671f3a-4018-469a-9ae9-d9618cfb5f3c</mbid>
294
+ <url>http://www.last.fm/music/Patrice/How+Do+You+Call+It%3F</url>
295
+ <artist>
296
+ <name>Patrice</name>
297
+ <mbid>826dc91a-6dd3-4279-ae8d-bb710db646bb</mbid>
298
+ <url>http://www.last.fm/music/Patrice</url>
299
+ </artist>
300
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11841565.jpg</image>
301
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11841565.jpg</image>
302
+ <image size="large">http://userserve-ak.last.fm/serve/126/11841565.jpg</image>
303
+ </album>
304
+ <album>
305
+ <name>Macht doch was ihr wollt - Ich geh' jetzt!</name>
306
+ <playcount>3</playcount>
307
+ <tagcount></tagcount>
308
+ <mbid>7c5216aa-1782-4f0b-87bf-08b8658cdedd</mbid>
309
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/Macht+doch+was+ihr+wollt+-+Ich+geh%27+jetzt%21</url>
310
+ <artist>
311
+ <name>Sportfreunde Stiller</name>
312
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
313
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
314
+ </artist>
315
+ <image size="small">http://images.amazon.com/images/P/B00005HZ05.03.MZZZZZZZ.jpg</image>
316
+ <image size="medium">http://images.amazon.com/images/P/B00005HZ05.03.MZZZZZZZ.jpg</image>
317
+ <image size="large">http://images.amazon.com/images/P/B00005HZ05.03.MZZZZZZZ.jpg</image>
318
+ </album>
319
+ <album>
320
+ <name>Weezer</name>
321
+ <playcount>2</playcount>
322
+ <tagcount></tagcount>
323
+ <mbid>ef0db119-513d-4343-b491-3213f0d3e1cf</mbid>
324
+ <url>http://www.last.fm/music/Weezer/Weezer</url>
325
+ <artist>
326
+ <name>Weezer</name>
327
+ <mbid>6fe07aa5-fec0-4eca-a456-f29bff451b04</mbid>
328
+ <url>http://www.last.fm/music/Weezer</url>
329
+ </artist>
330
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8593525.jpg</image>
331
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8593525.jpg</image>
332
+ <image size="large">http://userserve-ak.last.fm/serve/126/8593525.jpg</image>
333
+ </album>
334
+ <album>
335
+ <name>Spiders</name>
336
+ <playcount>2</playcount>
337
+ <tagcount></tagcount>
338
+ <mbid>49b6a250-a680-45cb-b3b0-15d9e130a620</mbid>
339
+ <url>http://www.last.fm/music/Space/Spiders</url>
340
+ <artist>
341
+ <name>Space</name>
342
+ <mbid>63134699-ca51-464b-816d-3f32efd4a093</mbid>
343
+ <url>http://www.last.fm/music/Space</url>
344
+ </artist>
345
+ <image size="small">http://images.amazon.com/images/P/B000005AYO.01.MZZZZZZZ.jpg</image>
346
+ <image size="medium">http://images.amazon.com/images/P/B000005AYO.01.MZZZZZZZ.jpg</image>
347
+ <image size="large">http://images.amazon.com/images/P/B000005AYO.01.MZZZZZZZ.jpg</image>
348
+ </album>
349
+ <album>
350
+ <name>The Fat of the Land</name>
351
+ <playcount>2</playcount>
352
+ <tagcount></tagcount>
353
+ <mbid>2892b1e6-59d1-48c0-8295-24c663d9c573</mbid>
354
+ <url>http://www.last.fm/music/The+Prodigy/The+Fat+of+the+Land</url>
355
+ <artist>
356
+ <name>The Prodigy</name>
357
+ <mbid>4a4ee089-93b1-4470-af9a-6ff575d32704</mbid>
358
+ <url>http://www.last.fm/music/The+Prodigy</url>
359
+ </artist>
360
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8596933.jpg</image>
361
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8596933.jpg</image>
362
+ <image size="large">http://userserve-ak.last.fm/serve/126/8596933.jpg</image>
363
+ </album>
364
+ <album>
365
+ <name>Our Earthly Pleasures</name>
366
+ <playcount>2</playcount>
367
+ <tagcount></tagcount>
368
+ <mbid></mbid>
369
+ <url>http://www.last.fm/music/Maximo+Park/Our+Earthly+Pleasures</url>
370
+ <artist>
371
+ <name>Maximo Park</name>
372
+ <mbid></mbid>
373
+ <url>http://www.last.fm/music/+noredirect/Maximo+Park</url>
374
+ </artist>
375
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14278517.jpg</image>
376
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14278517.jpg</image>
377
+ <image size="large">http://userserve-ak.last.fm/serve/126/14278517.jpg</image>
378
+ </album>
379
+ <album>
380
+ <name>Back to Bedlam</name>
381
+ <playcount>2</playcount>
382
+ <tagcount></tagcount>
383
+ <mbid>54dca467-331b-4df9-9ff0-97a9d970cfd2</mbid>
384
+ <url>http://www.last.fm/music/James+Blunt/Back+to+Bedlam</url>
385
+ <artist>
386
+ <name>James Blunt</name>
387
+ <mbid>ebee61b4-bbdd-4087-9bcb-d5aa099088ec</mbid>
388
+ <url>http://www.last.fm/music/James+Blunt</url>
389
+ </artist>
390
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8672921.jpg</image>
391
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8672921.jpg</image>
392
+ <image size="large">http://userserve-ak.last.fm/serve/126/8672921.jpg</image>
393
+ </album>
394
+ <album>
395
+ <name>I Turn to You</name>
396
+ <playcount>2</playcount>
397
+ <tagcount></tagcount>
398
+ <mbid>45811d13-be75-48c6-b525-75b6f2e4dacb</mbid>
399
+ <url>http://www.last.fm/music/Melanie+C/I+Turn+to+You</url>
400
+ <artist>
401
+ <name>Melanie C</name>
402
+ <mbid>25b509ef-48ad-461b-a0bc-94cdddb8c919</mbid>
403
+ <url>http://www.last.fm/music/Melanie+C</url>
404
+ </artist>
405
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15154015.jpg</image>
406
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15154015.jpg</image>
407
+ <image size="large">http://userserve-ak.last.fm/serve/126/15154015.jpg</image>
408
+ </album>
409
+ <album>
410
+ <name>Crawling</name>
411
+ <playcount>2</playcount>
412
+ <tagcount></tagcount>
413
+ <mbid>410fb3cf-d7f1-46e4-b580-2be212d80a78</mbid>
414
+ <url>http://www.last.fm/music/Linkin+Park/Crawling</url>
415
+ <artist>
416
+ <name>Linkin Park</name>
417
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
418
+ <url>http://www.last.fm/music/Linkin+Park</url>
419
+ </artist>
420
+ <image size="small">http://images.amazon.com/images/P/B00005ATGY.01._SCMZZZZZZZ_.jpg</image>
421
+ <image size="medium">http://images.amazon.com/images/P/B00005ATGY.01._SCMZZZZZZZ_.jpg</image>
422
+ <image size="large">http://images.amazon.com/images/P/B00005ATGY.01._SCMZZZZZZZ_.jpg</image>
423
+ </album>
424
+ <album>
425
+ <name>The Odd Couple</name>
426
+ <playcount>2</playcount>
427
+ <tagcount></tagcount>
428
+ <mbid></mbid>
429
+ <url>http://www.last.fm/music/Gnarls+Barkley/The+Odd+Couple</url>
430
+ <artist>
431
+ <name>Gnarls Barkley</name>
432
+ <mbid>a47c3aa2-7d87-475c-a2c7-1e2047dafb09</mbid>
433
+ <url>http://www.last.fm/music/Gnarls+Barkley</url>
434
+ </artist>
435
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4912138.jpg</image>
436
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4912138.jpg</image>
437
+ <image size="large">http://userserve-ak.last.fm/serve/126/4912138.jpg</image>
438
+ </album>
439
+ <album>
440
+ <name>DTTR: What We All Want</name>
441
+ <playcount>2</playcount>
442
+ <tagcount></tagcount>
443
+ <mbid></mbid>
444
+ <url>http://www.last.fm/music/Various+Artists/DTTR%3A+What+We+All+Want</url>
445
+ <artist>
446
+ <name>Various Artists</name>
447
+ <mbid>89ad4ac3-39f7-470e-963a-56509c546377</mbid>
448
+ <url>http://www.last.fm/music/Various+Artists</url>
449
+ </artist>
450
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15225423.jpg</image>
451
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15225423.jpg</image>
452
+ <image size="large">http://userserve-ak.last.fm/serve/126/15225423.jpg</image>
453
+ </album>
454
+ <album>
455
+ <name>Q Magazine - Classic Glastonbury Live</name>
456
+ <playcount>2</playcount>
457
+ <tagcount></tagcount>
458
+ <mbid></mbid>
459
+ <url>http://www.last.fm/music/Zero+7/Q+Magazine+-+Classic+Glastonbury+Live</url>
460
+ <artist>
461
+ <name>Zero 7</name>
462
+ <mbid>c23b637b-97c6-41eb-8ef6-6c724efc80a8</mbid>
463
+ <url>http://www.last.fm/music/Zero+7</url>
464
+ </artist>
465
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
466
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
467
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
468
+ </album>
469
+ <album>
470
+ <name>Eight Legs</name>
471
+ <playcount>2</playcount>
472
+ <tagcount></tagcount>
473
+ <mbid></mbid>
474
+ <url>http://www.last.fm/music/Eight+Legs/Eight+Legs</url>
475
+ <artist>
476
+ <name>Eight Legs</name>
477
+ <mbid></mbid>
478
+ <url>http://www.last.fm/music/Eight+Legs</url>
479
+ </artist>
480
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11249939.jpg</image>
481
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11249939.jpg</image>
482
+ <image size="large">http://userserve-ak.last.fm/serve/126/11249939.jpg</image>
483
+ </album>
484
+ <album>
485
+ <name>null</name>
486
+ <playcount>2</playcount>
487
+ <tagcount></tagcount>
488
+ <mbid></mbid>
489
+ <url>http://www.last.fm/music/We+Are+Scientists/null</url>
490
+ <artist>
491
+ <name>We Are Scientists</name>
492
+ <mbid>9386b36e-87f3-4716-a219-79a07a4e29cc</mbid>
493
+ <url>http://www.last.fm/music/We+Are+Scientists</url>
494
+ </artist>
495
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
496
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
497
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
498
+ </album>
499
+ <album>
500
+ <name>Livealbum of Death</name>
501
+ <playcount>2</playcount>
502
+ <tagcount></tagcount>
503
+ <mbid></mbid>
504
+ <url>http://www.last.fm/music/Farin+Urlaub/Livealbum+of+Death</url>
505
+ <artist>
506
+ <name>Farin Urlaub</name>
507
+ <mbid>23620454-4dca-45b7-8496-066e94d99826</mbid>
508
+ <url>http://www.last.fm/music/Farin+Urlaub</url>
509
+ </artist>
510
+ <image size="small">http://images.amazon.com/images/P/B000C1XHX4.01.MZZZZZZZ.jpg</image>
511
+ <image size="medium">http://images.amazon.com/images/P/B000C1XHX4.01.MZZZZZZZ.jpg</image>
512
+ <image size="large">http://images.amazon.com/images/P/B000C1XHX4.01.MZZZZZZZ.jpg</image>
513
+ </album>
514
+ <album>
515
+ <name>The Colour of Snow</name>
516
+ <playcount>2</playcount>
517
+ <tagcount></tagcount>
518
+ <mbid></mbid>
519
+ <url>http://www.last.fm/music/Polarkreis+18/The+Colour+of+Snow</url>
520
+ <artist>
521
+ <name>Polarkreis 18</name>
522
+ <mbid>90b18d97-718b-4a95-982d-b14019d084c0</mbid>
523
+ <url>http://www.last.fm/music/Polarkreis+18</url>
524
+ </artist>
525
+ <image size="small">http://userserve-ak.last.fm/serve/34s/24020355.jpg</image>
526
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/24020355.jpg</image>
527
+ <image size="large">http://userserve-ak.last.fm/serve/126/24020355.jpg</image>
528
+ </album>
529
+ <album>
530
+ <name>Lullabies to Paralyze</name>
531
+ <playcount>2</playcount>
532
+ <tagcount></tagcount>
533
+ <mbid>81eda433-132b-428d-9521-29fb46b4e91f</mbid>
534
+ <url>http://www.last.fm/music/Queens+of+the+Stone+Age/Lullabies+to+Paralyze</url>
535
+ <artist>
536
+ <name>Queens of the Stone Age</name>
537
+ <mbid>7dc8f5bd-9d0b-4087-9f73-dc164950bbd8</mbid>
538
+ <url>http://www.last.fm/music/Queens+of+the+Stone+Age</url>
539
+ </artist>
540
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8676257.jpg</image>
541
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8676257.jpg</image>
542
+ <image size="large">http://userserve-ak.last.fm/serve/126/8676257.jpg</image>
543
+ </album>
544
+ <album>
545
+ <name>Weezer (The Red Album)</name>
546
+ <playcount>2</playcount>
547
+ <tagcount></tagcount>
548
+ <mbid></mbid>
549
+ <url>http://www.last.fm/music/Weezer/Weezer+%28The+Red+Album%29</url>
550
+ <artist>
551
+ <name>Weezer</name>
552
+ <mbid>6fe07aa5-fec0-4eca-a456-f29bff451b04</mbid>
553
+ <url>http://www.last.fm/music/Weezer</url>
554
+ </artist>
555
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23207423.jpg</image>
556
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23207423.jpg</image>
557
+ <image size="large">http://userserve-ak.last.fm/serve/126/23207423.jpg</image>
558
+ </album>
559
+ <album>
560
+ <name>New Dubby Conquerors</name>
561
+ <playcount>2</playcount>
562
+ <tagcount></tagcount>
563
+ <mbid>6f889e73-89d1-43f3-8de9-693e0f4cb303</mbid>
564
+ <url>http://www.last.fm/music/Seeed/New+Dubby+Conquerors</url>
565
+ <artist>
566
+ <name>Seeed</name>
567
+ <mbid>49c43c49-328d-4b14-8a1d-be99cafaec14</mbid>
568
+ <url>http://www.last.fm/music/Seeed</url>
569
+ </artist>
570
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8671531.jpg</image>
571
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8671531.jpg</image>
572
+ <image size="large">http://userserve-ak.last.fm/serve/126/8671531.jpg</image>
573
+ </album>
574
+ <album>
575
+ <name>Box of Secrets</name>
576
+ <playcount>2</playcount>
577
+ <tagcount></tagcount>
578
+ <mbid></mbid>
579
+ <url>http://www.last.fm/music/Blood+Red+Shoes/Box+of+Secrets</url>
580
+ <artist>
581
+ <name>Blood Red Shoes</name>
582
+ <mbid>cd830a8f-89d2-4e96-96cb-7a497e51d437</mbid>
583
+ <url>http://www.last.fm/music/Blood+Red+Shoes</url>
584
+ </artist>
585
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5506207.jpg</image>
586
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5506207.jpg</image>
587
+ <image size="large">http://userserve-ak.last.fm/serve/126/5506207.jpg</image>
588
+ </album>
589
+ <album>
590
+ <name>Q: Live From Glastonbury</name>
591
+ <playcount>2</playcount>
592
+ <tagcount></tagcount>
593
+ <mbid></mbid>
594
+ <url>http://www.last.fm/music/Stereophonics/Q%3A+Live+From+Glastonbury</url>
595
+ <artist>
596
+ <name>Stereophonics</name>
597
+ <mbid>0bfba3d3-6a04-4779-bb0a-df07df5b0558</mbid>
598
+ <url>http://www.last.fm/music/Stereophonics</url>
599
+ </artist>
600
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
601
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
602
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
603
+ </album>
604
+ <album>
605
+ <name>Q: Live From Glastonbury</name>
606
+ <playcount>2</playcount>
607
+ <tagcount></tagcount>
608
+ <mbid></mbid>
609
+ <url>http://www.last.fm/music/Mercury+Rev/Q%3A+Live+From+Glastonbury</url>
610
+ <artist>
611
+ <name>Mercury Rev</name>
612
+ <mbid>7b1cf87e-c54f-4abc-893d-90245a31900d</mbid>
613
+ <url>http://www.last.fm/music/Mercury+Rev</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>Experience</name>
621
+ <playcount>2</playcount>
622
+ <tagcount></tagcount>
623
+ <mbid>17e99125-a087-4e5d-9485-b7cbb41b4ce2</mbid>
624
+ <url>http://www.last.fm/music/The+Prodigy/Experience</url>
625
+ <artist>
626
+ <name>The Prodigy</name>
627
+ <mbid>4a4ee089-93b1-4470-af9a-6ff575d32704</mbid>
628
+ <url>http://www.last.fm/music/The+Prodigy</url>
629
+ </artist>
630
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12622005.jpg</image>
631
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12622005.jpg</image>
632
+ <image size="large">http://userserve-ak.last.fm/serve/126/12622005.jpg</image>
633
+ </album>
634
+ <album>
635
+ <name>Orange County</name>
636
+ <playcount>2</playcount>
637
+ <tagcount></tagcount>
638
+ <mbid>5baebcbc-f0e7-4df0-b123-9d922e003e98</mbid>
639
+ <url>http://www.last.fm/music/Various+Artists/Orange+County</url>
640
+ <artist>
641
+ <name>Various Artists</name>
642
+ <mbid>89ad4ac3-39f7-470e-963a-56509c546377</mbid>
643
+ <url>http://www.last.fm/music/Various+Artists</url>
644
+ </artist>
645
+ <image size="small">http://userserve-ak.last.fm/serve/34s/17024915.jpg</image>
646
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/17024915.jpg</image>
647
+ <image size="large">http://userserve-ak.last.fm/serve/126/17024915.jpg</image>
648
+ </album>
649
+ <album>
650
+ <name>You've Come a Long Way, Baby</name>
651
+ <playcount>2</playcount>
652
+ <tagcount></tagcount>
653
+ <mbid>70eeff52-dd05-40bd-9890-7f3e25f5e38d</mbid>
654
+ <url>http://www.last.fm/music/Fatboy+Slim/You%27ve+Come+a+Long+Way%2C+Baby</url>
655
+ <artist>
656
+ <name>Fatboy Slim</name>
657
+ <mbid>34c63966-445c-4613-afe1-4f0e1e53ae9a</mbid>
658
+ <url>http://www.last.fm/music/Fatboy+Slim</url>
659
+ </artist>
660
+ <image size="small">http://userserve-ak.last.fm/serve/34s/16811455.jpg</image>
661
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/16811455.jpg</image>
662
+ <image size="large">http://userserve-ak.last.fm/serve/126/16811455.jpg</image>
663
+ </album>
664
+ <album>
665
+ <name>Fractured Life</name>
666
+ <playcount>2</playcount>
667
+ <tagcount></tagcount>
668
+ <mbid></mbid>
669
+ <url>http://www.last.fm/music/Air+Traffic/Fractured+Life</url>
670
+ <artist>
671
+ <name>Air Traffic</name>
672
+ <mbid>c8fb45c8-b3da-422d-a6db-73ac2ee56f77</mbid>
673
+ <url>http://www.last.fm/music/Air+Traffic</url>
674
+ </artist>
675
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15115781.jpg</image>
676
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15115781.jpg</image>
677
+ <image size="large">http://userserve-ak.last.fm/serve/126/15115781.jpg</image>
678
+ </album>
679
+ <album>
680
+ <name>Push the Button</name>
681
+ <playcount>2</playcount>
682
+ <tagcount></tagcount>
683
+ <mbid>5b8b1184-d392-420a-a4ca-981ffce6cc62</mbid>
684
+ <url>http://www.last.fm/music/The+Chemical+Brothers/Push+the+Button</url>
685
+ <artist>
686
+ <name>The Chemical Brothers</name>
687
+ <mbid>1946a82a-f927-40c2-8235-38d64f50d043</mbid>
688
+ <url>http://www.last.fm/music/The+Chemical+Brothers</url>
689
+ </artist>
690
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14451887.jpg</image>
691
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14451887.jpg</image>
692
+ <image size="large">http://userserve-ak.last.fm/serve/126/14451887.jpg</image>
693
+ </album>
694
+ <album>
695
+ <name>Last But Not Least</name>
696
+ <playcount>2</playcount>
697
+ <tagcount></tagcount>
698
+ <mbid></mbid>
699
+ <url>http://www.last.fm/music/The+Enemy/Last+But+Not+Least</url>
700
+ <artist>
701
+ <name>The Enemy</name>
702
+ <mbid></mbid>
703
+ <url>http://www.last.fm/music/The+Enemy</url>
704
+ </artist>
705
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15605977.jpg</image>
706
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15605977.jpg</image>
707
+ <image size="large">http://userserve-ak.last.fm/serve/126/15605977.jpg</image>
708
+ </album>
709
+ <album>
710
+ <name>Well Well Well</name>
711
+ <playcount>2</playcount>
712
+ <tagcount></tagcount>
713
+ <mbid></mbid>
714
+ <url>http://www.last.fm/music/Milburn/Well+Well+Well</url>
715
+ <artist>
716
+ <name>Milburn</name>
717
+ <mbid>29a2e85c-1b08-4fe9-91a5-662d6e70dfe7</mbid>
718
+ <url>http://www.last.fm/music/Milburn</url>
719
+ </artist>
720
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25441753.jpg</image>
721
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25441753.jpg</image>
722
+ <image size="large">http://userserve-ak.last.fm/serve/126/25441753.jpg</image>
723
+ </album>
724
+ <album>
725
+ <name>SXSW 2008-3-13 @ Rio - BBC</name>
726
+ <playcount>2</playcount>
727
+ <tagcount></tagcount>
728
+ <mbid></mbid>
729
+ <url>http://www.last.fm/music/MGMT/SXSW+2008-3-13+%40+Rio+-+BBC</url>
730
+ <artist>
731
+ <name>MGMT</name>
732
+ <mbid>c485632c-b784-4ee9-8ea1-c5fb365681fc</mbid>
733
+ <url>http://www.last.fm/music/MGMT</url>
734
+ </artist>
735
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
736
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
737
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
738
+ </album>
739
+ <album>
740
+ <name>Women in Technology</name>
741
+ <playcount>2</playcount>
742
+ <tagcount></tagcount>
743
+ <mbid>06cf1467-1631-423a-b680-072225a7cc4f</mbid>
744
+ <url>http://www.last.fm/music/White+Town/Women+in+Technology</url>
745
+ <artist>
746
+ <name>White Town</name>
747
+ <mbid>b9068fde-91c8-48bf-8655-8d74c24ef4c5</mbid>
748
+ <url>http://www.last.fm/music/White+Town</url>
749
+ </artist>
750
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14025717.jpg</image>
751
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14025717.jpg</image>
752
+ <image size="large">http://userserve-ak.last.fm/serve/126/14025717.jpg</image>
753
+ </album>
754
+ </albums></lfm>