rockstar-custom 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (97) hide show
  1. data/.travis.yml +6 -0
  2. data/Gemfile +11 -0
  3. data/Gemfile.lock +22 -0
  4. data/History.txt +6 -0
  5. data/MIT-LICENSE +19 -0
  6. data/Manifest +72 -0
  7. data/README.md +135 -0
  8. data/Rakefile +34 -0
  9. data/VERSION +1 -0
  10. data/examples/.gitignore +1 -0
  11. data/examples/album.rb +16 -0
  12. data/examples/artist.rb +23 -0
  13. data/examples/geo.rb +9 -0
  14. data/examples/lastfm.yml_example +3 -0
  15. data/examples/scrobble.rb +45 -0
  16. data/examples/tag.rb +20 -0
  17. data/examples/track.rb +14 -0
  18. data/examples/user.rb +18 -0
  19. data/lib/rockstar.rb +50 -0
  20. data/lib/rockstar/album.rb +109 -0
  21. data/lib/rockstar/artist.rb +182 -0
  22. data/lib/rockstar/auth.rb +21 -0
  23. data/lib/rockstar/base.rb +48 -0
  24. data/lib/rockstar/chart.rb +31 -0
  25. data/lib/rockstar/event.rb +73 -0
  26. data/lib/rockstar/geo.rb +22 -0
  27. data/lib/rockstar/metro.rb +26 -0
  28. data/lib/rockstar/playing.rb +50 -0
  29. data/lib/rockstar/rest.rb +66 -0
  30. data/lib/rockstar/scrobble.rb +68 -0
  31. data/lib/rockstar/session.rb +19 -0
  32. data/lib/rockstar/simpleauth.rb +62 -0
  33. data/lib/rockstar/tag.rb +100 -0
  34. data/lib/rockstar/tokenauth.rb +84 -0
  35. data/lib/rockstar/track.rb +260 -0
  36. data/lib/rockstar/user.rb +200 -0
  37. data/lib/rockstar/venue.rb +59 -0
  38. data/lib/rockstar/version.rb +3 -0
  39. data/rockstar.gemspec +174 -0
  40. data/test/fixtures/xml/album/getinfo_album_Radio_Retalation_artist_Thievery_Corporation.xml +21 -0
  41. data/test/fixtures/xml/album/getinfo_album_Some_Hearts_artist_Carrie_Underwood.xml +63 -0
  42. data/test/fixtures/xml/artist/getevents_artist_Metallica.xml +1064 -0
  43. data/test/fixtures/xml/artist/getimages_artist_Metallica_page_2.xml +1074 -0
  44. data/test/fixtures/xml/artist/getinfo_artist_Metallica.xml +115 -0
  45. data/test/fixtures/xml/artist/getsimilar_artist_Metallica.xml +1203 -0
  46. data/test/fixtures/xml/artist/gettopalbums_artist_Metallica.xml +704 -0
  47. data/test/fixtures/xml/artist/gettopfans_artist_Metallica.xml +504 -0
  48. data/test/fixtures/xml/artist/gettoptags_artist_Metallica.xml +403 -0
  49. data/test/fixtures/xml/artist/gettoptracks_artist_Metallica.xml +800 -0
  50. data/test/fixtures/xml/geo/getevents_location_london.xml +531 -0
  51. data/test/fixtures/xml/geo/getmetros_country_germany.xml +44 -0
  52. data/test/fixtures/xml/tag/gettopalbums_tag_rock.xml +654 -0
  53. data/test/fixtures/xml/tag/gettopartists_tag_rock.xml +504 -0
  54. data/test/fixtures/xml/tag/gettoptags.xml +1253 -0
  55. data/test/fixtures/xml/tag/gettoptracks_tag_rock.xml +704 -0
  56. data/test/fixtures/xml/track/getinfo_artist_Carrie_Underwood_track_Before_He_Cheats.xml +55 -0
  57. data/test/fixtures/xml/track/gettopfans_artist_Carrie_Underwood_track_Before_He_Cheats.xml +504 -0
  58. data/test/fixtures/xml/track/gettoptags_artist_Carrie_Underwood_track_Before_He_Cheats.xml +403 -0
  59. data/test/fixtures/xml/track/love_artist_Carrie_Underwood_sk_tag_track_Before_He_Cheats.xml +2 -0
  60. data/test/fixtures/xml/track/updatenowplaying_artist_Carrie_Underwood_sk_tag_track_Before_He_Cheats.xml +10 -0
  61. data/test/fixtures/xml/user/getevents_sk_token_user_bodot.xml +513 -0
  62. data/test/fixtures/xml/user/getfriends_user_jnunemaker.xml +173 -0
  63. data/test/fixtures/xml/user/getinfo_user_jnunemaker.xml +22 -0
  64. data/test/fixtures/xml/user/getinfo_user_oaknd1.xml +22 -0
  65. data/test/fixtures/xml/user/getinfo_user_wharle.xml +22 -0
  66. data/test/fixtures/xml/user/getlovedtracks_user_jnunemaker.xml +775 -0
  67. data/test/fixtures/xml/user/getneighbours_user_jnunemaker.xml +503 -0
  68. data/test/fixtures/xml/user/getrecenttracks_user_jnunemaker.xml +133 -0
  69. data/test/fixtures/xml/user/getrecommendedartists_sk_token_user_jnunemaker.xml +553 -0
  70. data/test/fixtures/xml/user/gettopalbums_user_jnunemaker.xml +704 -0
  71. data/test/fixtures/xml/user/gettopartists_period_overall_user_jnunemaker.xml +554 -0
  72. data/test/fixtures/xml/user/gettoptags_user_jnunemaker.xml +63 -0
  73. data/test/fixtures/xml/user/gettoptracks_user_jnunemaker.xml +750 -0
  74. data/test/fixtures/xml/user/getweeklyalbumchart_from_1138536002_to_1139140802_user_jnunemaker.xml +143 -0
  75. data/test/fixtures/xml/user/getweeklyalbumchart_from__to__user_jnunemaker.xml +31 -0
  76. data/test/fixtures/xml/user/getweeklyartistchart_from_1138536002_to_1139140802_user_jnunemaker.xml +201 -0
  77. data/test/fixtures/xml/user/getweeklyartistchart_from__to__user_jnunemaker.xml +21 -0
  78. data/test/fixtures/xml/user/getweeklychartlist_user_jnunemaker.xml +232 -0
  79. data/test/fixtures/xml/user/getweeklytrackchart_from_1138536002_to_1139140802_user_jnunemaker.xml +883 -0
  80. data/test/fixtures/xml/user/getweeklytrackchart_from__to__user_jnunemaker.xml +423 -0
  81. data/test/fixtures/xml/venue/getevents_venue_8807850.xml +280 -0
  82. data/test/fixtures/xml/venue/search_country__limit__page__venue_country_DE_venue_cotton.xml +72 -0
  83. data/test/mocks/rest.rb +67 -0
  84. data/test/test_helper.rb +18 -0
  85. data/test/unit/test_album.rb +76 -0
  86. data/test/unit/test_artist.rb +102 -0
  87. data/test/unit/test_chart.rb +35 -0
  88. data/test/unit/test_geo.rb +25 -0
  89. data/test/unit/test_playing.rb +53 -0
  90. data/test/unit/test_scrobble.rb +69 -0
  91. data/test/unit/test_simpleauth.rb +45 -0
  92. data/test/unit/test_tag.rb +57 -0
  93. data/test/unit/test_tokenauth.rb +45 -0
  94. data/test/unit/test_track.rb +82 -0
  95. data/test/unit/test_user.rb +299 -0
  96. data/test/unit/test_venue.rb +20 -0
  97. metadata +269 -0
