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,774 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="19" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>St. Anger</name>
6
+ <playcount>2</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Absolute+Beginner/_/St.+Anger</url>
10
+ <streamable fulltrack="0">0</streamable>
11
+ <artist>
12
+ <name>Absolute Beginner</name>
13
+ <mbid>897db291-e88a-49be-baaa-d12e300d971c</mbid>
14
+ <url>http://www.last.fm/music/Absolute+Beginner</url>
15
+ </artist>
16
+ </track>
17
+ <track>
18
+ <name>Everything Will Be Alright</name>
19
+ <playcount>2</playcount>
20
+ <tagcount></tagcount>
21
+ <mbid></mbid>
22
+ <url>http://www.last.fm/music/The+Killers/_/Everything+Will+Be+Alright</url>
23
+ <streamable fulltrack="0">0</streamable>
24
+ <artist>
25
+ <name>The Killers</name>
26
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
27
+ <url>http://www.last.fm/music/The+Killers</url>
28
+ </artist>
29
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634917.jpg</image>
30
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634917.jpg</image>
31
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634917.jpg</image>
32
+ </track>
33
+ <track>
34
+ <name>Komm zurück</name>
35
+ <playcount>2</playcount>
36
+ <tagcount></tagcount>
37
+ <mbid></mbid>
38
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Komm+zur%C3%BCck</url>
39
+ <streamable fulltrack="0">1</streamable>
40
+ <artist>
41
+ <name>Die Ärzte</name>
42
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
43
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
44
+ </artist>
45
+ <image size="small">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
46
+ <image size="medium">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
47
+ <image size="large">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
48
+ </track>
49
+ <track>
50
+ <name>Weary No More (feat. Tamika)</name>
51
+ <playcount>2</playcount>
52
+ <tagcount></tagcount>
53
+ <mbid></mbid>
54
+ <url>http://www.last.fm/music/Gentleman/_/Weary+No+More+%28feat.+Tamika%29</url>
55
+ <streamable fulltrack="0">0</streamable>
56
+ <artist>
57
+ <name>Gentleman</name>
58
+ <mbid>8de4a831-7c25-4d34-90cf-254de0c36e49</mbid>
59
+ <url>http://www.last.fm/music/Gentleman</url>
60
+ </artist>
61
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28019385.jpg</image>
62
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28019385.jpg</image>
63
+ <image size="large">http://userserve-ak.last.fm/serve/126/28019385.jpg</image>
64
+ </track>
65
+ <track>
66
+ <name>Sad State of Affairs</name>
67
+ <playcount>2</playcount>
68
+ <tagcount></tagcount>
69
+ <mbid></mbid>
70
+ <url>http://www.last.fm/music/Descendents/_/Sad+State+of+Affairs</url>
71
+ <streamable fulltrack="0">0</streamable>
72
+ <artist>
73
+ <name>Descendents</name>
74
+ <mbid>f035837e-4117-438d-a524-cacf43500e68</mbid>
75
+ <url>http://www.last.fm/music/Descendents</url>
76
+ </artist>
77
+ <image size="small">http://images.amazon.com/images/P/B0001WPSM2.01.MZZZZZZZ.jpg</image>
78
+ <image size="medium">http://images.amazon.com/images/P/B0001WPSM2.01.MZZZZZZZ.jpg</image>
79
+ <image size="large">http://images.amazon.com/images/P/B0001WPSM2.01.MZZZZZZZ.jpg</image>
80
+ </track>
81
+ <track>
82
+ <name>This Machine Kills Fascists</name>
83
+ <playcount>2</playcount>
84
+ <tagcount></tagcount>
85
+ <mbid></mbid>
86
+ <url>http://www.last.fm/music/Anti-Flag/_/This+Machine+Kills+Fascists</url>
87
+ <streamable fulltrack="0">1</streamable>
88
+ <artist>
89
+ <name>Anti-Flag</name>
90
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
91
+ <url>http://www.last.fm/music/Anti-Flag</url>
92
+ </artist>
93
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19837175.jpg</image>
94
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19837175.jpg</image>
95
+ <image size="large">http://userserve-ak.last.fm/serve/126/19837175.jpg</image>
96
+ </track>
97
+ <track>
98
+ <name>Wolke der Unwissenheit</name>
99
+ <playcount>2</playcount>
100
+ <tagcount></tagcount>
101
+ <mbid></mbid>
102
+ <url>http://www.last.fm/music/Tocotronic/_/Wolke+der+Unwissenheit</url>
103
+ <streamable fulltrack="0">1</streamable>
104
+ <artist>
105
+ <name>Tocotronic</name>
106
+ <mbid>7717539b-33aa-45d5-b88d-9e627172db19</mbid>
107
+ <url>http://www.last.fm/music/Tocotronic</url>
108
+ </artist>
109
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8605731.jpg</image>
110
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8605731.jpg</image>
111
+ <image size="large">http://userserve-ak.last.fm/serve/126/8605731.jpg</image>
112
+ </track>
113
+ <track>
114
+ <name>Pump It</name>
115
+ <playcount>2</playcount>
116
+ <tagcount></tagcount>
117
+ <mbid></mbid>
118
+ <url>http://www.last.fm/music/Black+Eyed+Peas/_/Pump+It</url>
119
+ <streamable fulltrack="0">1</streamable>
120
+ <artist>
121
+ <name>Black Eyed Peas</name>
122
+ <mbid>d5be5333-4171-427e-8e12-732087c6b78e</mbid>
123
+ <url>http://www.last.fm/music/Black+Eyed+Peas</url>
124
+ </artist>
125
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8672885.jpg</image>
126
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8672885.jpg</image>
127
+ <image size="large">http://userserve-ak.last.fm/serve/126/8672885.jpg</image>
128
+ </track>
129
+ <track>
130
+ <name>In Bloom</name>
131
+ <playcount>2</playcount>
132
+ <tagcount></tagcount>
133
+ <mbid></mbid>
134
+ <url>http://www.last.fm/music/Nirvana/_/In+Bloom</url>
135
+ <streamable fulltrack="1">1</streamable>
136
+ <artist>
137
+ <name>Nirvana</name>
138
+ <mbid>5b11f4ce-a62d-471e-81fc-a69a8278c7da</mbid>
139
+ <url>http://www.last.fm/music/Nirvana</url>
140
+ </artist>
141
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8590151.jpg</image>
142
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8590151.jpg</image>
143
+ <image size="large">http://userserve-ak.last.fm/serve/126/8590151.jpg</image>
144
+ </track>
145
+ <track>
146
+ <name>Der Misanthrop</name>
147
+ <playcount>2</playcount>
148
+ <tagcount></tagcount>
149
+ <mbid></mbid>
150
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Der+Misanthrop</url>
151
+ <streamable fulltrack="0">0</streamable>
152
+ <artist>
153
+ <name>Die Ärzte</name>
154
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
155
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
156
+ </artist>
157
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4541352.jpg</image>
158
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4541352.jpg</image>
159
+ <image size="large">http://userserve-ak.last.fm/serve/126/4541352.jpg</image>
160
+ </track>
161
+ <track>
162
+ <name>Re-Hash</name>
163
+ <playcount>2</playcount>
164
+ <tagcount></tagcount>
165
+ <mbid></mbid>
166
+ <url>http://www.last.fm/music/Gorillaz/_/Re-Hash</url>
167
+ <streamable fulltrack="0">1</streamable>
168
+ <artist>
169
+ <name>Gorillaz</name>
170
+ <mbid>e21857d5-3256-4547-afb3-4b6ded592596</mbid>
171
+ <url>http://www.last.fm/music/Gorillaz</url>
172
+ </artist>
173
+ <image size="small">http://userserve-ak.last.fm/serve/34s/24507751.png</image>
174
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/24507751.png</image>
175
+ <image size="large">http://userserve-ak.last.fm/serve/126/24507751.png</image>
176
+ </track>
177
+ <track>
178
+ <name>Moron</name>
179
+ <playcount>2</playcount>
180
+ <tagcount></tagcount>
181
+ <mbid></mbid>
182
+ <url>http://www.last.fm/music/Sum+41/_/Moron</url>
183
+ <streamable fulltrack="0">0</streamable>
184
+ <artist>
185
+ <name>Sum 41</name>
186
+ <mbid>f2eef649-a6d5-4114-afba-e50ab26254d2</mbid>
187
+ <url>http://www.last.fm/music/Sum+41</url>
188
+ </artist>
189
+ <image size="small">http://userserve-ak.last.fm/serve/34s/3738476.jpg</image>
190
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/3738476.jpg</image>
191
+ <image size="large">http://userserve-ak.last.fm/serve/126/3738476.jpg</image>
192
+ </track>
193
+ <track>
194
+ <name>One Step Closer (live)</name>
195
+ <playcount>2</playcount>
196
+ <tagcount></tagcount>
197
+ <mbid></mbid>
198
+ <url>http://www.last.fm/music/Linkin+Park/_/One+Step+Closer+%28live%29</url>
199
+ <streamable fulltrack="0">0</streamable>
200
+ <artist>
201
+ <name>Linkin Park</name>
202
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
203
+ <url>http://www.last.fm/music/Linkin+Park</url>
204
+ </artist>
205
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4024738.jpg</image>
206
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4024738.jpg</image>
207
+ <image size="large">http://userserve-ak.last.fm/serve/126/4024738.jpg</image>
208
+ </track>
209
+ <track>
210
+ <name>Numb_Encore</name>
211
+ <playcount>2</playcount>
212
+ <tagcount></tagcount>
213
+ <mbid></mbid>
214
+ <url>http://www.last.fm/music/Linkin+Park/_/Numb_Encore</url>
215
+ <streamable fulltrack="0">0</streamable>
216
+ <artist>
217
+ <name>Linkin Park</name>
218
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
219
+ <url>http://www.last.fm/music/Linkin+Park</url>
220
+ </artist>
221
+ </track>
222
+ <track>
223
+ <name>Boulevard of Broken Dreams</name>
224
+ <playcount>2</playcount>
225
+ <tagcount></tagcount>
226
+ <mbid></mbid>
227
+ <url>http://www.last.fm/music/Green+Day/_/Boulevard+of+Broken+Dreams</url>
228
+ <streamable fulltrack="0">1</streamable>
229
+ <artist>
230
+ <name>Green Day</name>
231
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
232
+ <url>http://www.last.fm/music/Green+Day</url>
233
+ </artist>
234
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5083839.jpg</image>
235
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5083839.jpg</image>
236
+ <image size="large">http://userserve-ak.last.fm/serve/126/5083839.jpg</image>
237
+ </track>
238
+ <track>
239
+ <name>Klötersound (Skit)</name>
240
+ <playcount>2</playcount>
241
+ <tagcount></tagcount>
242
+ <mbid></mbid>
243
+ <url>http://www.last.fm/music/Deichkind/_/Kl%C3%B6tersound+%28Skit%29</url>
244
+ <streamable fulltrack="1">1</streamable>
245
+ <artist>
246
+ <name>Deichkind</name>
247
+ <mbid>5de80871-f721-4c7c-b0c5-4ad0d350c232</mbid>
248
+ <url>http://www.last.fm/music/Deichkind</url>
249
+ </artist>
250
+ </track>
251
+ <track>
252
+ <name>Far Out</name>
253
+ <playcount>2</playcount>
254
+ <tagcount></tagcount>
255
+ <mbid></mbid>
256
+ <url>http://www.last.fm/music/Blur/_/Far+Out</url>
257
+ <streamable fulltrack="0">1</streamable>
258
+ <artist>
259
+ <name>Blur</name>
260
+ <mbid>ba853904-ae25-4ebb-89d6-c44cfbd71bd2</mbid>
261
+ <url>http://www.last.fm/music/Blur</url>
262
+ </artist>
263
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14257389.jpg</image>
264
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14257389.jpg</image>
265
+ <image size="large">http://userserve-ak.last.fm/serve/126/14257389.jpg</image>
266
+ </track>
267
+ <track>
268
+ <name>Of Moons, Birds &amp; Monsters</name>
269
+ <playcount>2</playcount>
270
+ <tagcount></tagcount>
271
+ <mbid></mbid>
272
+ <url>http://www.last.fm/music/MGMT/_/Of%2BMoons%252C%2BBirds%2B%2526%2BMonsters</url>
273
+ <streamable fulltrack="0">1</streamable>
274
+ <artist>
275
+ <name>MGMT</name>
276
+ <mbid>c485632c-b784-4ee9-8ea1-c5fb365681fc</mbid>
277
+ <url>http://www.last.fm/music/MGMT</url>
278
+ </artist>
279
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22357783.jpg</image>
280
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22357783.jpg</image>
281
+ <image size="large">http://userserve-ak.last.fm/serve/126/22357783.jpg</image>
282
+ </track>
283
+ <track>
284
+ <name>Rocket Radio</name>
285
+ <playcount>2</playcount>
286
+ <tagcount></tagcount>
287
+ <mbid></mbid>
288
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Rocket+Radio</url>
289
+ <streamable fulltrack="1">1</streamable>
290
+ <artist>
291
+ <name>Sportfreunde Stiller</name>
292
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
293
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
294
+ </artist>
295
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8730555.jpg</image>
296
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8730555.jpg</image>
297
+ <image size="large">http://userserve-ak.last.fm/serve/126/8730555.jpg</image>
298
+ </track>
299
+ <track>
300
+ <name>My Yvonne</name>
301
+ <playcount>2</playcount>
302
+ <tagcount></tagcount>
303
+ <mbid></mbid>
304
+ <url>http://www.last.fm/music/Jack+Pe%C3%B1ate/_/My+Yvonne</url>
305
+ <streamable fulltrack="0">0</streamable>
306
+ <artist>
307
+ <name>Jack Peñate</name>
308
+ <mbid>9b64cf5d-1f4a-45b5-a84a-5109a88f178f</mbid>
309
+ <url>http://www.last.fm/music/Jack+Pe%C3%B1ate</url>
310
+ </artist>
311
+ </track>
312
+ <track>
313
+ <name>Herrliche Jahre</name>
314
+ <playcount>2</playcount>
315
+ <tagcount></tagcount>
316
+ <mbid></mbid>
317
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Herrliche+Jahre</url>
318
+ <streamable fulltrack="0">0</streamable>
319
+ <artist>
320
+ <name>Die Ärzte</name>
321
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
322
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
323
+ </artist>
324
+ <image size="small">http://images-eu.amazon.com/images/P/B00004ZC4S.03.MZZZZZZZ.jpg</image>
325
+ <image size="medium">http://images-eu.amazon.com/images/P/B00004ZC4S.03.MZZZZZZZ.jpg</image>
326
+ <image size="large">http://images-eu.amazon.com/images/P/B00004ZC4S.03.MZZZZZZZ.jpg</image>
327
+ </track>
328
+ <track>
329
+ <name>Pretty in Punk</name>
330
+ <playcount>2</playcount>
331
+ <tagcount></tagcount>
332
+ <mbid></mbid>
333
+ <url>http://www.last.fm/music/Fall+Out+Boy/_/Pretty+in+Punk</url>
334
+ <streamable fulltrack="1">1</streamable>
335
+ <artist>
336
+ <name>Fall Out Boy</name>
337
+ <mbid>516cef4d-0718-4007-9939-f9b38af3f784</mbid>
338
+ <url>http://www.last.fm/music/Fall+Out+Boy</url>
339
+ </artist>
340
+ <image size="small">http://images.amazon.com/images/P/B00007KS91.01.MZZZZZZZ.jpg</image>
341
+ <image size="medium">http://images.amazon.com/images/P/B00007KS91.01.MZZZZZZZ.jpg</image>
342
+ <image size="large">http://images.amazon.com/images/P/B00007KS91.01.MZZZZZZZ.jpg</image>
343
+ </track>
344
+ <track>
345
+ <name>My Best Friend</name>
346
+ <playcount>2</playcount>
347
+ <tagcount></tagcount>
348
+ <mbid></mbid>
349
+ <url>http://www.last.fm/music/Weezer/_/My+Best+Friend</url>
350
+ <streamable fulltrack="1">1</streamable>
351
+ <artist>
352
+ <name>Weezer</name>
353
+ <mbid>6fe07aa5-fec0-4eca-a456-f29bff451b04</mbid>
354
+ <url>http://www.last.fm/music/Weezer</url>
355
+ </artist>
356
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8673675.jpg</image>
357
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8673675.jpg</image>
358
+ <image size="large">http://userserve-ak.last.fm/serve/126/8673675.jpg</image>
359
+ </track>
360
+ <track>
361
+ <name>Rumours</name>
362
+ <playcount>2</playcount>
363
+ <tagcount></tagcount>
364
+ <mbid></mbid>
365
+ <url>http://www.last.fm/music/Gentleman/_/Rumours</url>
366
+ <streamable fulltrack="0">1</streamable>
367
+ <artist>
368
+ <name>Gentleman</name>
369
+ <mbid>8de4a831-7c25-4d34-90cf-254de0c36e49</mbid>
370
+ <url>http://www.last.fm/music/Gentleman</url>
371
+ </artist>
372
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28019385.jpg</image>
373
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28019385.jpg</image>
374
+ <image size="large">http://userserve-ak.last.fm/serve/126/28019385.jpg</image>
375
+ </track>
376
+ <track>
377
+ <name>Where Do We Go?</name>
378
+ <playcount>2</playcount>
379
+ <tagcount></tagcount>
380
+ <mbid></mbid>
381
+ <url>http://www.last.fm/music/Scooter/_/Where+Do+We+Go%3F</url>
382
+ <streamable fulltrack="0">0</streamable>
383
+ <artist>
384
+ <name>Scooter</name>
385
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
386
+ <url>http://www.last.fm/music/Scooter</url>
387
+ </artist>
388
+ <image size="small">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
389
+ <image size="medium">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
390
+ <image size="large">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
391
+ </track>
392
+ <track>
393
+ <name>Intro</name>
394
+ <playcount>2</playcount>
395
+ <tagcount></tagcount>
396
+ <mbid></mbid>
397
+ <url>http://www.last.fm/music/Gorillaz/_/Intro</url>
398
+ <streamable fulltrack="0">1</streamable>
399
+ <artist>
400
+ <name>Gorillaz</name>
401
+ <mbid>e21857d5-3256-4547-afb3-4b6ded592596</mbid>
402
+ <url>http://www.last.fm/music/Gorillaz</url>
403
+ </artist>
404
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11453045.jpg</image>
405
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11453045.jpg</image>
406
+ <image size="large">http://userserve-ak.last.fm/serve/126/11453045.jpg</image>
407
+ </track>
408
+ <track>
409
+ <name>Parachutes</name>
410
+ <playcount>2</playcount>
411
+ <tagcount></tagcount>
412
+ <mbid></mbid>
413
+ <url>http://www.last.fm/music/Coldplay/_/Parachutes</url>
414
+ <streamable fulltrack="0">1</streamable>
415
+ <artist>
416
+ <name>Coldplay</name>
417
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
418
+ <url>http://www.last.fm/music/Coldplay</url>
419
+ </artist>
420
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14225619.jpg</image>
421
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14225619.jpg</image>
422
+ <image size="large">http://userserve-ak.last.fm/serve/126/14225619.jpg</image>
423
+ </track>
424
+ <track>
425
+ <name>Titel 12</name>
426
+ <playcount>2</playcount>
427
+ <tagcount></tagcount>
428
+ <mbid></mbid>
429
+ <url>http://www.last.fm/music/Scooter/_/Titel+12</url>
430
+ <streamable fulltrack="0">0</streamable>
431
+ <artist>
432
+ <name>Scooter</name>
433
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
434
+ <url>http://www.last.fm/music/Scooter</url>
435
+ </artist>
436
+ </track>
437
+ <track>
438
+ <name>Alles so einfach</name>
439
+ <playcount>2</playcount>
440
+ <tagcount></tagcount>
441
+ <mbid></mbid>
442
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Alles+so+einfach</url>
443
+ <streamable fulltrack="0">0</streamable>
444
+ <artist>
445
+ <name>Die Ärzte</name>
446
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
447
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
448
+ </artist>
449
+ <image size="small">http://images-eu.amazon.com/images/P/B00004ZC4S.03.MZZZZZZZ.jpg</image>
450
+ <image size="medium">http://images-eu.amazon.com/images/P/B00004ZC4S.03.MZZZZZZZ.jpg</image>
451
+ <image size="large">http://images-eu.amazon.com/images/P/B00004ZC4S.03.MZZZZZZZ.jpg</image>
452
+ </track>
453
+ <track>
454
+ <name>To The World</name>
455
+ <playcount>2</playcount>
456
+ <tagcount></tagcount>
457
+ <mbid></mbid>
458
+ <url>http://www.last.fm/music/Strike+Anywhere/_/To+The+World</url>
459
+ <streamable fulltrack="1">1</streamable>
460
+ <artist>
461
+ <name>Strike Anywhere</name>
462
+ <mbid>ac82cb46-f2b2-4f99-9cfa-d0c322a4ba16</mbid>
463
+ <url>http://www.last.fm/music/Strike+Anywhere</url>
464
+ </artist>
465
+ <image size="small">http://images.amazon.com/images/P/B0000AKCI4.01.MZZZZZZZ.jpg</image>
466
+ <image size="medium">http://images.amazon.com/images/P/B0000AKCI4.01.MZZZZZZZ.jpg</image>
467
+ <image size="large">http://images.amazon.com/images/P/B0000AKCI4.01.MZZZZZZZ.jpg</image>
468
+ </track>
469
+ <track>
470
+ <name>Glamorous Indie Rock &amp; Roll</name>
471
+ <playcount>2</playcount>
472
+ <tagcount></tagcount>
473
+ <mbid></mbid>
474
+ <url>http://www.last.fm/music/The+Killers/_/Glamorous%2BIndie%2BRock%2B%2526%2BRoll</url>
475
+ <streamable fulltrack="0">0</streamable>
476
+ <artist>
477
+ <name>The Killers</name>
478
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
479
+ <url>http://www.last.fm/music/The+Killers</url>
480
+ </artist>
481
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634917.jpg</image>
482
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634917.jpg</image>
483
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634917.jpg</image>
484
+ </track>
485
+ <track>
486
+ <name>No W</name>
487
+ <playcount>2</playcount>
488
+ <tagcount></tagcount>
489
+ <mbid></mbid>
490
+ <url>http://www.last.fm/music/Ministry/_/No+W</url>
491
+ <streamable fulltrack="1">1</streamable>
492
+ <artist>
493
+ <name>Ministry</name>
494
+ <mbid>13df2a46-f72f-40e7-aa63-26fcf62c7048</mbid>
495
+ <url>http://www.last.fm/music/Ministry</url>
496
+ </artist>
497
+ <image size="small">http://images.amazon.com/images/P/B000294SFC.01._SCMZZZZZZZ_.jpg</image>
498
+ <image size="medium">http://images.amazon.com/images/P/B000294SFC.01._SCMZZZZZZZ_.jpg</image>
499
+ <image size="large">http://images.amazon.com/images/P/B000294SFC.01._SCMZZZZZZZ_.jpg</image>
500
+ </track>
501
+ <track>
502
+ <name>Parklife</name>
503
+ <playcount>2</playcount>
504
+ <tagcount></tagcount>
505
+ <mbid></mbid>
506
+ <url>http://www.last.fm/music/Blur/_/Parklife</url>
507
+ <streamable fulltrack="0">1</streamable>
508
+ <artist>
509
+ <name>Blur</name>
510
+ <mbid>ba853904-ae25-4ebb-89d6-c44cfbd71bd2</mbid>
511
+ <url>http://www.last.fm/music/Blur</url>
512
+ </artist>
513
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14257389.jpg</image>
514
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14257389.jpg</image>
515
+ <image size="large">http://userserve-ak.last.fm/serve/126/14257389.jpg</image>
516
+ </track>
517
+ <track>
518
+ <name>One Blood</name>
519
+ <playcount>2</playcount>
520
+ <tagcount></tagcount>
521
+ <mbid></mbid>
522
+ <url>http://www.last.fm/music/Mando+Diao/_/One+Blood</url>
523
+ <streamable fulltrack="0">1</streamable>
524
+ <artist>
525
+ <name>Mando Diao</name>
526
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
527
+ <url>http://www.last.fm/music/Mando+Diao</url>
528
+ </artist>
529
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15249355.jpg</image>
530
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15249355.jpg</image>
531
+ <image size="large">http://userserve-ak.last.fm/serve/126/15249355.jpg</image>
532
+ </track>
533
+ <track>
534
+ <name>Aurélie</name>
535
+ <playcount>2</playcount>
536
+ <tagcount></tagcount>
537
+ <mbid></mbid>
538
+ <url>http://www.last.fm/music/Wir+sind+Helden/_/Aur%C3%A9lie</url>
539
+ <streamable fulltrack="0">1</streamable>
540
+ <artist>
541
+ <name>Wir sind Helden</name>
542
+ <mbid>908fedf4-548a-430f-b806-38fca9507dc4</mbid>
543
+ <url>http://www.last.fm/music/Wir+sind+Helden</url>
544
+ </artist>
545
+ <image size="small">http://www.7digital.com/shops/assets/sleeveart/0094635454550_182.JPEG</image>
546
+ <image size="medium">http://www.7digital.com/shops/assets/sleeveart/0094635454550_182.JPEG</image>
547
+ <image size="large">http://www.7digital.com/shops/assets/sleeveart/0094635454550_182.JPEG</image>
548
+ </track>
549
+ <track>
550
+ <name>The Chronicles of Life and Death</name>
551
+ <playcount>2</playcount>
552
+ <tagcount></tagcount>
553
+ <mbid></mbid>
554
+ <url>http://www.last.fm/music/Good+Charlotte/_/The+Chronicles+of+Life+and+Death</url>
555
+ <streamable fulltrack="0">1</streamable>
556
+ <artist>
557
+ <name>Good Charlotte</name>
558
+ <mbid>b267ca80-034e-4dc1-9ed4-ec45f1fed41d</mbid>
559
+ <url>http://www.last.fm/music/Good+Charlotte</url>
560
+ </artist>
561
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19445721.jpg</image>
562
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19445721.jpg</image>
563
+ <image size="large">http://userserve-ak.last.fm/serve/126/19445721.jpg</image>
564
+ </track>
565
+ <track>
566
+ <name>Goast of ron</name>
567
+ <playcount>2</playcount>
568
+ <tagcount></tagcount>
569
+ <mbid></mbid>
570
+ <url>http://www.last.fm/music/Good+Charlotte/_/Goast+of+ron</url>
571
+ <streamable fulltrack="0">0</streamable>
572
+ <artist>
573
+ <name>Good Charlotte</name>
574
+ <mbid>b267ca80-034e-4dc1-9ed4-ec45f1fed41d</mbid>
575
+ <url>http://www.last.fm/music/Good+Charlotte</url>
576
+ </artist>
577
+ </track>
578
+ <track>
579
+ <name>Best Days</name>
580
+ <playcount>2</playcount>
581
+ <tagcount></tagcount>
582
+ <mbid></mbid>
583
+ <url>http://www.last.fm/music/Blur/_/Best+Days</url>
584
+ <streamable fulltrack="0">1</streamable>
585
+ <artist>
586
+ <name>Blur</name>
587
+ <mbid>ba853904-ae25-4ebb-89d6-c44cfbd71bd2</mbid>
588
+ <url>http://www.last.fm/music/Blur</url>
589
+ </artist>
590
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14401319.jpg</image>
591
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14401319.jpg</image>
592
+ <image size="large">http://userserve-ak.last.fm/serve/126/14401319.jpg</image>
593
+ </track>
594
+ <track>
595
+ <name>SOS</name>
596
+ <playcount>2</playcount>
597
+ <tagcount></tagcount>
598
+ <mbid></mbid>
599
+ <url>http://www.last.fm/music/Good+Charlotte/_/SOS</url>
600
+ <streamable fulltrack="0">0</streamable>
601
+ <artist>
602
+ <name>Good Charlotte</name>
603
+ <mbid>b267ca80-034e-4dc1-9ed4-ec45f1fed41d</mbid>
604
+ <url>http://www.last.fm/music/Good+Charlotte</url>
605
+ </artist>
606
+ </track>
607
+ <track>
608
+ <name>The (Shipped) Gold Standard</name>
609
+ <playcount>2</playcount>
610
+ <tagcount></tagcount>
611
+ <mbid></mbid>
612
+ <url>http://www.last.fm/music/Fall+Out+Boy/_/The+%28Shipped%29+Gold+Standard</url>
613
+ <streamable fulltrack="1">1</streamable>
614
+ <artist>
615
+ <name>Fall Out Boy</name>
616
+ <mbid>516cef4d-0718-4007-9939-f9b38af3f784</mbid>
617
+ <url>http://www.last.fm/music/Fall+Out+Boy</url>
618
+ </artist>
619
+ </track>
620
+ <track>
621
+ <name>Zuhälter</name>
622
+ <playcount>2</playcount>
623
+ <tagcount></tagcount>
624
+ <mbid></mbid>
625
+ <url>http://www.last.fm/music/Wir+sind+Helden/_/Zuh%C3%A4lter</url>
626
+ <streamable fulltrack="0">1</streamable>
627
+ <artist>
628
+ <name>Wir sind Helden</name>
629
+ <mbid>908fedf4-548a-430f-b806-38fca9507dc4</mbid>
630
+ <url>http://www.last.fm/music/Wir+sind+Helden</url>
631
+ </artist>
632
+ </track>
633
+ <track>
634
+ <name>S.O.S. (live from Sessions@AOL)</name>
635
+ <playcount>2</playcount>
636
+ <tagcount></tagcount>
637
+ <mbid></mbid>
638
+ <url>http://www.last.fm/music/Good+Charlotte/_/S.O.S.+%28live+from+Sessions%40AOL%29</url>
639
+ <streamable fulltrack="0">0</streamable>
640
+ <artist>
641
+ <name>Good Charlotte</name>
642
+ <mbid>b267ca80-034e-4dc1-9ed4-ec45f1fed41d</mbid>
643
+ <url>http://www.last.fm/music/Good+Charlotte</url>
644
+ </artist>
645
+ </track>
646
+ <track>
647
+ <name>Fairytale of New York (feat. Kirsty MacColl)</name>
648
+ <playcount>2</playcount>
649
+ <tagcount></tagcount>
650
+ <mbid></mbid>
651
+ <url>http://www.last.fm/music/The+Pogues/_/Fairytale+of+New+York+%28feat.+Kirsty+MacColl%29</url>
652
+ <streamable fulltrack="0">0</streamable>
653
+ <artist>
654
+ <name>The Pogues</name>
655
+ <mbid>d41a6875-b626-4c0f-89a1-aecb643d29ff</mbid>
656
+ <url>http://www.last.fm/music/The+Pogues</url>
657
+ </artist>
658
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
659
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
660
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
661
+ </track>
662
+ <track>
663
+ <name>Be Here Now</name>
664
+ <playcount>2</playcount>
665
+ <tagcount></tagcount>
666
+ <mbid></mbid>
667
+ <url>http://www.last.fm/music/Oasis/_/Be+Here+Now</url>
668
+ <streamable fulltrack="0">1</streamable>
669
+ <artist>
670
+ <name>Oasis</name>
671
+ <mbid>39ab1aed-75e0-4140-bd47-540276886b60</mbid>
672
+ <url>http://www.last.fm/music/Oasis</url>
673
+ </artist>
674
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23745807.jpg</image>
675
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23745807.jpg</image>
676
+ <image size="large">http://userserve-ak.last.fm/serve/126/23745807.jpg</image>
677
+ </track>
678
+ <track>
679
+ <name>A Thousand Trees</name>
680
+ <playcount>2</playcount>
681
+ <tagcount></tagcount>
682
+ <mbid></mbid>
683
+ <url>http://www.last.fm/music/Stereophonics/_/A+Thousand+Trees</url>
684
+ <streamable fulltrack="0">1</streamable>
685
+ <artist>
686
+ <name>Stereophonics</name>
687
+ <mbid>0bfba3d3-6a04-4779-bb0a-df07df5b0558</mbid>
688
+ <url>http://www.last.fm/music/Stereophonics</url>
689
+ </artist>
690
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15480193.jpg</image>
691
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15480193.jpg</image>
692
+ <image size="large">http://userserve-ak.last.fm/serve/126/15480193.jpg</image>
693
+ </track>
694
+ <track>
695
+ <name>S.O.S.</name>
696
+ <playcount>2</playcount>
697
+ <tagcount></tagcount>
698
+ <mbid></mbid>
699
+ <url>http://www.last.fm/music/Good+Charlotte/_/S.O.S.</url>
700
+ <streamable fulltrack="0">1</streamable>
701
+ <artist>
702
+ <name>Good Charlotte</name>
703
+ <mbid>b267ca80-034e-4dc1-9ed4-ec45f1fed41d</mbid>
704
+ <url>http://www.last.fm/music/Good+Charlotte</url>
705
+ </artist>
706
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19445721.jpg</image>
707
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19445721.jpg</image>
708
+ <image size="large">http://userserve-ak.last.fm/serve/126/19445721.jpg</image>
709
+ </track>
710
+ <track>
711
+ <name>Weeping Willow</name>
712
+ <playcount>2</playcount>
713
+ <tagcount></tagcount>
714
+ <mbid></mbid>
715
+ <url>http://www.last.fm/music/The+Verve/_/Weeping+Willow</url>
716
+ <streamable fulltrack="0">1</streamable>
717
+ <artist>
718
+ <name>The Verve</name>
719
+ <mbid>d4d17620-fd97-4574-92a8-a2cb7e72ce42</mbid>
720
+ <url>http://www.last.fm/music/The+Verve</url>
721
+ </artist>
722
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14233169.jpg</image>
723
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14233169.jpg</image>
724
+ <image size="large">http://userserve-ak.last.fm/serve/126/14233169.jpg</image>
725
+ </track>
726
+ <track>
727
+ <name>Warbrain</name>
728
+ <playcount>2</playcount>
729
+ <tagcount></tagcount>
730
+ <mbid></mbid>
731
+ <url>http://www.last.fm/music/Alkaline+Trio/_/Warbrain</url>
732
+ <streamable fulltrack="0">1</streamable>
733
+ <artist>
734
+ <name>Alkaline Trio</name>
735
+ <mbid>69421e11-e4c3-4854-951b-ceab4972e38e</mbid>
736
+ <url>http://www.last.fm/music/Alkaline+Trio</url>
737
+ </artist>
738
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5266077.jpg</image>
739
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5266077.jpg</image>
740
+ <image size="large">http://userserve-ak.last.fm/serve/126/5266077.jpg</image>
741
+ </track>
742
+ <track>
743
+ <name>Holes</name>
744
+ <playcount>2</playcount>
745
+ <tagcount></tagcount>
746
+ <mbid></mbid>
747
+ <url>http://www.last.fm/music/Mercury+Rev/_/Holes</url>
748
+ <streamable fulltrack="0">1</streamable>
749
+ <artist>
750
+ <name>Mercury Rev</name>
751
+ <mbid>7b1cf87e-c54f-4abc-893d-90245a31900d</mbid>
752
+ <url>http://www.last.fm/music/Mercury+Rev</url>
753
+ </artist>
754
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8600495.jpg</image>
755
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8600495.jpg</image>
756
+ <image size="large">http://userserve-ak.last.fm/serve/126/8600495.jpg</image>
757
+ </track>
758
+ <track>
759
+ <name>Superior</name>
760
+ <playcount>2</playcount>
761
+ <tagcount></tagcount>
762
+ <mbid></mbid>
763
+ <url>http://www.last.fm/music/Gentleman/_/Superior</url>
764
+ <streamable fulltrack="0">1</streamable>
765
+ <artist>
766
+ <name>Gentleman</name>
767
+ <mbid>8de4a831-7c25-4d34-90cf-254de0c36e49</mbid>
768
+ <url>http://www.last.fm/music/Gentleman</url>
769
+ </artist>
770
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28019385.jpg</image>
771
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28019385.jpg</image>
772
+ <image size="large">http://userserve-ak.last.fm/serve/126/28019385.jpg</image>
773
+ </track>
774
+ </tracks></lfm>