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,792 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="4" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>Red Flag</name>
6
+ <playcount>31</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Billy+Talent/_/Red+Flag</url>
10
+ <streamable fulltrack="0">1</streamable>
11
+ <artist>
12
+ <name>Billy Talent</name>
13
+ <mbid>fd429857-5ace-4609-ae54-1502c3bdac11</mbid>
14
+ <url>http://www.last.fm/music/Billy+Talent</url>
15
+ </artist>
16
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28906727.jpg</image>
17
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28906727.jpg</image>
18
+ <image size="large">http://userserve-ak.last.fm/serve/126/28906727.jpg</image>
19
+ </track>
20
+ <track>
21
+ <name>In the Shadows</name>
22
+ <playcount>31</playcount>
23
+ <tagcount></tagcount>
24
+ <mbid></mbid>
25
+ <url>http://www.last.fm/music/The+Rasmus/_/In+the+Shadows</url>
26
+ <streamable fulltrack="0">1</streamable>
27
+ <artist>
28
+ <name>The Rasmus</name>
29
+ <mbid>012e3432-71d3-4317-9ce5-b60cb6cdc38f</mbid>
30
+ <url>http://www.last.fm/music/The+Rasmus</url>
31
+ </artist>
32
+ <image size="small">http://images-eu.amazon.com/images/P/B0000DELCR.03.MZZZZZZZ.jpg</image>
33
+ <image size="medium">http://images-eu.amazon.com/images/P/B0000DELCR.03.MZZZZZZZ.jpg</image>
34
+ <image size="large">http://images-eu.amazon.com/images/P/B0000DELCR.03.MZZZZZZZ.jpg</image>
35
+ </track>
36
+ <track>
37
+ <name>Gin &amp; Milk</name>
38
+ <playcount>31</playcount>
39
+ <tagcount></tagcount>
40
+ <mbid></mbid>
41
+ <url>http://www.last.fm/music/Dirty+Pretty+Things/_/Gin%2B%2526%2BMilk</url>
42
+ <streamable fulltrack="1">1</streamable>
43
+ <artist>
44
+ <name>Dirty Pretty Things</name>
45
+ <mbid>648615ca-ca74-460d-928a-2bae67ae6d14</mbid>
46
+ <url>http://www.last.fm/music/Dirty+Pretty+Things</url>
47
+ </artist>
48
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8810557.jpg</image>
49
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8810557.jpg</image>
50
+ <image size="large">http://userserve-ak.last.fm/serve/126/8810557.jpg</image>
51
+ </track>
52
+ <track>
53
+ <name>This Fire</name>
54
+ <playcount>31</playcount>
55
+ <tagcount></tagcount>
56
+ <mbid></mbid>
57
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/This+Fire</url>
58
+ <streamable fulltrack="0">1</streamable>
59
+ <artist>
60
+ <name>Franz Ferdinand</name>
61
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
62
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
63
+ </artist>
64
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22427459.jpg</image>
65
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22427459.jpg</image>
66
+ <image size="large">http://userserve-ak.last.fm/serve/126/22427459.jpg</image>
67
+ </track>
68
+ <track>
69
+ <name>Michael</name>
70
+ <playcount>30</playcount>
71
+ <tagcount></tagcount>
72
+ <mbid></mbid>
73
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/Michael</url>
74
+ <streamable fulltrack="0">1</streamable>
75
+ <artist>
76
+ <name>Franz Ferdinand</name>
77
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
78
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
79
+ </artist>
80
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22427459.jpg</image>
81
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22427459.jpg</image>
82
+ <image size="large">http://userserve-ak.last.fm/serve/126/22427459.jpg</image>
83
+ </track>
84
+ <track>
85
+ <name>Ein Kompliment</name>
86
+ <playcount>30</playcount>
87
+ <tagcount></tagcount>
88
+ <mbid></mbid>
89
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Ein+Kompliment</url>
90
+ <streamable fulltrack="0">1</streamable>
91
+ <artist>
92
+ <name>Sportfreunde Stiller</name>
93
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
94
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
95
+ </artist>
96
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634899.jpg</image>
97
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634899.jpg</image>
98
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634899.jpg</image>
99
+ </track>
100
+ <track>
101
+ <name>Electric Feel (Justice remix)</name>
102
+ <playcount>30</playcount>
103
+ <tagcount></tagcount>
104
+ <mbid></mbid>
105
+ <url>http://www.last.fm/music/MGMT/_/Electric+Feel+%28Justice+remix%29</url>
106
+ <streamable fulltrack="0">1</streamable>
107
+ <artist>
108
+ <name>MGMT</name>
109
+ <mbid>c485632c-b784-4ee9-8ea1-c5fb365681fc</mbid>
110
+ <url>http://www.last.fm/music/MGMT</url>
111
+ </artist>
112
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22647679.jpg</image>
113
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22647679.jpg</image>
114
+ <image size="large">http://userserve-ak.last.fm/serve/126/22647679.jpg</image>
115
+ </track>
116
+ <track>
117
+ <name>Cheating on You</name>
118
+ <playcount>30</playcount>
119
+ <tagcount></tagcount>
120
+ <mbid></mbid>
121
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/Cheating+on+You</url>
122
+ <streamable fulltrack="0">1</streamable>
123
+ <artist>
124
+ <name>Franz Ferdinand</name>
125
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
126
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
127
+ </artist>
128
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22427459.jpg</image>
129
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22427459.jpg</image>
130
+ <image size="large">http://userserve-ak.last.fm/serve/126/22427459.jpg</image>
131
+ </track>
132
+ <track>
133
+ <name>A Certain Romance</name>
134
+ <playcount>29</playcount>
135
+ <tagcount></tagcount>
136
+ <mbid></mbid>
137
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/A+Certain+Romance</url>
138
+ <streamable fulltrack="0">1</streamable>
139
+ <artist>
140
+ <name>Arctic Monkeys</name>
141
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
142
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
143
+ </artist>
144
+ <image size="small">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
145
+ <image size="medium">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
146
+ <image size="large">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
147
+ </track>
148
+ <track>
149
+ <name>Electricido</name>
150
+ <playcount>29</playcount>
151
+ <tagcount></tagcount>
152
+ <mbid></mbid>
153
+ <url>http://www.last.fm/music/Blackmail/_/Electricido</url>
154
+ <streamable fulltrack="0">1</streamable>
155
+ <artist>
156
+ <name>Blackmail</name>
157
+ <mbid>d415628d-8c84-453b-8a75-4816b088dbc9</mbid>
158
+ <url>http://www.last.fm/music/Blackmail</url>
159
+ </artist>
160
+ <image size="small">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
161
+ <image size="medium">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
162
+ <image size="large">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
163
+ </track>
164
+ <track>
165
+ <name>Auf Achse</name>
166
+ <playcount>29</playcount>
167
+ <tagcount></tagcount>
168
+ <mbid></mbid>
169
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/Auf+Achse</url>
170
+ <streamable fulltrack="0">1</streamable>
171
+ <artist>
172
+ <name>Franz Ferdinand</name>
173
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
174
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
175
+ </artist>
176
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22427459.jpg</image>
177
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22427459.jpg</image>
178
+ <image size="large">http://userserve-ak.last.fm/serve/126/22427459.jpg</image>
179
+ </track>
180
+ <track>
181
+ <name>It Was Supposed to Be So Easy</name>
182
+ <playcount>29</playcount>
183
+ <tagcount></tagcount>
184
+ <mbid></mbid>
185
+ <url>http://www.last.fm/music/The+Streets/_/It+Was+Supposed+to+Be+So+Easy</url>
186
+ <streamable fulltrack="0">1</streamable>
187
+ <artist>
188
+ <name>The Streets</name>
189
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
190
+ <url>http://www.last.fm/music/The+Streets</url>
191
+ </artist>
192
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12623177.jpg</image>
193
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12623177.jpg</image>
194
+ <image size="large">http://userserve-ak.last.fm/serve/126/12623177.jpg</image>
195
+ </track>
196
+ <track>
197
+ <name>Down With the Sickness (live)</name>
198
+ <playcount>29</playcount>
199
+ <tagcount></tagcount>
200
+ <mbid></mbid>
201
+ <url>http://www.last.fm/music/Disturbed/_/Down+With+the+Sickness+%28live%29</url>
202
+ <streamable fulltrack="0">1</streamable>
203
+ <artist>
204
+ <name>Disturbed</name>
205
+ <mbid>4bb4e4e4-5f66-4509-98af-62dbb90c45c5</mbid>
206
+ <url>http://www.last.fm/music/Disturbed</url>
207
+ </artist>
208
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
209
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
210
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
211
+ </track>
212
+ <track>
213
+ <name>Dr Suzanne Mattox PhD</name>
214
+ <playcount>29</playcount>
215
+ <tagcount></tagcount>
216
+ <mbid></mbid>
217
+ <url>http://www.last.fm/music/The+Wombats/_/Dr+Suzanne+Mattox+PhD</url>
218
+ <streamable fulltrack="0">1</streamable>
219
+ <artist>
220
+ <name>The Wombats</name>
221
+ <mbid>e105c272-b5d7-4135-82ef-d60bded54345</mbid>
222
+ <url>http://www.last.fm/music/The+Wombats</url>
223
+ </artist>
224
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9690457.jpg</image>
225
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9690457.jpg</image>
226
+ <image size="large">http://userserve-ak.last.fm/serve/126/9690457.jpg</image>
227
+ </track>
228
+ <track>
229
+ <name>Tell Her Tonight</name>
230
+ <playcount>29</playcount>
231
+ <tagcount></tagcount>
232
+ <mbid></mbid>
233
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/Tell+Her+Tonight</url>
234
+ <streamable fulltrack="0">1</streamable>
235
+ <artist>
236
+ <name>Franz Ferdinand</name>
237
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
238
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
239
+ </artist>
240
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22427459.jpg</image>
241
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22427459.jpg</image>
242
+ <image size="large">http://userserve-ak.last.fm/serve/126/22427459.jpg</image>
243
+ </track>
244
+ <track>
245
+ <name>Soulblind</name>
246
+ <playcount>28</playcount>
247
+ <tagcount></tagcount>
248
+ <mbid></mbid>
249
+ <url>http://www.last.fm/music/Blackmail/_/Soulblind</url>
250
+ <streamable fulltrack="0">1</streamable>
251
+ <artist>
252
+ <name>Blackmail</name>
253
+ <mbid>d415628d-8c84-453b-8a75-4816b088dbc9</mbid>
254
+ <url>http://www.last.fm/music/Blackmail</url>
255
+ </artist>
256
+ <image size="small">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
257
+ <image size="medium">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
258
+ <image size="large">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
259
+ </track>
260
+ <track>
261
+ <name>My First Wedding</name>
262
+ <playcount>28</playcount>
263
+ <tagcount></tagcount>
264
+ <mbid></mbid>
265
+ <url>http://www.last.fm/music/The+Wombats/_/My+First+Wedding</url>
266
+ <streamable fulltrack="0">0</streamable>
267
+ <artist>
268
+ <name>The Wombats</name>
269
+ <mbid>e105c272-b5d7-4135-82ef-d60bded54345</mbid>
270
+ <url>http://www.last.fm/music/The+Wombats</url>
271
+ </artist>
272
+ </track>
273
+ <track>
274
+ <name>Dead Quote Olympics</name>
275
+ <playcount>28</playcount>
276
+ <tagcount></tagcount>
277
+ <mbid></mbid>
278
+ <url>http://www.last.fm/music/The+Hives/_/Dead+Quote+Olympics</url>
279
+ <streamable fulltrack="1">1</streamable>
280
+ <artist>
281
+ <name>The Hives</name>
282
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
283
+ <url>http://www.last.fm/music/The+Hives</url>
284
+ </artist>
285
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8676489.jpg</image>
286
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8676489.jpg</image>
287
+ <image size="large">http://userserve-ak.last.fm/serve/126/8676489.jpg</image>
288
+ </track>
289
+ <track>
290
+ <name>From the Ritz to the Rubble</name>
291
+ <playcount>28</playcount>
292
+ <tagcount></tagcount>
293
+ <mbid></mbid>
294
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/From+the+Ritz+to+the+Rubble</url>
295
+ <streamable fulltrack="0">1</streamable>
296
+ <artist>
297
+ <name>Arctic Monkeys</name>
298
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
299
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
300
+ </artist>
301
+ <image size="small">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
302
+ <image size="medium">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
303
+ <image size="large">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
304
+ </track>
305
+ <track>
306
+ <name>The Dark of the Matinée</name>
307
+ <playcount>28</playcount>
308
+ <tagcount></tagcount>
309
+ <mbid></mbid>
310
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/The+Dark+of+the+Matin%C3%A9e</url>
311
+ <streamable fulltrack="0">1</streamable>
312
+ <artist>
313
+ <name>Franz Ferdinand</name>
314
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
315
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
316
+ </artist>
317
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22427459.jpg</image>
318
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22427459.jpg</image>
319
+ <image size="large">http://userserve-ak.last.fm/serve/126/22427459.jpg</image>
320
+ </track>
321
+ <track>
322
+ <name>Vielleicht</name>
323
+ <playcount>28</playcount>
324
+ <tagcount></tagcount>
325
+ <mbid></mbid>
326
+ <url>http://www.last.fm/music/Madsen/_/Vielleicht</url>
327
+ <streamable fulltrack="1">1</streamable>
328
+ <artist>
329
+ <name>Madsen</name>
330
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
331
+ <url>http://www.last.fm/music/Madsen</url>
332
+ </artist>
333
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8743285.jpg</image>
334
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8743285.jpg</image>
335
+ <image size="large">http://userserve-ak.last.fm/serve/126/8743285.jpg</image>
336
+ </track>
337
+ <track>
338
+ <name>Matinée</name>
339
+ <playcount>27</playcount>
340
+ <tagcount></tagcount>
341
+ <mbid></mbid>
342
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/Matin%C3%A9e</url>
343
+ <streamable fulltrack="0">0</streamable>
344
+ <artist>
345
+ <name>Franz Ferdinand</name>
346
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
347
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
348
+ </artist>
349
+ <image size="small">http://images.amazon.com/images/P/B0001QNOKG.01.MZZZZZZZ.jpg</image>
350
+ <image size="medium">http://images.amazon.com/images/P/B0001QNOKG.01.MZZZZZZZ.jpg</image>
351
+ <image size="large">http://images.amazon.com/images/P/B0001QNOKG.01.MZZZZZZZ.jpg</image>
352
+ </track>
353
+ <track>
354
+ <name>Points of Authority/99 Problems/One Step Closer</name>
355
+ <playcount>27</playcount>
356
+ <tagcount></tagcount>
357
+ <mbid></mbid>
358
+ <url>http://www.last.fm/music/Jay-Z+and+Linkin+Park/_/Points%2Bof%2BAuthority%252F99%2BProblems%252FOne%2BStep%2BCloser</url>
359
+ <streamable fulltrack="0">1</streamable>
360
+ <artist>
361
+ <name>Jay-Z and Linkin Park</name>
362
+ <mbid>ae681605-2801-4120-9a48-e18752042306</mbid>
363
+ <url>http://www.last.fm/music/Jay-Z+and+Linkin+Park</url>
364
+ </artist>
365
+ <image size="small">http://images.amazon.com/images/P/B00069A6PE.01.MZZZZZZZ.jpg</image>
366
+ <image size="medium">http://images.amazon.com/images/P/B00069A6PE.01.MZZZZZZZ.jpg</image>
367
+ <image size="large">http://images.amazon.com/images/P/B00069A6PE.01.MZZZZZZZ.jpg</image>
368
+ </track>
369
+ <track>
370
+ <name>Haus am See</name>
371
+ <playcount>27</playcount>
372
+ <tagcount></tagcount>
373
+ <mbid></mbid>
374
+ <url>http://www.last.fm/music/Peter+Fox/_/Haus+am+See</url>
375
+ <streamable fulltrack="0">0</streamable>
376
+ <artist>
377
+ <name>Peter Fox</name>
378
+ <mbid></mbid>
379
+ <url>http://www.last.fm/music/Peter+Fox</url>
380
+ </artist>
381
+ </track>
382
+ <track>
383
+ <name>Flathead</name>
384
+ <playcount>27</playcount>
385
+ <tagcount></tagcount>
386
+ <mbid></mbid>
387
+ <url>http://www.last.fm/music/The+Fratellis/_/Flathead</url>
388
+ <streamable fulltrack="1">1</streamable>
389
+ <artist>
390
+ <name>The Fratellis</name>
391
+ <mbid></mbid>
392
+ <url>http://www.last.fm/music/The+Fratellis</url>
393
+ </artist>
394
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9033529.jpg</image>
395
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9033529.jpg</image>
396
+ <image size="large">http://userserve-ak.last.fm/serve/126/9033529.jpg</image>
397
+ </track>
398
+ <track>
399
+ <name>Patricia the Stripper</name>
400
+ <playcount>27</playcount>
401
+ <tagcount></tagcount>
402
+ <mbid></mbid>
403
+ <url>http://www.last.fm/music/The+Wombats/_/Patricia+the+Stripper</url>
404
+ <streamable fulltrack="0">1</streamable>
405
+ <artist>
406
+ <name>The Wombats</name>
407
+ <mbid>e105c272-b5d7-4135-82ef-d60bded54345</mbid>
408
+ <url>http://www.last.fm/music/The+Wombats</url>
409
+ </artist>
410
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9690457.jpg</image>
411
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9690457.jpg</image>
412
+ <image size="large">http://userserve-ak.last.fm/serve/126/9690457.jpg</image>
413
+ </track>
414
+ <track>
415
+ <name>Big Pimpin'/Papercut</name>
416
+ <playcount>27</playcount>
417
+ <tagcount></tagcount>
418
+ <mbid></mbid>
419
+ <url>http://www.last.fm/music/Jay-Z+and+Linkin+Park/_/Big%2BPimpin%2527%252FPapercut</url>
420
+ <streamable fulltrack="0">1</streamable>
421
+ <artist>
422
+ <name>Jay-Z and Linkin Park</name>
423
+ <mbid>ae681605-2801-4120-9a48-e18752042306</mbid>
424
+ <url>http://www.last.fm/music/Jay-Z+and+Linkin+Park</url>
425
+ </artist>
426
+ <image size="small">http://images.amazon.com/images/P/B00069A6PE.01.MZZZZZZZ.jpg</image>
427
+ <image size="medium">http://images.amazon.com/images/P/B00069A6PE.01.MZZZZZZZ.jpg</image>
428
+ <image size="large">http://images.amazon.com/images/P/B00069A6PE.01.MZZZZZZZ.jpg</image>
429
+ </track>
430
+ <track>
431
+ <name>Die Perfektion</name>
432
+ <playcount>27</playcount>
433
+ <tagcount></tagcount>
434
+ <mbid></mbid>
435
+ <url>http://www.last.fm/music/Madsen/_/Die+Perfektion</url>
436
+ <streamable fulltrack="1">1</streamable>
437
+ <artist>
438
+ <name>Madsen</name>
439
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
440
+ <url>http://www.last.fm/music/Madsen</url>
441
+ </artist>
442
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8743285.jpg</image>
443
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8743285.jpg</image>
444
+ <image size="large">http://userserve-ak.last.fm/serve/126/8743285.jpg</image>
445
+ </track>
446
+ <track>
447
+ <name>Walking Contradiction</name>
448
+ <playcount>26</playcount>
449
+ <tagcount></tagcount>
450
+ <mbid></mbid>
451
+ <url>http://www.last.fm/music/Green+Day/_/Walking+Contradiction</url>
452
+ <streamable fulltrack="0">1</streamable>
453
+ <artist>
454
+ <name>Green Day</name>
455
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
456
+ <url>http://www.last.fm/music/Green+Day</url>
457
+ </artist>
458
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8674829.jpg</image>
459
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8674829.jpg</image>
460
+ <image size="large">http://userserve-ak.last.fm/serve/126/8674829.jpg</image>
461
+ </track>
462
+ <track>
463
+ <name>Blood Thirsty Bastards</name>
464
+ <playcount>25</playcount>
465
+ <tagcount></tagcount>
466
+ <mbid></mbid>
467
+ <url>http://www.last.fm/music/Dirty+Pretty+Things/_/Blood+Thirsty+Bastards</url>
468
+ <streamable fulltrack="1">1</streamable>
469
+ <artist>
470
+ <name>Dirty Pretty Things</name>
471
+ <mbid>648615ca-ca74-460d-928a-2bae67ae6d14</mbid>
472
+ <url>http://www.last.fm/music/Dirty+Pretty+Things</url>
473
+ </artist>
474
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8810557.jpg</image>
475
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8810557.jpg</image>
476
+ <image size="large">http://userserve-ak.last.fm/serve/126/8810557.jpg</image>
477
+ </track>
478
+ <track>
479
+ <name>Big in Japan</name>
480
+ <playcount>25</playcount>
481
+ <tagcount></tagcount>
482
+ <mbid></mbid>
483
+ <url>http://www.last.fm/music/Guano+Apes/_/Big+in+Japan</url>
484
+ <streamable fulltrack="0">1</streamable>
485
+ <artist>
486
+ <name>Guano Apes</name>
487
+ <mbid>66da25f9-1534-4dd1-b88c-718bc24e1ccd</mbid>
488
+ <url>http://www.last.fm/music/Guano+Apes</url>
489
+ </artist>
490
+ <image size="small">http://images.amazon.com/images/P/B00005261A.01.MZZZZZZZ.jpg</image>
491
+ <image size="medium">http://images.amazon.com/images/P/B00005261A.01.MZZZZZZZ.jpg</image>
492
+ <image size="large">http://images.amazon.com/images/P/B00005261A.01.MZZZZZZZ.jpg</image>
493
+ </track>
494
+ <track>
495
+ <name>Immer wieder</name>
496
+ <playcount>25</playcount>
497
+ <tagcount></tagcount>
498
+ <mbid></mbid>
499
+ <url>http://www.last.fm/music/Madsen/_/Immer+wieder</url>
500
+ <streamable fulltrack="1">1</streamable>
501
+ <artist>
502
+ <name>Madsen</name>
503
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
504
+ <url>http://www.last.fm/music/Madsen</url>
505
+ </artist>
506
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8743285.jpg</image>
507
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8743285.jpg</image>
508
+ <image size="large">http://userserve-ak.last.fm/serve/126/8743285.jpg</image>
509
+ </track>
510
+ <track>
511
+ <name>Unsichtbar</name>
512
+ <playcount>25</playcount>
513
+ <tagcount></tagcount>
514
+ <mbid></mbid>
515
+ <url>http://www.last.fm/music/Madsen/_/Unsichtbar</url>
516
+ <streamable fulltrack="1">1</streamable>
517
+ <artist>
518
+ <name>Madsen</name>
519
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
520
+ <url>http://www.last.fm/music/Madsen</url>
521
+ </artist>
522
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8743285.jpg</image>
523
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8743285.jpg</image>
524
+ <image size="large">http://userserve-ak.last.fm/serve/126/8743285.jpg</image>
525
+ </track>
526
+ <track>
527
+ <name>Lüg mich an</name>
528
+ <playcount>25</playcount>
529
+ <tagcount></tagcount>
530
+ <mbid></mbid>
531
+ <url>http://www.last.fm/music/Madsen/_/L%C3%BCg+mich+an</url>
532
+ <streamable fulltrack="1">1</streamable>
533
+ <artist>
534
+ <name>Madsen</name>
535
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
536
+ <url>http://www.last.fm/music/Madsen</url>
537
+ </artist>
538
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8743285.jpg</image>
539
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8743285.jpg</image>
540
+ <image size="large">http://userserve-ak.last.fm/serve/126/8743285.jpg</image>
541
+ </track>
542
+ <track>
543
+ <name>Emily</name>
544
+ <playcount>25</playcount>
545
+ <tagcount></tagcount>
546
+ <mbid></mbid>
547
+ <url>http://www.last.fm/music/Adam+Green/_/Emily</url>
548
+ <streamable fulltrack="0">0</streamable>
549
+ <artist>
550
+ <name>Adam Green</name>
551
+ <mbid>150e799b-3244-45d9-a6cb-5a3e8c33d430</mbid>
552
+ <url>http://www.last.fm/music/Adam+Green</url>
553
+ </artist>
554
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12623975.jpg</image>
555
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12623975.jpg</image>
556
+ <image size="large">http://userserve-ak.last.fm/serve/126/12623975.jpg</image>
557
+ </track>
558
+ <track>
559
+ <name>This Suffering</name>
560
+ <playcount>25</playcount>
561
+ <tagcount></tagcount>
562
+ <mbid></mbid>
563
+ <url>http://www.last.fm/music/Billy+Talent/_/This+Suffering</url>
564
+ <streamable fulltrack="0">1</streamable>
565
+ <artist>
566
+ <name>Billy Talent</name>
567
+ <mbid>fd429857-5ace-4609-ae54-1502c3bdac11</mbid>
568
+ <url>http://www.last.fm/music/Billy+Talent</url>
569
+ </artist>
570
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28906727.jpg</image>
571
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28906727.jpg</image>
572
+ <image size="large">http://userserve-ak.last.fm/serve/126/28906727.jpg</image>
573
+ </track>
574
+ <track>
575
+ <name>Main Offender</name>
576
+ <playcount>24</playcount>
577
+ <tagcount></tagcount>
578
+ <mbid></mbid>
579
+ <url>http://www.last.fm/music/The+Hives/_/Main+Offender</url>
580
+ <streamable fulltrack="0">1</streamable>
581
+ <artist>
582
+ <name>The Hives</name>
583
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
584
+ <url>http://www.last.fm/music/The+Hives</url>
585
+ </artist>
586
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25888215.png</image>
587
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25888215.png</image>
588
+ <image size="large">http://userserve-ak.last.fm/serve/126/25888215.png</image>
589
+ </track>
590
+ <track>
591
+ <name>Doctors And Dealers</name>
592
+ <playcount>24</playcount>
593
+ <tagcount></tagcount>
594
+ <mbid></mbid>
595
+ <url>http://www.last.fm/music/Dirty+Pretty+Things/_/Doctors+And+Dealers</url>
596
+ <streamable fulltrack="0">0</streamable>
597
+ <artist>
598
+ <name>Dirty Pretty Things</name>
599
+ <mbid>648615ca-ca74-460d-928a-2bae67ae6d14</mbid>
600
+ <url>http://www.last.fm/music/Dirty+Pretty+Things</url>
601
+ </artist>
602
+ </track>
603
+ <track>
604
+ <name>Meddlesome</name>
605
+ <playcount>24</playcount>
606
+ <tagcount></tagcount>
607
+ <mbid></mbid>
608
+ <url>http://www.last.fm/music/Blackmail/_/Meddlesome</url>
609
+ <streamable fulltrack="0">1</streamable>
610
+ <artist>
611
+ <name>Blackmail</name>
612
+ <mbid>d415628d-8c84-453b-8a75-4816b088dbc9</mbid>
613
+ <url>http://www.last.fm/music/Blackmail</url>
614
+ </artist>
615
+ <image size="small">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
616
+ <image size="medium">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
617
+ <image size="large">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
618
+ </track>
619
+ <track>
620
+ <name>Armory</name>
621
+ <playcount>24</playcount>
622
+ <tagcount></tagcount>
623
+ <mbid></mbid>
624
+ <url>http://www.last.fm/music/Blackmail/_/Armory</url>
625
+ <streamable fulltrack="0">1</streamable>
626
+ <artist>
627
+ <name>Blackmail</name>
628
+ <mbid>d415628d-8c84-453b-8a75-4816b088dbc9</mbid>
629
+ <url>http://www.last.fm/music/Blackmail</url>
630
+ </artist>
631
+ <image size="small">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
632
+ <image size="medium">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
633
+ <image size="large">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
634
+ </track>
635
+ <track>
636
+ <name>Jump In The Pool</name>
637
+ <playcount>24</playcount>
638
+ <tagcount></tagcount>
639
+ <mbid></mbid>
640
+ <url>http://www.last.fm/music/Friendly+Fires/_/Jump+In+The+Pool</url>
641
+ <streamable fulltrack="0">0</streamable>
642
+ <artist>
643
+ <name>Friendly Fires</name>
644
+ <mbid>ef656595-bbe8-4386-8953-be8df9f54472</mbid>
645
+ <url>http://www.last.fm/music/Friendly+Fires</url>
646
+ </artist>
647
+ </track>
648
+ <track>
649
+ <name>Gold</name>
650
+ <playcount>24</playcount>
651
+ <tagcount></tagcount>
652
+ <mbid></mbid>
653
+ <url>http://www.last.fm/music/Klee/_/Gold</url>
654
+ <streamable fulltrack="0">1</streamable>
655
+ <artist>
656
+ <name>Klee</name>
657
+ <mbid>ed46f02c-0801-40f1-872c-5259ce334476</mbid>
658
+ <url>http://www.last.fm/music/Klee</url>
659
+ </artist>
660
+ <image size="small">http://images.amazon.com/images/P/B00069A77G.01.MZZZZZZZ.jpg</image>
661
+ <image size="medium">http://images.amazon.com/images/P/B00069A77G.01.MZZZZZZZ.jpg</image>
662
+ <image size="large">http://images.amazon.com/images/P/B00069A77G.01.MZZZZZZZ.jpg</image>
663
+ </track>
664
+ <track>
665
+ <name>Devil in a Midnight Mass</name>
666
+ <playcount>23</playcount>
667
+ <tagcount></tagcount>
668
+ <mbid></mbid>
669
+ <url>http://www.last.fm/music/Billy+Talent/_/Devil+in+a+Midnight+Mass</url>
670
+ <streamable fulltrack="0">1</streamable>
671
+ <artist>
672
+ <name>Billy Talent</name>
673
+ <mbid>fd429857-5ace-4609-ae54-1502c3bdac11</mbid>
674
+ <url>http://www.last.fm/music/Billy+Talent</url>
675
+ </artist>
676
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28906727.jpg</image>
677
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28906727.jpg</image>
678
+ <image size="large">http://userserve-ak.last.fm/serve/126/28906727.jpg</image>
679
+ </track>
680
+ <track>
681
+ <name>Dirty Magic</name>
682
+ <playcount>23</playcount>
683
+ <tagcount></tagcount>
684
+ <mbid></mbid>
685
+ <url>http://www.last.fm/music/The+Offspring/_/Dirty+Magic</url>
686
+ <streamable fulltrack="0">1</streamable>
687
+ <artist>
688
+ <name>The Offspring</name>
689
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
690
+ <url>http://www.last.fm/music/The+Offspring</url>
691
+ </artist>
692
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8628263.jpg</image>
693
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8628263.jpg</image>
694
+ <image size="large">http://userserve-ak.last.fm/serve/126/8628263.jpg</image>
695
+ </track>
696
+ <track>
697
+ <name>Mr Brightside</name>
698
+ <playcount>23</playcount>
699
+ <tagcount></tagcount>
700
+ <mbid></mbid>
701
+ <url>http://www.last.fm/music/The+Killers/_/Mr+Brightside</url>
702
+ <streamable fulltrack="1">1</streamable>
703
+ <artist>
704
+ <name>The Killers</name>
705
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
706
+ <url>http://www.last.fm/music/The+Killers</url>
707
+ </artist>
708
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8682605.jpg</image>
709
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8682605.jpg</image>
710
+ <image size="large">http://userserve-ak.last.fm/serve/126/8682605.jpg</image>
711
+ </track>
712
+ <track>
713
+ <name>Americana</name>
714
+ <playcount>23</playcount>
715
+ <tagcount></tagcount>
716
+ <mbid></mbid>
717
+ <url>http://www.last.fm/music/The+Offspring/_/Americana</url>
718
+ <streamable fulltrack="0">1</streamable>
719
+ <artist>
720
+ <name>The Offspring</name>
721
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
722
+ <url>http://www.last.fm/music/The+Offspring</url>
723
+ </artist>
724
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23714755.jpg</image>
725
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23714755.jpg</image>
726
+ <image size="large">http://userserve-ak.last.fm/serve/126/23714755.jpg</image>
727
+ </track>
728
+ <track>
729
+ <name>Darts of Pleasure</name>
730
+ <playcount>23</playcount>
731
+ <tagcount></tagcount>
732
+ <mbid></mbid>
733
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/Darts+of+Pleasure</url>
734
+ <streamable fulltrack="0">1</streamable>
735
+ <artist>
736
+ <name>Franz Ferdinand</name>
737
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
738
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
739
+ </artist>
740
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22427459.jpg</image>
741
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22427459.jpg</image>
742
+ <image size="large">http://userserve-ak.last.fm/serve/126/22427459.jpg</image>
743
+ </track>
744
+ <track>
745
+ <name>Covered in Cowardice</name>
746
+ <playcount>23</playcount>
747
+ <tagcount></tagcount>
748
+ <mbid></mbid>
749
+ <url>http://www.last.fm/music/Billy+Talent/_/Covered+in+Cowardice</url>
750
+ <streamable fulltrack="0">1</streamable>
751
+ <artist>
752
+ <name>Billy Talent</name>
753
+ <mbid>fd429857-5ace-4609-ae54-1502c3bdac11</mbid>
754
+ <url>http://www.last.fm/music/Billy+Talent</url>
755
+ </artist>
756
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28906727.jpg</image>
757
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28906727.jpg</image>
758
+ <image size="large">http://userserve-ak.last.fm/serve/126/28906727.jpg</image>
759
+ </track>
760
+ <track>
761
+ <name>Bang Bang You're Dead</name>
762
+ <playcount>23</playcount>
763
+ <tagcount></tagcount>
764
+ <mbid></mbid>
765
+ <url>http://www.last.fm/music/Dirty+Pretty+Things/_/Bang+Bang+You%27re+Dead</url>
766
+ <streamable fulltrack="0">1</streamable>
767
+ <artist>
768
+ <name>Dirty Pretty Things</name>
769
+ <mbid>648615ca-ca74-460d-928a-2bae67ae6d14</mbid>
770
+ <url>http://www.last.fm/music/Dirty+Pretty+Things</url>
771
+ </artist>
772
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8810557.jpg</image>
773
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8810557.jpg</image>
774
+ <image size="large">http://userserve-ak.last.fm/serve/126/8810557.jpg</image>
775
+ </track>
776
+ <track>
777
+ <name>40'</name>
778
+ <playcount>23</playcount>
779
+ <tagcount></tagcount>
780
+ <mbid></mbid>
781
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/40%27</url>
782
+ <streamable fulltrack="0">1</streamable>
783
+ <artist>
784
+ <name>Franz Ferdinand</name>
785
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
786
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
787
+ </artist>
788
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22427459.jpg</image>
789
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22427459.jpg</image>
790
+ <image size="large">http://userserve-ak.last.fm/serve/126/22427459.jpg</image>
791
+ </track>
792
+ </tracks></lfm>