@@ -0,0 +1,403 @@
1
+ <lfm status="ok">
2
+ <toptags artist="Metallica">
3
+ <tag>
4
+ <name>thrash metal</name>
5
+ <count>100</count>
6
+ <url>http://www.last.fm/tag/thrash%20metal</url>
7
+ </tag> <tag>
8
+ <name>metal</name>
9
+ <count>98</count>
10
+ <url>http://www.last.fm/tag/metal</url>
11
+ </tag> <tag>
12
+ <name>heavy metal</name>
13
+ <count>72</count>
14
+ <url>http://www.last.fm/tag/heavy%20metal</url>
15
+ </tag> <tag>
16
+ <name>hard rock</name>
17
+ <count>38</count>
18
+ <url>http://www.last.fm/tag/hard%20rock</url>
19
+ </tag> <tag>
20
+ <name>rock</name>
21
+ <count>33</count>
22
+ <url>http://www.last.fm/tag/rock</url>
23
+ </tag> <tag>
24
+ <name>metallica</name>
25
+ <count>11</count>
26
+ <url>http://www.last.fm/tag/metallica</url>
27
+ </tag> <tag>
28
+ <name>speed metal</name>
29
+ <count>7</count>
30
+ <url>http://www.last.fm/tag/speed%20metal</url>
31
+ </tag> <tag>
32
+ <name>classic rock</name>
33
+ <count>6</count>
34
+ <url>http://www.last.fm/tag/classic%20rock</url>
35
+ </tag> <tag>
36
+ <name>american</name>
37
+ <count>5</count>
38
+ <url>http://www.last.fm/tag/american</url>
39
+ </tag> <tag>
40
+ <name>thrash</name>
41
+ <count>4</count>
42
+ <url>http://www.last.fm/tag/thrash</url>
43
+ </tag> <tag>
44
+ <name>trash metal</name>
45
+ <count>4</count>
46
+ <url>http://www.last.fm/tag/trash%20metal</url>
47
+ </tag> <tag>
48
+ <name>80s</name>
49
+ <count>4</count>
50
+ <url>http://www.last.fm/tag/80s</url>
51
+ </tag> <tag>
52
+ <name>90s</name>
53
+ <count>2</count>
54
+ <url>http://www.last.fm/tag/90s</url>
55
+ </tag> <tag>
56
+ <name>alternative</name>
57
+ <count>1</count>
58
+ <url>http://www.last.fm/tag/alternative</url>
59
+ </tag> <tag>
60
+ <name>USA</name>
61
+ <count>1</count>
62
+ <url>http://www.last.fm/tag/usa</url>
63
+ </tag> <tag>
64
+ <name>alternative rock</name>
65
+ <count>1</count>
66
+ <url>http://www.last.fm/tag/alternative%20rock</url>
67
+ </tag> <tag>
68
+ <name>classic metal</name>
69
+ <count>1</count>
70
+ <url>http://www.last.fm/tag/classic%20metal</url>
71
+ </tag> <tag>
72
+ <name>heavy</name>
73
+ <count>1</count>
74
+ <url>http://www.last.fm/tag/heavy</url>
75
+ </tag> <tag>
76
+ <name>Progressive metal</name>
77
+ <count>1</count>
78
+ <url>http://www.last.fm/tag/progressive%20metal</url>
79
+ </tag> <tag>
80
+ <name>legends</name>
81
+ <count>0</count>
82
+ <url>http://www.last.fm/tag/legends</url>
83
+ </tag> <tag>
84
+ <name>favorites</name>
85
+ <count>0</count>
86
+ <url>http://www.last.fm/tag/favorites</url>
87
+ </tag> <tag>
88
+ <name>Power metal</name>
89
+ <count>0</count>
90
+ <url>http://www.last.fm/tag/power%20metal</url>
91
+ </tag> <tag>
92
+ <name>sell out</name>
93
+ <count>0</count>
94
+ <url>http://www.last.fm/tag/sell%20out</url>
95
+ </tag> <tag>
96
+ <name>punk</name>
97
+ <count>0</count>
98
+ <url>http://www.last.fm/tag/punk</url>
99
+ </tag> <tag>
100
+ <name>Nu Metal</name>
101
+ <count>0</count>
102
+ <url>http://www.last.fm/tag/nu%20metal</url>
103
+ </tag> <tag>
104
+ <name>pop</name>
105
+ <count>0</count>
106
+ <url>http://www.last.fm/tag/pop</url>
107
+ </tag> <tag>
108
+ <name>Awesome</name>
109
+ <count>0</count>
110
+ <url>http://www.last.fm/tag/awesome</url>
111
+ </tag> <tag>
112
+ <name>legend</name>
113
+ <count>0</count>
114
+ <url>http://www.last.fm/tag/legend</url>
115
+ </tag> <tag>
116
+ <name>hardcore</name>
117
+ <count>0</count>
118
+ <url>http://www.last.fm/tag/hardcore</url>
119
+ </tag> <tag>
120
+ <name>male vocalists</name>
121
+ <count>0</count>
122
+ <url>http://www.last.fm/tag/male%20vocalists</url>
123
+ </tag> <tag>
124
+ <name>guitar</name>
125
+ <count>0</count>
126
+ <url>http://www.last.fm/tag/guitar</url>
127
+ </tag> <tag>
128
+ <name>death metal</name>
129
+ <count>0</count>
130
+ <url>http://www.last.fm/tag/death%20metal</url>
131
+ </tag> <tag>
132
+ <name>bay area thrash metal</name>
133
+ <count>0</count>
134
+ <url>http://www.last.fm/tag/bay%20area%20thrash%20metal</url>
135
+ </tag> <tag>
136
+ <name>California</name>
137
+ <count>0</count>
138
+ <url>http://www.last.fm/tag/california</url>
139
+ </tag> <tag>
140
+ <name>00s</name>
141
+ <count>0</count>
142
+ <url>http://www.last.fm/tag/00s</url>
143
+ </tag> <tag>
144
+ <name>alternative metal</name>
145
+ <count>0</count>
146
+ <url>http://www.last.fm/tag/alternative%20metal</url>
147
+ </tag> <tag>
148
+ <name>Favourites</name>
149
+ <count>0</count>
150
+ <url>http://www.last.fm/tag/favourites</url>
151
+ </tag> <tag>
152
+ <name>Grunge</name>
153
+ <count>0</count>
154
+ <url>http://www.last.fm/tag/grunge</url>
155
+ </tag> <tag>
156
+ <name>indie</name>
157
+ <count>0</count>
158
+ <url>http://www.last.fm/tag/indie</url>
159
+ </tag> <tag>
160
+ <name>James Hetfield</name>
161
+ <count>0</count>
162
+ <url>http://www.last.fm/tag/james%20hetfield</url>
163
+ </tag> <tag>
164
+ <name>Trash</name>
165
+ <count>0</count>
166
+ <url>http://www.last.fm/tag/trash</url>
167
+ </tag> <tag>
168
+ <name>symphonic metal</name>
169
+ <count>0</count>
170
+ <url>http://www.last.fm/tag/symphonic%20metal</url>
171
+ </tag> <tag>
172
+ <name>Favorite Bands</name>
173
+ <count>0</count>
174
+ <url>http://www.last.fm/tag/favorite%20bands</url>
175
+ </tag> <tag>
176
+ <name>80s metal</name>
177
+ <count>0</count>
178
+ <url>http://www.last.fm/tag/80s%20metal</url>
179
+ </tag> <tag>
180
+ <name>overrated</name>
181
+ <count>0</count>
182
+ <url>http://www.last.fm/tag/overrated</url>
183
+ </tag> <tag>
184
+ <name>black metal</name>
185
+ <count>0</count>
186
+ <url>http://www.last.fm/tag/black%20metal</url>
187
+ </tag> <tag>
188
+ <name>Progressive rock</name>
189
+ <count>0</count>
190
+ <url>http://www.last.fm/tag/progressive%20rock</url>
191
+ </tag> <tag>
192
+ <name>Bay Area</name>
193
+ <count>0</count>
194
+ <url>http://www.last.fm/tag/bay%20area</url>
195
+ </tag> <tag>
196
+ <name>modern rock</name>
197
+ <count>0</count>
198
+ <url>http://www.last.fm/tag/modern%20rock</url>
199
+ </tag> <tag>
200
+ <name>punk rock</name>
201
+ <count>0</count>
202
+ <url>http://www.last.fm/tag/punk%20rock</url>
203
+ </tag> <tag>
204
+ <name>metalcore</name>
205
+ <count>0</count>
206
+ <url>http://www.last.fm/tag/metalcore</url>
207
+ </tag> <tag>
208
+ <name>instrumental</name>
209
+ <count>0</count>
210
+ <url>http://www.last.fm/tag/instrumental</url>
211
+ </tag> <tag>
212
+ <name>Melodic Death Metal</name>
213
+ <count>0</count>
214
+ <url>http://www.last.fm/tag/melodic%20death%20metal</url>
215
+ </tag> <tag>
216
+ <name>Favorite</name>
217
+ <count>0</count>
218
+ <url>http://www.last.fm/tag/favorite</url>
219
+ </tag> <tag>
220
+ <name>american metal</name>
221
+ <count>0</count>
222
+ <url>http://www.last.fm/tag/american%20metal</url>
223
+ </tag> <tag>
224
+ <name>classic</name>
225
+ <count>0</count>
226
+ <url>http://www.last.fm/tag/classic</url>
227
+ </tag> <tag>
228
+ <name>seen live</name>
229
+ <count>0</count>
230
+ <url>http://www.last.fm/tag/seen%20live</url>
231
+ </tag> <tag>
232
+ <name>favourite</name>
233
+ <count>0</count>
234
+ <url>http://www.last.fm/tag/favourite</url>
235
+ </tag> <tag>
236
+ <name>Lars Ulrich</name>
237
+ <count>0</count>
238
+ <url>http://www.last.fm/tag/lars%20ulrich</url>
239
+ </tag> <tag>
240
+ <name>Favorite Artists</name>
241
+ <count>0</count>
242
+ <url>http://www.last.fm/tag/favorite%20artists</url>
243
+ </tag> <tag>
244
+ <name>gods</name>
245
+ <count>0</count>
246
+ <url>http://www.last.fm/tag/gods</url>
247
+ </tag> <tag>
248
+ <name>Cliff Burton</name>
249
+ <count>0</count>
250
+ <url>http://www.last.fm/tag/cliff%20burton</url>
251
+ </tag> <tag>
252
+ <name>Hard</name>
253
+ <count>0</count>
254
+ <url>http://www.last.fm/tag/hard</url>
255
+ </tag> <tag>
256
+ <name>bay area thrash</name>
257
+ <count>0</count>
258
+ <url>http://www.last.fm/tag/bay%20area%20thrash</url>
259
+ </tag> <tag>
260
+ <name>sellout</name>
261
+ <count>0</count>
262
+ <url>http://www.last.fm/tag/sellout</url>
263
+ </tag> <tag>
264
+ <name>Favourite bands</name>
265
+ <count>0</count>
266
+ <url>http://www.last.fm/tag/favourite%20bands</url>
267
+ </tag> <tag>
268
+ <name>best</name>
269
+ <count>0</count>
270
+ <url>http://www.last.fm/tag/best</url>
271
+ </tag> <tag>
272
+ <name>industrial</name>
273
+ <count>0</count>
274
+ <url>http://www.last.fm/tag/industrial</url>
275
+ </tag> <tag>
276
+ <name>Gothic Metal</name>
277
+ <count>0</count>
278
+ <url>http://www.last.fm/tag/gothic%20metal</url>
279
+ </tag> <tag>
280
+ <name>my music</name>
281
+ <count>0</count>
282
+ <url>http://www.last.fm/tag/my%20music</url>
283
+ </tag> <tag>
284
+ <name>electronic</name>
285
+ <count>0</count>
286
+ <url>http://www.last.fm/tag/electronic</url>
287
+ </tag> <tag>
288
+ <name>indie rock</name>
289
+ <count>0</count>
290
+ <url>http://www.last.fm/tag/indie%20rock</url>
291
+ </tag> <tag>
292
+ <name>shit</name>
293
+ <count>0</count>
294
+ <url>http://www.last.fm/tag/shit</url>
295
+ </tag> <tag>
296
+ <name>Love</name>
297
+ <count>0</count>
298
+ <url>http://www.last.fm/tag/love</url>
299
+ </tag> <tag>
300
+ <name>female vocalists</name>
301
+ <count>0</count>
302
+ <url>http://www.last.fm/tag/female%20vocalists</url>
303
+ </tag> <tag>
304
+ <name>sellouts</name>
305
+ <count>0</count>
306
+ <url>http://www.last.fm/tag/sellouts</url>
307
+ </tag> <tag>
308
+ <name>melodic metal</name>
309
+ <count>0</count>
310
+ <url>http://www.last.fm/tag/melodic%20metal</url>
311
+ </tag> <tag>
312
+ <name>sell outs</name>
313
+ <count>0</count>
314
+ <url>http://www.last.fm/tag/sell%20outs</url>
315
+ </tag> <tag>
316
+ <name>Best Band EVER</name>
317
+ <count>0</count>
318
+ <url>http://www.last.fm/tag/best%20band%20ever</url>
319
+ </tag> <tag>
320
+ <name>master of puppets</name>
321
+ <count>0</count>
322
+ <url>http://www.last.fm/tag/master%20of%20puppets</url>
323
+ </tag> <tag>
324
+ <name>angry</name>
325
+ <count>0</count>
326
+ <url>http://www.last.fm/tag/angry</url>
327
+ </tag> <tag>
328
+ <name>english</name>
329
+ <count>0</count>
330
+ <url>http://www.last.fm/tag/english</url>
331
+ </tag> <tag>
332
+ <name>los angeles</name>
333
+ <count>0</count>
334
+ <url>http://www.last.fm/tag/los%20angeles</url>
335
+ </tag> <tag>
336
+ <name>Stoner Rock</name>
337
+ <count>0</count>
338
+ <url>http://www.last.fm/tag/stoner%20rock</url>
339
+ </tag> <tag>
340
+ <name>blues</name>
341
+ <count>0</count>
342
+ <url>http://www.last.fm/tag/blues</url>
343
+ </tag> <tag>
344
+ <name>favourite artists</name>
345
+ <count>0</count>
346
+ <url>http://www.last.fm/tag/favourite%20artists</url>
347
+ </tag> <tag>
348
+ <name>gay</name>
349
+ <count>0</count>
350
+ <url>http://www.last.fm/tag/gay</url>
351
+ </tag> <tag>
352
+ <name>hair metal</name>
353
+ <count>0</count>
354
+ <url>http://www.last.fm/tag/hair%20metal</url>
355
+ </tag> <tag>
356
+ <name>heavy rock</name>
357
+ <count>0</count>
358
+ <url>http://www.last.fm/tag/heavy%20rock</url>
359
+ </tag> <tag>
360
+ <name>oldies</name>
361
+ <count>0</count>
362
+ <url>http://www.last.fm/tag/oldies</url>
363
+ </tag> <tag>
364
+ <name>rock n roll</name>
365
+ <count>0</count>
366
+ <url>http://www.last.fm/tag/rock%20n%20roll</url>
367
+ </tag> <tag>
368
+ <name>Bands I have seen live</name>
369
+ <count>0</count>
370
+ <url>http://www.last.fm/tag/bands%20i%20have%20seen%20live</url>
371
+ </tag> <tag>
372
+ <name>rap</name>
373
+ <count>0</count>
374
+ <url>http://www.last.fm/tag/rap</url>
375
+ </tag> <tag>
376
+ <name>Gothic</name>
377
+ <count>0</count>
378
+ <url>http://www.last.fm/tag/gothic</url>
379
+ </tag> <tag>
380
+ <name>Classical</name>
381
+ <count>0</count>
382
+ <url>http://www.last.fm/tag/classical</url>
383
+ </tag> <tag>
384
+ <name>the best</name>
385
+ <count>0</count>
386
+ <url>http://www.last.fm/tag/the%20best</url>
387
+ </tag> <tag>
388
+ <name>Crap</name>
389
+ <count>0</count>
390
+ <url>http://www.last.fm/tag/crap</url>
391
+ </tag> <tag>
392
+ <name>mainstream</name>
393
+ <count>0</count>
394
+ <url>http://www.last.fm/tag/mainstream</url>
395
+ </tag> <tag>
396
+ <name>country</name>
397
+ <count>0</count>
398
+ <url>http://www.last.fm/tag/country</url>
399
+ </tag> <tag>
400
+ <name>us</name>
401
+ <count>0</count>
402
+ <url>http://www.last.fm/tag/us</url>
403
+ </tag></toptags></lfm>
@@ -0,0 +1,800 @@
1
+ <lfm status="ok">
2
+ <toptracks artist="Metallica">
3
+
4
+ <track rank="1">
5
+ <name>Nothing Else Matters</name>
6
+ <playcount>589812</playcount>
7
+ <listeners>123536</listeners>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Metallica/_/Nothing+Else+Matters</url>
10
+ <streamable fulltrack="0">0</streamable>
11
+ <artist>
12
+ <name>Metallica</name>
13
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
14
+ <url>http://www.last.fm/music/Metallica</url>
15
+ </artist>
16
+ <image size="small">http://userserve-ak.last.fm/serve/34s/43583277.jpg</image>
17
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/43583277.jpg</image>
18
+ <image size="large">http://userserve-ak.last.fm/serve/126/43583277.jpg</image>
19
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/43583277.jpg</image>
20
+ </track> <track rank="2">
21
+ <name>Enter Sandman</name>
22
+ <playcount>514542</playcount>
23
+ <listeners>121373</listeners>
24
+ <mbid></mbid>
25
+ <url>http://www.last.fm/music/Metallica/_/Enter+Sandman</url>
26
+ <streamable fulltrack="0">0</streamable>
27
+ <artist>
28
+ <name>Metallica</name>
29
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
30
+ <url>http://www.last.fm/music/Metallica</url>
31
+ </artist>
32
+ <image size="small">http://userserve-ak.last.fm/serve/34s/43583277.jpg</image>
33
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/43583277.jpg</image>
34
+ <image size="large">http://userserve-ak.last.fm/serve/126/43583277.jpg</image>
35
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/43583277.jpg</image>
36
+ </track> <track rank="3">
37
+ <name>One</name>
38
+ <playcount>450104</playcount>
39
+ <listeners>108872</listeners>
40
+ <mbid></mbid>
41
+ <url>http://www.last.fm/music/Metallica/_/One</url>
42
+ <streamable fulltrack="0">0</streamable>
43
+ <artist>
44
+ <name>Metallica</name>
45
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
46
+ <url>http://www.last.fm/music/Metallica</url>
47
+ </artist>
48
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8622947.jpg</image>
49
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8622947.jpg</image>
50
+ <image size="large">http://userserve-ak.last.fm/serve/126/8622947.jpg</image>
51
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8622947.jpg</image>
52
+ </track> <track rank="4">
53
+ <name>Master Of Puppets</name>
54
+ <playcount>464551</playcount>
55
+ <listeners>104447</listeners>
56
+ <mbid></mbid>
57
+ <url>http://www.last.fm/music/Metallica/_/Master+Of+Puppets</url>
58
+ <streamable fulltrack="0">0</streamable>
59
+ <artist>
60
+ <name>Metallica</name>
61
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
62
+ <url>http://www.last.fm/music/Metallica</url>
63
+ </artist>
64
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8622967.jpg</image>
65
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8622967.jpg</image>
66
+ <image size="large">http://userserve-ak.last.fm/serve/126/8622967.jpg</image>
67
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8622967.jpg</image>
68
+ </track> <track rank="5">
69
+ <name>The Unforgiven</name>
70
+ <playcount>389633</playcount>
71
+ <listeners>93838</listeners>
72
+ <mbid></mbid>
73
+ <url>http://www.last.fm/music/Metallica/_/The+Unforgiven</url>
74
+ <streamable fulltrack="0">0</streamable>
75
+ <artist>
76
+ <name>Metallica</name>
77
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
78
+ <url>http://www.last.fm/music/Metallica</url>
79
+ </artist>
80
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8622939.jpg</image>
81
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8622939.jpg</image>
82
+ <image size="large">http://userserve-ak.last.fm/serve/126/8622939.jpg</image>
83
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8622939.jpg</image>
84
+ </track> <track rank="6">
85
+ <name>Sad But True</name>
86
+ <playcount>344087</playcount>
87
+ <listeners>87436</listeners>
88
+ <mbid></mbid>
89
+ <url>http://www.last.fm/music/Metallica/_/Sad+But+True</url>
90
+ <streamable fulltrack="0">0</streamable>
91
+ <artist>
92
+ <name>Metallica</name>
93
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
94
+ <url>http://www.last.fm/music/Metallica</url>
95
+ </artist>
96
+ <image size="small">http://userserve-ak.last.fm/serve/34s/43583277.jpg</image>
97
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/43583277.jpg</image>
98
+ <image size="large">http://userserve-ak.last.fm/serve/126/43583277.jpg</image>
99
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/43583277.jpg</image>
100
+ </track> <track rank="7">
101
+ <name>Fade To Black</name>
102
+ <playcount>366052</playcount>
103
+ <listeners>81398</listeners>
104
+ <mbid></mbid>
105
+ <url>http://www.last.fm/music/Metallica/_/Fade+To+Black</url>
106
+ <streamable fulltrack="0">0</streamable>
107
+ <artist>
108
+ <name>Metallica</name>
109
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
110
+ <url>http://www.last.fm/music/Metallica</url>
111
+ </artist>
112
+ <image size="small">http://userserve-ak.last.fm/serve/34s/47614047.png</image>
113
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/47614047.png</image>
114
+ <image size="large">http://userserve-ak.last.fm/serve/126/47614047.png</image>
115
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/47614047.png</image>
116
+ </track> <track rank="8">
117
+ <name>Battery</name>
118
+ <playcount>308866</playcount>
119
+ <listeners>80619</listeners>
120
+ <mbid></mbid>
121
+ <url>http://www.last.fm/music/Metallica/_/Battery</url>
122
+ <streamable fulltrack="0">0</streamable>
123
+ <artist>
124
+ <name>Metallica</name>
125
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
126
+ <url>http://www.last.fm/music/Metallica</url>
127
+ </artist>
128
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8622967.jpg</image>
129
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8622967.jpg</image>
130
+ <image size="large">http://userserve-ak.last.fm/serve/126/8622967.jpg</image>
131
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8622967.jpg</image>
132
+ </track> <track rank="9">
133
+ <name>For Whom The Bell Tolls</name>
134
+ <playcount>353296</playcount>
135
+ <listeners>78607</listeners>
136
+ <mbid></mbid>
137
+ <url>http://www.last.fm/music/Metallica/_/For+Whom+The+Bell+Tolls</url>
138
+ <streamable fulltrack="0">0</streamable>
139
+ <artist>
140
+ <name>Metallica</name>
141
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
142
+ <url>http://www.last.fm/music/Metallica</url>
143
+ </artist>
144
+ <image size="small">http://userserve-ak.last.fm/serve/34s/47614047.png</image>
145
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/47614047.png</image>
146
+ <image size="large">http://userserve-ak.last.fm/serve/126/47614047.png</image>
147
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/47614047.png</image>
148
+ </track> <track rank="10">
149
+ <name>Wherever I May Roam</name>
150
+ <playcount>247204</playcount>
151
+ <listeners>71341</listeners>
152
+ <mbid></mbid>
153
+ <url>http://www.last.fm/music/Metallica/_/Wherever+I+May+Roam</url>
154
+ <streamable fulltrack="0">0</streamable>
155
+ <artist>
156
+ <name>Metallica</name>
157
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
158
+ <url>http://www.last.fm/music/Metallica</url>
159
+ </artist>
160
+ <image size="small">http://userserve-ak.last.fm/serve/34s/43583277.jpg</image>
161
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/43583277.jpg</image>
162
+ <image size="large">http://userserve-ak.last.fm/serve/126/43583277.jpg</image>
163
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/43583277.jpg</image>
164
+ </track> <track rank="11">
165
+ <name>The Day That Never Comes</name>
166
+ <playcount>294768</playcount>
167
+ <listeners>69802</listeners>
168
+ <mbid></mbid>
169
+ <url>http://www.last.fm/music/Metallica/_/The+Day+That+Never+Comes</url>
170
+ <streamable fulltrack="0">0</streamable>
171
+ <artist>
172
+ <name>Metallica</name>
173
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
174
+ <url>http://www.last.fm/music/Metallica</url>
175
+ </artist>
176
+ <image size="small">http://userserve-ak.last.fm/serve/34s/37283587.jpg</image>
177
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/37283587.jpg</image>
178
+ <image size="large">http://userserve-ak.last.fm/serve/126/37283587.jpg</image>
179
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/37283587.jpg</image>
180
+ </track> <track rank="12">
181
+ <name>Fuel</name>
182
+ <playcount>264118</playcount>
183
+ <listeners>66295</listeners>
184
+ <mbid></mbid>
185
+ <url>http://www.last.fm/music/Metallica/_/Fuel</url>
186
+ <streamable fulltrack="0">0</streamable>
187
+ <artist>
188
+ <name>Metallica</name>
189
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
190
+ <url>http://www.last.fm/music/Metallica</url>
191
+ </artist>
192
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8600317.jpg</image>
193
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8600317.jpg</image>
194
+ <image size="large">http://userserve-ak.last.fm/serve/126/8600317.jpg</image>
195
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8600317.jpg</image>
196
+ </track> <track rank="13">
197
+ <name>Of Wolf And Man</name>
198
+ <playcount>194958</playcount>
199
+ <listeners>59790</listeners>
200
+ <mbid></mbid>
201
+ <url>http://www.last.fm/music/Metallica/_/Of+Wolf+And+Man</url>
202
+ <streamable fulltrack="0">0</streamable>
203
+ <artist>
204
+ <name>Metallica</name>
205
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
206
+ <url>http://www.last.fm/music/Metallica</url>
207
+ </artist>
208
+ <image size="small">http://userserve-ak.last.fm/serve/34s/43583277.jpg</image>
209
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/43583277.jpg</image>
210
+ <image size="large">http://userserve-ak.last.fm/serve/126/43583277.jpg</image>
211
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/43583277.jpg</image>
212
+ </track> <track rank="14">
213
+ <name>Welcome Home (Sanitarium)</name>
214
+ <playcount>210284</playcount>
215
+ <listeners>57841</listeners>
216
+ <mbid></mbid>
217
+ <url>http://www.last.fm/music/Metallica/_/Welcome+Home+%28Sanitarium%29</url>
218
+ <streamable fulltrack="0">0</streamable>
219
+ <artist>
220
+ <name>Metallica</name>
221
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
222
+ <url>http://www.last.fm/music/Metallica</url>
223
+ </artist>
224
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4182576.jpg</image>
225
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4182576.jpg</image>
226
+ <image size="large">http://userserve-ak.last.fm/serve/126/4182576.jpg</image>
227
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/4182576.jpg</image>
228
+ </track> <track rank="15">
229
+ <name>Whiskey in the Jar</name>
230
+ <playcount>231432</playcount>
231
+ <listeners>56788</listeners>
232
+ <mbid></mbid>
233
+ <url>http://www.last.fm/music/Metallica/_/Whiskey+in+the+Jar</url>
234
+ <streamable fulltrack="0">0</streamable>
235
+ <artist>
236
+ <name>Metallica</name>
237
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
238
+ <url>http://www.last.fm/music/Metallica</url>
239
+ </artist>
240
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8811213.jpg</image>
241
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8811213.jpg</image>
242
+ <image size="large">http://userserve-ak.last.fm/serve/126/8811213.jpg</image>
243
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8811213.jpg</image>
244
+ </track> <track rank="16">
245
+ <name>The Thing That Should Not Be</name>
246
+ <playcount>172656</playcount>
247
+ <listeners>56328</listeners>
248
+ <mbid></mbid>
249
+ <url>http://www.last.fm/music/Metallica/_/The+Thing+That+Should+Not+Be</url>
250
+ <streamable fulltrack="0">0</streamable>
251
+ <artist>
252
+ <name>Metallica</name>
253
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
254
+ <url>http://www.last.fm/music/Metallica</url>
255
+ </artist>
256
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8622967.jpg</image>
257
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8622967.jpg</image>
258
+ <image size="large">http://userserve-ak.last.fm/serve/126/8622967.jpg</image>
259
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8622967.jpg</image>
260
+ </track> <track rank="17">
261
+ <name>All Nightmare Long</name>
262
+ <playcount>220536</playcount>
263
+ <listeners>56296</listeners>
264
+ <mbid></mbid>
265
+ <url>http://www.last.fm/music/Metallica/_/All+Nightmare+Long</url>
266
+ <streamable fulltrack="0">0</streamable>
267
+ <artist>
268
+ <name>Metallica</name>
269
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
270
+ <url>http://www.last.fm/music/Metallica</url>
271
+ </artist>
272
+ <image size="small">http://userserve-ak.last.fm/serve/34s/37283587.jpg</image>
273
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/37283587.jpg</image>
274
+ <image size="large">http://userserve-ak.last.fm/serve/126/37283587.jpg</image>
275
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/37283587.jpg</image>
276
+ </track> <track rank="18">
277
+ <name>Creeping Death</name>
278
+ <playcount>217175</playcount>
279
+ <listeners>55285</listeners>
280
+ <mbid></mbid>
281
+ <url>http://www.last.fm/music/Metallica/_/Creeping+Death</url>
282
+ <streamable fulltrack="0">0</streamable>
283
+ <artist>
284
+ <name>Metallica</name>
285
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
286
+ <url>http://www.last.fm/music/Metallica</url>
287
+ </artist>
288
+ <image size="small">http://userserve-ak.last.fm/serve/34s/47614047.png</image>
289
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/47614047.png</image>
290
+ <image size="large">http://userserve-ak.last.fm/serve/126/47614047.png</image>
291
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/47614047.png</image>
292
+ </track> <track rank="19">
293
+ <name>Blackened</name>
294
+ <playcount>183099</playcount>
295
+ <listeners>53518</listeners>
296
+ <mbid></mbid>
297
+ <url>http://www.last.fm/music/Metallica/_/Blackened</url>
298
+ <streamable fulltrack="0">0</streamable>
299
+ <artist>
300
+ <name>Metallica</name>
301
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
302
+ <url>http://www.last.fm/music/Metallica</url>
303
+ </artist>
304
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8622947.jpg</image>
305
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8622947.jpg</image>
306
+ <image size="large">http://userserve-ak.last.fm/serve/126/8622947.jpg</image>
307
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8622947.jpg</image>
308
+ </track> <track rank="20">
309
+ <name>The Unforgiven III</name>
310
+ <playcount>198765</playcount>
311
+ <listeners>52340</listeners>
312
+ <mbid></mbid>
313
+ <url>http://www.last.fm/music/Metallica/_/The+Unforgiven+III</url>
314
+ <streamable fulltrack="0">0</streamable>
315
+ <artist>
316
+ <name>Metallica</name>
317
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
318
+ <url>http://www.last.fm/music/Metallica</url>
319
+ </artist>
320
+ <image size="small">http://userserve-ak.last.fm/serve/34s/37283587.jpg</image>
321
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/37283587.jpg</image>
322
+ <image size="large">http://userserve-ak.last.fm/serve/126/37283587.jpg</image>
323
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/37283587.jpg</image>
324
+ </track> <track rank="21">
325
+ <name>Ride The Lightning</name>
326
+ <playcount>178160</playcount>
327
+ <listeners>52165</listeners>
328
+ <mbid></mbid>
329
+ <url>http://www.last.fm/music/Metallica/_/Ride+The+Lightning</url>
330
+ <streamable fulltrack="0">0</streamable>
331
+ <artist>
332
+ <name>Metallica</name>
333
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
334
+ <url>http://www.last.fm/music/Metallica</url>
335
+ </artist>
336
+ <image size="small">http://userserve-ak.last.fm/serve/34s/47614047.png</image>
337
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/47614047.png</image>
338
+ <image size="large">http://userserve-ak.last.fm/serve/126/47614047.png</image>
339
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/47614047.png</image>
340
+ </track> <track rank="22">
341
+ <name>The Memory Remains</name>
342
+ <playcount>185372</playcount>
343
+ <listeners>52084</listeners>
344
+ <mbid></mbid>
345
+ <url>http://www.last.fm/music/Metallica/_/The+Memory+Remains</url>
346
+ <streamable fulltrack="0">0</streamable>
347
+ <artist>
348
+ <name>Metallica</name>
349
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
350
+ <url>http://www.last.fm/music/Metallica</url>
351
+ </artist>
352
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8600317.jpg</image>
353
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8600317.jpg</image>
354
+ <image size="large">http://userserve-ak.last.fm/serve/126/8600317.jpg</image>
355
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8600317.jpg</image>
356
+ </track> <track rank="23">
357
+ <name>That Was Just Your Life</name>
358
+ <playcount>165174</playcount>
359
+ <listeners>49372</listeners>
360
+ <mbid></mbid>
361
+ <url>http://www.last.fm/music/Metallica/_/That+Was+Just+Your+Life</url>
362
+ <streamable fulltrack="0">0</streamable>
363
+ <artist>
364
+ <name>Metallica</name>
365
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
366
+ <url>http://www.last.fm/music/Metallica</url>
367
+ </artist>
368
+ <image size="small">http://userserve-ak.last.fm/serve/34s/37283587.jpg</image>
369
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/37283587.jpg</image>
370
+ <image size="large">http://userserve-ak.last.fm/serve/126/37283587.jpg</image>
371
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/37283587.jpg</image>
372
+ </track> <track rank="24">
373
+ <name>The Unforgiven II</name>
374
+ <playcount>198969</playcount>
375
+ <listeners>49323</listeners>
376
+ <mbid></mbid>
377
+ <url>http://www.last.fm/music/Metallica/_/The+Unforgiven+II</url>
378
+ <streamable fulltrack="0">0</streamable>
379
+ <artist>
380
+ <name>Metallica</name>
381
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
382
+ <url>http://www.last.fm/music/Metallica</url>
383
+ </artist>
384
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8600317.jpg</image>
385
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8600317.jpg</image>
386
+ <image size="large">http://userserve-ak.last.fm/serve/126/8600317.jpg</image>
387
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8600317.jpg</image>
388
+ </track> <track rank="25">
389
+ <name>The End Of The Line</name>
390
+ <playcount>154939</playcount>
391
+ <listeners>48718</listeners>
392
+ <mbid></mbid>
393
+ <url>http://www.last.fm/music/Metallica/_/The+End+Of+The+Line</url>
394
+ <streamable fulltrack="0">0</streamable>
395
+ <artist>
396
+ <name>Metallica</name>
397
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
398
+ <url>http://www.last.fm/music/Metallica</url>
399
+ </artist>
400
+ <image size="small">http://userserve-ak.last.fm/serve/34s/37283587.jpg</image>
401
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/37283587.jpg</image>
402
+ <image size="large">http://userserve-ak.last.fm/serve/126/37283587.jpg</image>
403
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/37283587.jpg</image>
404
+ </track> <track rank="26">
405
+ <name>Until It Sleeps</name>
406
+ <playcount>169801</playcount>
407
+ <listeners>48558</listeners>
408
+ <mbid></mbid>
409
+ <url>http://www.last.fm/music/Metallica/_/Until+It+Sleeps</url>
410
+ <streamable fulltrack="0">0</streamable>
411
+ <artist>
412
+ <name>Metallica</name>
413
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
414
+ <url>http://www.last.fm/music/Metallica</url>
415
+ </artist>
416
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8622963.jpg</image>
417
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8622963.jpg</image>
418
+ <image size="large">http://userserve-ak.last.fm/serve/126/8622963.jpg</image>
419
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8622963.jpg</image>
420
+ </track> <track rank="27">
421
+ <name>Holier Than Thou</name>
422
+ <playcount>137153</playcount>
423
+ <listeners>48466</listeners>
424
+ <mbid></mbid>
425
+ <url>http://www.last.fm/music/Metallica/_/Holier+Than+Thou</url>
426
+ <streamable fulltrack="0">0</streamable>
427
+ <artist>
428
+ <name>Metallica</name>
429
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
430
+ <url>http://www.last.fm/music/Metallica</url>
431
+ </artist>
432
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8622939.jpg</image>
433
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8622939.jpg</image>
434
+ <image size="large">http://userserve-ak.last.fm/serve/126/8622939.jpg</image>
435
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8622939.jpg</image>
436
+ </track> <track rank="28">
437
+ <name>Cyanide</name>
438
+ <playcount>157071</playcount>
439
+ <listeners>48000</listeners>
440
+ <mbid></mbid>
441
+ <url>http://www.last.fm/music/Metallica/_/Cyanide</url>
442
+ <streamable fulltrack="0">0</streamable>
443
+ <artist>
444
+ <name>Metallica</name>
445
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
446
+ <url>http://www.last.fm/music/Metallica</url>
447
+ </artist>
448
+ <image size="small">http://userserve-ak.last.fm/serve/34s/37283587.jpg</image>
449
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/37283587.jpg</image>
450
+ <image size="large">http://userserve-ak.last.fm/serve/126/37283587.jpg</image>
451
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/37283587.jpg</image>
452
+ </track> <track rank="29">
453
+ <name>Harvester Of Sorrow</name>
454
+ <playcount>148757</playcount>
455
+ <listeners>46907</listeners>
456
+ <mbid></mbid>
457
+ <url>http://www.last.fm/music/Metallica/_/Harvester+Of+Sorrow</url>
458
+ <streamable fulltrack="0">0</streamable>
459
+ <artist>
460
+ <name>Metallica</name>
461
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
462
+ <url>http://www.last.fm/music/Metallica</url>
463
+ </artist>
464
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8622947.jpg</image>
465
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8622947.jpg</image>
466
+ <image size="large">http://userserve-ak.last.fm/serve/126/8622947.jpg</image>
467
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8622947.jpg</image>
468
+ </track> <track rank="30">
469
+ <name>Fight Fire With Fire</name>
470
+ <playcount>154356</playcount>
471
+ <listeners>46856</listeners>
472
+ <mbid></mbid>
473
+ <url>http://www.last.fm/music/Metallica/_/Fight+Fire+With+Fire</url>
474
+ <streamable fulltrack="0">0</streamable>
475
+ <artist>
476
+ <name>Metallica</name>
477
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
478
+ <url>http://www.last.fm/music/Metallica</url>
479
+ </artist>
480
+ <image size="small">http://userserve-ak.last.fm/serve/34s/47614047.png</image>
481
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/47614047.png</image>
482
+ <image size="large">http://userserve-ak.last.fm/serve/126/47614047.png</image>
483
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/47614047.png</image>
484
+ </track> <track rank="31">
485
+ <name>Disposable Heroes</name>
486
+ <playcount>138826</playcount>
487
+ <listeners>46395</listeners>
488
+ <mbid></mbid>
489
+ <url>http://www.last.fm/music/Metallica/_/Disposable+Heroes</url>
490
+ <streamable fulltrack="0">0</streamable>
491
+ <artist>
492
+ <name>Metallica</name>
493
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
494
+ <url>http://www.last.fm/music/Metallica</url>
495
+ </artist>
496
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8622967.jpg</image>
497
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8622967.jpg</image>
498
+ <image size="large">http://userserve-ak.last.fm/serve/126/8622967.jpg</image>
499
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8622967.jpg</image>
500
+ </track> <track rank="32">
501
+ <name>The Call Of Ktulu</name>
502
+ <playcount>143798</playcount>
503
+ <listeners>45479</listeners>
504
+ <mbid></mbid>
505
+ <url>http://www.last.fm/music/Metallica/_/The+Call+Of+Ktulu</url>
506
+ <streamable fulltrack="0">0</streamable>
507
+ <artist>
508
+ <name>Metallica</name>
509
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
510
+ <url>http://www.last.fm/music/Metallica</url>
511
+ </artist>
512
+ <image size="small">http://userserve-ak.last.fm/serve/34s/47614047.png</image>
513
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/47614047.png</image>
514
+ <image size="large">http://userserve-ak.last.fm/serve/126/47614047.png</image>
515
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/47614047.png</image>
516
+ </track> <track rank="33">
517
+ <name>Hero Of The Day</name>
518
+ <playcount>151625</playcount>
519
+ <listeners>45217</listeners>
520
+ <mbid></mbid>
521
+ <url>http://www.last.fm/music/Metallica/_/Hero+Of+The+Day</url>
522
+ <streamable fulltrack="0">0</streamable>
523
+ <artist>
524
+ <name>Metallica</name>
525
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
526
+ <url>http://www.last.fm/music/Metallica</url>
527
+ </artist>
528
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8622963.jpg</image>
529
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8622963.jpg</image>
530
+ <image size="large">http://userserve-ak.last.fm/serve/126/8622963.jpg</image>
531
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8622963.jpg</image>
532
+ </track> <track rank="34">
533
+ <name>Through The Never</name>
534
+ <playcount>127127</playcount>
535
+ <listeners>45000</listeners>
536
+ <mbid></mbid>
537
+ <url>http://www.last.fm/music/Metallica/_/Through+The+Never</url>
538
+ <streamable fulltrack="0">0</streamable>
539
+ <artist>
540
+ <name>Metallica</name>
541
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
542
+ <url>http://www.last.fm/music/Metallica</url>
543
+ </artist>
544
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8622939.jpg</image>
545
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8622939.jpg</image>
546
+ <image size="large">http://userserve-ak.last.fm/serve/126/8622939.jpg</image>
547
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8622939.jpg</image>
548
+ </track> <track rank="35">
549
+ <name>Whiplash</name>
550
+ <playcount>151991</playcount>
551
+ <listeners>44601</listeners>
552
+ <mbid></mbid>
553
+ <url>http://www.last.fm/music/Metallica/_/Whiplash</url>
554
+ <streamable fulltrack="0">0</streamable>
555
+ <artist>
556
+ <name>Metallica</name>
557
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
558
+ <url>http://www.last.fm/music/Metallica</url>
559
+ </artist>
560
+ </track> <track rank="36">
561
+ <name>Motorbreath</name>
562
+ <playcount>150860</playcount>
563
+ <listeners>43760</listeners>
564
+ <mbid></mbid>
565
+ <url>http://www.last.fm/music/Metallica/_/Motorbreath</url>
566
+ <streamable fulltrack="0">0</streamable>
567
+ <artist>
568
+ <name>Metallica</name>
569
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
570
+ <url>http://www.last.fm/music/Metallica</url>
571
+ </artist>
572
+ <image size="small">http://userserve-ak.last.fm/serve/34s/47614293.png</image>
573
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/47614293.png</image>
574
+ <image size="large">http://userserve-ak.last.fm/serve/126/47614293.png</image>
575
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/47614293.png</image>
576
+ </track> <track rank="37">
577
+ <name>Don't Tread On Me</name>
578
+ <playcount>118766</playcount>
579
+ <listeners>43275</listeners>
580
+ <mbid></mbid>
581
+ <url>http://www.last.fm/music/Metallica/_/Don%27t+Tread+On+Me</url>
582
+ <streamable fulltrack="0">0</streamable>
583
+ <artist>
584
+ <name>Metallica</name>
585
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
586
+ <url>http://www.last.fm/music/Metallica</url>
587
+ </artist>
588
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8622939.jpg</image>
589
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8622939.jpg</image>
590
+ <image size="large">http://userserve-ak.last.fm/serve/126/8622939.jpg</image>
591
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8622939.jpg</image>
592
+ </track> <track rank="38">
593
+ <name>The God That Failed</name>
594
+ <playcount>117331</playcount>
595
+ <listeners>42886</listeners>
596
+ <mbid></mbid>
597
+ <url>http://www.last.fm/music/Metallica/_/The+God+That+Failed</url>
598
+ <streamable fulltrack="0">0</streamable>
599
+ <artist>
600
+ <name>Metallica</name>
601
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
602
+ <url>http://www.last.fm/music/Metallica</url>
603
+ </artist>
604
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8622939.jpg</image>
605
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8622939.jpg</image>
606
+ <image size="large">http://userserve-ak.last.fm/serve/126/8622939.jpg</image>
607
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8622939.jpg</image>
608
+ </track> <track rank="39">
609
+ <name>The Four Horsemen</name>
610
+ <playcount>138890</playcount>
611
+ <listeners>42645</listeners>
612
+ <mbid></mbid>
613
+ <url>http://www.last.fm/music/Metallica/_/The+Four+Horsemen</url>
614
+ <streamable fulltrack="0">0</streamable>
615
+ <artist>
616
+ <name>Metallica</name>
617
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
618
+ <url>http://www.last.fm/music/Metallica</url>
619
+ </artist>
620
+ <image size="small">http://userserve-ak.last.fm/serve/34s/47614293.png</image>
621
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/47614293.png</image>
622
+ <image size="large">http://userserve-ak.last.fm/serve/126/47614293.png</image>
623
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/47614293.png</image>
624
+ </track> <track rank="40">
625
+ <name>Leper Messiah</name>
626
+ <playcount>120254</playcount>
627
+ <listeners>42394</listeners>
628
+ <mbid></mbid>
629
+ <url>http://www.last.fm/music/Metallica/_/Leper+Messiah</url>
630
+ <streamable fulltrack="0">0</streamable>
631
+ <artist>
632
+ <name>Metallica</name>
633
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
634
+ <url>http://www.last.fm/music/Metallica</url>
635
+ </artist>
636
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8622967.jpg</image>
637
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8622967.jpg</image>
638
+ <image size="large">http://userserve-ak.last.fm/serve/126/8622967.jpg</image>
639
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8622967.jpg</image>
640
+ </track> <track rank="41">
641
+ <name>My Friend Of Misery</name>
642
+ <playcount>117252</playcount>
643
+ <listeners>42285</listeners>
644
+ <mbid></mbid>
645
+ <url>http://www.last.fm/music/Metallica/_/My+Friend+Of+Misery</url>
646
+ <streamable fulltrack="0">0</streamable>
647
+ <artist>
648
+ <name>Metallica</name>
649
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
650
+ <url>http://www.last.fm/music/Metallica</url>
651
+ </artist>
652
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8622939.jpg</image>
653
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8622939.jpg</image>
654
+ <image size="large">http://userserve-ak.last.fm/serve/126/8622939.jpg</image>
655
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8622939.jpg</image>
656
+ </track> <track rank="42">
657
+ <name>Hit The Lights</name>
658
+ <playcount>132679</playcount>
659
+ <listeners>42162</listeners>
660
+ <mbid></mbid>
661
+ <url>http://www.last.fm/music/Metallica/_/Hit+The+Lights</url>
662
+ <streamable fulltrack="0">0</streamable>
663
+ <artist>
664
+ <name>Metallica</name>
665
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
666
+ <url>http://www.last.fm/music/Metallica</url>
667
+ </artist>
668
+ <image size="small">http://userserve-ak.last.fm/serve/34s/47614293.png</image>
669
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/47614293.png</image>
670
+ <image size="large">http://userserve-ak.last.fm/serve/126/47614293.png</image>
671
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/47614293.png</image>
672
+ </track> <track rank="43">
673
+ <name>My Apocalypse</name>
674
+ <playcount>126603</playcount>
675
+ <listeners>41787</listeners>
676
+ <mbid></mbid>
677
+ <url>http://www.last.fm/music/Metallica/_/My+Apocalypse</url>
678
+ <streamable fulltrack="0">0</streamable>
679
+ <artist>
680
+ <name>Metallica</name>
681
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
682
+ <url>http://www.last.fm/music/Metallica</url>
683
+ </artist>
684
+ <image size="small">http://userserve-ak.last.fm/serve/34s/37283587.jpg</image>
685
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/37283587.jpg</image>
686
+ <image size="large">http://userserve-ak.last.fm/serve/126/37283587.jpg</image>
687
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/37283587.jpg</image>
688
+ </track> <track rank="44">
689
+ <name>Broken, Beat &amp; Scarred</name>
690
+ <playcount>137102</playcount>
691
+ <listeners>41374</listeners>
692
+ <mbid></mbid>
693
+ <url>http://www.last.fm/music/Metallica/_/Broken%252C%2BBeat%2B%2526%2BScarred</url>
694
+ <streamable fulltrack="0">0</streamable>
695
+ <artist>
696
+ <name>Metallica</name>
697
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
698
+ <url>http://www.last.fm/music/Metallica</url>
699
+ </artist>
700
+ <image size="small">http://userserve-ak.last.fm/serve/34s/37283587.jpg</image>
701
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/37283587.jpg</image>
702
+ <image size="large">http://userserve-ak.last.fm/serve/126/37283587.jpg</image>
703
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/37283587.jpg</image>
704
+ </track> <track rank="45">
705
+ <name>Trapped Under Ice</name>
706
+ <playcount>124210</playcount>
707
+ <listeners>41364</listeners>
708
+ <mbid></mbid>
709
+ <url>http://www.last.fm/music/Metallica/_/Trapped+Under+Ice</url>
710
+ <streamable fulltrack="0">0</streamable>
711
+ <artist>
712
+ <name>Metallica</name>
713
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
714
+ <url>http://www.last.fm/music/Metallica</url>
715
+ </artist>
716
+ <image size="small">http://userserve-ak.last.fm/serve/34s/47614047.png</image>
717
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/47614047.png</image>
718
+ <image size="large">http://userserve-ak.last.fm/serve/126/47614047.png</image>
719
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/47614047.png</image>
720
+ </track> <track rank="46">
721
+ <name>The Judas Kiss</name>
722
+ <playcount>116259</playcount>
723
+ <listeners>39561</listeners>
724
+ <mbid></mbid>
725
+ <url>http://www.last.fm/music/Metallica/_/The+Judas+Kiss</url>
726
+ <streamable fulltrack="0">0</streamable>
727
+ <artist>
728
+ <name>Metallica</name>
729
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
730
+ <url>http://www.last.fm/music/Metallica</url>
731
+ </artist>
732
+ <image size="small">http://userserve-ak.last.fm/serve/34s/37283587.jpg</image>
733
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/37283587.jpg</image>
734
+ <image size="large">http://userserve-ak.last.fm/serve/126/37283587.jpg</image>
735
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/37283587.jpg</image>
736
+ </track> <track rank="47">
737
+ <name>Turn the Page</name>
738
+ <playcount>144982</playcount>
739
+ <listeners>39314</listeners>
740
+ <mbid></mbid>
741
+ <url>http://www.last.fm/music/Metallica/_/Turn+the+Page</url>
742
+ <streamable fulltrack="0">0</streamable>
743
+ <artist>
744
+ <name>Metallica</name>
745
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
746
+ <url>http://www.last.fm/music/Metallica</url>
747
+ </artist>
748
+ <image size="small">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
749
+ <image size="medium">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
750
+ <image size="large">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
751
+ <image size="extralarge">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
752
+ </track> <track rank="48">
753
+ <name>Escape</name>
754
+ <playcount>108213</playcount>
755
+ <listeners>39023</listeners>
756
+ <mbid></mbid>
757
+ <url>http://www.last.fm/music/Metallica/_/Escape</url>
758
+ <streamable fulltrack="0">0</streamable>
759
+ <artist>
760
+ <name>Metallica</name>
761
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
762
+ <url>http://www.last.fm/music/Metallica</url>
763
+ </artist>
764
+ <image size="small">http://userserve-ak.last.fm/serve/34s/47614047.png</image>
765
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/47614047.png</image>
766
+ <image size="large">http://userserve-ak.last.fm/serve/126/47614047.png</image>
767
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/47614047.png</image>
768
+ </track> <track rank="49">
769
+ <name>Eye Of The Beholder</name>
770
+ <playcount>105019</playcount>
771
+ <listeners>38716</listeners>
772
+ <mbid></mbid>
773
+ <url>http://www.last.fm/music/Metallica/_/Eye+Of+The+Beholder</url>
774
+ <streamable fulltrack="0">0</streamable>
775
+ <artist>
776
+ <name>Metallica</name>
777
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
778
+ <url>http://www.last.fm/music/Metallica</url>
779
+ </artist>
780
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8622947.jpg</image>
781
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8622947.jpg</image>
782
+ <image size="large">http://userserve-ak.last.fm/serve/126/8622947.jpg</image>
783
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8622947.jpg</image>
784
+ </track> <track rank="50">
785
+ <name>The Shortest Straw</name>
786
+ <playcount>106838</playcount>
787
+ <listeners>38218</listeners>
788
+ <mbid></mbid>
789
+ <url>http://www.last.fm/music/Metallica/_/The+Shortest+Straw</url>
790
+ <streamable fulltrack="0">0</streamable>
791
+ <artist>
792
+ <name>Metallica</name>
793
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
794
+ <url>http://www.last.fm/music/Metallica</url>
795
+ </artist>
796
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8622947.jpg</image>
797
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8622947.jpg</image>
798
+ <image size="large">http://userserve-ak.last.fm/serve/126/8622947.jpg</image>
799
+ <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8622947.jpg</image>
800
+ </track></toptracks></lfm>