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,780 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="8" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>Song for calay( Disappear here)</name>
6
+ <playcount>13</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Bloc+Party/_/Song+for+calay%28+Disappear+here%29</url>
10
+ <streamable fulltrack="0">0</streamable>
11
+ <artist>
12
+ <name>Bloc Party</name>
13
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
14
+ <url>http://www.last.fm/music/Bloc+Party</url>
15
+ </artist>
16
+ </track>
17
+ <track>
18
+ <name>Read My Mind</name>
19
+ <playcount>13</playcount>
20
+ <tagcount></tagcount>
21
+ <mbid></mbid>
22
+ <url>http://www.last.fm/music/The+Killers/_/Read+My+Mind</url>
23
+ <streamable fulltrack="1">1</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/9192209.jpg</image>
30
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9192209.jpg</image>
31
+ <image size="large">http://userserve-ak.last.fm/serve/126/9192209.jpg</image>
32
+ </track>
33
+ <track>
34
+ <name>I Just Wanna Live</name>
35
+ <playcount>13</playcount>
36
+ <tagcount></tagcount>
37
+ <mbid></mbid>
38
+ <url>http://www.last.fm/music/Good+Charlotte/_/I+Just+Wanna+Live</url>
39
+ <streamable fulltrack="0">1</streamable>
40
+ <artist>
41
+ <name>Good Charlotte</name>
42
+ <mbid>b267ca80-034e-4dc1-9ed4-ec45f1fed41d</mbid>
43
+ <url>http://www.last.fm/music/Good+Charlotte</url>
44
+ </artist>
45
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19445721.jpg</image>
46
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19445721.jpg</image>
47
+ <image size="large">http://userserve-ak.last.fm/serve/126/19445721.jpg</image>
48
+ </track>
49
+ <track>
50
+ <name>Wohin</name>
51
+ <playcount>13</playcount>
52
+ <tagcount></tagcount>
53
+ <mbid></mbid>
54
+ <url>http://www.last.fm/music/Madsen/_/Wohin</url>
55
+ <streamable fulltrack="1">1</streamable>
56
+ <artist>
57
+ <name>Madsen</name>
58
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
59
+ <url>http://www.last.fm/music/Madsen</url>
60
+ </artist>
61
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8743285.jpg</image>
62
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8743285.jpg</image>
63
+ <image size="large">http://userserve-ak.last.fm/serve/126/8743285.jpg</image>
64
+ </track>
65
+ <track>
66
+ <name>No You Girls</name>
67
+ <playcount>12</playcount>
68
+ <tagcount></tagcount>
69
+ <mbid></mbid>
70
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/No+You+Girls</url>
71
+ <streamable fulltrack="0">0</streamable>
72
+ <artist>
73
+ <name>Franz Ferdinand</name>
74
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
75
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
76
+ </artist>
77
+ </track>
78
+ <track>
79
+ <name>Jigga Jigga</name>
80
+ <playcount>12</playcount>
81
+ <tagcount></tagcount>
82
+ <mbid></mbid>
83
+ <url>http://www.last.fm/music/Scooter/_/Jigga+Jigga</url>
84
+ <streamable fulltrack="0">0</streamable>
85
+ <artist>
86
+ <name>Scooter</name>
87
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
88
+ <url>http://www.last.fm/music/Scooter</url>
89
+ </artist>
90
+ <image size="small">http://images-eu.amazon.com/images/P/B0001BUCVU.03.MZZZZZZZ.jpg</image>
91
+ <image size="medium">http://images-eu.amazon.com/images/P/B0001BUCVU.03.MZZZZZZZ.jpg</image>
92
+ <image size="large">http://images-eu.amazon.com/images/P/B0001BUCVU.03.MZZZZZZZ.jpg</image>
93
+ </track>
94
+ <track>
95
+ <name>Sharp Darts</name>
96
+ <playcount>12</playcount>
97
+ <tagcount></tagcount>
98
+ <mbid></mbid>
99
+ <url>http://www.last.fm/music/The+Streets/_/Sharp+Darts</url>
100
+ <streamable fulltrack="0">1</streamable>
101
+ <artist>
102
+ <name>The Streets</name>
103
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
104
+ <url>http://www.last.fm/music/The+Streets</url>
105
+ </artist>
106
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8594953.jpg</image>
107
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8594953.jpg</image>
108
+ <image size="large">http://userserve-ak.last.fm/serve/126/8594953.jpg</image>
109
+ </track>
110
+ <track>
111
+ <name>If You Were There, Beware</name>
112
+ <playcount>12</playcount>
113
+ <tagcount></tagcount>
114
+ <mbid></mbid>
115
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/If+You+Were+There%2C+Beware</url>
116
+ <streamable fulltrack="0">0</streamable>
117
+ <artist>
118
+ <name>Arctic Monkeys</name>
119
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
120
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
121
+ </artist>
122
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9131187.jpg</image>
123
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9131187.jpg</image>
124
+ <image size="large">http://userserve-ak.last.fm/serve/126/9131187.jpg</image>
125
+ </track>
126
+ <track>
127
+ <name>Longview</name>
128
+ <playcount>12</playcount>
129
+ <tagcount></tagcount>
130
+ <mbid></mbid>
131
+ <url>http://www.last.fm/music/Green+Day/_/Longview</url>
132
+ <streamable fulltrack="0">1</streamable>
133
+ <artist>
134
+ <name>Green Day</name>
135
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
136
+ <url>http://www.last.fm/music/Green+Day</url>
137
+ </artist>
138
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8624469.jpg</image>
139
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8624469.jpg</image>
140
+ <image size="large">http://userserve-ak.last.fm/serve/126/8624469.jpg</image>
141
+ </track>
142
+ <track>
143
+ <name>You Don't Send Me</name>
144
+ <playcount>12</playcount>
145
+ <tagcount></tagcount>
146
+ <mbid></mbid>
147
+ <url>http://www.last.fm/music/Belle+and+Sebastian/_/You+Don%27t+Send+Me</url>
148
+ <streamable fulltrack="0">0</streamable>
149
+ <artist>
150
+ <name>Belle and Sebastian</name>
151
+ <mbid>e5c7b94f-e264-473c-bb0f-37c85d4d5c70</mbid>
152
+ <url>http://www.last.fm/music/Belle+and+Sebastian</url>
153
+ </artist>
154
+ <image size="small">http://images.amazon.com/images/P/B0000CBHQ1.01.THUMBZZZ.jpg</image>
155
+ <image size="medium">http://images.amazon.com/images/P/B0000CBHQ1.01.MZZZZZZZ.jpg</image>
156
+ <image size="large">http://images.amazon.com/images/P/B0000CBHQ1.01.LZZZZZZZ.jpg</image>
157
+ </track>
158
+ <track>
159
+ <name>Don't Mug Yourself</name>
160
+ <playcount>12</playcount>
161
+ <tagcount></tagcount>
162
+ <mbid></mbid>
163
+ <url>http://www.last.fm/music/The+Streets/_/Don%27t+Mug+Yourself</url>
164
+ <streamable fulltrack="0">1</streamable>
165
+ <artist>
166
+ <name>The Streets</name>
167
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
168
+ <url>http://www.last.fm/music/The+Streets</url>
169
+ </artist>
170
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
171
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
172
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
173
+ </track>
174
+ <track>
175
+ <name>Tage Wie Diese</name>
176
+ <playcount>12</playcount>
177
+ <tagcount></tagcount>
178
+ <mbid></mbid>
179
+ <url>http://www.last.fm/music/Juli/_/Tage+Wie+Diese</url>
180
+ <streamable fulltrack="0">0</streamable>
181
+ <artist>
182
+ <name>Juli</name>
183
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
184
+ <url>http://www.last.fm/music/Juli</url>
185
+ </artist>
186
+ </track>
187
+ <track>
188
+ <name>Sportbeat</name>
189
+ <playcount>12</playcount>
190
+ <tagcount></tagcount>
191
+ <mbid></mbid>
192
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Sportbeat</url>
193
+ <streamable fulltrack="1">1</streamable>
194
+ <artist>
195
+ <name>Sportfreunde Stiller</name>
196
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
197
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
198
+ </artist>
199
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634899.jpg</image>
200
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634899.jpg</image>
201
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634899.jpg</image>
202
+ </track>
203
+ <track>
204
+ <name>The Noose</name>
205
+ <playcount>12</playcount>
206
+ <tagcount></tagcount>
207
+ <mbid></mbid>
208
+ <url>http://www.last.fm/music/The+Offspring/_/The+Noose</url>
209
+ <streamable fulltrack="0">0</streamable>
210
+ <artist>
211
+ <name>The Offspring</name>
212
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
213
+ <url>http://www.last.fm/music/The+Offspring</url>
214
+ </artist>
215
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23739571.jpg</image>
216
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23739571.jpg</image>
217
+ <image size="large">http://userserve-ak.last.fm/serve/126/23739571.jpg</image>
218
+ </track>
219
+ <track>
220
+ <name>Most Lonely Face</name>
221
+ <playcount>12</playcount>
222
+ <tagcount></tagcount>
223
+ <mbid></mbid>
224
+ <url>http://www.last.fm/music/The+Holloways/_/Most+Lonely+Face</url>
225
+ <streamable fulltrack="0">0</streamable>
226
+ <artist>
227
+ <name>The Holloways</name>
228
+ <mbid>ed0c90ee-4cc0-4928-8f61-93dbd7869eb9</mbid>
229
+ <url>http://www.last.fm/music/The+Holloways</url>
230
+ </artist>
231
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4088497.jpg</image>
232
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4088497.jpg</image>
233
+ <image size="large">http://userserve-ak.last.fm/serve/126/4088497.jpg</image>
234
+ </track>
235
+ <track>
236
+ <name>Weak Become Heroes</name>
237
+ <playcount>12</playcount>
238
+ <tagcount></tagcount>
239
+ <mbid></mbid>
240
+ <url>http://www.last.fm/music/The+Streets/_/Weak+Become+Heroes</url>
241
+ <streamable fulltrack="0">1</streamable>
242
+ <artist>
243
+ <name>The Streets</name>
244
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
245
+ <url>http://www.last.fm/music/The+Streets</url>
246
+ </artist>
247
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8594953.jpg</image>
248
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8594953.jpg</image>
249
+ <image size="large">http://userserve-ak.last.fm/serve/126/8594953.jpg</image>
250
+ </track>
251
+ <track>
252
+ <name>If You Find Yourself Caught In Love</name>
253
+ <playcount>12</playcount>
254
+ <tagcount></tagcount>
255
+ <mbid></mbid>
256
+ <url>http://www.last.fm/music/Belle+and+Sebastian/_/If+You+Find+Yourself+Caught+In+Love</url>
257
+ <streamable fulltrack="0">0</streamable>
258
+ <artist>
259
+ <name>Belle and Sebastian</name>
260
+ <mbid>e5c7b94f-e264-473c-bb0f-37c85d4d5c70</mbid>
261
+ <url>http://www.last.fm/music/Belle+and+Sebastian</url>
262
+ </artist>
263
+ <image size="small">http://userserve-ak.last.fm/serve/34s/3643149.jpg</image>
264
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/3643149.jpg</image>
265
+ <image size="large">http://userserve-ak.last.fm/serve/126/3643149.jpg</image>
266
+ </track>
267
+ <track>
268
+ <name>Asleep on a Sunbeam</name>
269
+ <playcount>12</playcount>
270
+ <tagcount></tagcount>
271
+ <mbid></mbid>
272
+ <url>http://www.last.fm/music/Belle+and+Sebastian/_/Asleep+on+a+Sunbeam</url>
273
+ <streamable fulltrack="0">0</streamable>
274
+ <artist>
275
+ <name>Belle and Sebastian</name>
276
+ <mbid>e5c7b94f-e264-473c-bb0f-37c85d4d5c70</mbid>
277
+ <url>http://www.last.fm/music/Belle+and+Sebastian</url>
278
+ </artist>
279
+ <image size="small">http://images.amazon.com/images/P/B0000CBHQ1.01.THUMBZZZ.jpg</image>
280
+ <image size="medium">http://images.amazon.com/images/P/B0000CBHQ1.01.MZZZZZZZ.jpg</image>
281
+ <image size="large">http://images.amazon.com/images/P/B0000CBHQ1.01.LZZZZZZZ.jpg</image>
282
+ </track>
283
+ <track>
284
+ <name>Death of a Nation</name>
285
+ <playcount>12</playcount>
286
+ <tagcount></tagcount>
287
+ <mbid></mbid>
288
+ <url>http://www.last.fm/music/Anti-Flag/_/Death+of+a+Nation</url>
289
+ <streamable fulltrack="0">1</streamable>
290
+ <artist>
291
+ <name>Anti-Flag</name>
292
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
293
+ <url>http://www.last.fm/music/Anti-Flag</url>
294
+ </artist>
295
+ <image size="small">http://images.amazon.com/images/P/B0000DH29Y.01.THUMBZZZ.jpg</image>
296
+ <image size="medium">http://images.amazon.com/images/P/B0000DH29Y.01.MZZZZZZZ.jpg</image>
297
+ <image size="large">http://images.amazon.com/images/P/B0000DH29Y.01.LZZZZZZZ.jpg</image>
298
+ </track>
299
+ <track>
300
+ <name>The Bad Thing</name>
301
+ <playcount>12</playcount>
302
+ <tagcount></tagcount>
303
+ <mbid></mbid>
304
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/The+Bad+Thing</url>
305
+ <streamable fulltrack="0">0</streamable>
306
+ <artist>
307
+ <name>Arctic Monkeys</name>
308
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
309
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
310
+ </artist>
311
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9131187.jpg</image>
312
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9131187.jpg</image>
313
+ <image size="large">http://userserve-ak.last.fm/serve/126/9131187.jpg</image>
314
+ </track>
315
+ <track>
316
+ <name>Tage wie dieser</name>
317
+ <playcount>12</playcount>
318
+ <tagcount></tagcount>
319
+ <mbid></mbid>
320
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Tage+wie+dieser</url>
321
+ <streamable fulltrack="1">1</streamable>
322
+ <artist>
323
+ <name>Sportfreunde Stiller</name>
324
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
325
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
326
+ </artist>
327
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634899.jpg</image>
328
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634899.jpg</image>
329
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634899.jpg</image>
330
+ </track>
331
+ <track>
332
+ <name>Malcontented One</name>
333
+ <playcount>12</playcount>
334
+ <tagcount></tagcount>
335
+ <mbid></mbid>
336
+ <url>http://www.last.fm/music/The+Holloways/_/Malcontented+One</url>
337
+ <streamable fulltrack="0">1</streamable>
338
+ <artist>
339
+ <name>The Holloways</name>
340
+ <mbid>ed0c90ee-4cc0-4928-8f61-93dbd7869eb9</mbid>
341
+ <url>http://www.last.fm/music/The+Holloways</url>
342
+ </artist>
343
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4088497.jpg</image>
344
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4088497.jpg</image>
345
+ <image size="large">http://userserve-ak.last.fm/serve/126/4088497.jpg</image>
346
+ </track>
347
+ <track>
348
+ <name>Im Namen der Freundschaft</name>
349
+ <playcount>12</playcount>
350
+ <tagcount></tagcount>
351
+ <mbid></mbid>
352
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Im+Namen+der+Freundschaft</url>
353
+ <streamable fulltrack="1">1</streamable>
354
+ <artist>
355
+ <name>Sportfreunde Stiller</name>
356
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
357
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
358
+ </artist>
359
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8717053.jpg</image>
360
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8717053.jpg</image>
361
+ <image size="large">http://userserve-ak.last.fm/serve/126/8717053.jpg</image>
362
+ </track>
363
+ <track>
364
+ <name>Memento Mori</name>
365
+ <playcount>12</playcount>
366
+ <tagcount></tagcount>
367
+ <mbid></mbid>
368
+ <url>http://www.last.fm/music/The+Streets/_/Memento+Mori</url>
369
+ <streamable fulltrack="0">1</streamable>
370
+ <artist>
371
+ <name>The Streets</name>
372
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
373
+ <url>http://www.last.fm/music/The+Streets</url>
374
+ </artist>
375
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8790429.jpg</image>
376
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8790429.jpg</image>
377
+ <image size="large">http://userserve-ak.last.fm/serve/126/8790429.jpg</image>
378
+ </track>
379
+ <track>
380
+ <name>First Date</name>
381
+ <playcount>12</playcount>
382
+ <tagcount></tagcount>
383
+ <mbid></mbid>
384
+ <url>http://www.last.fm/music/blink-182/_/First+Date</url>
385
+ <streamable fulltrack="0">0</streamable>
386
+ <artist>
387
+ <name>blink-182</name>
388
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
389
+ <url>http://www.last.fm/music/blink-182</url>
390
+ </artist>
391
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8630697.jpg</image>
392
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8630697.jpg</image>
393
+ <image size="large">http://userserve-ak.last.fm/serve/126/8630697.jpg</image>
394
+ </track>
395
+ <track>
396
+ <name>Not Now</name>
397
+ <playcount>12</playcount>
398
+ <tagcount></tagcount>
399
+ <mbid></mbid>
400
+ <url>http://www.last.fm/music/blink-182/_/Not+Now</url>
401
+ <streamable fulltrack="1">1</streamable>
402
+ <artist>
403
+ <name>blink-182</name>
404
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
405
+ <url>http://www.last.fm/music/blink-182</url>
406
+ </artist>
407
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8755549.jpg</image>
408
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8755549.jpg</image>
409
+ <image size="large">http://userserve-ak.last.fm/serve/126/8755549.jpg</image>
410
+ </track>
411
+ <track>
412
+ <name>Never Went to Church</name>
413
+ <playcount>12</playcount>
414
+ <tagcount></tagcount>
415
+ <mbid></mbid>
416
+ <url>http://www.last.fm/music/The+Streets/_/Never+Went+to+Church</url>
417
+ <streamable fulltrack="0">1</streamable>
418
+ <artist>
419
+ <name>The Streets</name>
420
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
421
+ <url>http://www.last.fm/music/The+Streets</url>
422
+ </artist>
423
+ </track>
424
+ <track>
425
+ <name>Alian Exist</name>
426
+ <playcount>12</playcount>
427
+ <tagcount></tagcount>
428
+ <mbid></mbid>
429
+ <url>http://www.last.fm/music/blink-182/_/Alian+Exist</url>
430
+ <streamable fulltrack="0">0</streamable>
431
+ <artist>
432
+ <name>blink-182</name>
433
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
434
+ <url>http://www.last.fm/music/blink-182</url>
435
+ </artist>
436
+ </track>
437
+ <track>
438
+ <name>Wouldn't Have It Any Other Way</name>
439
+ <playcount>12</playcount>
440
+ <tagcount></tagcount>
441
+ <mbid></mbid>
442
+ <url>http://www.last.fm/music/The+Streets/_/Wouldn%27t+Have+It+Any+Other+Way</url>
443
+ <streamable fulltrack="0">1</streamable>
444
+ <artist>
445
+ <name>The Streets</name>
446
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
447
+ <url>http://www.last.fm/music/The+Streets</url>
448
+ </artist>
449
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12623177.jpg</image>
450
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12623177.jpg</image>
451
+ <image size="large">http://userserve-ak.last.fm/serve/126/12623177.jpg</image>
452
+ </track>
453
+ <track>
454
+ <name>November</name>
455
+ <playcount>12</playcount>
456
+ <tagcount></tagcount>
457
+ <mbid></mbid>
458
+ <url>http://www.last.fm/music/Juli/_/November</url>
459
+ <streamable fulltrack="1">1</streamable>
460
+ <artist>
461
+ <name>Juli</name>
462
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
463
+ <url>http://www.last.fm/music/Juli</url>
464
+ </artist>
465
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8638773.jpg</image>
466
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8638773.jpg</image>
467
+ <image size="large">http://userserve-ak.last.fm/serve/126/8638773.jpg</image>
468
+ </track>
469
+ <track>
470
+ <name>Prangin Out</name>
471
+ <playcount>12</playcount>
472
+ <tagcount></tagcount>
473
+ <mbid></mbid>
474
+ <url>http://www.last.fm/music/The+Streets/_/Prangin+Out</url>
475
+ <streamable fulltrack="0">1</streamable>
476
+ <artist>
477
+ <name>The Streets</name>
478
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
479
+ <url>http://www.last.fm/music/The+Streets</url>
480
+ </artist>
481
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8790429.jpg</image>
482
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8790429.jpg</image>
483
+ <image size="large">http://userserve-ak.last.fm/serve/126/8790429.jpg</image>
484
+ </track>
485
+ <track>
486
+ <name>White Winter Hymnal</name>
487
+ <playcount>12</playcount>
488
+ <tagcount></tagcount>
489
+ <mbid></mbid>
490
+ <url>http://www.last.fm/music/Fleet+Foxes/_/White+Winter+Hymnal</url>
491
+ <streamable fulltrack="1">1</streamable>
492
+ <artist>
493
+ <name>Fleet Foxes</name>
494
+ <mbid></mbid>
495
+ <url>http://www.last.fm/music/Fleet+Foxes</url>
496
+ </artist>
497
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22210745.jpg</image>
498
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22210745.jpg</image>
499
+ <image size="large">http://userserve-ak.last.fm/serve/126/22210745.jpg</image>
500
+ </track>
501
+ <track>
502
+ <name>Who Got the Funk?</name>
503
+ <playcount>12</playcount>
504
+ <tagcount></tagcount>
505
+ <mbid></mbid>
506
+ <url>http://www.last.fm/music/The+Streets/_/Who+Got+the+Funk%3F</url>
507
+ <streamable fulltrack="0">1</streamable>
508
+ <artist>
509
+ <name>The Streets</name>
510
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
511
+ <url>http://www.last.fm/music/The+Streets</url>
512
+ </artist>
513
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8594953.jpg</image>
514
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8594953.jpg</image>
515
+ <image size="large">http://userserve-ak.last.fm/serve/126/8594953.jpg</image>
516
+ </track>
517
+ <track>
518
+ <name>Take a Bow</name>
519
+ <playcount>12</playcount>
520
+ <tagcount></tagcount>
521
+ <mbid></mbid>
522
+ <url>http://www.last.fm/music/Muse/_/Take+a+Bow</url>
523
+ <streamable fulltrack="0">1</streamable>
524
+ <artist>
525
+ <name>Muse</name>
526
+ <mbid>9c9f1380-2516-4fc9-a3e6-f9f61941d090</mbid>
527
+ <url>http://www.last.fm/music/Muse</url>
528
+ </artist>
529
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8855843.jpg</image>
530
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8855843.jpg</image>
531
+ <image size="large">http://userserve-ak.last.fm/serve/126/8855843.jpg</image>
532
+ </track>
533
+ <track>
534
+ <name>Hitchin' a Ride</name>
535
+ <playcount>11</playcount>
536
+ <tagcount></tagcount>
537
+ <mbid></mbid>
538
+ <url>http://www.last.fm/music/Green+Day/_/Hitchin%27+a+Ride</url>
539
+ <streamable fulltrack="0">1</streamable>
540
+ <artist>
541
+ <name>Green Day</name>
542
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
543
+ <url>http://www.last.fm/music/Green+Day</url>
544
+ </artist>
545
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8672977.jpg</image>
546
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8672977.jpg</image>
547
+ <image size="large">http://userserve-ak.last.fm/serve/126/8672977.jpg</image>
548
+ </track>
549
+ <track>
550
+ <name>Smells Like Teen Spirit</name>
551
+ <playcount>11</playcount>
552
+ <tagcount></tagcount>
553
+ <mbid></mbid>
554
+ <url>http://www.last.fm/music/Nirvana/_/Smells+Like+Teen+Spirit</url>
555
+ <streamable fulltrack="1">1</streamable>
556
+ <artist>
557
+ <name>Nirvana</name>
558
+ <mbid>5b11f4ce-a62d-471e-81fc-a69a8278c7da</mbid>
559
+ <url>http://www.last.fm/music/Nirvana</url>
560
+ </artist>
561
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8590151.jpg</image>
562
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8590151.jpg</image>
563
+ <image size="large">http://userserve-ak.last.fm/serve/126/8590151.jpg</image>
564
+ </track>
565
+ <track>
566
+ <name>Sterne</name>
567
+ <playcount>11</playcount>
568
+ <tagcount></tagcount>
569
+ <mbid></mbid>
570
+ <url>http://www.last.fm/music/Juli/_/Sterne</url>
571
+ <streamable fulltrack="1">1</streamable>
572
+ <artist>
573
+ <name>Juli</name>
574
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
575
+ <url>http://www.last.fm/music/Juli</url>
576
+ </artist>
577
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8638773.jpg</image>
578
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8638773.jpg</image>
579
+ <image size="large">http://userserve-ak.last.fm/serve/126/8638773.jpg</image>
580
+ </track>
581
+ <track>
582
+ <name>10:1</name>
583
+ <playcount>11</playcount>
584
+ <tagcount></tagcount>
585
+ <mbid></mbid>
586
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/10%3A1</url>
587
+ <streamable fulltrack="1">1</streamable>
588
+ <artist>
589
+ <name>Sportfreunde Stiller</name>
590
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
591
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
592
+ </artist>
593
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634899.jpg</image>
594
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634899.jpg</image>
595
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634899.jpg</image>
596
+ </track>
597
+ <track>
598
+ <name>What's The Difference?</name>
599
+ <playcount>11</playcount>
600
+ <tagcount></tagcount>
601
+ <mbid></mbid>
602
+ <url>http://www.last.fm/music/The+Holloways/_/What%27s+The+Difference%3F</url>
603
+ <streamable fulltrack="0">0</streamable>
604
+ <artist>
605
+ <name>The Holloways</name>
606
+ <mbid>ed0c90ee-4cc0-4928-8f61-93dbd7869eb9</mbid>
607
+ <url>http://www.last.fm/music/The+Holloways</url>
608
+ </artist>
609
+ </track>
610
+ <track>
611
+ <name>Poprocks and Coke</name>
612
+ <playcount>11</playcount>
613
+ <tagcount></tagcount>
614
+ <mbid></mbid>
615
+ <url>http://www.last.fm/music/Green+Day/_/Poprocks+and+Coke</url>
616
+ <streamable fulltrack="0">0</streamable>
617
+ <artist>
618
+ <name>Green Day</name>
619
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
620
+ <url>http://www.last.fm/music/Green+Day</url>
621
+ </artist>
622
+ </track>
623
+ <track>
624
+ <name>Zerrissen</name>
625
+ <playcount>11</playcount>
626
+ <tagcount></tagcount>
627
+ <mbid></mbid>
628
+ <url>http://www.last.fm/music/Juli/_/Zerrissen</url>
629
+ <streamable fulltrack="1">1</streamable>
630
+ <artist>
631
+ <name>Juli</name>
632
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
633
+ <url>http://www.last.fm/music/Juli</url>
634
+ </artist>
635
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10093935.jpg</image>
636
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10093935.jpg</image>
637
+ <image size="large">http://userserve-ak.last.fm/serve/126/10093935.jpg</image>
638
+ </track>
639
+ <track>
640
+ <name>Whistle for the Choir</name>
641
+ <playcount>11</playcount>
642
+ <tagcount></tagcount>
643
+ <mbid></mbid>
644
+ <url>http://www.last.fm/music/The+Fratellis/_/Whistle+for+the+Choir</url>
645
+ <streamable fulltrack="1">1</streamable>
646
+ <artist>
647
+ <name>The Fratellis</name>
648
+ <mbid></mbid>
649
+ <url>http://www.last.fm/music/The+Fratellis</url>
650
+ </artist>
651
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9033529.jpg</image>
652
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9033529.jpg</image>
653
+ <image size="large">http://userserve-ak.last.fm/serve/126/9033529.jpg</image>
654
+ </track>
655
+ <track>
656
+ <name>Diamonds And Pearls</name>
657
+ <playcount>11</playcount>
658
+ <tagcount></tagcount>
659
+ <mbid></mbid>
660
+ <url>http://www.last.fm/music/The+Holloways/_/Diamonds+And+Pearls</url>
661
+ <streamable fulltrack="0">0</streamable>
662
+ <artist>
663
+ <name>The Holloways</name>
664
+ <mbid>ed0c90ee-4cc0-4928-8f61-93dbd7869eb9</mbid>
665
+ <url>http://www.last.fm/music/The+Holloways</url>
666
+ </artist>
667
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4088497.jpg</image>
668
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4088497.jpg</image>
669
+ <image size="large">http://userserve-ak.last.fm/serve/126/4088497.jpg</image>
670
+ </track>
671
+ <track>
672
+ <name>Purple Stain</name>
673
+ <playcount>11</playcount>
674
+ <tagcount></tagcount>
675
+ <mbid></mbid>
676
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers/_/Purple+Stain</url>
677
+ <streamable fulltrack="0">1</streamable>
678
+ <artist>
679
+ <name>Red Hot Chili Peppers</name>
680
+ <mbid>8bfac288-ccc5-448d-9573-c33ea2aa5c30</mbid>
681
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers</url>
682
+ </artist>
683
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8593509.jpg</image>
684
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8593509.jpg</image>
685
+ <image size="large">http://userserve-ak.last.fm/serve/126/8593509.jpg</image>
686
+ </track>
687
+ <track>
688
+ <name>Statecontrol</name>
689
+ <playcount>11</playcount>
690
+ <tagcount></tagcount>
691
+ <mbid></mbid>
692
+ <url>http://www.last.fm/music/The+Hives/_/Statecontrol</url>
693
+ <streamable fulltrack="0">1</streamable>
694
+ <artist>
695
+ <name>The Hives</name>
696
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
697
+ <url>http://www.last.fm/music/The+Hives</url>
698
+ </artist>
699
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25888215.png</image>
700
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25888215.png</image>
701
+ <image size="large">http://userserve-ak.last.fm/serve/126/25888215.png</image>
702
+ </track>
703
+ <track>
704
+ <name>Gone Away</name>
705
+ <playcount>11</playcount>
706
+ <tagcount></tagcount>
707
+ <mbid></mbid>
708
+ <url>http://www.last.fm/music/The+Offspring/_/Gone+Away</url>
709
+ <streamable fulltrack="0">1</streamable>
710
+ <artist>
711
+ <name>The Offspring</name>
712
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
713
+ <url>http://www.last.fm/music/The+Offspring</url>
714
+ </artist>
715
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23714755.jpg</image>
716
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23714755.jpg</image>
717
+ <image size="large">http://userserve-ak.last.fm/serve/126/23714755.jpg</image>
718
+ </track>
719
+ <track>
720
+ <name>Somebody Told Me</name>
721
+ <playcount>11</playcount>
722
+ <tagcount></tagcount>
723
+ <mbid></mbid>
724
+ <url>http://www.last.fm/music/The+Killers/_/Somebody+Told+Me</url>
725
+ <streamable fulltrack="0">1</streamable>
726
+ <artist>
727
+ <name>The Killers</name>
728
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
729
+ <url>http://www.last.fm/music/The+Killers</url>
730
+ </artist>
731
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634917.jpg</image>
732
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634917.jpg</image>
733
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634917.jpg</image>
734
+ </track>
735
+ <track>
736
+ <name>Happiness and Penniless</name>
737
+ <playcount>11</playcount>
738
+ <tagcount></tagcount>
739
+ <mbid></mbid>
740
+ <url>http://www.last.fm/music/The+Holloways/_/Happiness+and+Penniless</url>
741
+ <streamable fulltrack="0">1</streamable>
742
+ <artist>
743
+ <name>The Holloways</name>
744
+ <mbid>ed0c90ee-4cc0-4928-8f61-93dbd7869eb9</mbid>
745
+ <url>http://www.last.fm/music/The+Holloways</url>
746
+ </artist>
747
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4088497.jpg</image>
748
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4088497.jpg</image>
749
+ <image size="large">http://userserve-ak.last.fm/serve/126/4088497.jpg</image>
750
+ </track>
751
+ <track>
752
+ <name>Wir kommen (Was hier los ist!!!)</name>
753
+ <playcount>11</playcount>
754
+ <tagcount></tagcount>
755
+ <mbid></mbid>
756
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Wir+kommen+%28Was+hier+los+ist%21%21%21%29</url>
757
+ <streamable fulltrack="0">0</streamable>
758
+ <artist>
759
+ <name>Sportfreunde Stiller</name>
760
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
761
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
762
+ </artist>
763
+ </track>
764
+ <track>
765
+ <name>Roy Walker</name>
766
+ <playcount>11</playcount>
767
+ <tagcount></tagcount>
768
+ <mbid></mbid>
769
+ <url>http://www.last.fm/music/Belle+and+Sebastian/_/Roy+Walker</url>
770
+ <streamable fulltrack="0">0</streamable>
771
+ <artist>
772
+ <name>Belle and Sebastian</name>
773
+ <mbid>e5c7b94f-e264-473c-bb0f-37c85d4d5c70</mbid>
774
+ <url>http://www.last.fm/music/Belle+and+Sebastian</url>
775
+ </artist>
776
+ <image size="small">http://images.amazon.com/images/P/B0000CBHQ1.01.THUMBZZZ.jpg</image>
777
+ <image size="medium">http://images.amazon.com/images/P/B0000CBHQ1.01.MZZZZZZZ.jpg</image>
778
+ <image size="large">http://images.amazon.com/images/P/B0000CBHQ1.01.LZZZZZZZ.jpg</image>
779
+ </track>
780
+ </tracks></lfm>