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,110 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <results for="disco" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/">
4
+ <opensearch:Query role="request" searchTerms="disco" startPage="1" />
5
+ <opensearch:totalResults>3568</opensearch:totalResults>
6
+ <opensearch:startIndex>0</opensearch:startIndex>
7
+ <opensearch:itemsPerPage>20</opensearch:itemsPerPage>
8
+ <tagmatches>
9
+ <tag>
10
+ <name>disco</name>
11
+ <count>75545</count>
12
+ <url>www.last.fm/tag/disco</url>
13
+ </tag>
14
+ <tag>
15
+ <name>italo disco</name>
16
+ <count>8382</count>
17
+ <url>www.last.fm/tag/italo%20disco</url>
18
+ </tag>
19
+ <tag>
20
+ <name>disco house</name>
21
+ <count>3443</count>
22
+ <url>www.last.fm/tag/disco%20house</url>
23
+ </tag>
24
+ <tag>
25
+ <name>disco punk</name>
26
+ <count>1526</count>
27
+ <url>www.last.fm/tag/disco%20punk</url>
28
+ </tag>
29
+ <tag>
30
+ <name>italo-disco</name>
31
+ <count>2076</count>
32
+ <url>www.last.fm/tag/italo-disco</url>
33
+ </tag>
34
+ <tag>
35
+ <name>indie disco</name>
36
+ <count>2386</count>
37
+ <url>www.last.fm/tag/indie%20disco</url>
38
+ </tag>
39
+ <tag>
40
+ <name>disco polo</name>
41
+ <count>827</count>
42
+ <url>www.last.fm/tag/disco%20polo</url>
43
+ </tag>
44
+ <tag>
45
+ <name>space disco</name>
46
+ <count>1919</count>
47
+ <url>www.last.fm/tag/space%20disco</url>
48
+ </tag>
49
+ <tag>
50
+ <name>disco funk</name>
51
+ <count>1598</count>
52
+ <url>www.last.fm/tag/disco%20funk</url>
53
+ </tag>
54
+ <tag>
55
+ <name>euro disco</name>
56
+ <count>734</count>
57
+ <url>www.last.fm/tag/euro%20disco</url>
58
+ </tag>
59
+ <tag>
60
+ <name>disco rock</name>
61
+ <count>252</count>
62
+ <url>www.last.fm/tag/disco%20rock</url>
63
+ </tag>
64
+ <tag>
65
+ <name>panic at the disco</name>
66
+ <count>2226</count>
67
+ <url>www.last.fm/tag/panic%20at%20the%20disco</url>
68
+ </tag>
69
+ <tag>
70
+ <name>evil disco</name>
71
+ <count>274</count>
72
+ <url>www.last.fm/tag/evil%20disco</url>
73
+ </tag>
74
+ <tag>
75
+ <name>electro disco</name>
76
+ <count>736</count>
77
+ <url>www.last.fm/tag/electro%20disco</url>
78
+ </tag>
79
+ <tag>
80
+ <name>nu disco</name>
81
+ <count>552</count>
82
+ <url>www.last.fm/tag/nu%20disco</url>
83
+ </tag>
84
+ <tag>
85
+ <name>disco trance</name>
86
+ <count>1547</count>
87
+ <url>www.last.fm/tag/disco%20trance</url>
88
+ </tag>
89
+ <tag>
90
+ <name>death disco</name>
91
+ <count>175</count>
92
+ <url>www.last.fm/tag/death%20disco</url>
93
+ </tag>
94
+ <tag>
95
+ <name>gay disco</name>
96
+ <count>334</count>
97
+ <url>www.last.fm/tag/gay%20disco</url>
98
+ </tag>
99
+ <tag>
100
+ <name>disco pop</name>
101
+ <count>273</count>
102
+ <url>www.last.fm/tag/disco%20pop</url>
103
+ </tag>
104
+ <tag>
105
+ <name>disco music</name>
106
+ <count>602</count>
107
+ <url>www.last.fm/tag/disco%20music</url>
108
+ </tag>
109
+ </tagmatches>
110
+ </results></lfm>
@@ -0,0 +1,254 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <similartags tag="disco">
4
+ <tag>
5
+ <name>italo disco</name>
6
+ <url>http://www.last.fm/tag/italo%20disco</url>
7
+ <streamable>1</streamable>
8
+ </tag>
9
+ <tag>
10
+ <name>70s</name>
11
+ <url>http://www.last.fm/tag/70s</url>
12
+ <streamable>1</streamable>
13
+ </tag>
14
+ <tag>
15
+ <name>funk</name>
16
+ <url>http://www.last.fm/tag/funk</url>
17
+ <streamable>1</streamable>
18
+ </tag>
19
+ <tag>
20
+ <name>gay</name>
21
+ <url>http://www.last.fm/tag/gay</url>
22
+ <streamable>1</streamable>
23
+ </tag>
24
+ <tag>
25
+ <name>disco funk</name>
26
+ <url>http://www.last.fm/tag/disco%20funk</url>
27
+ <streamable>1</streamable>
28
+ </tag>
29
+ <tag>
30
+ <name>italo</name>
31
+ <url>http://www.last.fm/tag/italo</url>
32
+ <streamable>1</streamable>
33
+ </tag>
34
+ <tag>
35
+ <name>hi-nrg</name>
36
+ <url>http://www.last.fm/tag/hi-nrg</url>
37
+ <streamable>1</streamable>
38
+ </tag>
39
+ <tag>
40
+ <name>discotheque</name>
41
+ <url>http://www.last.fm/tag/discotheque</url>
42
+ <streamable>1</streamable>
43
+ </tag>
44
+ <tag>
45
+ <name>italo-disco</name>
46
+ <url>http://www.last.fm/tag/italo-disco</url>
47
+ <streamable>1</streamable>
48
+ </tag>
49
+ <tag>
50
+ <name>dance</name>
51
+ <url>http://www.last.fm/tag/dance</url>
52
+ <streamable>1</streamable>
53
+ </tag>
54
+ <tag>
55
+ <name>80s</name>
56
+ <url>http://www.last.fm/tag/80s</url>
57
+ <streamable>1</streamable>
58
+ </tag>
59
+ <tag>
60
+ <name>eurodance</name>
61
+ <url>http://www.last.fm/tag/eurodance</url>
62
+ <streamable>1</streamable>
63
+ </tag>
64
+ <tag>
65
+ <name>space disco</name>
66
+ <url>http://www.last.fm/tag/space%20disco</url>
67
+ <streamable>1</streamable>
68
+ </tag>
69
+ <tag>
70
+ <name>soul</name>
71
+ <url>http://www.last.fm/tag/soul</url>
72
+ <streamable>1</streamable>
73
+ </tag>
74
+ <tag>
75
+ <name>party</name>
76
+ <url>http://www.last.fm/tag/party</url>
77
+ <streamable>1</streamable>
78
+ </tag>
79
+ <tag>
80
+ <name>old school soul</name>
81
+ <url>http://www.last.fm/tag/old%20school%20soul</url>
82
+ <streamable>1</streamable>
83
+ </tag>
84
+ <tag>
85
+ <name>funky</name>
86
+ <url>http://www.last.fm/tag/funky</url>
87
+ <streamable>1</streamable>
88
+ </tag>
89
+ <tag>
90
+ <name>motown</name>
91
+ <url>http://www.last.fm/tag/motown</url>
92
+ <streamable>1</streamable>
93
+ </tag>
94
+ <tag>
95
+ <name>abba</name>
96
+ <url>http://www.last.fm/tag/abba</url>
97
+ <streamable>1</streamable>
98
+ </tag>
99
+ <tag>
100
+ <name>bee gees</name>
101
+ <url>http://www.last.fm/tag/bee%20gees</url>
102
+ <streamable>1</streamable>
103
+ </tag>
104
+ <tag>
105
+ <name>club</name>
106
+ <url>http://www.last.fm/tag/club</url>
107
+ <streamable>1</streamable>
108
+ </tag>
109
+ <tag>
110
+ <name>philly soul</name>
111
+ <url>http://www.last.fm/tag/philly%20soul</url>
112
+ <streamable>1</streamable>
113
+ </tag>
114
+ <tag>
115
+ <name>70s disco</name>
116
+ <url>http://www.last.fm/tag/70s%20disco</url>
117
+ <streamable>1</streamable>
118
+ </tag>
119
+ <tag>
120
+ <name>salsoul</name>
121
+ <url>http://www.last.fm/tag/salsoul</url>
122
+ <streamable>1</streamable>
123
+ </tag>
124
+ <tag>
125
+ <name>old school dance</name>
126
+ <url>http://www.last.fm/tag/old%20school%20dance</url>
127
+ <streamable>1</streamable>
128
+ </tag>
129
+ <tag>
130
+ <name>80s groove</name>
131
+ <url>http://www.last.fm/tag/80s%20groove</url>
132
+ <streamable>1</streamable>
133
+ </tag>
134
+ <tag>
135
+ <name>pop</name>
136
+ <url>http://www.last.fm/tag/pop</url>
137
+ <streamable>1</streamable>
138
+ </tag>
139
+ <tag>
140
+ <name>house</name>
141
+ <url>http://www.last.fm/tag/house</url>
142
+ <streamable>1</streamable>
143
+ </tag>
144
+ <tag>
145
+ <name>paradise garage</name>
146
+ <url>http://www.last.fm/tag/paradise%20garage</url>
147
+ <streamable>1</streamable>
148
+ </tag>
149
+ <tag>
150
+ <name>1979</name>
151
+ <url>http://www.last.fm/tag/1979</url>
152
+ <streamable>1</streamable>
153
+ </tag>
154
+ <tag>
155
+ <name>larry levan</name>
156
+ <url>http://www.last.fm/tag/larry%20levan</url>
157
+ <streamable>1</streamable>
158
+ </tag>
159
+ <tag>
160
+ <name>schlager</name>
161
+ <url>http://www.last.fm/tag/schlager</url>
162
+ <streamable>1</streamable>
163
+ </tag>
164
+ <tag>
165
+ <name>oldies</name>
166
+ <url>http://www.last.fm/tag/oldies</url>
167
+ <streamable>1</streamable>
168
+ </tag>
169
+ <tag>
170
+ <name>modern talking</name>
171
+ <url>http://www.last.fm/tag/modern%20talking</url>
172
+ <streamable>1</streamable>
173
+ </tag>
174
+ <tag>
175
+ <name>madonna</name>
176
+ <url>http://www.last.fm/tag/madonna</url>
177
+ <streamable>1</streamable>
178
+ </tag>
179
+ <tag>
180
+ <name>disco music</name>
181
+ <url>http://www.last.fm/tag/disco%20music</url>
182
+ <streamable>1</streamable>
183
+ </tag>
184
+ <tag>
185
+ <name>groove</name>
186
+ <url>http://www.last.fm/tag/groove</url>
187
+ <streamable>1</streamable>
188
+ </tag>
189
+ <tag>
190
+ <name>disco polo</name>
191
+ <url>http://www.last.fm/tag/disco%20polo</url>
192
+ <streamable>1</streamable>
193
+ </tag>
194
+ <tag>
195
+ <name>funky house</name>
196
+ <url>http://www.last.fm/tag/funky%20house</url>
197
+ <streamable>1</streamable>
198
+ </tag>
199
+ <tag>
200
+ <name>new york</name>
201
+ <url>http://www.last.fm/tag/new%20york</url>
202
+ <streamable>1</streamable>
203
+ </tag>
204
+ <tag>
205
+ <name>old school</name>
206
+ <url>http://www.last.fm/tag/old%20school</url>
207
+ <streamable>1</streamable>
208
+ </tag>
209
+ <tag>
210
+ <name>europop</name>
211
+ <url>http://www.last.fm/tag/europop</url>
212
+ <streamable>1</streamable>
213
+ </tag>
214
+ <tag>
215
+ <name>sexy</name>
216
+ <url>http://www.last.fm/tag/sexy</url>
217
+ <streamable>1</streamable>
218
+ </tag>
219
+ <tag>
220
+ <name>plastic pop</name>
221
+ <url>http://www.last.fm/tag/plastic%20pop</url>
222
+ <streamable>1</streamable>
223
+ </tag>
224
+ <tag>
225
+ <name>eurodisco</name>
226
+ <url>http://www.last.fm/tag/eurodisco</url>
227
+ <streamable>1</streamable>
228
+ </tag>
229
+ <tag>
230
+ <name>disco house</name>
231
+ <url>http://www.last.fm/tag/disco%20house</url>
232
+ <streamable>1</streamable>
233
+ </tag>
234
+ <tag>
235
+ <name>jazz funk</name>
236
+ <url>http://www.last.fm/tag/jazz%20funk</url>
237
+ <streamable>1</streamable>
238
+ </tag>
239
+ <tag>
240
+ <name>boney m</name>
241
+ <url>http://www.last.fm/tag/boney%20m</url>
242
+ <streamable>1</streamable>
243
+ </tag>
244
+ <tag>
245
+ <name>dfa</name>
246
+ <url>http://www.last.fm/tag/dfa</url>
247
+ <streamable>1</streamable>
248
+ </tag>
249
+ <tag>
250
+ <name>sampled</name>
251
+ <url>http://www.last.fm/tag/sampled</url>
252
+ <streamable>1</streamable>
253
+ </tag>
254
+ </similartags></lfm>
@@ -0,0 +1,805 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <topalbums tag="Disco" >
4
+
5
+
6
+
7
+ <album rank="1">
8
+ <name>Gold: Greatest Hits</name>
9
+ <tagcount>100</tagcount>
10
+ <mbid>09cc6e86-9901-40f0-a53e-a638e95744ba</mbid>
11
+ <url>http://www.last.fm/music/ABBA/Gold%3A+Greatest+Hits</url>
12
+ <artist>
13
+ <name>ABBA</name>
14
+ <mbid>d87e52c5-bb8d-4da8-b941-9f4928627dc8</mbid>
15
+ <url>http://www.last.fm/music/ABBA</url>
16
+ </artist>
17
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8674393.jpg</image>
18
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8674393.jpg</image>
19
+ <image size="large">http://userserve-ak.last.fm/serve/126/8674393.jpg</image>
20
+ </album>
21
+
22
+
23
+ <album rank="2">
24
+ <name>Number Ones</name>
25
+ <tagcount>89</tagcount>
26
+ <mbid>09d82e9f-4b95-464e-aa45-2c0b24295bad</mbid>
27
+ <url>http://www.last.fm/music/Bee+Gees/Number+Ones</url>
28
+ <artist>
29
+ <name>Bee Gees</name>
30
+ <mbid>bf0f7e29-dfe1-416c-b5c6-f9ebc19ea810</mbid>
31
+ <url>http://www.last.fm/music/Bee+Gees</url>
32
+ </artist>
33
+ <image size="small">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
34
+ <image size="medium">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
35
+ <image size="large">http://images.amazon.com/images/P/B00069590Q.01._SCMZZZZZZZ_.jpg</image>
36
+ </album>
37
+
38
+
39
+ <album rank="3">
40
+ <name>On the Radio (Greatest Hits)</name>
41
+ <tagcount>70</tagcount>
42
+ <mbid></mbid>
43
+ <url>http://www.last.fm/music/Donna+Summer/On+the+Radio+%28Greatest+Hits%29</url>
44
+ <artist>
45
+ <name>Donna Summer</name>
46
+ <mbid>b60527cc-54f3-4bbe-a01b-dcf34c95ae14</mbid>
47
+ <url>http://www.last.fm/music/Donna+Summer</url>
48
+ </artist>
49
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8625415.jpg</image>
50
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8625415.jpg</image>
51
+ <image size="large">http://userserve-ak.last.fm/serve/126/8625415.jpg</image>
52
+ </album>
53
+
54
+
55
+ <album rank="4">
56
+ <name>Hercules And Love Affair</name>
57
+ <tagcount>69</tagcount>
58
+ <mbid></mbid>
59
+ <url>http://www.last.fm/music/Hercules+and+Love+Affair/Hercules+And+Love+Affair</url>
60
+ <artist>
61
+ <name>Hercules and Love Affair</name>
62
+ <mbid></mbid>
63
+ <url>http://www.last.fm/music/Hercules+and+Love+Affair</url>
64
+ </artist>
65
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14381199.jpg</image>
66
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14381199.jpg</image>
67
+ <image size="large">http://userserve-ak.last.fm/serve/126/14381199.jpg</image>
68
+ </album>
69
+
70
+
71
+ <album rank="5">
72
+ <name>Grandmix: The Millennium Edition (Mixed by Ben Liebrand) (disc 2)</name>
73
+ <tagcount>65</tagcount>
74
+ <mbid>589050f7-0603-42e2-a3ff-e50fc51513bb</mbid>
75
+ <url>http://www.last.fm/music/Ben+Liebrand/Grandmix%3A+The+Millennium+Edition+%28Mixed+by+Ben+Liebrand%29+%28disc+2%29</url>
76
+ <artist>
77
+ <name>Ben Liebrand</name>
78
+ <mbid>a9abe28b-5774-41ea-8393-8b26903fee72</mbid>
79
+ <url>http://www.last.fm/music/Ben+Liebrand</url>
80
+ </artist>
81
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4576293.jpg</image>
82
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4576293.jpg</image>
83
+ <image size="large">http://userserve-ak.last.fm/serve/126/4576293.jpg</image>
84
+ </album>
85
+
86
+
87
+ <album rank="6">
88
+ <name>I Created Disco</name>
89
+ <tagcount>63</tagcount>
90
+ <mbid></mbid>
91
+ <url>http://www.last.fm/music/Calvin+Harris/I+Created+Disco</url>
92
+ <artist>
93
+ <name>Calvin Harris</name>
94
+ <mbid>8dd98bdc-80ec-4e93-8509-2f46bafc09a7</mbid>
95
+ <url>http://www.last.fm/music/Calvin+Harris</url>
96
+ </artist>
97
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23353919.jpg</image>
98
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23353919.jpg</image>
99
+ <image size="large">http://userserve-ak.last.fm/serve/126/23353919.jpg</image>
100
+ </album>
101
+
102
+
103
+ <album rank="6">
104
+ <name>I Will Survive</name>
105
+ <tagcount>63</tagcount>
106
+ <mbid>ba92d952-a8ec-4936-bd37-303d67011c16</mbid>
107
+ <url>http://www.last.fm/music/Gloria+Gaynor/I+Will+Survive</url>
108
+ <artist>
109
+ <name>Gloria Gaynor</name>
110
+ <mbid>d5c51c36-ac67-4727-91ed-ee9f0df81a2d</mbid>
111
+ <url>http://www.last.fm/music/Gloria+Gaynor</url>
112
+ </artist>
113
+ <image size="small">http://images.amazon.com/images/P/B00000BIHA.01.THUMBZZZ.jpg</image>
114
+ <image size="medium">http://images.amazon.com/images/P/B00000BIHA.01.MZZZZZZZ.jpg</image>
115
+ <image size="large">http://images.amazon.com/images/P/B00000BIHA.01.LZZZZZZZ.jpg</image>
116
+ </album>
117
+
118
+
119
+ <album rank="8">
120
+ <name>Remix 2005</name>
121
+ <tagcount>62</tagcount>
122
+ <mbid></mbid>
123
+ <url>http://www.last.fm/music/Boney+M./Remix+2005</url>
124
+ <artist>
125
+ <name>Boney M.</name>
126
+ <mbid>5403bf6e-bc1d-4e62-b31f-926a2bf66a14</mbid>
127
+ <url>http://www.last.fm/music/Boney+M.</url>
128
+ </artist>
129
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9102817.jpg</image>
130
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9102817.jpg</image>
131
+ <image size="large">http://userserve-ak.last.fm/serve/126/9102817.jpg</image>
132
+ </album>
133
+
134
+
135
+ <album rank="9">
136
+ <name>Off the Wall</name>
137
+ <tagcount>61</tagcount>
138
+ <mbid>924aca8e-3199-4332-be5a-f03f86929e57</mbid>
139
+ <url>http://www.last.fm/music/Michael+Jackson/Off+the+Wall</url>
140
+ <artist>
141
+ <name>Michael Jackson</name>
142
+ <mbid>f27ec8db-af05-4f36-916e-3d57f91ecf5e</mbid>
143
+ <url>http://www.last.fm/music/Michael+Jackson</url>
144
+ </artist>
145
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23733783.jpg</image>
146
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23733783.jpg</image>
147
+ <image size="large">http://userserve-ak.last.fm/serve/126/23733783.jpg</image>
148
+ </album>
149
+
150
+
151
+ <album rank="9">
152
+ <name>Bad Girls</name>
153
+ <tagcount>61</tagcount>
154
+ <mbid>fc87b5b5-9130-43ca-aff1-ef966040ec97</mbid>
155
+ <url>http://www.last.fm/music/Donna+Summer/Bad+Girls</url>
156
+ <artist>
157
+ <name>Donna Summer</name>
158
+ <mbid>b60527cc-54f3-4bbe-a01b-dcf34c95ae14</mbid>
159
+ <url>http://www.last.fm/music/Donna+Summer</url>
160
+ </artist>
161
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5258441.jpg</image>
162
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5258441.jpg</image>
163
+ <image size="large">http://userserve-ak.last.fm/serve/126/5258441.jpg</image>
164
+ </album>
165
+
166
+
167
+ <album rank="11">
168
+ <name>The Best of Village People</name>
169
+ <tagcount>58</tagcount>
170
+ <mbid>719dd011-1f2c-46aa-b048-e43a6cec0e49</mbid>
171
+ <url>http://www.last.fm/music/Village+People/The+Best+of+Village+People</url>
172
+ <artist>
173
+ <name>Village People</name>
174
+ <mbid>f19d3d49-be22-4ca6-9903-64d86984fbf2</mbid>
175
+ <url>http://www.last.fm/music/Village+People</url>
176
+ </artist>
177
+ <image size="small">http://images.amazon.com/images/P/B000001E40.01.MZZZZZZZ.jpg</image>
178
+ <image size="medium">http://images.amazon.com/images/P/B000001E40.01.MZZZZZZZ.jpg</image>
179
+ <image size="large">http://images.amazon.com/images/P/B000001E40.01.MZZZZZZZ.jpg</image>
180
+ </album>
181
+
182
+
183
+ <album rank="12">
184
+ <name>Greatest Hits</name>
185
+ <tagcount>57</tagcount>
186
+ <mbid>b05fbfb7-833e-4f40-acbf-103539bec01b</mbid>
187
+ <url>http://www.last.fm/music/Earth%252C%2BWind%2B%2526%2BFire/Greatest+Hits</url>
188
+ <artist>
189
+ <name>Earth, Wind &amp; Fire</name>
190
+ <mbid>535afeda-2538-435d-9dd1-5e10be586774</mbid>
191
+ <url>http://www.last.fm/music/Earth%252C%2BWind%2B%2526%2BFire</url>
192
+ </artist>
193
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15223563.jpg</image>
194
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15223563.jpg</image>
195
+ <image size="large">http://userserve-ak.last.fm/serve/126/15223563.jpg</image>
196
+ </album>
197
+
198
+
199
+ <album rank="12">
200
+ <name>Grandmix: The Summer Edition (Mixed by Ben Liebrand) (disc 1)</name>
201
+ <tagcount>57</tagcount>
202
+ <mbid>61ef6717-2815-41fe-89ec-ac052068d138</mbid>
203
+ <url>http://www.last.fm/music/Ben+Liebrand/Grandmix%3A+The+Summer+Edition+%28Mixed+by+Ben+Liebrand%29+%28disc+1%29</url>
204
+ <artist>
205
+ <name>Ben Liebrand</name>
206
+ <mbid>a9abe28b-5774-41ea-8393-8b26903fee72</mbid>
207
+ <url>http://www.last.fm/music/Ben+Liebrand</url>
208
+ </artist>
209
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4162885.jpg</image>
210
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4162885.jpg</image>
211
+ <image size="large">http://userserve-ak.last.fm/serve/126/4162885.jpg</image>
212
+ </album>
213
+
214
+
215
+ <album rank="14">
216
+ <name>Live At The Budokan</name>
217
+ <tagcount>56</tagcount>
218
+ <mbid>7464156c-347b-4323-85f3-04d0ef9914cb</mbid>
219
+ <url>http://www.last.fm/music/Chic/Live+At+The+Budokan</url>
220
+ <artist>
221
+ <name>Chic</name>
222
+ <mbid>a4ed036b-5f18-439c-b1e1-96d205bab255</mbid>
223
+ <url>http://www.last.fm/music/Chic</url>
224
+ </artist>
225
+ <image size="small">http://images.amazon.com/images/P/B00000I8LB.01.THUMBZZZ.jpg</image>
226
+ <image size="medium">http://images.amazon.com/images/P/B00000I8LB.01.MZZZZZZZ.jpg</image>
227
+ <image size="large">http://images.amazon.com/images/P/B00000I8LB.01.LZZZZZZZ.jpg</image>
228
+ </album>
229
+
230
+
231
+ <album rank="15">
232
+ <name>The Final Album</name>
233
+ <tagcount>55</tagcount>
234
+ <mbid>3cc244bb-6281-4b27-8969-bce72aff7489</mbid>
235
+ <url>http://www.last.fm/music/Modern+Talking/The+Final+Album</url>
236
+ <artist>
237
+ <name>Modern Talking</name>
238
+ <mbid>98913495-8867-43b3-aa8d-db88ee4d4cdc</mbid>
239
+ <url>http://www.last.fm/music/Modern+Talking</url>
240
+ </artist>
241
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19864673.jpg</image>
242
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19864673.jpg</image>
243
+ <image size="large">http://userserve-ak.last.fm/serve/126/19864673.jpg</image>
244
+ </album>
245
+
246
+
247
+ <album rank="16">
248
+ <name>Greatest Hits</name>
249
+ <tagcount>54</tagcount>
250
+ <mbid>9eaf4cf6-3070-4789-97c4-9255893c00dc</mbid>
251
+ <url>http://www.last.fm/music/KC+and+the+Sunshine+Band/Greatest+Hits</url>
252
+ <artist>
253
+ <name>KC and the Sunshine Band</name>
254
+ <mbid>76a5a114-ed6a-4eb6-8a81-ad5768d4b41c</mbid>
255
+ <url>http://www.last.fm/music/KC+and+the+Sunshine+Band</url>
256
+ </artist>
257
+ <image size="small">http://images.amazon.com/images/P/B00002NDAL.01.MZZZZZZZ.jpg</image>
258
+ <image size="medium">http://images.amazon.com/images/P/B00002NDAL.01.MZZZZZZZ.jpg</image>
259
+ <image size="large">http://images.amazon.com/images/P/B00002NDAL.01.MZZZZZZZ.jpg</image>
260
+ </album>
261
+
262
+
263
+ <album rank="17">
264
+ <name>Señor Smoke</name>
265
+ <tagcount>52</tagcount>
266
+ <mbid>c69d328a-5ea0-4b08-a4f7-93e6ac196563</mbid>
267
+ <url>http://www.last.fm/music/Electric+Six/Se%C3%B1or+Smoke</url>
268
+ <artist>
269
+ <name>Electric Six</name>
270
+ <mbid>54b0584e-4e5e-4976-80d4-eea7a82a7213</mbid>
271
+ <url>http://www.last.fm/music/Electric+Six</url>
272
+ </artist>
273
+ <image size="small">http://images.amazon.com/images/P/B0007M2XLK.01.MZZZZZZZ.jpg</image>
274
+ <image size="medium">http://images.amazon.com/images/P/B0007M2XLK.01.MZZZZZZZ.jpg</image>
275
+ <image size="large">http://images.amazon.com/images/P/B0007M2XLK.01.MZZZZZZZ.jpg</image>
276
+ </album>
277
+
278
+
279
+ <album rank="18">
280
+ <name>Island Life</name>
281
+ <tagcount>51</tagcount>
282
+ <mbid>a7c286df-f241-4dfd-aaf2-2bf38f1ce99d</mbid>
283
+ <url>http://www.last.fm/music/Grace+Jones/Island+Life</url>
284
+ <artist>
285
+ <name>Grace Jones</name>
286
+ <mbid>b1c124b3-cf60-41a6-8699-92728c8a3fe0</mbid>
287
+ <url>http://www.last.fm/music/Grace+Jones</url>
288
+ </artist>
289
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8679845.jpg</image>
290
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8679845.jpg</image>
291
+ <image size="large">http://userserve-ak.last.fm/serve/126/8679845.jpg</image>
292
+ </album>
293
+
294
+
295
+ <album rank="19">
296
+ <name>Confessions on a Dance Floor</name>
297
+ <tagcount>50</tagcount>
298
+ <mbid>6eb9ccca-63ad-41f5-9ab9-45d4f6e5d6a4</mbid>
299
+ <url>http://www.last.fm/music/Madonna/Confessions+on+a+Dance+Floor</url>
300
+ <artist>
301
+ <name>Madonna</name>
302
+ <mbid>79239441-bfd5-4981-a70c-55c3f15c1287</mbid>
303
+ <url>http://www.last.fm/music/Madonna</url>
304
+ </artist>
305
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8693811.jpg</image>
306
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8693811.jpg</image>
307
+ <image size="large">http://userserve-ak.last.fm/serve/126/8693811.jpg</image>
308
+ </album>
309
+
310
+
311
+ <album rank="20">
312
+ <name>We Are Family</name>
313
+ <tagcount>48</tagcount>
314
+ <mbid>51d5eb07-9070-4df7-aa02-34e90185abbe</mbid>
315
+ <url>http://www.last.fm/music/Sister+Sledge/We+Are+Family</url>
316
+ <artist>
317
+ <name>Sister Sledge</name>
318
+ <mbid>1ed00158-c6a3-45cd-819c-2f91997fc480</mbid>
319
+ <url>http://www.last.fm/music/Sister+Sledge</url>
320
+ </artist>
321
+ <image size="small">http://userserve-ak.last.fm/serve/34s/13286129.jpg</image>
322
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/13286129.jpg</image>
323
+ <image size="large">http://userserve-ak.last.fm/serve/126/13286129.jpg</image>
324
+ </album>
325
+
326
+
327
+ <album rank="21">
328
+ <name>Endless Summer</name>
329
+ <tagcount>47</tagcount>
330
+ <mbid>89abe191-9dd6-4883-b10f-56922baf88e3</mbid>
331
+ <url>http://www.last.fm/music/Donna+Summer/Endless+Summer</url>
332
+ <artist>
333
+ <name>Donna Summer</name>
334
+ <mbid>b60527cc-54f3-4bbe-a01b-dcf34c95ae14</mbid>
335
+ <url>http://www.last.fm/music/Donna+Summer</url>
336
+ </artist>
337
+ <image size="small">http://userserve-ak.last.fm/serve/34s/21063691.jpg</image>
338
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/21063691.jpg</image>
339
+ <image size="large">http://userserve-ak.last.fm/serve/126/21063691.jpg</image>
340
+ </album>
341
+
342
+
343
+ <album rank="21">
344
+ <name>GOLD 20 Super Hits</name>
345
+ <tagcount>47</tagcount>
346
+ <mbid>2b311eac-7cd2-4b6b-831b-e1dfb30fbf46</mbid>
347
+ <url>http://www.last.fm/music/Boney+M./GOLD+20+Super+Hits</url>
348
+ <artist>
349
+ <name>Boney M.</name>
350
+ <mbid>5403bf6e-bc1d-4e62-b31f-926a2bf66a14</mbid>
351
+ <url>http://www.last.fm/music/Boney+M.</url>
352
+ </artist>
353
+ <image size="small">http://images.amazon.com/images/P/B000006T7W.01.MZZZZZZZ.jpg</image>
354
+ <image size="medium">http://images.amazon.com/images/P/B000006T7W.01.MZZZZZZZ.jpg</image>
355
+ <image size="large">http://images.amazon.com/images/P/B000006T7W.01.MZZZZZZZ.jpg</image>
356
+ </album>
357
+
358
+
359
+ <album rank="21">
360
+ <name>Fire</name>
361
+ <tagcount>47</tagcount>
362
+ <mbid>6cc90f22-d24a-4547-9b2c-1e74503a1ad0</mbid>
363
+ <url>http://www.last.fm/music/Electric+Six/Fire</url>
364
+ <artist>
365
+ <name>Electric Six</name>
366
+ <mbid>54b0584e-4e5e-4976-80d4-eea7a82a7213</mbid>
367
+ <url>http://www.last.fm/music/Electric+Six</url>
368
+ </artist>
369
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12619479.jpg</image>
370
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12619479.jpg</image>
371
+ <image size="large">http://userserve-ak.last.fm/serve/126/12619479.jpg</image>
372
+ </album>
373
+
374
+
375
+ <album rank="24">
376
+ <name>20 Hottest Hits</name>
377
+ <tagcount>46</tagcount>
378
+ <mbid>a4a32dc8-e049-4dd6-94ff-5b948e60db22</mbid>
379
+ <url>http://www.last.fm/music/Hot+Chocolate/20+Hottest+Hits</url>
380
+ <artist>
381
+ <name>Hot Chocolate</name>
382
+ <mbid>a749130e-c2d8-4a7c-b740-908ea4574961</mbid>
383
+ <url>http://www.last.fm/music/Hot+Chocolate</url>
384
+ </artist>
385
+ <image size="small">http://userserve-ak.last.fm/serve/34s/6301769.jpg</image>
386
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/6301769.jpg</image>
387
+ <image size="large">http://userserve-ak.last.fm/serve/126/6301769.jpg</image>
388
+ </album>
389
+
390
+
391
+ <album rank="25">
392
+ <name>The Very Best of Chic</name>
393
+ <tagcount>45</tagcount>
394
+ <mbid>b97ddea9-26a7-4d0e-8c5e-890ac1abefc1</mbid>
395
+ <url>http://www.last.fm/music/Chic/The+Very+Best+of+Chic</url>
396
+ <artist>
397
+ <name>Chic</name>
398
+ <mbid>a4ed036b-5f18-439c-b1e1-96d205bab255</mbid>
399
+ <url>http://www.last.fm/music/Chic</url>
400
+ </artist>
401
+ <image size="small">http://images.amazon.com/images/P/B00004R5ZR.01.MZZZZZZZ.jpg</image>
402
+ <image size="medium">http://images.amazon.com/images/P/B00004R5ZR.01.MZZZZZZZ.jpg</image>
403
+ <image size="large">http://images.amazon.com/images/P/B00004R5ZR.01.MZZZZZZZ.jpg</image>
404
+ </album>
405
+
406
+
407
+ <album rank="26">
408
+ <name>Platinum &amp; Gold Collection Series</name>
409
+ <tagcount>44</tagcount>
410
+ <mbid>44fa5227-f980-46f0-8935-28be2de6b685</mbid>
411
+ <url>http://www.last.fm/music/The+Pointer+Sisters/Platinum%2B%2526%2BGold%2BCollection%2BSeries</url>
412
+ <artist>
413
+ <name>The Pointer Sisters</name>
414
+ <mbid>81bac815-97c5-4723-8f0b-4d8edfad1010</mbid>
415
+ <url>http://www.last.fm/music/The+Pointer+Sisters</url>
416
+ </artist>
417
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8003551.jpg</image>
418
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8003551.jpg</image>
419
+ <image size="large">http://userserve-ak.last.fm/serve/126/8003551.jpg</image>
420
+ </album>
421
+
422
+
423
+ <album rank="27">
424
+ <name>Ta Dah</name>
425
+ <tagcount>43</tagcount>
426
+ <mbid></mbid>
427
+ <url>http://www.last.fm/music/Scissor+Sisters/Ta+Dah</url>
428
+ <artist>
429
+ <name>Scissor Sisters</name>
430
+ <mbid>4236d929-9a81-4c8e-97c3-8d3306780f50</mbid>
431
+ <url>http://www.last.fm/music/Scissor+Sisters</url>
432
+ </artist>
433
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9423703.jpg</image>
434
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9423703.jpg</image>
435
+ <image size="large">http://userserve-ak.last.fm/serve/126/9423703.jpg</image>
436
+ </album>
437
+
438
+
439
+ <album rank="27">
440
+ <name>The Collection</name>
441
+ <tagcount>43</tagcount>
442
+ <mbid>6def6104-dc9a-47a4-a615-d996cd436b1c</mbid>
443
+ <url>http://www.last.fm/music/Barry+White/The+Collection</url>
444
+ <artist>
445
+ <name>Barry White</name>
446
+ <mbid>b904d624-9e05-4398-8f4f-88fbcf022f79</mbid>
447
+ <url>http://www.last.fm/music/Barry+White</url>
448
+ </artist>
449
+ <image size="small">http://images.amazon.com/images/P/B000007613.01.THUMBZZZ.jpg</image>
450
+ <image size="medium">http://images.amazon.com/images/P/B000007613.01.MZZZZZZZ.jpg</image>
451
+ <image size="large">http://images.amazon.com/images/P/B000007613.01.LZZZZZZZ.jpg</image>
452
+ </album>
453
+
454
+
455
+ <album rank="27">
456
+ <name>From Here To Eternity</name>
457
+ <tagcount>43</tagcount>
458
+ <mbid>5467d5d1-9079-4531-9fff-b8a8e01aa9d3</mbid>
459
+ <url>http://www.last.fm/music/Giorgio+Moroder/From+Here+To+Eternity</url>
460
+ <artist>
461
+ <name>Giorgio Moroder</name>
462
+ <mbid>38dd6337-19ae-4793-ab4b-313eff523457</mbid>
463
+ <url>http://www.last.fm/music/Giorgio+Moroder</url>
464
+ </artist>
465
+ <image size="small">http://images.amazon.com/images/P/B00000ILGL.01.MZZZZZZZ.jpg</image>
466
+ <image size="medium">http://images.amazon.com/images/P/B00000ILGL.01.MZZZZZZZ.jpg</image>
467
+ <image size="large">http://images.amazon.com/images/P/B00000ILGL.01.MZZZZZZZ.jpg</image>
468
+ </album>
469
+
470
+
471
+ <album rank="30">
472
+ <name>Voulez-Vous</name>
473
+ <tagcount>42</tagcount>
474
+ <mbid>4d3ce256-ea71-44c5-8ce9-deb8f1e7dce4</mbid>
475
+ <url>http://www.last.fm/music/ABBA/Voulez-Vous</url>
476
+ <artist>
477
+ <name>ABBA</name>
478
+ <mbid>d87e52c5-bb8d-4da8-b941-9f4928627dc8</mbid>
479
+ <url>http://www.last.fm/music/ABBA</url>
480
+ </artist>
481
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8675445.jpg</image>
482
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8675445.jpg</image>
483
+ <image size="large">http://userserve-ak.last.fm/serve/126/8675445.jpg</image>
484
+ </album>
485
+
486
+
487
+ <album rank="30">
488
+ <name>The Ultimate Collection</name>
489
+ <tagcount>42</tagcount>
490
+ <mbid>ed1e7b65-a134-4e7d-ba2c-4042f8bc89dd</mbid>
491
+ <url>http://www.last.fm/music/Diana+Ross/The+Ultimate+Collection</url>
492
+ <artist>
493
+ <name>Diana Ross</name>
494
+ <mbid>60d41417-feda-4734-bbbf-7dcc30e08a83</mbid>
495
+ <url>http://www.last.fm/music/Diana+Ross</url>
496
+ </artist>
497
+ <image size="small">http://images.amazon.com/images/P/B000001AMF.01.MZZZZZZZ.jpg</image>
498
+ <image size="medium">http://images.amazon.com/images/P/B000001AMF.01.MZZZZZZZ.jpg</image>
499
+ <image size="large">http://images.amazon.com/images/P/B000001AMF.01.MZZZZZZZ.jpg</image>
500
+ </album>
501
+
502
+
503
+ <album rank="30">
504
+ <name>Anthology - 20 Greatest Tracks</name>
505
+ <tagcount>42</tagcount>
506
+ <mbid>09895796-1be0-4a58-b5f8-516b3bd8d589</mbid>
507
+ <url>http://www.last.fm/music/Kool%2B%2526%2BThe%2BGang/Anthology+-+20+Greatest+Tracks</url>
508
+ <artist>
509
+ <name>Kool &amp; The Gang</name>
510
+ <mbid>2469950a-f0ca-425a-bfbc-baf55ea3afde</mbid>
511
+ <url>http://www.last.fm/music/Kool%2B%2526%2BThe%2BGang</url>
512
+ </artist>
513
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5937937.jpg</image>
514
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5937937.jpg</image>
515
+ <image size="large">http://userserve-ak.last.fm/serve/126/5937937.jpg</image>
516
+ </album>
517
+
518
+
519
+ <album rank="33">
520
+ <name>Number Ones</name>
521
+ <tagcount>41</tagcount>
522
+ <mbid>bb232ab5-3b6e-4d92-8669-3217b2272ae9</mbid>
523
+ <url>http://www.last.fm/music/Michael+Jackson/Number+Ones</url>
524
+ <artist>
525
+ <name>Michael Jackson</name>
526
+ <mbid>f27ec8db-af05-4f36-916e-3d57f91ecf5e</mbid>
527
+ <url>http://www.last.fm/music/Michael+Jackson</url>
528
+ </artist>
529
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23835597.jpg</image>
530
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23835597.jpg</image>
531
+ <image size="large">http://userserve-ak.last.fm/serve/126/23835597.jpg</image>
532
+ </album>
533
+
534
+
535
+ <album rank="33">
536
+ <name>This Is Where the Happy People Go: The Best of the Trammps</name>
537
+ <tagcount>41</tagcount>
538
+ <mbid>f24e463f-e323-4c03-bc75-53198773fae3</mbid>
539
+ <url>http://www.last.fm/music/The+Trammps/This+Is+Where+the+Happy+People+Go%3A+The+Best+of+the+Trammps</url>
540
+ <artist>
541
+ <name>The Trammps</name>
542
+ <mbid>8799413d-7df8-4eb9-8542-af8cea6b0feb</mbid>
543
+ <url>http://www.last.fm/music/The+Trammps</url>
544
+ </artist>
545
+ <image size="small">http://images.amazon.com/images/P/B0000033BS.01._SCMZZZZZZZ_.jpg</image>
546
+ <image size="medium">http://images.amazon.com/images/P/B0000033BS.01._SCMZZZZZZZ_.jpg</image>
547
+ <image size="large">http://images.amazon.com/images/P/B0000033BS.01._SCMZZZZZZZ_.jpg</image>
548
+ </album>
549
+
550
+
551
+ <album rank="35">
552
+ <name>ABBA</name>
553
+ <tagcount>40</tagcount>
554
+ <mbid>2f878b57-ce55-4a2b-ac93-f95b4b512236</mbid>
555
+ <url>http://www.last.fm/music/ABBA/ABBA</url>
556
+ <artist>
557
+ <name>ABBA</name>
558
+ <mbid>d87e52c5-bb8d-4da8-b941-9f4928627dc8</mbid>
559
+ <url>http://www.last.fm/music/ABBA</url>
560
+ </artist>
561
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8679591.jpg</image>
562
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8679591.jpg</image>
563
+ <image size="large">http://userserve-ak.last.fm/serve/126/8679591.jpg</image>
564
+ </album>
565
+
566
+
567
+ <album rank="35">
568
+ <name>Fever</name>
569
+ <tagcount>40</tagcount>
570
+ <mbid>30ec81bf-05fd-49e2-bfe3-1c386899ac0d</mbid>
571
+ <url>http://www.last.fm/music/Kylie+Minogue/Fever</url>
572
+ <artist>
573
+ <name>Kylie Minogue</name>
574
+ <mbid>2fddb92d-24b2-46a5-bf28-3aed46f4684c</mbid>
575
+ <url>http://www.last.fm/music/Kylie+Minogue</url>
576
+ </artist>
577
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8598231.jpg</image>
578
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8598231.jpg</image>
579
+ <image size="large">http://userserve-ak.last.fm/serve/126/8598231.jpg</image>
580
+ </album>
581
+
582
+
583
+ <album rank="35">
584
+ <name>Grandmix: The Millennium Edition (Mixed by Ben Liebrand) (disc 1)</name>
585
+ <tagcount>40</tagcount>
586
+ <mbid>b51c8caa-4d9e-4779-b98f-3b22a3ab1e98</mbid>
587
+ <url>http://www.last.fm/music/Ben+Liebrand/Grandmix%3A+The+Millennium+Edition+%28Mixed+by+Ben+Liebrand%29+%28disc+1%29</url>
588
+ <artist>
589
+ <name>Ben Liebrand</name>
590
+ <mbid>a9abe28b-5774-41ea-8393-8b26903fee72</mbid>
591
+ <url>http://www.last.fm/music/Ben+Liebrand</url>
592
+ </artist>
593
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4351744.jpg</image>
594
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4351744.jpg</image>
595
+ <image size="large">http://userserve-ak.last.fm/serve/126/4351744.jpg</image>
596
+ </album>
597
+
598
+
599
+ <album rank="35">
600
+ <name>Take the Heat Off Me</name>
601
+ <tagcount>40</tagcount>
602
+ <mbid>002a65d3-ab21-4fdd-adbf-ca6d5f39033a</mbid>
603
+ <url>http://www.last.fm/music/Boney+M./Take+the+Heat+Off+Me</url>
604
+ <artist>
605
+ <name>Boney M.</name>
606
+ <mbid>5403bf6e-bc1d-4e62-b31f-926a2bf66a14</mbid>
607
+ <url>http://www.last.fm/music/Boney+M.</url>
608
+ </artist>
609
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23244425.jpg</image>
610
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23244425.jpg</image>
611
+ <image size="large">http://userserve-ak.last.fm/serve/126/23244425.jpg</image>
612
+ </album>
613
+
614
+
615
+ <album rank="39">
616
+ <name>Light Years</name>
617
+ <tagcount>39</tagcount>
618
+ <mbid>73002589-48ea-4bdd-9ab4-40b90f422f5c</mbid>
619
+ <url>http://www.last.fm/music/Kylie+Minogue/Light+Years</url>
620
+ <artist>
621
+ <name>Kylie Minogue</name>
622
+ <mbid>2fddb92d-24b2-46a5-bf28-3aed46f4684c</mbid>
623
+ <url>http://www.last.fm/music/Kylie+Minogue</url>
624
+ </artist>
625
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8672941.jpg</image>
626
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8672941.jpg</image>
627
+ <image size="large">http://userserve-ak.last.fm/serve/126/8672941.jpg</image>
628
+ </album>
629
+
630
+
631
+ <album rank="39">
632
+ <name>Greatest Hits</name>
633
+ <tagcount>39</tagcount>
634
+ <mbid>1ea4db90-93d3-4bd9-8624-85f507fef4ef</mbid>
635
+ <url>http://www.last.fm/music/Rose+Royce/Greatest+Hits</url>
636
+ <artist>
637
+ <name>Rose Royce</name>
638
+ <mbid>846482ac-d4c4-4286-8002-b14a601d8ec0</mbid>
639
+ <url>http://www.last.fm/music/Rose+Royce</url>
640
+ </artist>
641
+ <image size="small">http://images.amazon.com/images/P/B000A3I450.01._SCMZZZZZZZ_.jpg</image>
642
+ <image size="medium">http://images.amazon.com/images/P/B000A3I450.01._SCMZZZZZZZ_.jpg</image>
643
+ <image size="large">http://images.amazon.com/images/P/B000A3I450.01._SCMZZZZZZZ_.jpg</image>
644
+ </album>
645
+
646
+
647
+ <album rank="39">
648
+ <name>Beat Box</name>
649
+ <tagcount>39</tagcount>
650
+ <mbid></mbid>
651
+ <url>http://www.last.fm/music/Glass+Candy/Beat+Box</url>
652
+ <artist>
653
+ <name>Glass Candy</name>
654
+ <mbid>ca94595e-955a-495c-8ba1-25eebd9609a9</mbid>
655
+ <url>http://www.last.fm/music/Glass+Candy</url>
656
+ </artist>
657
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12614849.jpg</image>
658
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12614849.jpg</image>
659
+ <image size="large">http://userserve-ak.last.fm/serve/126/12614849.jpg</image>
660
+ </album>
661
+
662
+
663
+ <album rank="39">
664
+ <name>Discomania</name>
665
+ <tagcount>39</tagcount>
666
+ <mbid>af778d9a-65fc-4b6c-af42-c807a0ce7709</mbid>
667
+ <url>http://www.last.fm/music/Baccara/Discomania</url>
668
+ <artist>
669
+ <name>Baccara</name>
670
+ <mbid>d17a5888-7775-4541-85d6-f6344f9e93b7</mbid>
671
+ <url>http://www.last.fm/music/Baccara</url>
672
+ </artist>
673
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5798097.jpg</image>
674
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5798097.jpg</image>
675
+ <image size="large">http://userserve-ak.last.fm/serve/126/5798097.jpg</image>
676
+ </album>
677
+
678
+
679
+ <album rank="39">
680
+ <name>Kung Fu Fighting</name>
681
+ <tagcount>39</tagcount>
682
+ <mbid>c4043896-33e4-4a61-b425-7b7f48a535dd</mbid>
683
+ <url>http://www.last.fm/music/Carl+Douglas/Kung+Fu+Fighting</url>
684
+ <artist>
685
+ <name>Carl Douglas</name>
686
+ <mbid>2100ca6c-5a1d-463e-b50b-7e649debc454</mbid>
687
+ <url>http://www.last.fm/music/Carl+Douglas</url>
688
+ </artist>
689
+ <image size="small">http://images.amazon.com/images/P/B00001ZTQS.01.MZZZZZZZ.jpg</image>
690
+ <image size="medium">http://images.amazon.com/images/P/B00001ZTQS.01.MZZZZZZZ.jpg</image>
691
+ <image size="large">http://images.amazon.com/images/P/B00001ZTQS.01.MZZZZZZZ.jpg</image>
692
+ </album>
693
+
694
+
695
+ <album rank="44">
696
+ <name>Diana</name>
697
+ <tagcount>38</tagcount>
698
+ <mbid>fd8c49a8-58c6-49e2-ad4a-1cf2a696a239</mbid>
699
+ <url>http://www.last.fm/music/Diana+Ross/Diana</url>
700
+ <artist>
701
+ <name>Diana Ross</name>
702
+ <mbid>60d41417-feda-4734-bbbf-7dcc30e08a83</mbid>
703
+ <url>http://www.last.fm/music/Diana+Ross</url>
704
+ </artist>
705
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22265957.jpg</image>
706
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22265957.jpg</image>
707
+ <image size="large">http://userserve-ak.last.fm/serve/126/22265957.jpg</image>
708
+ </album>
709
+
710
+
711
+ <album rank="45">
712
+ <name>Culture</name>
713
+ <tagcount>37</tagcount>
714
+ <mbid>443b9bcc-cd06-4717-a733-c6461cea9e92</mbid>
715
+ <url>http://www.last.fm/music/Cerrone/Culture</url>
716
+ <artist>
717
+ <name>Cerrone</name>
718
+ <mbid>9ec90f51-2c4a-495b-b478-2dfc9c07f8bc</mbid>
719
+ <url>http://www.last.fm/music/Cerrone</url>
720
+ </artist>
721
+ <image size="small">http://images.amazon.com/images/P/B0002ANRQW.02._SCMZZZZZZZ_.jpg</image>
722
+ <image size="medium">http://images.amazon.com/images/P/B0002ANRQW.02._SCMZZZZZZZ_.jpg</image>
723
+ <image size="large">http://images.amazon.com/images/P/B0002ANRQW.02._SCMZZZZZZZ_.jpg</image>
724
+ </album>
725
+
726
+
727
+ <album rank="45">
728
+ <name>A Funk Odyssey</name>
729
+ <tagcount>37</tagcount>
730
+ <mbid>18bb423b-bf91-422e-a1c2-c9ed08ea204f</mbid>
731
+ <url>http://www.last.fm/music/Jamiroquai/A+Funk+Odyssey</url>
732
+ <artist>
733
+ <name>Jamiroquai</name>
734
+ <mbid>f4857fb9-e255-4dc6-bd01-e4ca7cc68544</mbid>
735
+ <url>http://www.last.fm/music/Jamiroquai</url>
736
+ </artist>
737
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19824693.jpg</image>
738
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19824693.jpg</image>
739
+ <image size="large">http://userserve-ak.last.fm/serve/126/19824693.jpg</image>
740
+ </album>
741
+
742
+
743
+ <album rank="45">
744
+ <name>E=MC2</name>
745
+ <tagcount>37</tagcount>
746
+ <mbid>c1dba482-0755-4968-a1d4-88f2814448d9</mbid>
747
+ <url>http://www.last.fm/music/Giorgio+Moroder/E%3DMC2</url>
748
+ <artist>
749
+ <name>Giorgio Moroder</name>
750
+ <mbid>38dd6337-19ae-4793-ab4b-313eff523457</mbid>
751
+ <url>http://www.last.fm/music/Giorgio+Moroder</url>
752
+ </artist>
753
+ <image size="small">http://images.amazon.com/images/P/B00005LWGT.01._SCMZZZZZZZ_.jpg</image>
754
+ <image size="medium">http://images.amazon.com/images/P/B00005LWGT.01._SCMZZZZZZZ_.jpg</image>
755
+ <image size="large">http://images.amazon.com/images/P/B00005LWGT.01._SCMZZZZZZZ_.jpg</image>
756
+ </album>
757
+
758
+
759
+ <album rank="45">
760
+ <name>Dynamite</name>
761
+ <tagcount>37</tagcount>
762
+ <mbid>8c95a26d-82fd-468e-a9f1-ce8c0fd97b0f</mbid>
763
+ <url>http://www.last.fm/music/Jamiroquai/Dynamite</url>
764
+ <artist>
765
+ <name>Jamiroquai</name>
766
+ <mbid>f4857fb9-e255-4dc6-bd01-e4ca7cc68544</mbid>
767
+ <url>http://www.last.fm/music/Jamiroquai</url>
768
+ </artist>
769
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19845679.jpg</image>
770
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19845679.jpg</image>
771
+ <image size="large">http://userserve-ak.last.fm/serve/126/19845679.jpg</image>
772
+ </album>
773
+
774
+
775
+ <album rank="45">
776
+ <name>Casino</name>
777
+ <tagcount>37</tagcount>
778
+ <mbid>31114fbe-2b4b-4e21-8449-7002279aff1e</mbid>
779
+ <url>http://www.last.fm/music/Alcazar/Casino</url>
780
+ <artist>
781
+ <name>Alcazar</name>
782
+ <mbid>8d5e244c-04f6-4d2d-ac98-3b0f0e33b3e2</mbid>
783
+ <url>http://www.last.fm/music/Alcazar</url>
784
+ </artist>
785
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19849513.jpg</image>
786
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19849513.jpg</image>
787
+ <image size="large">http://userserve-ak.last.fm/serve/126/19849513.jpg</image>
788
+ </album>
789
+
790
+
791
+ <album rank="50">
792
+ <name>Bee Gees</name>
793
+ <tagcount>36</tagcount>
794
+ <mbid>5096063a-4a56-4270-bb54-c0af5f80fcc9</mbid>
795
+ <url>http://www.last.fm/music/Bee+Gees/Bee+Gees</url>
796
+ <artist>
797
+ <name>Bee Gees</name>
798
+ <mbid>bf0f7e29-dfe1-416c-b5c6-f9ebc19ea810</mbid>
799
+ <url>http://www.last.fm/music/Bee+Gees</url>
800
+ </artist>
801
+ <image size="small">http://images.amazon.com/images/P/B00067Z2UU.01._SCMZZZZZZZ_.jpg</image>
802
+ <image size="medium">http://images.amazon.com/images/P/B00067Z2UU.01._SCMZZZZZZZ_.jpg</image>
803
+ <image size="large">http://images.amazon.com/images/P/B00067Z2UU.01._SCMZZZZZZZ_.jpg</image>
804
+ </album>
805
+ </topalbums></lfm>