scrobbler-ng 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (156) hide show
  1. data/.gitignore +11 -0
  2. data/MIT-LICENSE +19 -0
  3. data/README.rdoc +104 -0
  4. data/Rakefile +11 -0
  5. data/VERSION.yml +4 -0
  6. data/examples/album.rb +19 -0
  7. data/examples/artist.rb +13 -0
  8. data/examples/scrobble.rb +31 -0
  9. data/examples/tag.rb +11 -0
  10. data/examples/track.rb +6 -0
  11. data/examples/user.rb +14 -0
  12. data/lib/scrobbler/album.rb +165 -0
  13. data/lib/scrobbler/artist.rb +169 -0
  14. data/lib/scrobbler/auth.rb +47 -0
  15. data/lib/scrobbler/base.rb +124 -0
  16. data/lib/scrobbler/event.rb +105 -0
  17. data/lib/scrobbler/geo.rb +27 -0
  18. data/lib/scrobbler/helper/image.rb +52 -0
  19. data/lib/scrobbler/helper/streamable.rb +40 -0
  20. data/lib/scrobbler/library.rb +123 -0
  21. data/lib/scrobbler/playing.rb +49 -0
  22. data/lib/scrobbler/playlist.rb +45 -0
  23. data/lib/scrobbler/radio.rb +12 -0
  24. data/lib/scrobbler/rest.rb +47 -0
  25. data/lib/scrobbler/scrobble.rb +116 -0
  26. data/lib/scrobbler/session.rb +9 -0
  27. data/lib/scrobbler/shout.rb +21 -0
  28. data/lib/scrobbler/simpleauth.rb +60 -0
  29. data/lib/scrobbler/tag.rb +113 -0
  30. data/lib/scrobbler/track.rb +138 -0
  31. data/lib/scrobbler/user.rb +222 -0
  32. data/lib/scrobbler/venue.rb +67 -0
  33. data/lib/scrobbler.rb +34 -0
  34. data/tasks/jeweler.rake +18 -0
  35. data/tasks/rdoc.rake +7 -0
  36. data/tasks/tests.rake +13 -0
  37. data/tasks/yardoc.rake +8 -0
  38. data/test/fixtures/xml/album/info.xml +43 -0
  39. data/test/fixtures/xml/artist/fans.xml +52 -0
  40. data/test/fixtures/xml/artist/info.xml +58 -0
  41. data/test/fixtures/xml/artist/similar.xml +1004 -0
  42. data/test/fixtures/xml/artist/topalbums.xml +61 -0
  43. data/test/fixtures/xml/artist/toptags.xml +19 -0
  44. data/test/fixtures/xml/artist/toptracks.xml +62 -0
  45. data/test/fixtures/xml/auth/session.xml +7 -0
  46. data/test/fixtures/xml/auth/token.xml +3 -0
  47. data/test/fixtures/xml/event/attend.xml +3 -0
  48. data/test/fixtures/xml/event/attendees.xml +53 -0
  49. data/test/fixtures/xml/event/event.xml +35 -0
  50. data/test/fixtures/xml/event/shouts.xml +35 -0
  51. data/test/fixtures/xml/geo/events-distance-p1.xml +151 -0
  52. data/test/fixtures/xml/geo/events-lat-long.xml +167 -0
  53. data/test/fixtures/xml/geo/events-p1.xml +152 -0
  54. data/test/fixtures/xml/geo/events-p2.xml +380 -0
  55. data/test/fixtures/xml/geo/events-p3.xml +427 -0
  56. data/test/fixtures/xml/geo/top_artists-p1.xml +76 -0
  57. data/test/fixtures/xml/geo/top_tracks-p1.xml +77 -0
  58. data/test/fixtures/xml/library/albums-f30.xml +454 -0
  59. data/test/fixtures/xml/library/albums-p1.xml +754 -0
  60. data/test/fixtures/xml/library/albums-p2.xml +754 -0
  61. data/test/fixtures/xml/library/albums-p3.xml +754 -0
  62. data/test/fixtures/xml/library/albums-p4.xml +739 -0
  63. data/test/fixtures/xml/library/albums-p5.xml +754 -0
  64. data/test/fixtures/xml/library/albums-p6.xml +754 -0
  65. data/test/fixtures/xml/library/albums-p7.xml +739 -0
  66. data/test/fixtures/xml/library/albums-p8.xml +724 -0
  67. data/test/fixtures/xml/library/artists-f30.xml +334 -0
  68. data/test/fixtures/xml/library/artists-p1.xml +554 -0
  69. data/test/fixtures/xml/library/artists-p2.xml +554 -0
  70. data/test/fixtures/xml/library/artists-p3.xml +554 -0
  71. data/test/fixtures/xml/library/artists-p4.xml +554 -0
  72. data/test/fixtures/xml/library/artists-p5.xml +554 -0
  73. data/test/fixtures/xml/library/artists-p6.xml +554 -0
  74. data/test/fixtures/xml/library/artists-p7.xml +444 -0
  75. data/test/fixtures/xml/library/tracks-f30.xml +472 -0
  76. data/test/fixtures/xml/library/tracks-p1.xml +789 -0
  77. data/test/fixtures/xml/library/tracks-p10.xml +771 -0
  78. data/test/fixtures/xml/library/tracks-p11.xml +792 -0
  79. data/test/fixtures/xml/library/tracks-p12.xml +777 -0
  80. data/test/fixtures/xml/library/tracks-p13.xml +762 -0
  81. data/test/fixtures/xml/library/tracks-p14.xml +759 -0
  82. data/test/fixtures/xml/library/tracks-p15.xml +762 -0
  83. data/test/fixtures/xml/library/tracks-p16.xml +756 -0
  84. data/test/fixtures/xml/library/tracks-p17.xml +780 -0
  85. data/test/fixtures/xml/library/tracks-p18.xml +756 -0
  86. data/test/fixtures/xml/library/tracks-p19.xml +774 -0
  87. data/test/fixtures/xml/library/tracks-p2.xml +765 -0
  88. data/test/fixtures/xml/library/tracks-p20.xml +777 -0
  89. data/test/fixtures/xml/library/tracks-p21.xml +777 -0
  90. data/test/fixtures/xml/library/tracks-p22.xml +771 -0
  91. data/test/fixtures/xml/library/tracks-p23.xml +765 -0
  92. data/test/fixtures/xml/library/tracks-p24.xml +783 -0
  93. data/test/fixtures/xml/library/tracks-p25.xml +777 -0
  94. data/test/fixtures/xml/library/tracks-p26.xml +777 -0
  95. data/test/fixtures/xml/library/tracks-p27.xml +756 -0
  96. data/test/fixtures/xml/library/tracks-p28.xml +771 -0
  97. data/test/fixtures/xml/library/tracks-p29.xml +753 -0
  98. data/test/fixtures/xml/library/tracks-p3.xml +771 -0
  99. data/test/fixtures/xml/library/tracks-p30.xml +780 -0
  100. data/test/fixtures/xml/library/tracks-p31.xml +753 -0
  101. data/test/fixtures/xml/library/tracks-p32.xml +771 -0
  102. data/test/fixtures/xml/library/tracks-p33.xml +762 -0
  103. data/test/fixtures/xml/library/tracks-p34.xml +538 -0
  104. data/test/fixtures/xml/library/tracks-p4.xml +792 -0
  105. data/test/fixtures/xml/library/tracks-p5.xml +780 -0
  106. data/test/fixtures/xml/library/tracks-p6.xml +789 -0
  107. data/test/fixtures/xml/library/tracks-p7.xml +789 -0
  108. data/test/fixtures/xml/library/tracks-p8.xml +780 -0
  109. data/test/fixtures/xml/library/tracks-p9.xml +774 -0
  110. data/test/fixtures/xml/tag/similar.xml +254 -0
  111. data/test/fixtures/xml/tag/topalbums.xml +805 -0
  112. data/test/fixtures/xml/tag/topartists.xml +605 -0
  113. data/test/fixtures/xml/tag/toptags.xml +1254 -0
  114. data/test/fixtures/xml/tag/toptracks.xml +852 -0
  115. data/test/fixtures/xml/track/fans.xml +34 -0
  116. data/test/fixtures/xml/track/info.xml +53 -0
  117. data/test/fixtures/xml/track/toptags.xml +504 -0
  118. data/test/fixtures/xml/user/events.xml +401 -0
  119. data/test/fixtures/xml/user/friends.xml +30 -0
  120. data/test/fixtures/xml/user/lovedtracks.xml +678 -0
  121. data/test/fixtures/xml/user/neighbours.xml +23 -0
  122. data/test/fixtures/xml/user/playlists.xml +61 -0
  123. data/test/fixtures/xml/user/profile.xml +12 -0
  124. data/test/fixtures/xml/user/recentbannedtracks.xml +24 -0
  125. data/test/fixtures/xml/user/recentlovedtracks.xml +24 -0
  126. data/test/fixtures/xml/user/recenttracks.xml +124 -0
  127. data/test/fixtures/xml/user/systemrecs.xml +18 -0
  128. data/test/fixtures/xml/user/topalbums.xml +61 -0
  129. data/test/fixtures/xml/user/topartists.xml +41 -0
  130. data/test/fixtures/xml/user/toptags.xml +44 -0
  131. data/test/fixtures/xml/user/toptracks.xml +65 -0
  132. data/test/fixtures/xml/user/weeklyalbumchart.xml +256 -0
  133. data/test/fixtures/xml/user/weeklyartistchart.xml +220 -0
  134. data/test/fixtures/xml/user/weeklytrackchart.xml +746 -0
  135. data/test/fixtures/xml/venue/events.xml +151 -0
  136. data/test/fixtures/xml/venue/venue.xml +16 -0
  137. data/test/mocks/rest.rb +212 -0
  138. data/test/spec_helper.rb +7 -0
  139. data/test/test_helper.rb +20 -0
  140. data/test/unit/album_spec.rb +51 -0
  141. data/test/unit/artist_spec.rb +130 -0
  142. data/test/unit/auth_spec.rb +36 -0
  143. data/test/unit/event_spec.rb +109 -0
  144. data/test/unit/geo_spec.rb +148 -0
  145. data/test/unit/library_spec.rb +133 -0
  146. data/test/unit/playing_test.rb +53 -0
  147. data/test/unit/playlist_spec.rb +25 -0
  148. data/test/unit/radio_spec.rb +22 -0
  149. data/test/unit/scrobble_spec.rb +55 -0
  150. data/test/unit/scrobble_test.rb +69 -0
  151. data/test/unit/simpleauth_test.rb +45 -0
  152. data/test/unit/tag_spec.rb +101 -0
  153. data/test/unit/track_spec.rb +95 -0
  154. data/test/unit/user_spec.rb +264 -0
  155. data/test/unit/venue_spec.rb +104 -0
  156. metadata +253 -0
