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,789 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="1" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>A-Punk</name>
6
+ <playcount>185</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Vampire+Weekend/_/A-Punk</url>
10
+ <streamable fulltrack="0">0</streamable>
11
+ <artist>
12
+ <name>Vampire Weekend</name>
13
+ <mbid>af37c51c-0790-4a29-b995-456f98a6b8c9</mbid>
14
+ <url>http://www.last.fm/music/Vampire+Weekend</url>
15
+ </artist>
16
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10258165.jpg</image>
17
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10258165.jpg</image>
18
+ <image size="large">http://userserve-ak.last.fm/serve/126/10258165.jpg</image>
19
+ </track>
20
+ <track>
21
+ <name>Shake It</name>
22
+ <playcount>183</playcount>
23
+ <tagcount></tagcount>
24
+ <mbid></mbid>
25
+ <url>http://www.last.fm/music/Metro+Station/_/Shake+It</url>
26
+ <streamable fulltrack="0">1</streamable>
27
+ <artist>
28
+ <name>Metro Station</name>
29
+ <mbid>ab7ebf8c-059f-4071-93b1-dd3ae80d60b2</mbid>
30
+ <url>http://www.last.fm/music/Metro+Station</url>
31
+ </artist>
32
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23380199.jpg</image>
33
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23380199.jpg</image>
34
+ <image size="large">http://userserve-ak.last.fm/serve/126/23380199.jpg</image>
35
+ </track>
36
+ <track>
37
+ <name>The Prayer</name>
38
+ <playcount>168</playcount>
39
+ <tagcount></tagcount>
40
+ <mbid></mbid>
41
+ <url>http://www.last.fm/music/Bloc+Party/_/The+Prayer</url>
42
+ <streamable fulltrack="0">1</streamable>
43
+ <artist>
44
+ <name>Bloc Party</name>
45
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
46
+ <url>http://www.last.fm/music/Bloc+Party</url>
47
+ </artist>
48
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9102181.jpg</image>
49
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9102181.jpg</image>
50
+ <image size="large">http://userserve-ak.last.fm/serve/126/9102181.jpg</image>
51
+ </track>
52
+ <track>
53
+ <name>Flux</name>
54
+ <playcount>139</playcount>
55
+ <tagcount></tagcount>
56
+ <mbid></mbid>
57
+ <url>http://www.last.fm/music/Bloc+Party/_/Flux</url>
58
+ <streamable fulltrack="0">1</streamable>
59
+ <artist>
60
+ <name>Bloc Party</name>
61
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
62
+ <url>http://www.last.fm/music/Bloc+Party</url>
63
+ </artist>
64
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10112655.jpg</image>
65
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10112655.jpg</image>
66
+ <image size="large">http://userserve-ak.last.fm/serve/126/10112655.jpg</image>
67
+ </track>
68
+ <track>
69
+ <name>Helicopter</name>
70
+ <playcount>139</playcount>
71
+ <tagcount></tagcount>
72
+ <mbid></mbid>
73
+ <url>http://www.last.fm/music/Bloc+Party/_/Helicopter</url>
74
+ <streamable fulltrack="0">1</streamable>
75
+ <artist>
76
+ <name>Bloc Party</name>
77
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
78
+ <url>http://www.last.fm/music/Bloc+Party</url>
79
+ </artist>
80
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9903887.jpg</image>
81
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9903887.jpg</image>
82
+ <image size="large">http://userserve-ak.last.fm/serve/126/9903887.jpg</image>
83
+ </track>
84
+ <track>
85
+ <name>Kill the Director</name>
86
+ <playcount>123</playcount>
87
+ <tagcount></tagcount>
88
+ <mbid></mbid>
89
+ <url>http://www.last.fm/music/The+Wombats/_/Kill+the+Director</url>
90
+ <streamable fulltrack="0">1</streamable>
91
+ <artist>
92
+ <name>The Wombats</name>
93
+ <mbid>e105c272-b5d7-4135-82ef-d60bded54345</mbid>
94
+ <url>http://www.last.fm/music/The+Wombats</url>
95
+ </artist>
96
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9690457.jpg</image>
97
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9690457.jpg</image>
98
+ <image size="large">http://userserve-ak.last.fm/serve/126/9690457.jpg</image>
99
+ </track>
100
+ <track>
101
+ <name>Waiting for the 7.18</name>
102
+ <playcount>112</playcount>
103
+ <tagcount></tagcount>
104
+ <mbid></mbid>
105
+ <url>http://www.last.fm/music/Bloc+Party/_/Waiting+for+the+7.18</url>
106
+ <streamable fulltrack="0">1</streamable>
107
+ <artist>
108
+ <name>Bloc Party</name>
109
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
110
+ <url>http://www.last.fm/music/Bloc+Party</url>
111
+ </artist>
112
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9102181.jpg</image>
113
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9102181.jpg</image>
114
+ <image size="large">http://userserve-ak.last.fm/serve/126/9102181.jpg</image>
115
+ </track>
116
+ <track>
117
+ <name>Feeling This</name>
118
+ <playcount>110</playcount>
119
+ <tagcount></tagcount>
120
+ <mbid></mbid>
121
+ <url>http://www.last.fm/music/blink-182/_/Feeling+This</url>
122
+ <streamable fulltrack="1">1</streamable>
123
+ <artist>
124
+ <name>blink-182</name>
125
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
126
+ <url>http://www.last.fm/music/blink-182</url>
127
+ </artist>
128
+ <image size="small">http://userserve-ak.last.fm/serve/34s/6039819.jpg</image>
129
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/6039819.jpg</image>
130
+ <image size="large">http://userserve-ak.last.fm/serve/126/6039819.jpg</image>
131
+ </track>
132
+ <track>
133
+ <name>Talons</name>
134
+ <playcount>106</playcount>
135
+ <tagcount></tagcount>
136
+ <mbid></mbid>
137
+ <url>http://www.last.fm/music/Bloc+Party/_/Talons</url>
138
+ <streamable fulltrack="1">1</streamable>
139
+ <artist>
140
+ <name>Bloc Party</name>
141
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
142
+ <url>http://www.last.fm/music/Bloc+Party</url>
143
+ </artist>
144
+ </track>
145
+ <track>
146
+ <name>Nothing to Worry About</name>
147
+ <playcount>104</playcount>
148
+ <tagcount></tagcount>
149
+ <mbid></mbid>
150
+ <url>http://www.last.fm/music/Peter+Bjorn+and+John/_/Nothing+to+Worry+About</url>
151
+ <streamable fulltrack="0">1</streamable>
152
+ <artist>
153
+ <name>Peter Bjorn and John</name>
154
+ <mbid>32a83250-7e26-422d-b9ac-f4564343e9ce</mbid>
155
+ <url>http://www.last.fm/music/Peter+Bjorn+and+John</url>
156
+ </artist>
157
+ </track>
158
+ <track>
159
+ <name>Banquet</name>
160
+ <playcount>102</playcount>
161
+ <tagcount></tagcount>
162
+ <mbid></mbid>
163
+ <url>http://www.last.fm/music/Bloc+Party/_/Banquet</url>
164
+ <streamable fulltrack="0">1</streamable>
165
+ <artist>
166
+ <name>Bloc Party</name>
167
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
168
+ <url>http://www.last.fm/music/Bloc+Party</url>
169
+ </artist>
170
+ <image size="small">http://images.amazon.com/images/P/B0002A4IYC.01.MZZZZZZZ.jpg</image>
171
+ <image size="medium">http://images.amazon.com/images/P/B0002A4IYC.01.MZZZZZZZ.jpg</image>
172
+ <image size="large">http://images.amazon.com/images/P/B0002A4IYC.01.MZZZZZZZ.jpg</image>
173
+ </track>
174
+ <track>
175
+ <name>Ottoman</name>
176
+ <playcount>99</playcount>
177
+ <tagcount></tagcount>
178
+ <mbid></mbid>
179
+ <url>http://www.last.fm/music/Vampire+Weekend/_/Ottoman</url>
180
+ <streamable fulltrack="0">0</streamable>
181
+ <artist>
182
+ <name>Vampire Weekend</name>
183
+ <mbid>af37c51c-0790-4a29-b995-456f98a6b8c9</mbid>
184
+ <url>http://www.last.fm/music/Vampire+Weekend</url>
185
+ </artist>
186
+ </track>
187
+ <track>
188
+ <name>Song no. 1</name>
189
+ <playcount>90</playcount>
190
+ <tagcount></tagcount>
191
+ <mbid></mbid>
192
+ <url>http://www.last.fm/music/Trashmonkeys/_/Song+no.+1</url>
193
+ <streamable fulltrack="1">1</streamable>
194
+ <artist>
195
+ <name>Trashmonkeys</name>
196
+ <mbid>e475f569-d662-45fc-be1e-2539ab60a094</mbid>
197
+ <url>http://www.last.fm/music/Trashmonkeys</url>
198
+ </artist>
199
+ <image size="small">http://images.amazon.com/images/P/B0002KP5YY.03.MZZZZZZZ.jpg</image>
200
+ <image size="medium">http://images.amazon.com/images/P/B0002KP5YY.03.MZZZZZZZ.jpg</image>
201
+ <image size="large">http://images.amazon.com/images/P/B0002KP5YY.03.MZZZZZZZ.jpg</image>
202
+ </track>
203
+ <track>
204
+ <name>Lay It Down</name>
205
+ <playcount>86</playcount>
206
+ <tagcount></tagcount>
207
+ <mbid></mbid>
208
+ <url>http://www.last.fm/music/Peter+Bjorn+and+John/_/Lay+It+Down</url>
209
+ <streamable fulltrack="0">1</streamable>
210
+ <artist>
211
+ <name>Peter Bjorn and John</name>
212
+ <mbid>32a83250-7e26-422d-b9ac-f4564343e9ce</mbid>
213
+ <url>http://www.last.fm/music/Peter+Bjorn+and+John</url>
214
+ </artist>
215
+ </track>
216
+ <track>
217
+ <name>Electric Feel</name>
218
+ <playcount>85</playcount>
219
+ <tagcount></tagcount>
220
+ <mbid></mbid>
221
+ <url>http://www.last.fm/music/MGMT/_/Electric+Feel</url>
222
+ <streamable fulltrack="0">1</streamable>
223
+ <artist>
224
+ <name>MGMT</name>
225
+ <mbid>c485632c-b784-4ee9-8ea1-c5fb365681fc</mbid>
226
+ <url>http://www.last.fm/music/MGMT</url>
227
+ </artist>
228
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22357783.jpg</image>
229
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22357783.jpg</image>
230
+ <image size="large">http://userserve-ak.last.fm/serve/126/22357783.jpg</image>
231
+ </track>
232
+ <track>
233
+ <name>Moonpigs</name>
234
+ <playcount>84</playcount>
235
+ <tagcount></tagcount>
236
+ <mbid></mbid>
237
+ <url>http://www.last.fm/music/Blackmail/_/Moonpigs</url>
238
+ <streamable fulltrack="0">1</streamable>
239
+ <artist>
240
+ <name>Blackmail</name>
241
+ <mbid>d415628d-8c84-453b-8a75-4816b088dbc9</mbid>
242
+ <url>http://www.last.fm/music/Blackmail</url>
243
+ </artist>
244
+ <image size="small">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
245
+ <image size="medium">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
246
+ <image size="large">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
247
+ </track>
248
+ <track>
249
+ <name>Blue Light</name>
250
+ <playcount>84</playcount>
251
+ <tagcount></tagcount>
252
+ <mbid></mbid>
253
+ <url>http://www.last.fm/music/Bloc+Party/_/Blue+Light</url>
254
+ <streamable fulltrack="0">1</streamable>
255
+ <artist>
256
+ <name>Bloc Party</name>
257
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
258
+ <url>http://www.last.fm/music/Bloc+Party</url>
259
+ </artist>
260
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9903887.jpg</image>
261
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9903887.jpg</image>
262
+ <image size="large">http://userserve-ak.last.fm/serve/126/9903887.jpg</image>
263
+ </track>
264
+ <track>
265
+ <name>I Bet You Look Good on the Dancefloor</name>
266
+ <playcount>84</playcount>
267
+ <tagcount></tagcount>
268
+ <mbid></mbid>
269
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/I+Bet+You+Look+Good+on+the+Dancefloor</url>
270
+ <streamable fulltrack="0">1</streamable>
271
+ <artist>
272
+ <name>Arctic Monkeys</name>
273
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
274
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
275
+ </artist>
276
+ <image size="small">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
277
+ <image size="medium">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
278
+ <image size="large">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
279
+ </track>
280
+ <track>
281
+ <name>Like Eating Glass</name>
282
+ <playcount>81</playcount>
283
+ <tagcount></tagcount>
284
+ <mbid></mbid>
285
+ <url>http://www.last.fm/music/Bloc+Party/_/Like+Eating+Glass</url>
286
+ <streamable fulltrack="0">1</streamable>
287
+ <artist>
288
+ <name>Bloc Party</name>
289
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
290
+ <url>http://www.last.fm/music/Bloc+Party</url>
291
+ </artist>
292
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9903887.jpg</image>
293
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9903887.jpg</image>
294
+ <image size="large">http://userserve-ak.last.fm/serve/126/9903887.jpg</image>
295
+ </track>
296
+ <track>
297
+ <name>Young Folks</name>
298
+ <playcount>81</playcount>
299
+ <tagcount></tagcount>
300
+ <mbid></mbid>
301
+ <url>http://www.last.fm/music/Peter+Bjorn+and+John/_/Young+Folks</url>
302
+ <streamable fulltrack="0">1</streamable>
303
+ <artist>
304
+ <name>Peter Bjorn and John</name>
305
+ <mbid>32a83250-7e26-422d-b9ac-f4564343e9ce</mbid>
306
+ <url>http://www.last.fm/music/Peter+Bjorn+and+John</url>
307
+ </artist>
308
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19754455.jpg</image>
309
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19754455.jpg</image>
310
+ <image size="large">http://userserve-ak.last.fm/serve/126/19754455.jpg</image>
311
+ </track>
312
+ <track>
313
+ <name>When You Were Young</name>
314
+ <playcount>80</playcount>
315
+ <tagcount></tagcount>
316
+ <mbid></mbid>
317
+ <url>http://www.last.fm/music/The+Killers/_/When+You+Were+Young</url>
318
+ <streamable fulltrack="1">1</streamable>
319
+ <artist>
320
+ <name>The Killers</name>
321
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
322
+ <url>http://www.last.fm/music/The+Killers</url>
323
+ </artist>
324
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9793987.jpg</image>
325
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9793987.jpg</image>
326
+ <image size="large">http://userserve-ak.last.fm/serve/126/9793987.jpg</image>
327
+ </track>
328
+ <track>
329
+ <name>Two More Years</name>
330
+ <playcount>80</playcount>
331
+ <tagcount></tagcount>
332
+ <mbid></mbid>
333
+ <url>http://www.last.fm/music/Bloc+Party/_/Two+More+Years</url>
334
+ <streamable fulltrack="1">1</streamable>
335
+ <artist>
336
+ <name>Bloc Party</name>
337
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
338
+ <url>http://www.last.fm/music/Bloc+Party</url>
339
+ </artist>
340
+ <image size="small">http://images.amazon.com/images/P/B000BCHJYM.01.MZZZZZZZ.jpg</image>
341
+ <image size="medium">http://images.amazon.com/images/P/B000BCHJYM.01.MZZZZZZZ.jpg</image>
342
+ <image size="large">http://images.amazon.com/images/P/B000BCHJYM.01.MZZZZZZZ.jpg</image>
343
+ </track>
344
+ <track>
345
+ <name>When the Sun Goes Down</name>
346
+ <playcount>74</playcount>
347
+ <tagcount></tagcount>
348
+ <mbid></mbid>
349
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/When+the+Sun+Goes+Down</url>
350
+ <streamable fulltrack="0">0</streamable>
351
+ <artist>
352
+ <name>Arctic Monkeys</name>
353
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
354
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
355
+ </artist>
356
+ <image size="small">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
357
+ <image size="medium">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
358
+ <image size="large">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
359
+ </track>
360
+ <track>
361
+ <name>She's Hearing Voices</name>
362
+ <playcount>73</playcount>
363
+ <tagcount></tagcount>
364
+ <mbid></mbid>
365
+ <url>http://www.last.fm/music/Bloc+Party/_/She%27s+Hearing+Voices</url>
366
+ <streamable fulltrack="0">1</streamable>
367
+ <artist>
368
+ <name>Bloc Party</name>
369
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
370
+ <url>http://www.last.fm/music/Bloc+Party</url>
371
+ </artist>
372
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9903887.jpg</image>
373
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9903887.jpg</image>
374
+ <image size="large">http://userserve-ak.last.fm/serve/126/9903887.jpg</image>
375
+ </track>
376
+ <track>
377
+ <name>Uniform</name>
378
+ <playcount>72</playcount>
379
+ <tagcount></tagcount>
380
+ <mbid></mbid>
381
+ <url>http://www.last.fm/music/Bloc+Party/_/Uniform</url>
382
+ <streamable fulltrack="0">1</streamable>
383
+ <artist>
384
+ <name>Bloc Party</name>
385
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
386
+ <url>http://www.last.fm/music/Bloc+Party</url>
387
+ </artist>
388
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9102181.jpg</image>
389
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9102181.jpg</image>
390
+ <image size="large">http://userserve-ak.last.fm/serve/126/9102181.jpg</image>
391
+ </track>
392
+ <track>
393
+ <name>Time to Pretend</name>
394
+ <playcount>72</playcount>
395
+ <tagcount></tagcount>
396
+ <mbid></mbid>
397
+ <url>http://www.last.fm/music/MGMT/_/Time+to+Pretend</url>
398
+ <streamable fulltrack="0">1</streamable>
399
+ <artist>
400
+ <name>MGMT</name>
401
+ <mbid>c485632c-b784-4ee9-8ea1-c5fb365681fc</mbid>
402
+ <url>http://www.last.fm/music/MGMT</url>
403
+ </artist>
404
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22357783.jpg</image>
405
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22357783.jpg</image>
406
+ <image size="large">http://userserve-ak.last.fm/serve/126/22357783.jpg</image>
407
+ </track>
408
+ <track>
409
+ <name>The Rock Show</name>
410
+ <playcount>71</playcount>
411
+ <tagcount></tagcount>
412
+ <mbid></mbid>
413
+ <url>http://www.last.fm/music/blink-182/_/The+Rock+Show</url>
414
+ <streamable fulltrack="0">1</streamable>
415
+ <artist>
416
+ <name>blink-182</name>
417
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
418
+ <url>http://www.last.fm/music/blink-182</url>
419
+ </artist>
420
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8630697.jpg</image>
421
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8630697.jpg</image>
422
+ <image size="large">http://userserve-ak.last.fm/serve/126/8630697.jpg</image>
423
+ </track>
424
+ <track>
425
+ <name>The Pioneers</name>
426
+ <playcount>71</playcount>
427
+ <tagcount></tagcount>
428
+ <mbid></mbid>
429
+ <url>http://www.last.fm/music/Bloc+Party/_/The+Pioneers</url>
430
+ <streamable fulltrack="0">1</streamable>
431
+ <artist>
432
+ <name>Bloc Party</name>
433
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
434
+ <url>http://www.last.fm/music/Bloc+Party</url>
435
+ </artist>
436
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9903887.jpg</image>
437
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9903887.jpg</image>
438
+ <image size="large">http://userserve-ak.last.fm/serve/126/9903887.jpg</image>
439
+ </track>
440
+ <track>
441
+ <name>The View From the Afternoon</name>
442
+ <playcount>71</playcount>
443
+ <tagcount></tagcount>
444
+ <mbid></mbid>
445
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/The+View+From+the+Afternoon</url>
446
+ <streamable fulltrack="0">1</streamable>
447
+ <artist>
448
+ <name>Arctic Monkeys</name>
449
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
450
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
451
+ </artist>
452
+ <image size="small">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
453
+ <image size="medium">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
454
+ <image size="large">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
455
+ </track>
456
+ <track>
457
+ <name>Hurricane Jane</name>
458
+ <playcount>70</playcount>
459
+ <tagcount></tagcount>
460
+ <mbid></mbid>
461
+ <url>http://www.last.fm/music/Black+Kids/_/Hurricane+Jane</url>
462
+ <streamable fulltrack="0">1</streamable>
463
+ <artist>
464
+ <name>Black Kids</name>
465
+ <mbid></mbid>
466
+ <url>http://www.last.fm/music/Black+Kids</url>
467
+ </artist>
468
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10310053.jpg</image>
469
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10310053.jpg</image>
470
+ <image size="large">http://userserve-ak.last.fm/serve/126/10310053.jpg</image>
471
+ </track>
472
+ <track>
473
+ <name>Hunting for Witches</name>
474
+ <playcount>69</playcount>
475
+ <tagcount></tagcount>
476
+ <mbid></mbid>
477
+ <url>http://www.last.fm/music/Bloc+Party/_/Hunting+for+Witches</url>
478
+ <streamable fulltrack="0">1</streamable>
479
+ <artist>
480
+ <name>Bloc Party</name>
481
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
482
+ <url>http://www.last.fm/music/Bloc+Party</url>
483
+ </artist>
484
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9102181.jpg</image>
485
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9102181.jpg</image>
486
+ <image size="large">http://userserve-ak.last.fm/serve/126/9102181.jpg</image>
487
+ </track>
488
+ <track>
489
+ <name>Price of Gasoline</name>
490
+ <playcount>69</playcount>
491
+ <tagcount></tagcount>
492
+ <mbid></mbid>
493
+ <url>http://www.last.fm/music/Bloc+Party/_/Price+of+Gasoline</url>
494
+ <streamable fulltrack="0">1</streamable>
495
+ <artist>
496
+ <name>Bloc Party</name>
497
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
498
+ <url>http://www.last.fm/music/Bloc+Party</url>
499
+ </artist>
500
+ <image size="small">http://userserve-ak.last.fm/serve/34s/3410564.jpg</image>
501
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/3410564.jpg</image>
502
+ <image size="large">http://userserve-ak.last.fm/serve/126/3410564.jpg</image>
503
+ </track>
504
+ <track>
505
+ <name>Where Is Home?</name>
506
+ <playcount>66</playcount>
507
+ <tagcount></tagcount>
508
+ <mbid></mbid>
509
+ <url>http://www.last.fm/music/Bloc+Party/_/Where+Is+Home%3F</url>
510
+ <streamable fulltrack="0">1</streamable>
511
+ <artist>
512
+ <name>Bloc Party</name>
513
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
514
+ <url>http://www.last.fm/music/Bloc+Party</url>
515
+ </artist>
516
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9102181.jpg</image>
517
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9102181.jpg</image>
518
+ <image size="large">http://userserve-ak.last.fm/serve/126/9102181.jpg</image>
519
+ </track>
520
+ <track>
521
+ <name>Everyone Safe</name>
522
+ <playcount>66</playcount>
523
+ <tagcount></tagcount>
524
+ <mbid></mbid>
525
+ <url>http://www.last.fm/music/Blackmail/_/Everyone+Safe</url>
526
+ <streamable fulltrack="0">1</streamable>
527
+ <artist>
528
+ <name>Blackmail</name>
529
+ <mbid>d415628d-8c84-453b-8a75-4816b088dbc9</mbid>
530
+ <url>http://www.last.fm/music/Blackmail</url>
531
+ </artist>
532
+ <image size="small">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
533
+ <image size="medium">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
534
+ <image size="large">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
535
+ </track>
536
+ <track>
537
+ <name>If You Love a Woman</name>
538
+ <playcount>66</playcount>
539
+ <tagcount></tagcount>
540
+ <mbid></mbid>
541
+ <url>http://www.last.fm/music/Dirty+Pretty+Things/_/If+You+Love+a+Woman</url>
542
+ <streamable fulltrack="1">1</streamable>
543
+ <artist>
544
+ <name>Dirty Pretty Things</name>
545
+ <mbid>648615ca-ca74-460d-928a-2bae67ae6d14</mbid>
546
+ <url>http://www.last.fm/music/Dirty+Pretty+Things</url>
547
+ </artist>
548
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8810557.jpg</image>
549
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8810557.jpg</image>
550
+ <image size="large">http://userserve-ak.last.fm/serve/126/8810557.jpg</image>
551
+ </track>
552
+ <track>
553
+ <name>Let's Push Things Forward</name>
554
+ <playcount>65</playcount>
555
+ <tagcount></tagcount>
556
+ <mbid></mbid>
557
+ <url>http://www.last.fm/music/The+Streets/_/Let%27s+Push+Things+Forward</url>
558
+ <streamable fulltrack="0">1</streamable>
559
+ <artist>
560
+ <name>The Streets</name>
561
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
562
+ <url>http://www.last.fm/music/The+Streets</url>
563
+ </artist>
564
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8594953.jpg</image>
565
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8594953.jpg</image>
566
+ <image size="large">http://userserve-ak.last.fm/serve/126/8594953.jpg</image>
567
+ </track>
568
+ <track>
569
+ <name>Sunday</name>
570
+ <playcount>65</playcount>
571
+ <tagcount></tagcount>
572
+ <mbid></mbid>
573
+ <url>http://www.last.fm/music/Bloc+Party/_/Sunday</url>
574
+ <streamable fulltrack="0">1</streamable>
575
+ <artist>
576
+ <name>Bloc Party</name>
577
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
578
+ <url>http://www.last.fm/music/Bloc+Party</url>
579
+ </artist>
580
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9102181.jpg</image>
581
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9102181.jpg</image>
582
+ <image size="large">http://userserve-ak.last.fm/serve/126/9102181.jpg</image>
583
+ </track>
584
+ <track>
585
+ <name>Little Thoughts</name>
586
+ <playcount>64</playcount>
587
+ <tagcount></tagcount>
588
+ <mbid></mbid>
589
+ <url>http://www.last.fm/music/Bloc+Party/_/Little+Thoughts</url>
590
+ <streamable fulltrack="0">1</streamable>
591
+ <artist>
592
+ <name>Bloc Party</name>
593
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
594
+ <url>http://www.last.fm/music/Bloc+Party</url>
595
+ </artist>
596
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9903887.jpg</image>
597
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9903887.jpg</image>
598
+ <image size="large">http://userserve-ak.last.fm/serve/126/9903887.jpg</image>
599
+ </track>
600
+ <track>
601
+ <name>This Modern Love</name>
602
+ <playcount>64</playcount>
603
+ <tagcount></tagcount>
604
+ <mbid></mbid>
605
+ <url>http://www.last.fm/music/Bloc+Party/_/This+Modern+Love</url>
606
+ <streamable fulltrack="1">1</streamable>
607
+ <artist>
608
+ <name>Bloc Party</name>
609
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
610
+ <url>http://www.last.fm/music/Bloc+Party</url>
611
+ </artist>
612
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9903887.jpg</image>
613
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9903887.jpg</image>
614
+ <image size="large">http://userserve-ak.last.fm/serve/126/9903887.jpg</image>
615
+ </track>
616
+ <track>
617
+ <name>Da Hui</name>
618
+ <playcount>63</playcount>
619
+ <tagcount></tagcount>
620
+ <mbid></mbid>
621
+ <url>http://www.last.fm/music/The+Offspring/_/Da+Hui</url>
622
+ <streamable fulltrack="0">0</streamable>
623
+ <artist>
624
+ <name>The Offspring</name>
625
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
626
+ <url>http://www.last.fm/music/The+Offspring</url>
627
+ </artist>
628
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23739571.jpg</image>
629
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23739571.jpg</image>
630
+ <image size="large">http://userserve-ak.last.fm/serve/126/23739571.jpg</image>
631
+ </track>
632
+ <track>
633
+ <name>Luno</name>
634
+ <playcount>63</playcount>
635
+ <tagcount></tagcount>
636
+ <mbid></mbid>
637
+ <url>http://www.last.fm/music/Bloc+Party/_/Luno</url>
638
+ <streamable fulltrack="0">1</streamable>
639
+ <artist>
640
+ <name>Bloc Party</name>
641
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
642
+ <url>http://www.last.fm/music/Bloc+Party</url>
643
+ </artist>
644
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9903887.jpg</image>
645
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9903887.jpg</image>
646
+ <image size="large">http://userserve-ak.last.fm/serve/126/9903887.jpg</image>
647
+ </track>
648
+ <track>
649
+ <name>Positive Tension</name>
650
+ <playcount>63</playcount>
651
+ <tagcount></tagcount>
652
+ <mbid></mbid>
653
+ <url>http://www.last.fm/music/Bloc+Party/_/Positive+Tension</url>
654
+ <streamable fulltrack="0">1</streamable>
655
+ <artist>
656
+ <name>Bloc Party</name>
657
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
658
+ <url>http://www.last.fm/music/Bloc+Party</url>
659
+ </artist>
660
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9903887.jpg</image>
661
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9903887.jpg</image>
662
+ <image size="large">http://userserve-ak.last.fm/serve/126/9903887.jpg</image>
663
+ </track>
664
+ <track>
665
+ <name>Compliments</name>
666
+ <playcount>62</playcount>
667
+ <tagcount></tagcount>
668
+ <mbid></mbid>
669
+ <url>http://www.last.fm/music/Bloc+Party/_/Compliments</url>
670
+ <streamable fulltrack="0">1</streamable>
671
+ <artist>
672
+ <name>Bloc Party</name>
673
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
674
+ <url>http://www.last.fm/music/Bloc+Party</url>
675
+ </artist>
676
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9903887.jpg</image>
677
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9903887.jpg</image>
678
+ <image size="large">http://userserve-ak.last.fm/serve/126/9903887.jpg</image>
679
+ </track>
680
+ <track>
681
+ <name>On</name>
682
+ <playcount>60</playcount>
683
+ <tagcount></tagcount>
684
+ <mbid></mbid>
685
+ <url>http://www.last.fm/music/Bloc+Party/_/On</url>
686
+ <streamable fulltrack="0">1</streamable>
687
+ <artist>
688
+ <name>Bloc Party</name>
689
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
690
+ <url>http://www.last.fm/music/Bloc+Party</url>
691
+ </artist>
692
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9102181.jpg</image>
693
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9102181.jpg</image>
694
+ <image size="large">http://userserve-ak.last.fm/serve/126/9102181.jpg</image>
695
+ </track>
696
+ <track>
697
+ <name>Ich, Roque</name>
698
+ <playcount>60</playcount>
699
+ <tagcount></tagcount>
700
+ <mbid></mbid>
701
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Ich%2C+Roque</url>
702
+ <streamable fulltrack="0">1</streamable>
703
+ <artist>
704
+ <name>Sportfreunde Stiller</name>
705
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
706
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
707
+ </artist>
708
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8717053.jpg</image>
709
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8717053.jpg</image>
710
+ <image size="large">http://userserve-ak.last.fm/serve/126/8717053.jpg</image>
711
+ </track>
712
+ <track>
713
+ <name>Kreuzberg</name>
714
+ <playcount>60</playcount>
715
+ <tagcount></tagcount>
716
+ <mbid></mbid>
717
+ <url>http://www.last.fm/music/Bloc+Party/_/Kreuzberg</url>
718
+ <streamable fulltrack="0">1</streamable>
719
+ <artist>
720
+ <name>Bloc Party</name>
721
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
722
+ <url>http://www.last.fm/music/Bloc+Party</url>
723
+ </artist>
724
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9102181.jpg</image>
725
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9102181.jpg</image>
726
+ <image size="large">http://userserve-ak.last.fm/serve/126/9102181.jpg</image>
727
+ </track>
728
+ <track>
729
+ <name>Perfekte Welle</name>
730
+ <playcount>59</playcount>
731
+ <tagcount></tagcount>
732
+ <mbid></mbid>
733
+ <url>http://www.last.fm/music/Juli/_/Perfekte+Welle</url>
734
+ <streamable fulltrack="0">1</streamable>
735
+ <artist>
736
+ <name>Juli</name>
737
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
738
+ <url>http://www.last.fm/music/Juli</url>
739
+ </artist>
740
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8638773.jpg</image>
741
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8638773.jpg</image>
742
+ <image size="large">http://userserve-ak.last.fm/serve/126/8638773.jpg</image>
743
+ </track>
744
+ <track>
745
+ <name>So Here We Are</name>
746
+ <playcount>58</playcount>
747
+ <tagcount></tagcount>
748
+ <mbid></mbid>
749
+ <url>http://www.last.fm/music/Bloc+Party/_/So+Here+We+Are</url>
750
+ <streamable fulltrack="0">1</streamable>
751
+ <artist>
752
+ <name>Bloc Party</name>
753
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
754
+ <url>http://www.last.fm/music/Bloc+Party</url>
755
+ </artist>
756
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9903887.jpg</image>
757
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9903887.jpg</image>
758
+ <image size="large">http://userserve-ak.last.fm/serve/126/9903887.jpg</image>
759
+ </track>
760
+ <track>
761
+ <name>Mercury</name>
762
+ <playcount>58</playcount>
763
+ <tagcount></tagcount>
764
+ <mbid></mbid>
765
+ <url>http://www.last.fm/music/Bloc+Party/_/Mercury</url>
766
+ <streamable fulltrack="1">1</streamable>
767
+ <artist>
768
+ <name>Bloc Party</name>
769
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
770
+ <url>http://www.last.fm/music/Bloc+Party</url>
771
+ </artist>
772
+ </track>
773
+ <track>
774
+ <name>Deadwood</name>
775
+ <playcount>58</playcount>
776
+ <tagcount></tagcount>
777
+ <mbid></mbid>
778
+ <url>http://www.last.fm/music/Dirty+Pretty+Things/_/Deadwood</url>
779
+ <streamable fulltrack="1">1</streamable>
780
+ <artist>
781
+ <name>Dirty Pretty Things</name>
782
+ <mbid>648615ca-ca74-460d-928a-2bae67ae6d14</mbid>
783
+ <url>http://www.last.fm/music/Dirty+Pretty+Things</url>
784
+ </artist>
785
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8810557.jpg</image>
786
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8810557.jpg</image>
787
+ <image size="large">http://userserve-ak.last.fm/serve/126/8810557.jpg</image>
788
+ </track>
789
+ </tracks></lfm>