shortwave 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (105) hide show
  1. data/.document +5 -0
  2. data/.gitignore +10 -0
  3. data/.gitmodules +3 -0
  4. data/LICENSE +20 -0
  5. data/README.rdoc +74 -0
  6. data/Rakefile +133 -0
  7. data/VERSION +1 -0
  8. data/lib/shortwave.rb +12 -0
  9. data/lib/shortwave/authentication.rb +107 -0
  10. data/lib/shortwave/facade.rb +3 -0
  11. data/lib/shortwave/facade/build/facade_builder.rb +199 -0
  12. data/lib/shortwave/facade/build/facade_template.erb +17 -0
  13. data/lib/shortwave/facade/lastfm.rb +878 -0
  14. data/lib/shortwave/facade/remote.rb +86 -0
  15. data/lib/shortwave/model/album.rb +33 -0
  16. data/lib/shortwave/model/artist.rb +62 -0
  17. data/lib/shortwave/model/base_model.rb +112 -0
  18. data/lib/shortwave/model/chart_dates.rb +15 -0
  19. data/lib/shortwave/model/comparison.rb +15 -0
  20. data/lib/shortwave/model/event.rb +55 -0
  21. data/lib/shortwave/model/group.rb +26 -0
  22. data/lib/shortwave/model/location.rb +45 -0
  23. data/lib/shortwave/model/playlist.rb +36 -0
  24. data/lib/shortwave/model/shout.rb +21 -0
  25. data/lib/shortwave/model/tag.rb +47 -0
  26. data/lib/shortwave/model/track.rb +71 -0
  27. data/lib/shortwave/model/user.rb +70 -0
  28. data/lib/shortwave/model/venue.rb +37 -0
  29. data/lib/shortwave/model/weekly_charts.rb +31 -0
  30. data/lib/shortwave/providers.rb +161 -0
  31. data/shortwave.gemspec +178 -0
  32. data/test/authentication_test.rb +64 -0
  33. data/test/build/build_test.rb +25 -0
  34. data/test/build/data/intro.yml +2 -0
  35. data/test/build/data/screens/album_addTags.html +1238 -0
  36. data/test/build/data/screens/intro_truncated.html +426 -0
  37. data/test/build/data/screens/tasteometer_compare.html +1274 -0
  38. data/test/build/data/screens/user_getLovedTracks.html +1278 -0
  39. data/test/build/data/screens/venue_search.html +1261 -0
  40. data/test/build/facade_builder_test.rb +23 -0
  41. data/test/build/parameter_test.rb +43 -0
  42. data/test/build/remote_method_test.rb +47 -0
  43. data/test/build/ruby_class_test.rb +12 -0
  44. data/test/build/ruby_method_test.rb +137 -0
  45. data/test/helper.rb +35 -0
  46. data/test/model/album_test.rb +62 -0
  47. data/test/model/artist_test.rb +103 -0
  48. data/test/model/chart_dates_test.rb +11 -0
  49. data/test/model/comparison_test.rb +18 -0
  50. data/test/model/data/album_info.xml +38 -0
  51. data/test/model/data/album_search.xml +210 -0
  52. data/test/model/data/artist_info.xml +58 -0
  53. data/test/model/data/artist_search.xml +109 -0
  54. data/test/model/data/artist_shouts.xml +546 -0
  55. data/test/model/data/artist_top_fans.xml +405 -0
  56. data/test/model/data/event_info.xml +47 -0
  57. data/test/model/data/group_members.xml +242 -0
  58. data/test/model/data/group_weekly_album_chart.xml +1754 -0
  59. data/test/model/data/group_weekly_artist_chart.xml +604 -0
  60. data/test/model/data/group_weekly_track_chart.xml +1005 -0
  61. data/test/model/data/location_events.xml +383 -0
  62. data/test/model/data/ok.xml +2 -0
  63. data/test/model/data/playlist_fetch.xml +227 -0
  64. data/test/model/data/tag_search.xml +110 -0
  65. data/test/model/data/tag_similar.xml +254 -0
  66. data/test/model/data/tag_top_albums.xml +805 -0
  67. data/test/model/data/tag_top_artists.xml +605 -0
  68. data/test/model/data/tag_top_tags.xml +1254 -0
  69. data/test/model/data/tag_top_tracks.xml +843 -0
  70. data/test/model/data/tag_weekly_chart_list.xml +57 -0
  71. data/test/model/data/tasteometer_compare.xml +54 -0
  72. data/test/model/data/track_info.xml +53 -0
  73. data/test/model/data/track_search.xml +195 -0
  74. data/test/model/data/user_chartlist.xml +90 -0
  75. data/test/model/data/user_info.xml +16 -0
  76. data/test/model/data/user_neighbours.xml +484 -0
  77. data/test/model/data/user_playlists.xml +17 -0
  78. data/test/model/data/user_recent_tracks.xml +124 -0
  79. data/test/model/data/user_recommended_artists.xml +454 -0
  80. data/test/model/data/user_shouts.xml +9 -0
  81. data/test/model/data/user_weekly_artist_chart.xml +478 -0
  82. data/test/model/data/venue_events.xml +556 -0
  83. data/test/model/data/venue_past_events.xml +1778 -0
  84. data/test/model/data/venue_search.xml +355 -0
  85. data/test/model/event_test.rb +63 -0
  86. data/test/model/group_test.rb +45 -0
  87. data/test/model/location_test.rb +25 -0
  88. data/test/model/playlist_test.rb +51 -0
  89. data/test/model/shout_test.rb +23 -0
  90. data/test/model/tag_test.rb +39 -0
  91. data/test/model/track_test.rb +67 -0
  92. data/test/model/user_test.rb +125 -0
  93. data/test/model/venue_test.rb +60 -0
  94. data/test/provider/album_provider_test.rb +26 -0
  95. data/test/provider/artist_provider_test.rb +25 -0
  96. data/test/provider/group_provider_test.rb +9 -0
  97. data/test/provider/location_provider_test.rb +9 -0
  98. data/test/provider/playlist_provider_test.rb +12 -0
  99. data/test/provider/tag_provider_test.rb +24 -0
  100. data/test/provider/track_provider_test.rb +26 -0
  101. data/test/provider/user_provider_test.rb +11 -0
  102. data/test/provider/venue_provider_test.rb +15 -0
  103. data/test/provider_test_helper.rb +27 -0
  104. data/test/remote_test.rb +26 -0
  105. metadata +209 -0