@@ -0,0 +1,852 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <toptracks tag="Disco">
4
+
5
+
6
+
7
+ <track rank="1">
8
+ <name>Stayin' Alive</name>
9
+ <tagcount>422</tagcount>
10
+ <mbid></mbid>
11
+ <url>http://www.last.fm/music/Bee+Gees/_/Stayin%27+Alive</url>
12
+ <streamable fulltrack="0">1</streamable>
13
+ <artist>
14
+ <name>Bee Gees</name>
15
+ <mbid>bf0f7e29-dfe1-416c-b5c6-f9ebc19ea810</mbid>
16
+ <url>http://www.last.fm/music/Bee+Gees</url>
17
+ </artist>
18
+ <image size="small">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
19
+ <image size="medium">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
20
+ <image size="large">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
21
+ </track>
22
+
23
+
24
+ <track rank="2">
25
+ <name>I Will Survive</name>
26
+ <tagcount>343</tagcount>
27
+ <mbid></mbid>
28
+ <url>http://www.last.fm/music/Gloria+Gaynor/_/I+Will+Survive</url>
29
+ <streamable fulltrack="1">1</streamable>
30
+ <artist>
31
+ <name>Gloria Gaynor</name>
32
+ <mbid>d5c51c36-ac67-4727-91ed-ee9f0df81a2d</mbid>
33
+ <url>http://www.last.fm/music/Gloria+Gaynor</url>
34
+ </artist>
35
+ <image size="small">http://images.amazon.com/images/P/B00000BIHA.01.THUMBZZZ.jpg</image>
36
+ <image size="medium">http://images.amazon.com/images/P/B00000BIHA.01.MZZZZZZZ.jpg</image>
37
+ <image size="large">http://images.amazon.com/images/P/B00000BIHA.01.LZZZZZZZ.jpg</image>
38
+ </track>
39
+
40
+
41
+ <track rank="3">
42
+ <name>Le Freak</name>
43
+ <tagcount>263</tagcount>
44
+ <mbid></mbid>
45
+ <url>http://www.last.fm/music/Chic/_/Le+Freak</url>
46
+ <streamable fulltrack="1">1</streamable>
47
+ <artist>
48
+ <name>Chic</name>
49
+ <mbid>a4ed036b-5f18-439c-b1e1-96d205bab255</mbid>
50
+ <url>http://www.last.fm/music/Chic</url>
51
+ </artist>
52
+ <image size="small">http://images.amazon.com/images/P/B00000I8LB.01.THUMBZZZ.jpg</image>
53
+ <image size="medium">http://images.amazon.com/images/P/B00000I8LB.01.MZZZZZZZ.jpg</image>
54
+ <image size="large">http://images.amazon.com/images/P/B00000I8LB.01.LZZZZZZZ.jpg</image>
55
+ </track>
56
+
57
+
58
+ <track rank="4">
59
+ <name>Dancing Queen</name>
60
+ <tagcount>243</tagcount>
61
+ <mbid></mbid>
62
+ <url>http://www.last.fm/music/ABBA/_/Dancing+Queen</url>
63
+ <streamable fulltrack="1">1</streamable>
64
+ <artist>
65
+ <name>ABBA</name>
66
+ <mbid>d87e52c5-bb8d-4da8-b941-9f4928627dc8</mbid>
67
+ <url>http://www.last.fm/music/ABBA</url>
68
+ </artist>
69
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8674393.jpg</image>
70
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8674393.jpg</image>
71
+ <image size="large">http://userserve-ak.last.fm/serve/126/8674393.jpg</image>
72
+ </track>
73
+
74
+
75
+ <track rank="5">
76
+ <name>Disco Inferno</name>
77
+ <tagcount>215</tagcount>
78
+ <mbid></mbid>
79
+ <url>http://www.last.fm/music/The+Trammps/_/Disco+Inferno</url>
80
+ <streamable fulltrack="1">1</streamable>
81
+ <artist>
82
+ <name>The Trammps</name>
83
+ <mbid>8799413d-7df8-4eb9-8542-af8cea6b0feb</mbid>
84
+ <url>http://www.last.fm/music/The+Trammps</url>
85
+ </artist>
86
+ <image size="small">http://images.amazon.com/images/P/B0000033BS.01._SCMZZZZZZZ_.jpg</image>
87
+ <image size="medium">http://images.amazon.com/images/P/B0000033BS.01._SCMZZZZZZZ_.jpg</image>
88
+ <image size="large">http://images.amazon.com/images/P/B0000033BS.01._SCMZZZZZZZ_.jpg</image>
89
+ </track>
90
+
91
+
92
+ <track rank="6">
93
+ <name>Hot Stuff</name>
94
+ <tagcount>211</tagcount>
95
+ <mbid></mbid>
96
+ <url>http://www.last.fm/music/Donna+Summer/_/Hot+Stuff</url>
97
+ <streamable fulltrack="1">1</streamable>
98
+ <artist>
99
+ <name>Donna Summer</name>
100
+ <mbid>b60527cc-54f3-4bbe-a01b-dcf34c95ae14</mbid>
101
+ <url>http://www.last.fm/music/Donna+Summer</url>
102
+ </artist>
103
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5258441.jpg</image>
104
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5258441.jpg</image>
105
+ <image size="large">http://userserve-ak.last.fm/serve/126/5258441.jpg</image>
106
+ </track>
107
+
108
+
109
+ <track rank="7">
110
+ <name>Hung Up</name>
111
+ <tagcount>203</tagcount>
112
+ <mbid></mbid>
113
+ <url>http://www.last.fm/music/Madonna/_/Hung+Up</url>
114
+ <streamable fulltrack="0">1</streamable>
115
+ <artist>
116
+ <name>Madonna</name>
117
+ <mbid>79239441-bfd5-4981-a70c-55c3f15c1287</mbid>
118
+ <url>http://www.last.fm/music/Madonna</url>
119
+ </artist>
120
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8693811.jpg</image>
121
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8693811.jpg</image>
122
+ <image size="large">http://userserve-ak.last.fm/serve/126/8693811.jpg</image>
123
+ </track>
124
+
125
+
126
+ <track rank="8">
127
+ <name>I Feel Love</name>
128
+ <tagcount>202</tagcount>
129
+ <mbid></mbid>
130
+ <url>http://www.last.fm/music/Donna+Summer/_/I+Feel+Love</url>
131
+ <streamable fulltrack="1">1</streamable>
132
+ <artist>
133
+ <name>Donna Summer</name>
134
+ <mbid>b60527cc-54f3-4bbe-a01b-dcf34c95ae14</mbid>
135
+ <url>http://www.last.fm/music/Donna+Summer</url>
136
+ </artist>
137
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8625415.jpg</image>
138
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8625415.jpg</image>
139
+ <image size="large">http://userserve-ak.last.fm/serve/126/8625415.jpg</image>
140
+ </track>
141
+
142
+
143
+ <track rank="9">
144
+ <name>Overpowered</name>
145
+ <tagcount>198</tagcount>
146
+ <mbid></mbid>
147
+ <url>http://www.last.fm/music/R%C3%B3is%C3%ADn+Murphy/_/Overpowered</url>
148
+ <streamable fulltrack="0">1</streamable>
149
+ <artist>
150
+ <name>Róisín Murphy</name>
151
+ <mbid>4c56405d-ba8e-4283-99c3-1dc95bdd50e7</mbid>
152
+ <url>http://www.last.fm/music/R%C3%B3is%C3%ADn+Murphy</url>
153
+ </artist>
154
+ <image size="small">http://userserve-ak.last.fm/serve/34s/26856969.png</image>
155
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/26856969.png</image>
156
+ <image size="large">http://userserve-ak.last.fm/serve/126/26856969.png</image>
157
+ </track>
158
+
159
+
160
+ <track rank="10">
161
+ <name>Kung Fu Fighting</name>
162
+ <tagcount>197</tagcount>
163
+ <mbid></mbid>
164
+ <url>http://www.last.fm/music/Carl+Douglas/_/Kung+Fu+Fighting</url>
165
+ <streamable fulltrack="1">1</streamable>
166
+ <artist>
167
+ <name>Carl Douglas</name>
168
+ <mbid>2100ca6c-5a1d-463e-b50b-7e649debc454</mbid>
169
+ <url>http://www.last.fm/music/Carl+Douglas</url>
170
+ </artist>
171
+ <image size="small">http://images.amazon.com/images/P/B00001ZTQS.01.MZZZZZZZ.jpg</image>
172
+ <image size="medium">http://images.amazon.com/images/P/B00001ZTQS.01.MZZZZZZZ.jpg</image>
173
+ <image size="large">http://images.amazon.com/images/P/B00001ZTQS.01.MZZZZZZZ.jpg</image>
174
+ </track>
175
+
176
+
177
+ <track rank="11">
178
+ <name>Good Times</name>
179
+ <tagcount>177</tagcount>
180
+ <mbid></mbid>
181
+ <url>http://www.last.fm/music/Chic/_/Good+Times</url>
182
+ <streamable fulltrack="0">1</streamable>
183
+ <artist>
184
+ <name>Chic</name>
185
+ <mbid>a4ed036b-5f18-439c-b1e1-96d205bab255</mbid>
186
+ <url>http://www.last.fm/music/Chic</url>
187
+ </artist>
188
+ <image size="small">http://images.amazon.com/images/P/B00000I8LB.01.THUMBZZZ.jpg</image>
189
+ <image size="medium">http://images.amazon.com/images/P/B00000I8LB.01.MZZZZZZZ.jpg</image>
190
+ <image size="large">http://images.amazon.com/images/P/B00000I8LB.01.LZZZZZZZ.jpg</image>
191
+ </track>
192
+
193
+
194
+ <track rank="12">
195
+ <name>Daddy Cool</name>
196
+ <tagcount>172</tagcount>
197
+ <mbid></mbid>
198
+ <url>http://www.last.fm/music/Boney+M./_/Daddy+Cool</url>
199
+ <streamable fulltrack="1">1</streamable>
200
+ <artist>
201
+ <name>Boney M.</name>
202
+ <mbid>5403bf6e-bc1d-4e62-b31f-926a2bf66a14</mbid>
203
+ <url>http://www.last.fm/music/Boney+M.</url>
204
+ </artist>
205
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22329097.jpg</image>
206
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22329097.jpg</image>
207
+ <image size="large">http://userserve-ak.last.fm/serve/126/22329097.jpg</image>
208
+ </track>
209
+
210
+
211
+ <track rank="13">
212
+ <name>We Are Family</name>
213
+ <tagcount>166</tagcount>
214
+ <mbid></mbid>
215
+ <url>http://www.last.fm/music/Sister+Sledge/_/We+Are+Family</url>
216
+ <streamable fulltrack="0">1</streamable>
217
+ <artist>
218
+ <name>Sister Sledge</name>
219
+ <mbid>1ed00158-c6a3-45cd-819c-2f91997fc480</mbid>
220
+ <url>http://www.last.fm/music/Sister+Sledge</url>
221
+ </artist>
222
+ <image size="small">http://userserve-ak.last.fm/serve/34s/13286129.jpg</image>
223
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/13286129.jpg</image>
224
+ <image size="large">http://userserve-ak.last.fm/serve/126/13286129.jpg</image>
225
+ </track>
226
+
227
+
228
+ <track rank="14">
229
+ <name>Upside Down</name>
230
+ <tagcount>162</tagcount>
231
+ <mbid></mbid>
232
+ <url>http://www.last.fm/music/Diana+Ross/_/Upside+Down</url>
233
+ <streamable fulltrack="1">1</streamable>
234
+ <artist>
235
+ <name>Diana Ross</name>
236
+ <mbid>60d41417-feda-4734-bbbf-7dcc30e08a83</mbid>
237
+ <url>http://www.last.fm/music/Diana+Ross</url>
238
+ </artist>
239
+ <image size="small">http://images.amazon.com/images/P/B000001AMF.01.MZZZZZZZ.jpg</image>
240
+ <image size="medium">http://images.amazon.com/images/P/B000001AMF.01.MZZZZZZZ.jpg</image>
241
+ <image size="large">http://images.amazon.com/images/P/B000001AMF.01.MZZZZZZZ.jpg</image>
242
+ </track>
243
+
244
+
245
+ <track rank="15">
246
+ <name>Play That Funky Music</name>
247
+ <tagcount>160</tagcount>
248
+ <mbid></mbid>
249
+ <url>http://www.last.fm/music/Wild+Cherry/_/Play+That+Funky+Music</url>
250
+ <streamable fulltrack="1">1</streamable>
251
+ <artist>
252
+ <name>Wild Cherry</name>
253
+ <mbid>da5ff827-174b-48d1-9a39-9fa290bb2925</mbid>
254
+ <url>http://www.last.fm/music/Wild+Cherry</url>
255
+ </artist>
256
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23757823.jpg</image>
257
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23757823.jpg</image>
258
+ <image size="large">http://userserve-ak.last.fm/serve/126/23757823.jpg</image>
259
+ </track>
260
+
261
+
262
+ <track rank="15">
263
+ <name>You Sexy Thing</name>
264
+ <tagcount>160</tagcount>
265
+ <mbid></mbid>
266
+ <url>http://www.last.fm/music/Hot+Chocolate/_/You+Sexy+Thing</url>
267
+ <streamable fulltrack="1">1</streamable>
268
+ <artist>
269
+ <name>Hot Chocolate</name>
270
+ <mbid>a749130e-c2d8-4a7c-b740-908ea4574961</mbid>
271
+ <url>http://www.last.fm/music/Hot+Chocolate</url>
272
+ </artist>
273
+ <image size="small">http://userserve-ak.last.fm/serve/34s/6301769.jpg</image>
274
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/6301769.jpg</image>
275
+ <image size="large">http://userserve-ak.last.fm/serve/126/6301769.jpg</image>
276
+ </track>
277
+
278
+
279
+ <track rank="17">
280
+ <name>You Know Me Better</name>
281
+ <tagcount>152</tagcount>
282
+ <mbid></mbid>
283
+ <url>http://www.last.fm/music/R%C3%B3is%C3%ADn+Murphy/_/You+Know+Me+Better</url>
284
+ <streamable fulltrack="1">0</streamable>
285
+ <artist>
286
+ <name>Róisín Murphy</name>
287
+ <mbid>4c56405d-ba8e-4283-99c3-1dc95bdd50e7</mbid>
288
+ <url>http://www.last.fm/music/R%C3%B3is%C3%ADn+Murphy</url>
289
+ </artist>
290
+ </track>
291
+
292
+
293
+ <track rank="18">
294
+ <name>Funkytown</name>
295
+ <tagcount>150</tagcount>
296
+ <mbid></mbid>
297
+ <url>http://www.last.fm/music/Lipps%2C+Inc./_/Funkytown</url>
298
+ <streamable fulltrack="1">1</streamable>
299
+ <artist>
300
+ <name>Lipps, Inc.</name>
301
+ <mbid>9f47e427-c31c-49fe-90d6-92ab6029d405</mbid>
302
+ <url>http://www.last.fm/music/Lipps%2C+Inc.</url>
303
+ </artist>
304
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4576293.jpg</image>
305
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4576293.jpg</image>
306
+ <image size="large">http://userserve-ak.last.fm/serve/126/4576293.jpg</image>
307
+ </track>
308
+
309
+
310
+ <track rank="19">
311
+ <name>If I Can't Have You</name>
312
+ <tagcount>146</tagcount>
313
+ <mbid></mbid>
314
+ <url>http://www.last.fm/music/Yvonne+Elliman/_/If+I+Can%27t+Have+You</url>
315
+ <streamable fulltrack="1">1</streamable>
316
+ <artist>
317
+ <name>Yvonne Elliman</name>
318
+ <mbid>62b9eb3e-c470-462d-8d63-9b6cbac13d62</mbid>
319
+ <url>http://www.last.fm/music/Yvonne+Elliman</url>
320
+ </artist>
321
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8774511.jpg</image>
322
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8774511.jpg</image>
323
+ <image size="large">http://userserve-ak.last.fm/serve/126/8774511.jpg</image>
324
+ </track>
325
+
326
+
327
+ <track rank="20">
328
+ <name>Don't Let Me Be Misunderstood</name>
329
+ <tagcount>142</tagcount>
330
+ <mbid></mbid>
331
+ <url>http://www.last.fm/music/Santa+Esmeralda/_/Don%27t+Let+Me+Be+Misunderstood</url>
332
+ <streamable fulltrack="0">1</streamable>
333
+ <artist>
334
+ <name>Santa Esmeralda</name>
335
+ <mbid>b233a9a9-2538-4c5b-986a-5843650e2611</mbid>
336
+ <url>http://www.last.fm/music/Santa+Esmeralda</url>
337
+ </artist>
338
+ <image size="small">http://images.amazon.com/images/P/B000001QV4.01.MZZZZZZZ.jpg</image>
339
+ <image size="medium">http://images.amazon.com/images/P/B000001QV4.01.MZZZZZZZ.jpg</image>
340
+ <image size="large">http://images.amazon.com/images/P/B000001QV4.01.MZZZZZZZ.jpg</image>
341
+ </track>
342
+
343
+
344
+ <track rank="21">
345
+ <name>Celebration</name>
346
+ <tagcount>139</tagcount>
347
+ <mbid></mbid>
348
+ <url>http://www.last.fm/music/Kool%2B%2526%2BThe%2BGang/_/Celebration</url>
349
+ <streamable fulltrack="1">1</streamable>
350
+ <artist>
351
+ <name>Kool &amp; The Gang</name>
352
+ <mbid>2469950a-f0ca-425a-bfbc-baf55ea3afde</mbid>
353
+ <url>http://www.last.fm/music/Kool%2B%2526%2BThe%2BGang</url>
354
+ </artist>
355
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8761641.jpg</image>
356
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8761641.jpg</image>
357
+ <image size="large">http://userserve-ak.last.fm/serve/126/8761641.jpg</image>
358
+ </track>
359
+
360
+
361
+ <track rank="22">
362
+ <name>Y.M.C.A.</name>
363
+ <tagcount>138</tagcount>
364
+ <mbid></mbid>
365
+ <url>http://www.last.fm/music/Village+People/_/Y.M.C.A.</url>
366
+ <streamable fulltrack="0">1</streamable>
367
+ <artist>
368
+ <name>Village People</name>
369
+ <mbid>f19d3d49-be22-4ca6-9903-64d86984fbf2</mbid>
370
+ <url>http://www.last.fm/music/Village+People</url>
371
+ </artist>
372
+ <image size="small">http://images.amazon.com/images/P/B000001E40.01.MZZZZZZZ.jpg</image>
373
+ <image size="medium">http://images.amazon.com/images/P/B000001E40.01.MZZZZZZZ.jpg</image>
374
+ <image size="large">http://images.amazon.com/images/P/B000001E40.01.MZZZZZZZ.jpg</image>
375
+ </track>
376
+
377
+
378
+ <track rank="22">
379
+ <name>Billie Jean</name>
380
+ <tagcount>138</tagcount>
381
+ <mbid></mbid>
382
+ <url>http://www.last.fm/music/Michael+Jackson/_/Billie+Jean</url>
383
+ <streamable fulltrack="1">1</streamable>
384
+ <artist>
385
+ <name>Michael Jackson</name>
386
+ <mbid>f27ec8db-af05-4f36-916e-3d57f91ecf5e</mbid>
387
+ <url>http://www.last.fm/music/Michael+Jackson</url>
388
+ </artist>
389
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19130267.jpg</image>
390
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19130267.jpg</image>
391
+ <image size="large">http://userserve-ak.last.fm/serve/126/19130267.jpg</image>
392
+ </track>
393
+
394
+
395
+ <track rank="24">
396
+ <name>Let Me Know</name>
397
+ <tagcount>137</tagcount>
398
+ <mbid></mbid>
399
+ <url>http://www.last.fm/music/R%C3%B3is%C3%ADn+Murphy/_/Let+Me+Know</url>
400
+ <streamable fulltrack="0">1</streamable>
401
+ <artist>
402
+ <name>Róisín Murphy</name>
403
+ <mbid>4c56405d-ba8e-4283-99c3-1dc95bdd50e7</mbid>
404
+ <url>http://www.last.fm/music/R%C3%B3is%C3%ADn+Murphy</url>
405
+ </artist>
406
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5556977.png</image>
407
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5556977.png</image>
408
+ <image size="large">http://userserve-ak.last.fm/serve/126/5556977.png</image>
409
+ </track>
410
+
411
+
412
+ <track rank="25">
413
+ <name>Knock on Wood</name>
414
+ <tagcount>136</tagcount>
415
+ <mbid></mbid>
416
+ <url>http://www.last.fm/music/Amii+Stewart/_/Knock+on+Wood</url>
417
+ <streamable fulltrack="0">1</streamable>
418
+ <artist>
419
+ <name>Amii Stewart</name>
420
+ <mbid>8d1d5ded-96ed-4b5f-9cf0-a2174a2322f0</mbid>
421
+ <url>http://www.last.fm/music/Amii+Stewart</url>
422
+ </artist>
423
+ <image size="small">http://images.amazon.com/images/P/B000001QLR.01._SCMZZZZZZZ_.jpg</image>
424
+ <image size="medium">http://images.amazon.com/images/P/B000001QLR.01._SCMZZZZZZZ_.jpg</image>
425
+ <image size="large">http://images.amazon.com/images/P/B000001QLR.01._SCMZZZZZZZ_.jpg</image>
426
+ </track>
427
+
428
+
429
+ <track rank="26">
430
+ <name>Take a Chance on Me</name>
431
+ <tagcount>134</tagcount>
432
+ <mbid></mbid>
433
+ <url>http://www.last.fm/music/ABBA/_/Take+a+Chance+on+Me</url>
434
+ <streamable fulltrack="1">1</streamable>
435
+ <artist>
436
+ <name>ABBA</name>
437
+ <mbid>d87e52c5-bb8d-4da8-b941-9f4928627dc8</mbid>
438
+ <url>http://www.last.fm/music/ABBA</url>
439
+ </artist>
440
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8674393.jpg</image>
441
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8674393.jpg</image>
442
+ <image size="large">http://userserve-ak.last.fm/serve/126/8674393.jpg</image>
443
+ </track>
444
+
445
+
446
+ <track rank="26">
447
+ <name>Get Down Tonight</name>
448
+ <tagcount>134</tagcount>
449
+ <mbid></mbid>
450
+ <url>http://www.last.fm/music/KC+and+the+Sunshine+Band/_/Get+Down+Tonight</url>
451
+ <streamable fulltrack="1">1</streamable>
452
+ <artist>
453
+ <name>KC and the Sunshine Band</name>
454
+ <mbid>76a5a114-ed6a-4eb6-8a81-ad5768d4b41c</mbid>
455
+ <url>http://www.last.fm/music/KC+and+the+Sunshine+Band</url>
456
+ </artist>
457
+ <image size="small">http://images.amazon.com/images/P/B00002NDAL.01.MZZZZZZZ.jpg</image>
458
+ <image size="medium">http://images.amazon.com/images/P/B00002NDAL.01.MZZZZZZZ.jpg</image>
459
+ <image size="large">http://images.amazon.com/images/P/B00002NDAL.01.MZZZZZZZ.jpg</image>
460
+ </track>
461
+
462
+
463
+ <track rank="28">
464
+ <name>Rasputin</name>
465
+ <tagcount>133</tagcount>
466
+ <mbid></mbid>
467
+ <url>http://www.last.fm/music/Boney+M./_/Rasputin</url>
468
+ <streamable fulltrack="1">1</streamable>
469
+ <artist>
470
+ <name>Boney M.</name>
471
+ <mbid>5403bf6e-bc1d-4e62-b31f-926a2bf66a14</mbid>
472
+ <url>http://www.last.fm/music/Boney+M.</url>
473
+ </artist>
474
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9102817.jpg</image>
475
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9102817.jpg</image>
476
+ <image size="large">http://userserve-ak.last.fm/serve/126/9102817.jpg</image>
477
+ </track>
478
+
479
+
480
+ <track rank="28">
481
+ <name>Just an Illusion</name>
482
+ <tagcount>133</tagcount>
483
+ <mbid></mbid>
484
+ <url>http://www.last.fm/music/Imagination/_/Just+an+Illusion</url>
485
+ <streamable fulltrack="0">1</streamable>
486
+ <artist>
487
+ <name>Imagination</name>
488
+ <mbid>f4038a4a-77af-4363-a2a8-5d847bb7f1ba</mbid>
489
+ <url>http://www.last.fm/music/Imagination</url>
490
+ </artist>
491
+ <image size="small">http://images.amazon.com/images/P/B000005RFY.01._SCMZZZZZZZ_.jpg</image>
492
+ <image size="medium">http://images.amazon.com/images/P/B000005RFY.01._SCMZZZZZZZ_.jpg</image>
493
+ <image size="large">http://images.amazon.com/images/P/B000005RFY.01._SCMZZZZZZZ_.jpg</image>
494
+ </track>
495
+
496
+
497
+ <track rank="30">
498
+ <name>Heart of Glass</name>
499
+ <tagcount>131</tagcount>
500
+ <mbid></mbid>
501
+ <url>http://www.last.fm/music/Blondie/_/Heart+of+Glass</url>
502
+ <streamable fulltrack="1">1</streamable>
503
+ <artist>
504
+ <name>Blondie</name>
505
+ <mbid>4d2956d1-a3f7-44bb-9a41-67563e1a0c94</mbid>
506
+ <url>http://www.last.fm/music/Blondie</url>
507
+ </artist>
508
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12621921.jpg</image>
509
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12621921.jpg</image>
510
+ <image size="large">http://userserve-ak.last.fm/serve/126/12621921.jpg</image>
511
+ </track>
512
+
513
+
514
+ <track rank="31">
515
+ <name>Car Wash</name>
516
+ <tagcount>129</tagcount>
517
+ <mbid></mbid>
518
+ <url>http://www.last.fm/music/Rose+Royce/_/Car+Wash</url>
519
+ <streamable fulltrack="1">1</streamable>
520
+ <artist>
521
+ <name>Rose Royce</name>
522
+ <mbid>846482ac-d4c4-4286-8002-b14a601d8ec0</mbid>
523
+ <url>http://www.last.fm/music/Rose+Royce</url>
524
+ </artist>
525
+ <image size="small">http://images.amazon.com/images/P/B000A3I450.01._SCMZZZZZZZ_.jpg</image>
526
+ <image size="medium">http://images.amazon.com/images/P/B000A3I450.01._SCMZZZZZZZ_.jpg</image>
527
+ <image size="large">http://images.amazon.com/images/P/B000A3I450.01._SCMZZZZZZZ_.jpg</image>
528
+ </track>
529
+
530
+
531
+ <track rank="32">
532
+ <name>Ring My Bell</name>
533
+ <tagcount>127</tagcount>
534
+ <mbid></mbid>
535
+ <url>http://www.last.fm/music/Anita+Ward/_/Ring+My+Bell</url>
536
+ <streamable fulltrack="0">1</streamable>
537
+ <artist>
538
+ <name>Anita Ward</name>
539
+ <mbid>5ffe7875-614f-4823-879b-1fd66574a36d</mbid>
540
+ <url>http://www.last.fm/music/Anita+Ward</url>
541
+ </artist>
542
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4576293.jpg</image>
543
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4576293.jpg</image>
544
+ <image size="large">http://userserve-ak.last.fm/serve/126/4576293.jpg</image>
545
+ </track>
546
+
547
+
548
+ <track rank="33">
549
+ <name>You Should Be Dancing</name>
550
+ <tagcount>124</tagcount>
551
+ <mbid></mbid>
552
+ <url>http://www.last.fm/music/Bee+Gees/_/You+Should+Be+Dancing</url>
553
+ <streamable fulltrack="0">1</streamable>
554
+ <artist>
555
+ <name>Bee Gees</name>
556
+ <mbid>bf0f7e29-dfe1-416c-b5c6-f9ebc19ea810</mbid>
557
+ <url>http://www.last.fm/music/Bee+Gees</url>
558
+ </artist>
559
+ <image size="small">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
560
+ <image size="medium">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
561
+ <image size="large">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
562
+ </track>
563
+
564
+
565
+ <track rank="34">
566
+ <name>The Hustle</name>
567
+ <tagcount>122</tagcount>
568
+ <mbid></mbid>
569
+ <url>http://www.last.fm/music/Van+McCoy/_/The+Hustle</url>
570
+ <streamable fulltrack="1">1</streamable>
571
+ <artist>
572
+ <name>Van McCoy</name>
573
+ <mbid>0f081bd8-d324-4738-8197-f30b933dc2df</mbid>
574
+ <url>http://www.last.fm/music/Van+McCoy</url>
575
+ </artist>
576
+ <image size="small">http://images.amazon.com/images/P/B000001O6W.01.MZZZZZZZ.jpg</image>
577
+ <image size="medium">http://images.amazon.com/images/P/B000001O6W.01.MZZZZZZZ.jpg</image>
578
+ <image size="large">http://images.amazon.com/images/P/B000001O6W.01.MZZZZZZZ.jpg</image>
579
+ </track>
580
+
581
+
582
+ <track rank="35">
583
+ <name>September</name>
584
+ <tagcount>121</tagcount>
585
+ <mbid></mbid>
586
+ <url>http://www.last.fm/music/Earth%252C%2BWind%2B%2526%2BFire/_/September</url>
587
+ <streamable fulltrack="1">1</streamable>
588
+ <artist>
589
+ <name>Earth, Wind &amp; Fire</name>
590
+ <mbid>535afeda-2538-435d-9dd1-5e10be586774</mbid>
591
+ <url>http://www.last.fm/music/Earth%252C%2BWind%2B%2526%2BFire</url>
592
+ </artist>
593
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15223563.jpg</image>
594
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15223563.jpg</image>
595
+ <image size="large">http://userserve-ak.last.fm/serve/126/15223563.jpg</image>
596
+ </track>
597
+
598
+
599
+ <track rank="36">
600
+ <name>How Deep Is Your Love</name>
601
+ <tagcount>120</tagcount>
602
+ <mbid></mbid>
603
+ <url>http://www.last.fm/music/Bee+Gees/_/How+Deep+Is+Your+Love</url>
604
+ <streamable fulltrack="0">1</streamable>
605
+ <artist>
606
+ <name>Bee Gees</name>
607
+ <mbid>bf0f7e29-dfe1-416c-b5c6-f9ebc19ea810</mbid>
608
+ <url>http://www.last.fm/music/Bee+Gees</url>
609
+ </artist>
610
+ <image size="small">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
611
+ <image size="medium">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
612
+ <image size="large">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
613
+ </track>
614
+
615
+
616
+ <track rank="37">
617
+ <name>I'm So Excited</name>
618
+ <tagcount>117</tagcount>
619
+ <mbid></mbid>
620
+ <url>http://www.last.fm/music/The+Pointer+Sisters/_/I%27m+So+Excited</url>
621
+ <streamable fulltrack="1">1</streamable>
622
+ <artist>
623
+ <name>The Pointer Sisters</name>
624
+ <mbid>81bac815-97c5-4723-8f0b-4d8edfad1010</mbid>
625
+ <url>http://www.last.fm/music/The+Pointer+Sisters</url>
626
+ </artist>
627
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8003551.jpg</image>
628
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8003551.jpg</image>
629
+ <image size="large">http://userserve-ak.last.fm/serve/126/8003551.jpg</image>
630
+ </track>
631
+
632
+
633
+ <track rank="38">
634
+ <name>And the Beat Goes On</name>
635
+ <tagcount>115</tagcount>
636
+ <mbid></mbid>
637
+ <url>http://www.last.fm/music/The+Whispers/_/And+the+Beat+Goes+On</url>
638
+ <streamable fulltrack="1">1</streamable>
639
+ <artist>
640
+ <name>The Whispers</name>
641
+ <mbid>2e7afe0c-ec52-4c1d-9413-5d40f77922c7</mbid>
642
+ <url>http://www.last.fm/music/The+Whispers</url>
643
+ </artist>
644
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4162885.jpg</image>
645
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4162885.jpg</image>
646
+ <image size="large">http://userserve-ak.last.fm/serve/126/4162885.jpg</image>
647
+ </track>
648
+
649
+
650
+ <track rank="39">
651
+ <name>Mamma Mia</name>
652
+ <tagcount>114</tagcount>
653
+ <mbid></mbid>
654
+ <url>http://www.last.fm/music/ABBA/_/Mamma+Mia</url>
655
+ <streamable fulltrack="1">1</streamable>
656
+ <artist>
657
+ <name>ABBA</name>
658
+ <mbid>d87e52c5-bb8d-4da8-b941-9f4928627dc8</mbid>
659
+ <url>http://www.last.fm/music/ABBA</url>
660
+ </artist>
661
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8674393.jpg</image>
662
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8674393.jpg</image>
663
+ <image size="large">http://userserve-ak.last.fm/serve/126/8674393.jpg</image>
664
+ </track>
665
+
666
+
667
+ <track rank="40">
668
+ <name>Don't Leave Me This Way</name>
669
+ <tagcount>111</tagcount>
670
+ <mbid></mbid>
671
+ <url>http://www.last.fm/music/Thelma+Houston/_/Don%27t+Leave+Me+This+Way</url>
672
+ <streamable fulltrack="1">1</streamable>
673
+ <artist>
674
+ <name>Thelma Houston</name>
675
+ <mbid>cb327970-cf95-4f2d-91db-b1b787aa51f9</mbid>
676
+ <url>http://www.last.fm/music/Thelma+Houston</url>
677
+ </artist>
678
+ <image size="small">http://images.amazon.com/images/P/B00000DB4N.01.MZZZZZZZ.jpg</image>
679
+ <image size="medium">http://images.amazon.com/images/P/B00000DB4N.01.MZZZZZZZ.jpg</image>
680
+ <image size="large">http://images.amazon.com/images/P/B00000DB4N.01.MZZZZZZZ.jpg</image>
681
+ </track>
682
+
683
+
684
+ <track rank="41">
685
+ <name>Heaven Must Be Missing an Angel</name>
686
+ <tagcount>110</tagcount>
687
+ <mbid></mbid>
688
+ <url>http://www.last.fm/music/Tavares/_/Heaven+Must+Be+Missing+an+Angel</url>
689
+ <streamable fulltrack="1">1</streamable>
690
+ <artist>
691
+ <name>Tavares</name>
692
+ <mbid>08b2c88f-6c13-419b-a4f5-182cc3738e49</mbid>
693
+ <url>http://www.last.fm/music/Tavares</url>
694
+ </artist>
695
+ <image size="small">http://images.amazon.com/images/P/B0000242SZ.01._SCMZZZZZZZ_.jpg</image>
696
+ <image size="medium">http://images.amazon.com/images/P/B0000242SZ.01._SCMZZZZZZZ_.jpg</image>
697
+ <image size="large">http://images.amazon.com/images/P/B0000242SZ.01._SCMZZZZZZZ_.jpg</image>
698
+ </track>
699
+
700
+
701
+ <track rank="41">
702
+ <name>That's The Way I Like It</name>
703
+ <tagcount>110</tagcount>
704
+ <mbid></mbid>
705
+ <url>http://www.last.fm/music/KC+and+the+Sunshine+Band/_/That%27s+The+Way+I+Like+It</url>
706
+ <streamable fulltrack="1">1</streamable>
707
+ <artist>
708
+ <name>KC and the Sunshine Band</name>
709
+ <mbid>76a5a114-ed6a-4eb6-8a81-ad5768d4b41c</mbid>
710
+ <url>http://www.last.fm/music/KC+and+the+Sunshine+Band</url>
711
+ </artist>
712
+ <image size="small">http://images.amazon.com/images/P/B0000071B6.09._SCMZZZZZZZ_.jpg</image>
713
+ <image size="medium">http://images.amazon.com/images/P/B0000071B6.09._SCMZZZZZZZ_.jpg</image>
714
+ <image size="large">http://images.amazon.com/images/P/B0000071B6.09._SCMZZZZZZZ_.jpg</image>
715
+ </track>
716
+
717
+
718
+ <track rank="43">
719
+ <name>Sutra</name>
720
+ <tagcount>108</tagcount>
721
+ <mbid></mbid>
722
+ <url>http://www.last.fm/music/Modus/_/Sutra</url>
723
+ <streamable fulltrack="1">1</streamable>
724
+ <artist>
725
+ <name>Modus</name>
726
+ <mbid>d7bfb5f8-de7d-4ead-87ad-7b3492623a03</mbid>
727
+ <url>http://www.last.fm/music/Modus</url>
728
+ </artist>
729
+ <image size="small">http://userserve-ak.last.fm/serve/34s/24915223.jpg</image>
730
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/24915223.jpg</image>
731
+ <image size="large">http://userserve-ak.last.fm/serve/126/24915223.jpg</image>
732
+ </track>
733
+
734
+
735
+ <track rank="44">
736
+ <name>Got To Be Real</name>
737
+ <tagcount>105</tagcount>
738
+ <mbid></mbid>
739
+ <url>http://www.last.fm/music/Cheryl+Lynn/_/Got+To+Be+Real</url>
740
+ <streamable fulltrack="1">1</streamable>
741
+ <artist>
742
+ <name>Cheryl Lynn</name>
743
+ <mbid>c2b8f775-455c-44c3-97ca-f377938da19e</mbid>
744
+ <url>http://www.last.fm/music/Cheryl+Lynn</url>
745
+ </artist>
746
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22545103.jpg</image>
747
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22545103.jpg</image>
748
+ <image size="large">http://userserve-ak.last.fm/serve/126/22545103.jpg</image>
749
+ </track>
750
+
751
+
752
+ <track rank="44">
753
+ <name>Ma Baker</name>
754
+ <tagcount>105</tagcount>
755
+ <mbid></mbid>
756
+ <url>http://www.last.fm/music/Boney+M./_/Ma+Baker</url>
757
+ <streamable fulltrack="1">1</streamable>
758
+ <artist>
759
+ <name>Boney M.</name>
760
+ <mbid>5403bf6e-bc1d-4e62-b31f-926a2bf66a14</mbid>
761
+ <url>http://www.last.fm/music/Boney+M.</url>
762
+ </artist>
763
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9102817.jpg</image>
764
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9102817.jpg</image>
765
+ <image size="large">http://userserve-ak.last.fm/serve/126/9102817.jpg</image>
766
+ </track>
767
+
768
+
769
+ <track rank="46">
770
+ <name>Waterloo</name>
771
+ <tagcount>104</tagcount>
772
+ <mbid></mbid>
773
+ <url>http://www.last.fm/music/ABBA/_/Waterloo</url>
774
+ <streamable fulltrack="1">1</streamable>
775
+ <artist>
776
+ <name>ABBA</name>
777
+ <mbid>d87e52c5-bb8d-4da8-b941-9f4928627dc8</mbid>
778
+ <url>http://www.last.fm/music/ABBA</url>
779
+ </artist>
780
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8827671.jpg</image>
781
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8827671.jpg</image>
782
+ <image size="large">http://userserve-ak.last.fm/serve/126/8827671.jpg</image>
783
+ </track>
784
+
785
+
786
+ <track rank="47">
787
+ <name>Best of my Love</name>
788
+ <tagcount>101</tagcount>
789
+ <mbid></mbid>
790
+ <url>http://www.last.fm/music/The+Emotions/_/Best+of+my+Love</url>
791
+ <streamable fulltrack="1">1</streamable>
792
+ <artist>
793
+ <name>The Emotions</name>
794
+ <mbid>6ff13427-08ff-4da2-bee8-892e1fa22d3c</mbid>
795
+ <url>http://www.last.fm/music/The+Emotions</url>
796
+ </artist>
797
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22455965.jpg</image>
798
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22455965.jpg</image>
799
+ <image size="large">http://userserve-ak.last.fm/serve/126/22455965.jpg</image>
800
+ </track>
801
+
802
+
803
+ <track rank="48">
804
+ <name>Jungle Boogie</name>
805
+ <tagcount>100</tagcount>
806
+ <mbid></mbid>
807
+ <url>http://www.last.fm/music/Kool%2B%2526%2BThe%2BGang/_/Jungle+Boogie</url>
808
+ <streamable fulltrack="1">1</streamable>
809
+ <artist>
810
+ <name>Kool &amp; The Gang</name>
811
+ <mbid>2469950a-f0ca-425a-bfbc-baf55ea3afde</mbid>
812
+ <url>http://www.last.fm/music/Kool%2B%2526%2BThe%2BGang</url>
813
+ </artist>
814
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5937937.jpg</image>
815
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5937937.jpg</image>
816
+ <image size="large">http://userserve-ak.last.fm/serve/126/5937937.jpg</image>
817
+ </track>
818
+
819
+
820
+ <track rank="49">
821
+ <name>Never Can Say Goodbye</name>
822
+ <tagcount>99</tagcount>
823
+ <mbid></mbid>
824
+ <url>http://www.last.fm/music/Gloria+Gaynor/_/Never+Can+Say+Goodbye</url>
825
+ <streamable fulltrack="1">1</streamable>
826
+ <artist>
827
+ <name>Gloria Gaynor</name>
828
+ <mbid>d5c51c36-ac67-4727-91ed-ee9f0df81a2d</mbid>
829
+ <url>http://www.last.fm/music/Gloria+Gaynor</url>
830
+ </artist>
831
+ <image size="small">http://images.amazon.com/images/P/B00000BIHA.01.THUMBZZZ.jpg</image>
832
+ <image size="medium">http://images.amazon.com/images/P/B00000BIHA.01.MZZZZZZZ.jpg</image>
833
+ <image size="large">http://images.amazon.com/images/P/B00000BIHA.01.LZZZZZZZ.jpg</image>
834
+ </track>
835
+
836
+
837
+ <track rank="50">
838
+ <name>Sunny</name>
839
+ <tagcount>98</tagcount>
840
+ <mbid></mbid>
841
+ <url>http://www.last.fm/music/Boney+M./_/Sunny</url>
842
+ <streamable fulltrack="1">1</streamable>
843
+ <artist>
844
+ <name>Boney M.</name>
845
+ <mbid>5403bf6e-bc1d-4e62-b31f-926a2bf66a14</mbid>
846
+ <url>http://www.last.fm/music/Boney+M.</url>
847
+ </artist>
848
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9102817.jpg</image>
849
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9102817.jpg</image>
850
+ <image size="large">http://userserve-ak.last.fm/serve/126/9102817.jpg</image>
851
+ </track>
852
+ </toptracks></lfm>