@@ -0,0 +1,843 @@
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>Dancing Queen</name>
9
+ <tagcount>100</tagcount>
10
+ <mbid></mbid>
11
+ <url>http://www.last.fm/music/ABBA/_/Dancing+Queen</url>
12
+ <streamable fulltrack="1">1</streamable>
13
+ <artist>
14
+ <name>ABBA</name>
15
+ <mbid>d87e52c5-bb8d-4da8-b941-9f4928627dc8</mbid>
16
+ <url>http://www.last.fm/music/ABBA</url>
17
+ </artist>
18
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8674393.jpg</image>
19
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8674393.jpg</image>
20
+ <image size="large">http://userserve-ak.last.fm/serve/126/8674393.jpg</image>
21
+ </track>
22
+
23
+
24
+ <track rank="2">
25
+ <name>I Will Survive</name>
26
+ <tagcount>98</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>Stayin' Alive</name>
43
+ <tagcount>92</tagcount>
44
+ <mbid></mbid>
45
+ <url>http://www.last.fm/music/Bee+Gees/_/Stayin%27+Alive</url>
46
+ <streamable fulltrack="0">1</streamable>
47
+ <artist>
48
+ <name>Bee Gees</name>
49
+ <mbid>bf0f7e29-dfe1-416c-b5c6-f9ebc19ea810</mbid>
50
+ <url>http://www.last.fm/music/Bee+Gees</url>
51
+ </artist>
52
+ <image size="small">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
53
+ <image size="medium">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
54
+ <image size="large">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
55
+ </track>
56
+
57
+
58
+ <track rank="4">
59
+ <name>Hot Stuff</name>
60
+ <tagcount>90</tagcount>
61
+ <mbid></mbid>
62
+ <url>http://www.last.fm/music/Donna+Summer/_/Hot+Stuff</url>
63
+ <streamable fulltrack="1">1</streamable>
64
+ <artist>
65
+ <name>Donna Summer</name>
66
+ <mbid>b60527cc-54f3-4bbe-a01b-dcf34c95ae14</mbid>
67
+ <url>http://www.last.fm/music/Donna+Summer</url>
68
+ </artist>
69
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5258441.jpg</image>
70
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5258441.jpg</image>
71
+ <image size="large">http://userserve-ak.last.fm/serve/126/5258441.jpg</image>
72
+ </track>
73
+
74
+
75
+ <track rank="5">
76
+ <name>Blind</name>
77
+ <tagcount>87</tagcount>
78
+ <mbid></mbid>
79
+ <url>http://www.last.fm/music/Hercules+and+Love+Affair/_/Blind</url>
80
+ <streamable fulltrack="0">0</streamable>
81
+ <artist>
82
+ <name>Hercules and Love Affair</name>
83
+ <mbid></mbid>
84
+ <url>http://www.last.fm/music/Hercules+and+Love+Affair</url>
85
+ </artist>
86
+ </track>
87
+
88
+
89
+ <track rank="5">
90
+ <name>I Feel Love</name>
91
+ <tagcount>87</tagcount>
92
+ <mbid></mbid>
93
+ <url>http://www.last.fm/music/Donna+Summer/_/I+Feel+Love</url>
94
+ <streamable fulltrack="1">1</streamable>
95
+ <artist>
96
+ <name>Donna Summer</name>
97
+ <mbid>b60527cc-54f3-4bbe-a01b-dcf34c95ae14</mbid>
98
+ <url>http://www.last.fm/music/Donna+Summer</url>
99
+ </artist>
100
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8625415.jpg</image>
101
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8625415.jpg</image>
102
+ <image size="large">http://userserve-ak.last.fm/serve/126/8625415.jpg</image>
103
+ </track>
104
+
105
+
106
+ <track rank="7">
107
+ <name>Disco Heaven</name>
108
+ <tagcount>84</tagcount>
109
+ <mbid></mbid>
110
+ <url>http://www.last.fm/music/Lady+GaGa/_/Disco+Heaven</url>
111
+ <streamable fulltrack="1">1</streamable>
112
+ <artist>
113
+ <name>Lady GaGa</name>
114
+ <mbid></mbid>
115
+ <url>http://www.last.fm/music/Lady+GaGa</url>
116
+ </artist>
117
+ </track>
118
+
119
+
120
+ <track rank="7">
121
+ <name>Kung Fu Fighting</name>
122
+ <tagcount>84</tagcount>
123
+ <mbid></mbid>
124
+ <url>http://www.last.fm/music/Carl+Douglas/_/Kung+Fu+Fighting</url>
125
+ <streamable fulltrack="1">1</streamable>
126
+ <artist>
127
+ <name>Carl Douglas</name>
128
+ <mbid>2100ca6c-5a1d-463e-b50b-7e649debc454</mbid>
129
+ <url>http://www.last.fm/music/Carl+Douglas</url>
130
+ </artist>
131
+ <image size="small">http://images.amazon.com/images/P/B00001ZTQS.01.MZZZZZZZ.jpg</image>
132
+ <image size="medium">http://images.amazon.com/images/P/B00001ZTQS.01.MZZZZZZZ.jpg</image>
133
+ <image size="large">http://images.amazon.com/images/P/B00001ZTQS.01.MZZZZZZZ.jpg</image>
134
+ </track>
135
+
136
+
137
+ <track rank="9">
138
+ <name>You Should Be Dancing</name>
139
+ <tagcount>83</tagcount>
140
+ <mbid></mbid>
141
+ <url>http://www.last.fm/music/Bee+Gees/_/You+Should+Be+Dancing</url>
142
+ <streamable fulltrack="0">1</streamable>
143
+ <artist>
144
+ <name>Bee Gees</name>
145
+ <mbid>bf0f7e29-dfe1-416c-b5c6-f9ebc19ea810</mbid>
146
+ <url>http://www.last.fm/music/Bee+Gees</url>
147
+ </artist>
148
+ <image size="small">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
149
+ <image size="medium">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
150
+ <image size="large">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
151
+ </track>
152
+
153
+
154
+ <track rank="9">
155
+ <name>Ring My Bell</name>
156
+ <tagcount>83</tagcount>
157
+ <mbid></mbid>
158
+ <url>http://www.last.fm/music/Anita+Ward/_/Ring+My+Bell</url>
159
+ <streamable fulltrack="1">1</streamable>
160
+ <artist>
161
+ <name>Anita Ward</name>
162
+ <mbid>5ffe7875-614f-4823-879b-1fd66574a36d</mbid>
163
+ <url>http://www.last.fm/music/Anita+Ward</url>
164
+ </artist>
165
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4576293.jpg</image>
166
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4576293.jpg</image>
167
+ <image size="large">http://userserve-ak.last.fm/serve/126/4576293.jpg</image>
168
+ </track>
169
+
170
+
171
+ <track rank="9">
172
+ <name>Le Freak</name>
173
+ <tagcount>83</tagcount>
174
+ <mbid></mbid>
175
+ <url>http://www.last.fm/music/Chic/_/Le+Freak</url>
176
+ <streamable fulltrack="1">1</streamable>
177
+ <artist>
178
+ <name>Chic</name>
179
+ <mbid>a4ed036b-5f18-439c-b1e1-96d205bab255</mbid>
180
+ <url>http://www.last.fm/music/Chic</url>
181
+ </artist>
182
+ <image size="small">http://images.amazon.com/images/P/B00000I8LB.01.THUMBZZZ.jpg</image>
183
+ <image size="medium">http://images.amazon.com/images/P/B00000I8LB.01.MZZZZZZZ.jpg</image>
184
+ <image size="large">http://images.amazon.com/images/P/B00000I8LB.01.LZZZZZZZ.jpg</image>
185
+ </track>
186
+
187
+
188
+ <track rank="12">
189
+ <name>Night Fever</name>
190
+ <tagcount>80</tagcount>
191
+ <mbid></mbid>
192
+ <url>http://www.last.fm/music/Bee+Gees/_/Night+Fever</url>
193
+ <streamable fulltrack="0">0</streamable>
194
+ <artist>
195
+ <name>Bee Gees</name>
196
+ <mbid>bf0f7e29-dfe1-416c-b5c6-f9ebc19ea810</mbid>
197
+ <url>http://www.last.fm/music/Bee+Gees</url>
198
+ </artist>
199
+ <image size="small">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
200
+ <image size="medium">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
201
+ <image size="large">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
202
+ </track>
203
+
204
+
205
+ <track rank="13">
206
+ <name>Disco Inferno</name>
207
+ <tagcount>79</tagcount>
208
+ <mbid></mbid>
209
+ <url>http://www.last.fm/music/The+Trammps/_/Disco+Inferno</url>
210
+ <streamable fulltrack="1">1</streamable>
211
+ <artist>
212
+ <name>The Trammps</name>
213
+ <mbid>8799413d-7df8-4eb9-8542-af8cea6b0feb</mbid>
214
+ <url>http://www.last.fm/music/The+Trammps</url>
215
+ </artist>
216
+ <image size="small">http://images.amazon.com/images/P/B0000033BS.01._SCMZZZZZZZ_.jpg</image>
217
+ <image size="medium">http://images.amazon.com/images/P/B0000033BS.01._SCMZZZZZZZ_.jpg</image>
218
+ <image size="large">http://images.amazon.com/images/P/B0000033BS.01._SCMZZZZZZZ_.jpg</image>
219
+ </track>
220
+
221
+
222
+ <track rank="13">
223
+ <name>Lay All Your Love on Me</name>
224
+ <tagcount>79</tagcount>
225
+ <mbid></mbid>
226
+ <url>http://www.last.fm/music/ABBA/_/Lay+All+Your+Love+on+Me</url>
227
+ <streamable fulltrack="0">0</streamable>
228
+ <artist>
229
+ <name>ABBA</name>
230
+ <mbid>d87e52c5-bb8d-4da8-b941-9f4928627dc8</mbid>
231
+ <url>http://www.last.fm/music/ABBA</url>
232
+ </artist>
233
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8674393.jpg</image>
234
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8674393.jpg</image>
235
+ <image size="large">http://userserve-ak.last.fm/serve/126/8674393.jpg</image>
236
+ </track>
237
+
238
+
239
+ <track rank="13">
240
+ <name>September</name>
241
+ <tagcount>79</tagcount>
242
+ <mbid></mbid>
243
+ <url>http://www.last.fm/music/Earth%252C%2BWind%2B%2526%2BFire/_/September</url>
244
+ <streamable fulltrack="1">1</streamable>
245
+ <artist>
246
+ <name>Earth, Wind &amp; Fire</name>
247
+ <mbid>535afeda-2538-435d-9dd1-5e10be586774</mbid>
248
+ <url>http://www.last.fm/music/Earth%252C%2BWind%2B%2526%2BFire</url>
249
+ </artist>
250
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15223563.jpg</image>
251
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15223563.jpg</image>
252
+ <image size="large">http://userserve-ak.last.fm/serve/126/15223563.jpg</image>
253
+ </track>
254
+
255
+
256
+ <track rank="16">
257
+ <name>You Sexy Thing</name>
258
+ <tagcount>78</tagcount>
259
+ <mbid></mbid>
260
+ <url>http://www.last.fm/music/Hot+Chocolate/_/You+Sexy+Thing</url>
261
+ <streamable fulltrack="1">1</streamable>
262
+ <artist>
263
+ <name>Hot Chocolate</name>
264
+ <mbid>a749130e-c2d8-4a7c-b740-908ea4574961</mbid>
265
+ <url>http://www.last.fm/music/Hot+Chocolate</url>
266
+ </artist>
267
+ <image size="small">http://userserve-ak.last.fm/serve/34s/6301769.jpg</image>
268
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/6301769.jpg</image>
269
+ <image size="large">http://userserve-ak.last.fm/serve/126/6301769.jpg</image>
270
+ </track>
271
+
272
+
273
+ <track rank="16">
274
+ <name>Born To Be Alive</name>
275
+ <tagcount>78</tagcount>
276
+ <mbid></mbid>
277
+ <url>http://www.last.fm/music/Patrick+Hernandez/_/Born+To+Be+Alive</url>
278
+ <streamable fulltrack="0">1</streamable>
279
+ <artist>
280
+ <name>Patrick Hernandez</name>
281
+ <mbid>77cc643d-8e35-45e0-ae52-a8cf1e38f87a</mbid>
282
+ <url>http://www.last.fm/music/Patrick+Hernandez</url>
283
+ </artist>
284
+ <image size="small">http://images.amazon.com/images/P/B0000070VW.01.MZZZZZZZ.jpg</image>
285
+ <image size="medium">http://images.amazon.com/images/P/B0000070VW.01.MZZZZZZZ.jpg</image>
286
+ <image size="large">http://images.amazon.com/images/P/B0000070VW.01.MZZZZZZZ.jpg</image>
287
+ </track>
288
+
289
+
290
+ <track rank="16">
291
+ <name>Good Times</name>
292
+ <tagcount>78</tagcount>
293
+ <mbid></mbid>
294
+ <url>http://www.last.fm/music/Chic/_/Good+Times</url>
295
+ <streamable fulltrack="1">1</streamable>
296
+ <artist>
297
+ <name>Chic</name>
298
+ <mbid>a4ed036b-5f18-439c-b1e1-96d205bab255</mbid>
299
+ <url>http://www.last.fm/music/Chic</url>
300
+ </artist>
301
+ <image size="small">http://images.amazon.com/images/P/B00000I8LB.01.THUMBZZZ.jpg</image>
302
+ <image size="medium">http://images.amazon.com/images/P/B00000I8LB.01.MZZZZZZZ.jpg</image>
303
+ <image size="large">http://images.amazon.com/images/P/B00000I8LB.01.LZZZZZZZ.jpg</image>
304
+ </track>
305
+
306
+
307
+ <track rank="16">
308
+ <name>Raise Me Up</name>
309
+ <tagcount>78</tagcount>
310
+ <mbid></mbid>
311
+ <url>http://www.last.fm/music/Hercules+and+Love+Affair/_/Raise+Me+Up</url>
312
+ <streamable fulltrack="1">1</streamable>
313
+ <artist>
314
+ <name>Hercules and Love Affair</name>
315
+ <mbid></mbid>
316
+ <url>http://www.last.fm/music/Hercules+and+Love+Affair</url>
317
+ </artist>
318
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14381199.jpg</image>
319
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14381199.jpg</image>
320
+ <image size="large">http://userserve-ak.last.fm/serve/126/14381199.jpg</image>
321
+ </track>
322
+
323
+
324
+ <track rank="20">
325
+ <name>Celebration</name>
326
+ <tagcount>77</tagcount>
327
+ <mbid></mbid>
328
+ <url>http://www.last.fm/music/Kool%2B%2526%2BThe%2BGang/_/Celebration</url>
329
+ <streamable fulltrack="1">1</streamable>
330
+ <artist>
331
+ <name>Kool &amp; The Gang</name>
332
+ <mbid>2469950a-f0ca-425a-bfbc-baf55ea3afde</mbid>
333
+ <url>http://www.last.fm/music/Kool%2B%2526%2BThe%2BGang</url>
334
+ </artist>
335
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8761641.jpg</image>
336
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8761641.jpg</image>
337
+ <image size="large">http://userserve-ak.last.fm/serve/126/8761641.jpg</image>
338
+ </track>
339
+
340
+
341
+ <track rank="20">
342
+ <name>YMCA</name>
343
+ <tagcount>77</tagcount>
344
+ <mbid></mbid>
345
+ <url>http://www.last.fm/music/Village+People/_/YMCA</url>
346
+ <streamable fulltrack="0">0</streamable>
347
+ <artist>
348
+ <name>Village People</name>
349
+ <mbid>f19d3d49-be22-4ca6-9903-64d86984fbf2</mbid>
350
+ <url>http://www.last.fm/music/Village+People</url>
351
+ </artist>
352
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5063825.jpg</image>
353
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5063825.jpg</image>
354
+ <image size="large">http://userserve-ak.last.fm/serve/126/5063825.jpg</image>
355
+ </track>
356
+
357
+
358
+ <track rank="22">
359
+ <name>Upside Down</name>
360
+ <tagcount>76</tagcount>
361
+ <mbid></mbid>
362
+ <url>http://www.last.fm/music/Diana+Ross/_/Upside+Down</url>
363
+ <streamable fulltrack="1">1</streamable>
364
+ <artist>
365
+ <name>Diana Ross</name>
366
+ <mbid>60d41417-feda-4734-bbbf-7dcc30e08a83</mbid>
367
+ <url>http://www.last.fm/music/Diana+Ross</url>
368
+ </artist>
369
+ <image size="small">http://images.amazon.com/images/P/B000001AMF.01.MZZZZZZZ.jpg</image>
370
+ <image size="medium">http://images.amazon.com/images/P/B000001AMF.01.MZZZZZZZ.jpg</image>
371
+ <image size="large">http://images.amazon.com/images/P/B000001AMF.01.MZZZZZZZ.jpg</image>
372
+ </track>
373
+
374
+
375
+ <track rank="23">
376
+ <name>We Are Family</name>
377
+ <tagcount>75</tagcount>
378
+ <mbid></mbid>
379
+ <url>http://www.last.fm/music/Sister+Sledge/_/We+Are+Family</url>
380
+ <streamable fulltrack="1">1</streamable>
381
+ <artist>
382
+ <name>Sister Sledge</name>
383
+ <mbid>1ed00158-c6a3-45cd-819c-2f91997fc480</mbid>
384
+ <url>http://www.last.fm/music/Sister+Sledge</url>
385
+ </artist>
386
+ <image size="small">http://userserve-ak.last.fm/serve/34s/13286129.jpg</image>
387
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/13286129.jpg</image>
388
+ <image size="large">http://userserve-ak.last.fm/serve/126/13286129.jpg</image>
389
+ </track>
390
+
391
+
392
+ <track rank="24">
393
+ <name>If I Can't Have You</name>
394
+ <tagcount>74</tagcount>
395
+ <mbid></mbid>
396
+ <url>http://www.last.fm/music/Yvonne+Elliman/_/If+I+Can%27t+Have+You</url>
397
+ <streamable fulltrack="1">1</streamable>
398
+ <artist>
399
+ <name>Yvonne Elliman</name>
400
+ <mbid>62b9eb3e-c470-462d-8d63-9b6cbac13d62</mbid>
401
+ <url>http://www.last.fm/music/Yvonne+Elliman</url>
402
+ </artist>
403
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8774511.jpg</image>
404
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8774511.jpg</image>
405
+ <image size="large">http://userserve-ak.last.fm/serve/126/8774511.jpg</image>
406
+ </track>
407
+
408
+
409
+ <track rank="25">
410
+ <name>Knock on Wood</name>
411
+ <tagcount>73</tagcount>
412
+ <mbid></mbid>
413
+ <url>http://www.last.fm/music/Amii+Stewart/_/Knock+on+Wood</url>
414
+ <streamable fulltrack="0">1</streamable>
415
+ <artist>
416
+ <name>Amii Stewart</name>
417
+ <mbid>8d1d5ded-96ed-4b5f-9cf0-a2174a2322f0</mbid>
418
+ <url>http://www.last.fm/music/Amii+Stewart</url>
419
+ </artist>
420
+ <image size="small">http://images.amazon.com/images/P/B000001QLR.01._SCMZZZZZZZ_.jpg</image>
421
+ <image size="medium">http://images.amazon.com/images/P/B000001QLR.01._SCMZZZZZZZ_.jpg</image>
422
+ <image size="large">http://images.amazon.com/images/P/B000001QLR.01._SCMZZZZZZZ_.jpg</image>
423
+ </track>
424
+
425
+
426
+ <track rank="25">
427
+ <name>Don't Stop 'Til You Get Enough</name>
428
+ <tagcount>73</tagcount>
429
+ <mbid></mbid>
430
+ <url>http://www.last.fm/music/Michael+Jackson/_/Don%27t+Stop+%27Til+You+Get+Enough</url>
431
+ <streamable fulltrack="1">1</streamable>
432
+ <artist>
433
+ <name>Michael Jackson</name>
434
+ <mbid>f27ec8db-af05-4f36-916e-3d57f91ecf5e</mbid>
435
+ <url>http://www.last.fm/music/Michael+Jackson</url>
436
+ </artist>
437
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23835597.jpg</image>
438
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23835597.jpg</image>
439
+ <image size="large">http://userserve-ak.last.fm/serve/126/23835597.jpg</image>
440
+ </track>
441
+
442
+
443
+ <track rank="25">
444
+ <name>Rasputin</name>
445
+ <tagcount>73</tagcount>
446
+ <mbid></mbid>
447
+ <url>http://www.last.fm/music/Boney+M./_/Rasputin</url>
448
+ <streamable fulltrack="1">1</streamable>
449
+ <artist>
450
+ <name>Boney M.</name>
451
+ <mbid>5403bf6e-bc1d-4e62-b31f-926a2bf66a14</mbid>
452
+ <url>http://www.last.fm/music/Boney+M.</url>
453
+ </artist>
454
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9102817.jpg</image>
455
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9102817.jpg</image>
456
+ <image size="large">http://userserve-ak.last.fm/serve/126/9102817.jpg</image>
457
+ </track>
458
+
459
+
460
+ <track rank="25">
461
+ <name>Gimme! Gimme! Gimme! (A Man After Midnight)</name>
462
+ <tagcount>73</tagcount>
463
+ <mbid></mbid>
464
+ <url>http://www.last.fm/music/ABBA/_/Gimme%21+Gimme%21+Gimme%21+%28A+Man+After+Midnight%29</url>
465
+ <streamable fulltrack="1">1</streamable>
466
+ <artist>
467
+ <name>ABBA</name>
468
+ <mbid>d87e52c5-bb8d-4da8-b941-9f4928627dc8</mbid>
469
+ <url>http://www.last.fm/music/ABBA</url>
470
+ </artist>
471
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8674393.jpg</image>
472
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8674393.jpg</image>
473
+ <image size="large">http://userserve-ak.last.fm/serve/126/8674393.jpg</image>
474
+ </track>
475
+
476
+
477
+ <track rank="25">
478
+ <name>Daddy Cool</name>
479
+ <tagcount>73</tagcount>
480
+ <mbid></mbid>
481
+ <url>http://www.last.fm/music/Boney+M./_/Daddy+Cool</url>
482
+ <streamable fulltrack="1">1</streamable>
483
+ <artist>
484
+ <name>Boney M.</name>
485
+ <mbid>5403bf6e-bc1d-4e62-b31f-926a2bf66a14</mbid>
486
+ <url>http://www.last.fm/music/Boney+M.</url>
487
+ </artist>
488
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23244425.jpg</image>
489
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23244425.jpg</image>
490
+ <image size="large">http://userserve-ak.last.fm/serve/126/23244425.jpg</image>
491
+ </track>
492
+
493
+
494
+ <track rank="25">
495
+ <name>Staying Alive</name>
496
+ <tagcount>73</tagcount>
497
+ <mbid></mbid>
498
+ <url>http://www.last.fm/music/Bee+Gees/_/Staying+Alive</url>
499
+ <streamable fulltrack="0">0</streamable>
500
+ <artist>
501
+ <name>Bee Gees</name>
502
+ <mbid>bf0f7e29-dfe1-416c-b5c6-f9ebc19ea810</mbid>
503
+ <url>http://www.last.fm/music/Bee+Gees</url>
504
+ </artist>
505
+ <image size="small">http://images.amazon.com/images/P/B00067Z2UU.01._SCMZZZZZZZ_.jpg</image>
506
+ <image size="medium">http://images.amazon.com/images/P/B00067Z2UU.01._SCMZZZZZZZ_.jpg</image>
507
+ <image size="large">http://images.amazon.com/images/P/B00067Z2UU.01._SCMZZZZZZZ_.jpg</image>
508
+ </track>
509
+
510
+
511
+ <track rank="31">
512
+ <name>Y.M.C.A.</name>
513
+ <tagcount>72</tagcount>
514
+ <mbid></mbid>
515
+ <url>http://www.last.fm/music/Village+People/_/Y.M.C.A.</url>
516
+ <streamable fulltrack="1">1</streamable>
517
+ <artist>
518
+ <name>Village People</name>
519
+ <mbid>f19d3d49-be22-4ca6-9903-64d86984fbf2</mbid>
520
+ <url>http://www.last.fm/music/Village+People</url>
521
+ </artist>
522
+ <image size="small">http://images.amazon.com/images/P/B000001E40.01.MZZZZZZZ.jpg</image>
523
+ <image size="medium">http://images.amazon.com/images/P/B000001E40.01.MZZZZZZZ.jpg</image>
524
+ <image size="large">http://images.amazon.com/images/P/B000001E40.01.MZZZZZZZ.jpg</image>
525
+ </track>
526
+
527
+
528
+ <track rank="31">
529
+ <name>Tragedy</name>
530
+ <tagcount>72</tagcount>
531
+ <mbid></mbid>
532
+ <url>http://www.last.fm/music/Bee+Gees/_/Tragedy</url>
533
+ <streamable fulltrack="0">1</streamable>
534
+ <artist>
535
+ <name>Bee Gees</name>
536
+ <mbid>bf0f7e29-dfe1-416c-b5c6-f9ebc19ea810</mbid>
537
+ <url>http://www.last.fm/music/Bee+Gees</url>
538
+ </artist>
539
+ <image size="small">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
540
+ <image size="medium">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
541
+ <image size="large">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
542
+ </track>
543
+
544
+
545
+ <track rank="33">
546
+ <name>Don't Leave Me This Way</name>
547
+ <tagcount>71</tagcount>
548
+ <mbid></mbid>
549
+ <url>http://www.last.fm/music/Thelma+Houston/_/Don%27t+Leave+Me+This+Way</url>
550
+ <streamable fulltrack="1">1</streamable>
551
+ <artist>
552
+ <name>Thelma Houston</name>
553
+ <mbid>cb327970-cf95-4f2d-91db-b1b787aa51f9</mbid>
554
+ <url>http://www.last.fm/music/Thelma+Houston</url>
555
+ </artist>
556
+ <image size="small">http://images.amazon.com/images/P/B00000DB4N.01.MZZZZZZZ.jpg</image>
557
+ <image size="medium">http://images.amazon.com/images/P/B00000DB4N.01.MZZZZZZZ.jpg</image>
558
+ <image size="large">http://images.amazon.com/images/P/B00000DB4N.01.MZZZZZZZ.jpg</image>
559
+ </track>
560
+
561
+
562
+ <track rank="33">
563
+ <name>Heaven Must Be Missing an Angel</name>
564
+ <tagcount>71</tagcount>
565
+ <mbid></mbid>
566
+ <url>http://www.last.fm/music/Tavares/_/Heaven+Must+Be+Missing+an+Angel</url>
567
+ <streamable fulltrack="1">1</streamable>
568
+ <artist>
569
+ <name>Tavares</name>
570
+ <mbid>08b2c88f-6c13-419b-a4f5-182cc3738e49</mbid>
571
+ <url>http://www.last.fm/music/Tavares</url>
572
+ </artist>
573
+ <image size="small">http://images.amazon.com/images/P/B0000242SZ.01._SCMZZZZZZZ_.jpg</image>
574
+ <image size="medium">http://images.amazon.com/images/P/B0000242SZ.01._SCMZZZZZZZ_.jpg</image>
575
+ <image size="large">http://images.amazon.com/images/P/B0000242SZ.01._SCMZZZZZZZ_.jpg</image>
576
+ </track>
577
+
578
+
579
+ <track rank="33">
580
+ <name>Danger! High Voltage</name>
581
+ <tagcount>71</tagcount>
582
+ <mbid></mbid>
583
+ <url>http://www.last.fm/music/Electric+Six/_/Danger%21+High+Voltage</url>
584
+ <streamable fulltrack="0">0</streamable>
585
+ <artist>
586
+ <name>Electric Six</name>
587
+ <mbid>54b0584e-4e5e-4976-80d4-eea7a82a7213</mbid>
588
+ <url>http://www.last.fm/music/Electric+Six</url>
589
+ </artist>
590
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12619479.jpg</image>
591
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12619479.jpg</image>
592
+ <image size="large">http://userserve-ak.last.fm/serve/126/12619479.jpg</image>
593
+ </track>
594
+
595
+
596
+ <track rank="36">
597
+ <name>Jive Talkin'</name>
598
+ <tagcount>70</tagcount>
599
+ <mbid></mbid>
600
+ <url>http://www.last.fm/music/Bee+Gees/_/Jive+Talkin%27</url>
601
+ <streamable fulltrack="0">1</streamable>
602
+ <artist>
603
+ <name>Bee Gees</name>
604
+ <mbid>bf0f7e29-dfe1-416c-b5c6-f9ebc19ea810</mbid>
605
+ <url>http://www.last.fm/music/Bee+Gees</url>
606
+ </artist>
607
+ <image size="small">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
608
+ <image size="medium">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
609
+ <image size="large">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
610
+ </track>
611
+
612
+
613
+ <track rank="37">
614
+ <name>More Than a Woman</name>
615
+ <tagcount>69</tagcount>
616
+ <mbid></mbid>
617
+ <url>http://www.last.fm/music/Bee+Gees/_/More+Than+a+Woman</url>
618
+ <streamable fulltrack="0">1</streamable>
619
+ <artist>
620
+ <name>Bee Gees</name>
621
+ <mbid>bf0f7e29-dfe1-416c-b5c6-f9ebc19ea810</mbid>
622
+ <url>http://www.last.fm/music/Bee+Gees</url>
623
+ </artist>
624
+ <image size="small">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
625
+ <image size="medium">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
626
+ <image size="large">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
627
+ </track>
628
+
629
+
630
+ <track rank="37">
631
+ <name>Don't Let Me Be Misunderstood</name>
632
+ <tagcount>69</tagcount>
633
+ <mbid></mbid>
634
+ <url>http://www.last.fm/music/Santa+Esmeralda/_/Don%27t+Let+Me+Be+Misunderstood</url>
635
+ <streamable fulltrack="0">1</streamable>
636
+ <artist>
637
+ <name>Santa Esmeralda</name>
638
+ <mbid>b233a9a9-2538-4c5b-986a-5843650e2611</mbid>
639
+ <url>http://www.last.fm/music/Santa+Esmeralda</url>
640
+ </artist>
641
+ <image size="small">http://images.amazon.com/images/P/B000001QV4.01.MZZZZZZZ.jpg</image>
642
+ <image size="medium">http://images.amazon.com/images/P/B000001QV4.01.MZZZZZZZ.jpg</image>
643
+ <image size="large">http://images.amazon.com/images/P/B000001QV4.01.MZZZZZZZ.jpg</image>
644
+ </track>
645
+
646
+
647
+ <track rank="37">
648
+ <name>The Hustle</name>
649
+ <tagcount>69</tagcount>
650
+ <mbid></mbid>
651
+ <url>http://www.last.fm/music/Van+McCoy/_/The+Hustle</url>
652
+ <streamable fulltrack="1">1</streamable>
653
+ <artist>
654
+ <name>Van McCoy</name>
655
+ <mbid>0f081bd8-d324-4738-8197-f30b933dc2df</mbid>
656
+ <url>http://www.last.fm/music/Van+McCoy</url>
657
+ </artist>
658
+ <image size="small">http://images.amazon.com/images/P/B000001O6W.01.MZZZZZZZ.jpg</image>
659
+ <image size="medium">http://images.amazon.com/images/P/B000001O6W.01.MZZZZZZZ.jpg</image>
660
+ <image size="large">http://images.amazon.com/images/P/B000001O6W.01.MZZZZZZZ.jpg</image>
661
+ </track>
662
+
663
+
664
+ <track rank="37">
665
+ <name>This Is My Love</name>
666
+ <tagcount>69</tagcount>
667
+ <mbid></mbid>
668
+ <url>http://www.last.fm/music/Hercules+and+Love+Affair/_/This+Is+My+Love</url>
669
+ <streamable fulltrack="1">1</streamable>
670
+ <artist>
671
+ <name>Hercules and Love Affair</name>
672
+ <mbid></mbid>
673
+ <url>http://www.last.fm/music/Hercules+and+Love+Affair</url>
674
+ </artist>
675
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14381199.jpg</image>
676
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14381199.jpg</image>
677
+ <image size="large">http://userserve-ak.last.fm/serve/126/14381199.jpg</image>
678
+ </track>
679
+
680
+
681
+ <track rank="41">
682
+ <name>Mamma Mia</name>
683
+ <tagcount>68</tagcount>
684
+ <mbid></mbid>
685
+ <url>http://www.last.fm/music/ABBA/_/Mamma+Mia</url>
686
+ <streamable fulltrack="1">1</streamable>
687
+ <artist>
688
+ <name>ABBA</name>
689
+ <mbid>d87e52c5-bb8d-4da8-b941-9f4928627dc8</mbid>
690
+ <url>http://www.last.fm/music/ABBA</url>
691
+ </artist>
692
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8674393.jpg</image>
693
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8674393.jpg</image>
694
+ <image size="large">http://userserve-ak.last.fm/serve/126/8674393.jpg</image>
695
+ </track>
696
+
697
+
698
+ <track rank="41">
699
+ <name>Love don't dance here anymore</name>
700
+ <tagcount>68</tagcount>
701
+ <mbid></mbid>
702
+ <url>http://www.last.fm/music/Tiga/_/Love+don%27t+dance+here+anymore</url>
703
+ <streamable fulltrack="0">1</streamable>
704
+ <artist>
705
+ <name>Tiga</name>
706
+ <mbid>58e5332d-383e-414c-9917-776d7b1493a2</mbid>
707
+ <url>http://www.last.fm/music/Tiga</url>
708
+ </artist>
709
+ </track>
710
+
711
+
712
+ <track rank="41">
713
+ <name>Boogie Wonderland</name>
714
+ <tagcount>68</tagcount>
715
+ <mbid></mbid>
716
+ <url>http://www.last.fm/music/Earth%252C%2BWind%2B%2526%2BFire/_/Boogie+Wonderland</url>
717
+ <streamable fulltrack="1">1</streamable>
718
+ <artist>
719
+ <name>Earth, Wind &amp; Fire</name>
720
+ <mbid>535afeda-2538-435d-9dd1-5e10be586774</mbid>
721
+ <url>http://www.last.fm/music/Earth%252C%2BWind%2B%2526%2BFire</url>
722
+ </artist>
723
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15223563.jpg</image>
724
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15223563.jpg</image>
725
+ <image size="large">http://userserve-ak.last.fm/serve/126/15223563.jpg</image>
726
+ </track>
727
+
728
+
729
+ <track rank="41">
730
+ <name>Jimmy</name>
731
+ <tagcount>68</tagcount>
732
+ <mbid></mbid>
733
+ <url>http://www.last.fm/music/M.I.A./_/Jimmy</url>
734
+ <streamable fulltrack="0">0</streamable>
735
+ <artist>
736
+ <name>M.I.A.</name>
737
+ <mbid>7cf0ea9d-86b9-4dad-ba9e-2355a64899ea</mbid>
738
+ <url>http://www.last.fm/music/M.I.A.</url>
739
+ </artist>
740
+ </track>
741
+
742
+
743
+ <track rank="41">
744
+ <name>Sunny</name>
745
+ <tagcount>68</tagcount>
746
+ <mbid></mbid>
747
+ <url>http://www.last.fm/music/Boney+M./_/Sunny</url>
748
+ <streamable fulltrack="1">1</streamable>
749
+ <artist>
750
+ <name>Boney M.</name>
751
+ <mbid>5403bf6e-bc1d-4e62-b31f-926a2bf66a14</mbid>
752
+ <url>http://www.last.fm/music/Boney+M.</url>
753
+ </artist>
754
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9102817.jpg</image>
755
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9102817.jpg</image>
756
+ <image size="large">http://userserve-ak.last.fm/serve/126/9102817.jpg</image>
757
+ </track>
758
+
759
+
760
+ <track rank="41">
761
+ <name>Ma Baker</name>
762
+ <tagcount>68</tagcount>
763
+ <mbid></mbid>
764
+ <url>http://www.last.fm/music/Boney+M./_/Ma+Baker</url>
765
+ <streamable fulltrack="1">1</streamable>
766
+ <artist>
767
+ <name>Boney M.</name>
768
+ <mbid>5403bf6e-bc1d-4e62-b31f-926a2bf66a14</mbid>
769
+ <url>http://www.last.fm/music/Boney+M.</url>
770
+ </artist>
771
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9102817.jpg</image>
772
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9102817.jpg</image>
773
+ <image size="large">http://userserve-ak.last.fm/serve/126/9102817.jpg</image>
774
+ </track>
775
+
776
+
777
+ <track rank="41">
778
+ <name>Beatific</name>
779
+ <tagcount>68</tagcount>
780
+ <mbid></mbid>
781
+ <url>http://www.last.fm/music/Glass+Candy/_/Beatific</url>
782
+ <streamable fulltrack="1">1</streamable>
783
+ <artist>
784
+ <name>Glass Candy</name>
785
+ <mbid>ca94595e-955a-495c-8ba1-25eebd9609a9</mbid>
786
+ <url>http://www.last.fm/music/Glass+Candy</url>
787
+ </artist>
788
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12614849.jpg</image>
789
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12614849.jpg</image>
790
+ <image size="large">http://userserve-ak.last.fm/serve/126/12614849.jpg</image>
791
+ </track>
792
+
793
+
794
+ <track rank="48">
795
+ <name>In The Navy</name>
796
+ <tagcount>67</tagcount>
797
+ <mbid></mbid>
798
+ <url>http://www.last.fm/music/Village+People/_/In+The+Navy</url>
799
+ <streamable fulltrack="1">1</streamable>
800
+ <artist>
801
+ <name>Village People</name>
802
+ <mbid>f19d3d49-be22-4ca6-9903-64d86984fbf2</mbid>
803
+ <url>http://www.last.fm/music/Village+People</url>
804
+ </artist>
805
+ <image size="small">http://images.amazon.com/images/P/B000001E40.01.MZZZZZZZ.jpg</image>
806
+ <image size="medium">http://images.amazon.com/images/P/B000001E40.01.MZZZZZZZ.jpg</image>
807
+ <image size="large">http://images.amazon.com/images/P/B000001E40.01.MZZZZZZZ.jpg</image>
808
+ </track>
809
+
810
+
811
+ <track rank="48">
812
+ <name>Macho Man</name>
813
+ <tagcount>67</tagcount>
814
+ <mbid></mbid>
815
+ <url>http://www.last.fm/music/Village+People/_/Macho+Man</url>
816
+ <streamable fulltrack="0">1</streamable>
817
+ <artist>
818
+ <name>Village People</name>
819
+ <mbid>f19d3d49-be22-4ca6-9903-64d86984fbf2</mbid>
820
+ <url>http://www.last.fm/music/Village+People</url>
821
+ </artist>
822
+ <image size="small">http://images.amazon.com/images/P/B00003CK75.02._SCMZZZZZZZ_.jpg</image>
823
+ <image size="medium">http://images.amazon.com/images/P/B00003CK75.02._SCMZZZZZZZ_.jpg</image>
824
+ <image size="large">http://images.amazon.com/images/P/B00003CK75.02._SCMZZZZZZZ_.jpg</image>
825
+ </track>
826
+
827
+
828
+ <track rank="48">
829
+ <name>Bad Girls</name>
830
+ <tagcount>67</tagcount>
831
+ <mbid></mbid>
832
+ <url>http://www.last.fm/music/Donna+Summer/_/Bad+Girls</url>
833
+ <streamable fulltrack="1">1</streamable>
834
+ <artist>
835
+ <name>Donna Summer</name>
836
+ <mbid>b60527cc-54f3-4bbe-a01b-dcf34c95ae14</mbid>
837
+ <url>http://www.last.fm/music/Donna+Summer</url>
838
+ </artist>
839
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5258441.jpg</image>
840
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5258441.jpg</image>
841
+ <image size="large">http://userserve-ak.last.fm/serve/126/5258441.jpg</image>
842
+ </track>
843
+ </toptracks></lfm>