rockstar 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
data/.travis.yml ADDED
@@ -0,0 +1,6 @@
1
+ notifications:
2
+ recipients:
3
+ - bodo@wannawork.de
4
+ rvm:
5
+ - 1.8.7
6
+ - 1.9.2
data/Gemfile ADDED
@@ -0,0 +1,11 @@
1
+ # A sample Gemfile
2
+ source "http://rubygems.org"
3
+
4
+ gem "rake"
5
+ gem "hpricot", ">=0.4.86"
6
+ gem "i18n"
7
+ gem "activesupport", ">=1.4.2"
8
+
9
+ group :development do
10
+ gem "jeweler"
11
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,22 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ activesupport (3.0.8)
5
+ git (1.2.5)
6
+ hpricot (0.8.4)
7
+ i18n (0.5.0)
8
+ jeweler (1.5.2)
9
+ bundler (~> 1.0.0)
10
+ git (>= 1.2.5)
11
+ rake
12
+ rake (0.8.7)
13
+
14
+ PLATFORMS
15
+ ruby
16
+
17
+ DEPENDENCIES
18
+ activesupport (>= 1.4.2)
19
+ hpricot (>= 0.4.86)
20
+ i18n
21
+ jeweler
22
+ rake
data/Rakefile CHANGED
@@ -27,6 +27,6 @@ Rake::TestTask.new(:test) do |test|
27
27
  test.verbose = true
28
28
  end
29
29
 
30
- task :test => :check_dependencies
30
+ #task :test => :check_dependencies
31
31
 
32
32
  task :default => :test
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.6.0
1
+ 0.6.1
@@ -152,11 +152,30 @@ module Rockstar
152
152
 
153
153
  def image(which=:medium)
154
154
  which = which.to_s
155
- raise ArgumentError unless ['small', 'medium', 'large', 'extralarge'].include?(which)
156
- if (self.images.nil?)
157
- load_info
158
- end
155
+ raise ArgumentError unless ['small', 'medium', 'large', 'extralarge'].include?(which)
156
+ load_info if self.images.nil?
159
157
  self.images[which]
160
158
  end
159
+
160
+ def user_images(opts={})
161
+ if mbid.nil?
162
+ opts[:artist] = name
163
+ else
164
+ opts[:mbid] = mbid
165
+ end
166
+
167
+ images = []
168
+ image_doc = self.class.fetch_and_parse("artist.getImages", opts, false)
169
+ (image_doc/'image').each do |xml|
170
+ image_sizes = {}
171
+ xml.search('/sizes/size').each do |image|
172
+ image_sizes[image['name']] = image.inner_html
173
+ end
174
+
175
+ images << image_sizes
176
+ end
177
+
178
+ images
179
+ end
161
180
  end
162
181
  end
@@ -42,7 +42,7 @@ class RequestFailedError < StandardError; end
42
42
  module Rockstar
43
43
  class Track < Base
44
44
  attr_accessor :artist, :artist_mbid, :name, :mbid, :playcount, :rank, :url
45
- attr_accessor :summary, :content, :streamable, :album, :album_mbid, :date, :date_uts
45
+ attr_accessor :summary, :content, :streamable, :album, :album_mbid, :date, :date_uts, :duration
46
46
 
47
47
  # only seems to be used on top tracks for tag
48
48
  attr_accessor :count, :thumbnail, :image, :images
@@ -187,6 +187,7 @@ module Rockstar
187
187
  self.url = Base.fix_url((xml).at(:url).inner_html) if (xml).at(:url)
188
188
  self.streamable = (xml).at(:track)['streamable'] if (xml).at(:track) && (xml).at(:track)['streamable']
189
189
  self.streamable = (xml).at(:streamable).inner_html == '1' ? 'yes' : 'no' if streamable.nil? && (xml).at(:streamable)
190
+ self.duration = (xml).at(:duration).inner_html.to_i if (xml).at(:duration)
190
191
 
191
192
  self.count = xml['count'] if xml['count']
192
193
  self.album = (xml).at(:album).inner_html if (xml).at(:album)
data/lib/rockstar/user.rb CHANGED
@@ -47,7 +47,7 @@
47
47
  module Rockstar
48
48
  class User < Base
49
49
  # attributes needed to initialize
50
- attr_reader :username
50
+ attr_reader :username, :period
51
51
 
52
52
  # profile attributes
53
53
  attr_accessor :id, :cluster, :url, :realname, :mbox_sha1sum, :registered
@@ -86,9 +86,10 @@ module Rockstar
86
86
  end
87
87
 
88
88
  def initialize(username, o={})
89
- options = {:include_profile => false}.merge(o)
89
+ options = {:include_profile => false, :period => 'overall'}.merge(o)
90
90
  raise ArgumentError if username.blank?
91
91
  @username = username
92
+ @period = options[:period]
92
93
  load_profile() if options[:include_profile]
93
94
  end
94
95
 
@@ -125,7 +126,7 @@ module Rockstar
125
126
  end
126
127
 
127
128
  def top_artists(force=false)
128
- get_instance("user.getTopArtists", :top_artists, :artist, {:user => @username}, force)
129
+ get_instance("user.getTopArtists", :top_artists, :artist, {:user => @username, :period => @period}, force)
129
130
  end
130
131
 
131
132
  def top_albums(force=false)
data/rockstar.gemspec CHANGED
@@ -5,17 +5,20 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{rockstar}
8
- s.version = "0.6.0"
8
+ s.version = "0.6.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Bodo Tasche"]
12
- s.date = %q{2011-05-29}
12
+ s.date = %q{2011-06-09}
13
13
  s.description = %q{This gem is an updated version of jnunemakers scrobbler gem. Rockstar uses v2.0 of the last.fm api.}
14
14
  s.email = %q{bodo@bitboxer.de}
15
15
  s.extra_rdoc_files = [
16
16
  "README.md"
17
17
  ]
18
18
  s.files = [
19
+ ".travis.yml",
20
+ "Gemfile",
21
+ "Gemfile.lock",
19
22
  "History.txt",
20
23
  "MIT-LICENSE",
21
24
  "Manifest",
@@ -55,6 +58,7 @@ Gem::Specification.new do |s|
55
58
  "test/fixtures/xml/album/getinfo_album_Radio_Retalation_artist_Thievery_Corporation.xml",
56
59
  "test/fixtures/xml/album/getinfo_album_Some_Hearts_artist_Carrie_Underwood.xml",
57
60
  "test/fixtures/xml/artist/getevents_artist_Metallica.xml",
61
+ "test/fixtures/xml/artist/getimages_artist_Metallica_page_2.xml",
58
62
  "test/fixtures/xml/artist/getinfo_artist_Metallica.xml",
59
63
  "test/fixtures/xml/artist/getsimilar_artist_Metallica.xml",
60
64
  "test/fixtures/xml/artist/gettopalbums_artist_Metallica.xml",
@@ -82,7 +86,7 @@ Gem::Specification.new do |s|
82
86
  "test/fixtures/xml/user/getrecenttracks_user_jnunemaker.xml",
83
87
  "test/fixtures/xml/user/getrecommendedartists_sk_token_user_jnunemaker.xml",
84
88
  "test/fixtures/xml/user/gettopalbums_user_jnunemaker.xml",
85
- "test/fixtures/xml/user/gettopartists_user_jnunemaker.xml",
89
+ "test/fixtures/xml/user/gettopartists_period_overall_user_jnunemaker.xml",
86
90
  "test/fixtures/xml/user/gettoptags_user_jnunemaker.xml",
87
91
  "test/fixtures/xml/user/gettoptracks_user_jnunemaker.xml",
88
92
  "test/fixtures/xml/user/getweeklyalbumchart_from_1138536002_to_1139140802_user_jnunemaker.xml",
@@ -141,13 +145,28 @@ Gem::Specification.new do |s|
141
145
  s.specification_version = 3
142
146
 
143
147
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
148
+ s.add_runtime_dependency(%q<rake>, [">= 0"])
149
+ s.add_runtime_dependency(%q<hpricot>, [">= 0.4.86"])
150
+ s.add_runtime_dependency(%q<i18n>, [">= 0"])
151
+ s.add_runtime_dependency(%q<activesupport>, [">= 1.4.2"])
152
+ s.add_development_dependency(%q<jeweler>, [">= 0"])
144
153
  s.add_runtime_dependency(%q<hpricot>, [">= 0.4.86"])
145
154
  s.add_runtime_dependency(%q<activesupport>, [">= 1.4.2"])
146
155
  else
156
+ s.add_dependency(%q<rake>, [">= 0"])
157
+ s.add_dependency(%q<hpricot>, [">= 0.4.86"])
158
+ s.add_dependency(%q<i18n>, [">= 0"])
159
+ s.add_dependency(%q<activesupport>, [">= 1.4.2"])
160
+ s.add_dependency(%q<jeweler>, [">= 0"])
147
161
  s.add_dependency(%q<hpricot>, [">= 0.4.86"])
148
162
  s.add_dependency(%q<activesupport>, [">= 1.4.2"])
149
163
  end
150
164
  else
165
+ s.add_dependency(%q<rake>, [">= 0"])
166
+ s.add_dependency(%q<hpricot>, [">= 0.4.86"])
167
+ s.add_dependency(%q<i18n>, [">= 0"])
168
+ s.add_dependency(%q<activesupport>, [">= 1.4.2"])
169
+ s.add_dependency(%q<jeweler>, [">= 0"])
151
170
  s.add_dependency(%q<hpricot>, [">= 0.4.86"])
152
171
  s.add_dependency(%q<activesupport>, [">= 1.4.2"])
153
172
  end
@@ -0,0 +1,1074 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <images artist="Metallica" page="1" perPage="50" totalPages="20" total="977">
4
+ <image>
5
+ <title>Metallica + Jason</title>
6
+ <url>http://www.last.fm/music/Metallica/+images/3679639</url>
7
+ <dateadded>Fri, 28 Dec 2007 21:38:41</dateadded>
8
+ <format>jpg</format>
9
+ <owner type="user">
10
+ <name>rajeevvarma84</name>
11
+ <url>http://www.last.fm/user/rajeevvarma84</url>
12
+ </owner>
13
+ <sizes>
14
+ <size name="original" width="450" height="304">http://userserve-ak.last.fm/serve/_/3679639/Metallica+++Jason.jpg</size>
15
+ <size name="large" width="126" height="85">http://userserve-ak.last.fm/serve/126/3679639.jpg</size>
16
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/3679639.jpg</size>
17
+ <size name="medium" width="64" height="43">http://userserve-ak.last.fm/serve/64/3679639.jpg</size>
18
+ <size name="small" width="34" height="23">http://userserve-ak.last.fm/serve/34/3679639.jpg</size>
19
+ <size name="extralarge" width="252" height="170">http://userserve-ak.last.fm/serve/252/3679639.jpg</size>
20
+ </sizes>
21
+ <votes>
22
+ <thumbsup>2433</thumbsup>
23
+ <thumbsdown>724</thumbsdown>
24
+ </votes>
25
+ </image>
26
+ <image>
27
+ <title></title>
28
+ <url>http://www.last.fm/music/Metallica/+images/13440</url>
29
+ <dateadded>Tue, 3 Jul 2007 07:59:37</dateadded>
30
+ <format>jpg</format>
31
+ <owner type="user">
32
+ <name>LinuX0702</name>
33
+ <url>http://www.last.fm/user/LinuX0702</url>
34
+ </owner>
35
+ <sizes>
36
+ <size name="original" width="469" height="600">http://userserve-ak.last.fm/serve/_/13440/Metallica.jpg</size>
37
+ <size name="large" width="126" height="161">http://userserve-ak.last.fm/serve/126/13440.jpg</size>
38
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/13440.jpg</size>
39
+ <size name="medium" width="64" height="82">http://userserve-ak.last.fm/serve/64/13440.jpg</size>
40
+ <size name="small" width="34" height="43">http://userserve-ak.last.fm/serve/34/13440.jpg</size>
41
+ <size name="extralarge" width="252" height="322">http://userserve-ak.last.fm/serve/252/13440.jpg</size>
42
+ </sizes>
43
+ <votes>
44
+ <thumbsup>2709</thumbsup>
45
+ <thumbsdown>792</thumbsdown>
46
+ </votes>
47
+ </image>
48
+ <image>
49
+ <title>band_cliff108</title>
50
+ <url>http://www.last.fm/music/Metallica/+images/16036851</url>
51
+ <dateadded>Mon, 3 Nov 2008 11:56:17</dateadded>
52
+ <format>jpg</format>
53
+ <owner type="user">
54
+ <name>jk90</name>
55
+ <url>http://www.last.fm/user/jk90</url>
56
+ </owner>
57
+ <sizes>
58
+ <size name="original" width="413" height="639">http://userserve-ak.last.fm/serve/_/16036851/Metallica+band_cliff108.jpg</size>
59
+ <size name="large" width="126" height="195">http://userserve-ak.last.fm/serve/126/16036851.jpg</size>
60
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/16036851.jpg</size>
61
+ <size name="medium" width="64" height="99">http://userserve-ak.last.fm/serve/64/16036851.jpg</size>
62
+ <size name="small" width="34" height="53">http://userserve-ak.last.fm/serve/34/16036851.jpg</size>
63
+ <size name="extralarge" width="252" height="390">http://userserve-ak.last.fm/serve/252/16036851.jpg</size>
64
+ </sizes>
65
+ <votes>
66
+ <thumbsup>1877</thumbsup>
67
+ <thumbsdown>573</thumbsdown>
68
+ </votes>
69
+ </image>
70
+ <image>
71
+ <title>1104</title>
72
+ <url>http://www.last.fm/music/Metallica/+images/5475071</url>
73
+ <dateadded>Wed, 23 Apr 2008 15:05:04</dateadded>
74
+ <format>jpg</format>
75
+ <owner type="user">
76
+ <name>Nikouh</name>
77
+ <url>http://www.last.fm/user/Nikouh</url>
78
+ </owner>
79
+ <sizes>
80
+ <size name="original" width="750" height="496">http://userserve-ak.last.fm/serve/_/5475071/Metallica+1104.jpg</size>
81
+ <size name="large" width="126" height="83">http://userserve-ak.last.fm/serve/126/5475071.jpg</size>
82
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/5475071.jpg</size>
83
+ <size name="medium" width="64" height="42">http://userserve-ak.last.fm/serve/64/5475071.jpg</size>
84
+ <size name="small" width="34" height="22">http://userserve-ak.last.fm/serve/34/5475071.jpg</size>
85
+ <size name="extralarge" width="252" height="167">http://userserve-ak.last.fm/serve/252/5475071.jpg</size>
86
+ </sizes>
87
+ <votes>
88
+ <thumbsup>1174</thumbsup>
89
+ <thumbsdown>357</thumbsdown>
90
+ </votes>
91
+ </image>
92
+ <image>
93
+ <title>Metallica</title>
94
+ <url>http://www.last.fm/music/Metallica/+images/10989483</url>
95
+ <dateadded>Mon, 1 Sep 2008 00:42:55</dateadded>
96
+ <format>jpg</format>
97
+ <owner type="user">
98
+ <name>grzybu1922</name>
99
+ <url>http://www.last.fm/user/grzybu1922</url>
100
+ </owner>
101
+ <sizes>
102
+ <size name="original" width="600" height="400">http://userserve-ak.last.fm/serve/_/10989483/Metallica.jpg</size>
103
+ <size name="large" width="126" height="84">http://userserve-ak.last.fm/serve/126/10989483.jpg</size>
104
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/10989483.jpg</size>
105
+ <size name="medium" width="64" height="43">http://userserve-ak.last.fm/serve/64/10989483.jpg</size>
106
+ <size name="small" width="34" height="23">http://userserve-ak.last.fm/serve/34/10989483.jpg</size>
107
+ <size name="extralarge" width="252" height="168">http://userserve-ak.last.fm/serve/252/10989483.jpg</size>
108
+ </sizes>
109
+ <votes>
110
+ <thumbsup>1494</thumbsup>
111
+ <thumbsdown>461</thumbsdown>
112
+ </votes>
113
+ </image>
114
+ <image>
115
+ <title>band</title>
116
+ <url>http://www.last.fm/music/Metallica/+images/3438692</url>
117
+ <dateadded>Mon, 10 Dec 2007 07:26:27</dateadded>
118
+ <format>jpg</format>
119
+ <owner type="user">
120
+ <name>cleo-</name>
121
+ <url>http://www.last.fm/user/cleo-</url>
122
+ </owner>
123
+ <sizes>
124
+ <size name="original" width="966" height="688">http://userserve-ak.last.fm/serve/_/3438692/Metallica+band.jpg</size>
125
+ <size name="large" width="126" height="90">http://userserve-ak.last.fm/serve/126/3438692.jpg</size>
126
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/3438692.jpg</size>
127
+ <size name="medium" width="64" height="46">http://userserve-ak.last.fm/serve/64/3438692.jpg</size>
128
+ <size name="small" width="34" height="24">http://userserve-ak.last.fm/serve/34/3438692.jpg</size>
129
+ <size name="extralarge" width="252" height="179">http://userserve-ak.last.fm/serve/252/3438692.jpg</size>
130
+ </sizes>
131
+ <votes>
132
+ <thumbsup>710</thumbsup>
133
+ <thumbsdown>228</thumbsdown>
134
+ </votes>
135
+ </image>
136
+ <image>
137
+ <title>14</title>
138
+ <url>http://www.last.fm/music/Metallica/+images/11292825</url>
139
+ <dateadded>Sun, 7 Sep 2008 17:43:51</dateadded>
140
+ <format>jpg</format>
141
+ <owner type="user">
142
+ <name>KempesOne</name>
143
+ <url>http://www.last.fm/user/KempesOne</url>
144
+ </owner>
145
+ <sizes>
146
+ <size name="original" width="1280" height="960">http://userserve-ak.last.fm/serve/_/11292825/Metallica+14.jpg</size>
147
+ <size name="large" width="126" height="95">http://userserve-ak.last.fm/serve/126/11292825.jpg</size>
148
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/11292825.jpg</size>
149
+ <size name="medium" width="64" height="48">http://userserve-ak.last.fm/serve/64/11292825.jpg</size>
150
+ <size name="small" width="34" height="26">http://userserve-ak.last.fm/serve/34/11292825.jpg</size>
151
+ <size name="extralarge" width="252" height="189">http://userserve-ak.last.fm/serve/252/11292825.jpg</size>
152
+ </sizes>
153
+ <votes>
154
+ <thumbsup>586</thumbsup>
155
+ <thumbsdown>154</thumbsdown>
156
+ </votes>
157
+ </image>
158
+ <image>
159
+ <title>dfhdhh</title>
160
+ <url>http://www.last.fm/music/Metallica/+images/8907333</url>
161
+ <dateadded>Mon, 4 Aug 2008 20:04:31</dateadded>
162
+ <format>jpg</format>
163
+ <owner type="user">
164
+ <name>Nikouh</name>
165
+ <url>http://www.last.fm/user/Nikouh</url>
166
+ </owner>
167
+ <sizes>
168
+ <size name="original" width="768" height="468">http://userserve-ak.last.fm/serve/_/8907333/Metallica+dfhdhh.jpg</size>
169
+ <size name="large" width="126" height="77">http://userserve-ak.last.fm/serve/126/8907333.jpg</size>
170
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/8907333.jpg</size>
171
+ <size name="medium" width="64" height="39">http://userserve-ak.last.fm/serve/64/8907333.jpg</size>
172
+ <size name="small" width="34" height="21">http://userserve-ak.last.fm/serve/34/8907333.jpg</size>
173
+ <size name="extralarge" width="252" height="154">http://userserve-ak.last.fm/serve/252/8907333.jpg</size>
174
+ </sizes>
175
+ <votes>
176
+ <thumbsup>1087</thumbsup>
177
+ <thumbsdown>330</thumbsdown>
178
+ </votes>
179
+ </image>
180
+ <image>
181
+ <title>Metallica 03</title>
182
+ <url>http://www.last.fm/music/Metallica/+images/7560709</url>
183
+ <dateadded>Sat, 5 Jul 2008 02:50:21</dateadded>
184
+ <format>jpg</format>
185
+ <sizes>
186
+ <size name="original" width="520" height="404">http://userserve-ak.last.fm/serve/_/7560709/Metallica++03.jpg</size>
187
+ <size name="large" width="126" height="98">http://userserve-ak.last.fm/serve/126/7560709.jpg</size>
188
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/7560709.jpg</size>
189
+ <size name="medium" width="64" height="50">http://userserve-ak.last.fm/serve/64/7560709.jpg</size>
190
+ <size name="small" width="34" height="26">http://userserve-ak.last.fm/serve/34/7560709.jpg</size>
191
+ <size name="extralarge" width="252" height="196">http://userserve-ak.last.fm/serve/252/7560709.jpg</size>
192
+ </sizes>
193
+ <votes>
194
+ <thumbsup>1679</thumbsup>
195
+ <thumbsdown>520</thumbsdown>
196
+ </votes>
197
+ </image>
198
+ <image>
199
+ <title>Istanbul, Turkey 2008</title>
200
+ <url>http://www.last.fm/music/Metallica/+images/10519473</url>
201
+ <dateadded>Fri, 22 Aug 2008 11:38:56</dateadded>
202
+ <format>jpg</format>
203
+ <owner type="user">
204
+ <name>radyokafa_</name>
205
+ <url>http://www.last.fm/user/radyokafa_</url>
206
+ </owner>
207
+ <sizes>
208
+ <size name="original" width="300" height="450">http://userserve-ak.last.fm/serve/_/10519473/Metallica+Istanbul+Turkey+2008.jpg</size>
209
+ <size name="large" width="126" height="189">http://userserve-ak.last.fm/serve/126/10519473.jpg</size>
210
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/10519473.jpg</size>
211
+ <size name="medium" width="64" height="96">http://userserve-ak.last.fm/serve/64/10519473.jpg</size>
212
+ <size name="small" width="34" height="51">http://userserve-ak.last.fm/serve/34/10519473.jpg</size>
213
+ <size name="extralarge" width="252" height="378">http://userserve-ak.last.fm/serve/252/10519473.jpg</size>
214
+ </sizes>
215
+ <votes>
216
+ <thumbsup>1690</thumbsup>
217
+ <thumbsdown>509</thumbsdown>
218
+ </votes>
219
+ </image>
220
+ <image>
221
+ <title>Metallica</title>
222
+ <url>http://www.last.fm/music/Metallica/+images/10609051</url>
223
+ <dateadded>Sun, 24 Aug 2008 17:40:04</dateadded>
224
+ <format>jpg</format>
225
+ <owner type="user">
226
+ <name>KempesOne</name>
227
+ <url>http://www.last.fm/user/KempesOne</url>
228
+ </owner>
229
+ <sizes>
230
+ <size name="original" width="546" height="330">http://userserve-ak.last.fm/serve/_/10609051/Metallica.jpg</size>
231
+ <size name="large" width="126" height="76">http://userserve-ak.last.fm/serve/126/10609051.jpg</size>
232
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/10609051.jpg</size>
233
+ <size name="medium" width="64" height="39">http://userserve-ak.last.fm/serve/64/10609051.jpg</size>
234
+ <size name="small" width="34" height="21">http://userserve-ak.last.fm/serve/34/10609051.jpg</size>
235
+ <size name="extralarge" width="252" height="152">http://userserve-ak.last.fm/serve/252/10609051.jpg</size>
236
+ </sizes>
237
+ <votes>
238
+ <thumbsup>738</thumbsup>
239
+ <thumbsdown>232</thumbsdown>
240
+ </votes>
241
+ </image>
242
+ <image>
243
+ <title>early years</title>
244
+ <url>http://www.last.fm/music/Metallica/+images/7626883</url>
245
+ <dateadded>Mon, 7 Jul 2008 06:55:08</dateadded>
246
+ <format>jpg</format>
247
+ <sizes>
248
+ <size name="original" width="550" height="378">http://userserve-ak.last.fm/serve/_/7626883/Metallica+early+years.jpg</size>
249
+ <size name="large" width="126" height="87">http://userserve-ak.last.fm/serve/126/7626883.jpg</size>
250
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/7626883.jpg</size>
251
+ <size name="medium" width="64" height="44">http://userserve-ak.last.fm/serve/64/7626883.jpg</size>
252
+ <size name="small" width="34" height="23">http://userserve-ak.last.fm/serve/34/7626883.jpg</size>
253
+ <size name="extralarge" width="252" height="173">http://userserve-ak.last.fm/serve/252/7626883.jpg</size>
254
+ </sizes>
255
+ <votes>
256
+ <thumbsup>1227</thumbsup>
257
+ <thumbsdown>393</thumbsdown>
258
+ </votes>
259
+ </image>
260
+ <image>
261
+ <title></title>
262
+ <url>http://www.last.fm/music/Metallica/+images/338318</url>
263
+ <dateadded>Wed, 4 Oct 2006 16:29:52</dateadded>
264
+ <format>jpg</format>
265
+ <owner type="user">
266
+ <name>ozzyhead</name>
267
+ <url>http://www.last.fm/user/ozzyhead</url>
268
+ </owner>
269
+ <sizes>
270
+ <size name="original" width="400" height="557">http://userserve-ak.last.fm/serve/_/338318/Metallica.jpg</size>
271
+ <size name="large" width="126" height="175">http://userserve-ak.last.fm/serve/126/338318.jpg</size>
272
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/338318.jpg</size>
273
+ <size name="medium" width="64" height="89">http://userserve-ak.last.fm/serve/64/338318.jpg</size>
274
+ <size name="small" width="34" height="47">http://userserve-ak.last.fm/serve/34/338318.jpg</size>
275
+ <size name="extralarge" width="252" height="351">http://userserve-ak.last.fm/serve/252/338318.jpg</size>
276
+ </sizes>
277
+ <votes>
278
+ <thumbsup>628</thumbsup>
279
+ <thumbsdown>216</thumbsdown>
280
+ </votes>
281
+ </image>
282
+ <image>
283
+ <title></title>
284
+ <url>http://www.last.fm/music/Metallica/+images/313628</url>
285
+ <dateadded>Wed, 13 Jun 2007 20:02:10</dateadded>
286
+ <format>jpg</format>
287
+ <owner type="user">
288
+ <name>dechrizzle</name>
289
+ <url>http://www.last.fm/user/dechrizzle</url>
290
+ </owner>
291
+ <sizes>
292
+ <size name="original" width="489" height="334">http://userserve-ak.last.fm/serve/_/313628/Metallica.jpg</size>
293
+ <size name="large" width="126" height="86">http://userserve-ak.last.fm/serve/126/313628.jpg</size>
294
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/313628.jpg</size>
295
+ <size name="medium" width="64" height="44">http://userserve-ak.last.fm/serve/64/313628.jpg</size>
296
+ <size name="small" width="34" height="23">http://userserve-ak.last.fm/serve/34/313628.jpg</size>
297
+ <size name="extralarge" width="252" height="172">http://userserve-ak.last.fm/serve/252/313628.jpg</size>
298
+ </sizes>
299
+ <votes>
300
+ <thumbsup>1207</thumbsup>
301
+ <thumbsdown>386</thumbsdown>
302
+ </votes>
303
+ </image>
304
+ <image>
305
+ <title></title>
306
+ <url>http://www.last.fm/music/Metallica/+images/104069</url>
307
+ <dateadded>Sun, 8 Jul 2007 20:10:26</dateadded>
308
+ <format>jpg</format>
309
+ <owner type="user">
310
+ <name>Nikouh</name>
311
+ <url>http://www.last.fm/user/Nikouh</url>
312
+ </owner>
313
+ <sizes>
314
+ <size name="original" width="435" height="612">http://userserve-ak.last.fm/serve/_/104069/Metallica.jpg</size>
315
+ <size name="large" width="126" height="177">http://userserve-ak.last.fm/serve/126/104069.jpg</size>
316
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/104069.jpg</size>
317
+ <size name="medium" width="64" height="90">http://userserve-ak.last.fm/serve/64/104069.jpg</size>
318
+ <size name="small" width="34" height="48">http://userserve-ak.last.fm/serve/34/104069.jpg</size>
319
+ <size name="extralarge" width="252" height="355">http://userserve-ak.last.fm/serve/252/104069.jpg</size>
320
+ </sizes>
321
+ <votes>
322
+ <thumbsup>1823</thumbsup>
323
+ <thumbsdown>625</thumbsdown>
324
+ </votes>
325
+ </image>
326
+ <image>
327
+ <title>sanstitre114zo</title>
328
+ <url>http://www.last.fm/music/Metallica/+images/5476313</url>
329
+ <dateadded>Wed, 23 Apr 2008 16:07:47</dateadded>
330
+ <format>jpg</format>
331
+ <owner type="user">
332
+ <name>Nikouh</name>
333
+ <url>http://www.last.fm/user/Nikouh</url>
334
+ </owner>
335
+ <sizes>
336
+ <size name="original" width="1000" height="800">http://userserve-ak.last.fm/serve/_/5476313/Metallica+sanstitre114zo.jpg</size>
337
+ <size name="large" width="126" height="101">http://userserve-ak.last.fm/serve/126/5476313.jpg</size>
338
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/5476313.jpg</size>
339
+ <size name="medium" width="64" height="51">http://userserve-ak.last.fm/serve/64/5476313.jpg</size>
340
+ <size name="small" width="34" height="27">http://userserve-ak.last.fm/serve/34/5476313.jpg</size>
341
+ <size name="extralarge" width="252" height="202">http://userserve-ak.last.fm/serve/252/5476313.jpg</size>
342
+ </sizes>
343
+ <votes>
344
+ <thumbsup>949</thumbsup>
345
+ <thumbsdown>299</thumbsdown>
346
+ </votes>
347
+ </image>
348
+ <image>
349
+ <title>Metallica_Photo_NEW-2008</title>
350
+ <url>http://www.last.fm/music/Metallica/+images/10519687</url>
351
+ <dateadded>Fri, 22 Aug 2008 11:51:27</dateadded>
352
+ <format>jpg</format>
353
+ <owner type="user">
354
+ <name>359</name>
355
+ <url>http://www.last.fm/user/359</url>
356
+ </owner>
357
+ <sizes>
358
+ <size name="original" width="600" height="400">http://userserve-ak.last.fm/serve/_/10519687/Metallica+_Photo_NEW2008.jpg</size>
359
+ <size name="large" width="126" height="84">http://userserve-ak.last.fm/serve/126/10519687.jpg</size>
360
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/10519687.jpg</size>
361
+ <size name="medium" width="64" height="43">http://userserve-ak.last.fm/serve/64/10519687.jpg</size>
362
+ <size name="small" width="34" height="23">http://userserve-ak.last.fm/serve/34/10519687.jpg</size>
363
+ <size name="extralarge" width="252" height="168">http://userserve-ak.last.fm/serve/252/10519687.jpg</size>
364
+ </sizes>
365
+ <votes>
366
+ <thumbsup>1536</thumbsup>
367
+ <thumbsdown>512</thumbsdown>
368
+ </votes>
369
+ </image>
370
+ <image>
371
+ <title>scan10001586x3952lp</title>
372
+ <url>http://www.last.fm/music/Metallica/+images/7800613</url>
373
+ <dateadded>Thu, 10 Jul 2008 20:23:38</dateadded>
374
+ <format>jpg</format>
375
+ <owner type="user">
376
+ <name>Nikouh</name>
377
+ <url>http://www.last.fm/user/Nikouh</url>
378
+ </owner>
379
+ <sizes>
380
+ <size name="original" width="586" height="395">http://userserve-ak.last.fm/serve/_/7800613/Metallica+scan10001586x3952lp.jpg</size>
381
+ <size name="large" width="126" height="85">http://userserve-ak.last.fm/serve/126/7800613.jpg</size>
382
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/7800613.jpg</size>
383
+ <size name="medium" width="64" height="43">http://userserve-ak.last.fm/serve/64/7800613.jpg</size>
384
+ <size name="small" width="34" height="23">http://userserve-ak.last.fm/serve/34/7800613.jpg</size>
385
+ <size name="extralarge" width="252" height="170">http://userserve-ak.last.fm/serve/252/7800613.jpg</size>
386
+ </sizes>
387
+ <votes>
388
+ <thumbsup>1138</thumbsup>
389
+ <thumbsdown>357</thumbsdown>
390
+ </votes>
391
+ </image>
392
+ <image>
393
+ <title></title>
394
+ <url>http://www.last.fm/music/Metallica/+images/60116</url>
395
+ <dateadded>Thu, 4 Jan 2007 20:20:12</dateadded>
396
+ <format>jpg</format>
397
+ <owner type="user">
398
+ <name>dechrizzle</name>
399
+ <url>http://www.last.fm/user/dechrizzle</url>
400
+ </owner>
401
+ <sizes>
402
+ <size name="original" width="504" height="402">http://userserve-ak.last.fm/serve/_/60116/Metallica.jpg</size>
403
+ <size name="large" width="126" height="101">http://userserve-ak.last.fm/serve/126/60116.jpg</size>
404
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/60116.jpg</size>
405
+ <size name="medium" width="64" height="51">http://userserve-ak.last.fm/serve/64/60116.jpg</size>
406
+ <size name="small" width="34" height="27">http://userserve-ak.last.fm/serve/34/60116.jpg</size>
407
+ <size name="extralarge" width="252" height="201">http://userserve-ak.last.fm/serve/252/60116.jpg</size>
408
+ </sizes>
409
+ <votes>
410
+ <thumbsup>796</thumbsup>
411
+ <thumbsdown>271</thumbsdown>
412
+ </votes>
413
+ </image>
414
+ <image>
415
+ <title>METALLICA (51)</title>
416
+ <url>http://www.last.fm/music/Metallica/+images/11282753</url>
417
+ <dateadded>Sun, 7 Sep 2008 12:15:23</dateadded>
418
+ <format>jpg</format>
419
+ <owner type="user">
420
+ <name>Jax333</name>
421
+ <url>http://www.last.fm/user/Jax333</url>
422
+ </owner>
423
+ <sizes>
424
+ <size name="original" width="615" height="494">http://userserve-ak.last.fm/serve/_/11282753/Metallica++51.jpg</size>
425
+ <size name="large" width="126" height="101">http://userserve-ak.last.fm/serve/126/11282753.jpg</size>
426
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/11282753.jpg</size>
427
+ <size name="medium" width="64" height="51">http://userserve-ak.last.fm/serve/64/11282753.jpg</size>
428
+ <size name="small" width="34" height="27">http://userserve-ak.last.fm/serve/34/11282753.jpg</size>
429
+ <size name="extralarge" width="252" height="202">http://userserve-ak.last.fm/serve/252/11282753.jpg</size>
430
+ </sizes>
431
+ <votes>
432
+ <thumbsup>386</thumbsup>
433
+ <thumbsdown>123</thumbsdown>
434
+ </votes>
435
+ </image>
436
+ <image>
437
+ <title>82_jameslarsdave_pizza</title>
438
+ <url>http://www.last.fm/music/Metallica/+images/5968893</url>
439
+ <dateadded>Wed, 21 May 2008 20:10:53</dateadded>
440
+ <format>jpg</format>
441
+ <owner type="user">
442
+ <name>Craptoder</name>
443
+ <url>http://www.last.fm/user/Craptoder</url>
444
+ </owner>
445
+ <sizes>
446
+ <size name="original" width="364" height="400">http://userserve-ak.last.fm/serve/_/5968893/Metallica+82_jameslarsdave_pizza.jpg</size>
447
+ <size name="large" width="126" height="138">http://userserve-ak.last.fm/serve/126/5968893.jpg</size>
448
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/5968893.jpg</size>
449
+ <size name="medium" width="64" height="70">http://userserve-ak.last.fm/serve/64/5968893.jpg</size>
450
+ <size name="small" width="34" height="37">http://userserve-ak.last.fm/serve/34/5968893.jpg</size>
451
+ <size name="extralarge" width="252" height="277">http://userserve-ak.last.fm/serve/252/5968893.jpg</size>
452
+ </sizes>
453
+ <votes>
454
+ <thumbsup>953</thumbsup>
455
+ <thumbsdown>324</thumbsdown>
456
+ </votes>
457
+ </image>
458
+ <image>
459
+ <title>Metallica2378</title>
460
+ <url>http://www.last.fm/music/Metallica/+images/12866179</url>
461
+ <dateadded>Mon, 29 Sep 2008 16:53:20</dateadded>
462
+ <format>jpg</format>
463
+ <owner type="user">
464
+ <name>Nikouh</name>
465
+ <url>http://www.last.fm/user/Nikouh</url>
466
+ </owner>
467
+ <sizes>
468
+ <size name="original" width="1037" height="773">http://userserve-ak.last.fm/serve/_/12866179/Metallica+2378.jpg</size>
469
+ <size name="large" width="126" height="94">http://userserve-ak.last.fm/serve/126/12866179.jpg</size>
470
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/12866179.jpg</size>
471
+ <size name="medium" width="64" height="48">http://userserve-ak.last.fm/serve/64/12866179.jpg</size>
472
+ <size name="small" width="34" height="25">http://userserve-ak.last.fm/serve/34/12866179.jpg</size>
473
+ <size name="extralarge" width="252" height="188">http://userserve-ak.last.fm/serve/252/12866179.jpg</size>
474
+ </sizes>
475
+ <votes>
476
+ <thumbsup>645</thumbsup>
477
+ <thumbsdown>202</thumbsdown>
478
+ </votes>
479
+ </image>
480
+ <image>
481
+ <title>1984,paris</title>
482
+ <url>http://www.last.fm/music/Metallica/+images/12094343</url>
483
+ <dateadded>Fri, 19 Sep 2008 01:27:29</dateadded>
484
+ <format>jpg</format>
485
+ <owner type="user">
486
+ <name>ozzkan</name>
487
+ <url>http://www.last.fm/user/ozzkan</url>
488
+ </owner>
489
+ <sizes>
490
+ <size name="original" width="510" height="377">http://userserve-ak.last.fm/serve/_/12094343/Metallica+1984paris.jpg</size>
491
+ <size name="large" width="126" height="93">http://userserve-ak.last.fm/serve/126/12094343.jpg</size>
492
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/12094343.jpg</size>
493
+ <size name="medium" width="64" height="47">http://userserve-ak.last.fm/serve/64/12094343.jpg</size>
494
+ <size name="small" width="34" height="25">http://userserve-ak.last.fm/serve/34/12094343.jpg</size>
495
+ <size name="extralarge" width="252" height="186">http://userserve-ak.last.fm/serve/252/12094343.jpg</size>
496
+ </sizes>
497
+ <votes>
498
+ <thumbsup>1190</thumbsup>
499
+ <thumbsdown>364</thumbsdown>
500
+ </votes>
501
+ </image>
502
+ <image>
503
+ <title>'84</title>
504
+ <url>http://www.last.fm/music/Metallica/+images/11311023</url>
505
+ <dateadded>Mon, 8 Sep 2008 00:14:40</dateadded>
506
+ <format>jpg</format>
507
+ <owner type="user">
508
+ <name>hex_fm</name>
509
+ <url>http://www.last.fm/user/hex_fm</url>
510
+ </owner>
511
+ <sizes>
512
+ <size name="original" width="328" height="480">http://userserve-ak.last.fm/serve/_/11311023/Metallica+84.jpg</size>
513
+ <size name="large" width="126" height="184">http://userserve-ak.last.fm/serve/126/11311023.jpg</size>
514
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/11311023.jpg</size>
515
+ <size name="medium" width="64" height="94">http://userserve-ak.last.fm/serve/64/11311023.jpg</size>
516
+ <size name="small" width="34" height="50">http://userserve-ak.last.fm/serve/34/11311023.jpg</size>
517
+ <size name="extralarge" width="252" height="369">http://userserve-ak.last.fm/serve/252/11311023.jpg</size>
518
+ </sizes>
519
+ <votes>
520
+ <thumbsup>420</thumbsup>
521
+ <thumbsdown>127</thumbsdown>
522
+ </votes>
523
+ </image>
524
+ <image>
525
+ <title></title>
526
+ <url>http://www.last.fm/music/Metallica/+images/2147116</url>
527
+ <dateadded>Tue, 21 Aug 2007 12:49:13</dateadded>
528
+ <format>jpg</format>
529
+ <owner type="user">
530
+ <name>olzzy</name>
531
+ <url>http://www.last.fm/user/olzzy</url>
532
+ </owner>
533
+ <sizes>
534
+ <size name="original" width="600" height="450">http://userserve-ak.last.fm/serve/_/2147116/Metallica.jpg</size>
535
+ <size name="large" width="126" height="95">http://userserve-ak.last.fm/serve/126/2147116.jpg</size>
536
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/2147116.jpg</size>
537
+ <size name="medium" width="64" height="48">http://userserve-ak.last.fm/serve/64/2147116.jpg</size>
538
+ <size name="small" width="34" height="26">http://userserve-ak.last.fm/serve/34/2147116.jpg</size>
539
+ <size name="extralarge" width="252" height="189">http://userserve-ak.last.fm/serve/252/2147116.jpg</size>
540
+ </sizes>
541
+ <votes>
542
+ <thumbsup>901</thumbsup>
543
+ <thumbsdown>307</thumbsdown>
544
+ </votes>
545
+ </image>
546
+ <image>
547
+ <title></title>
548
+ <url>http://www.last.fm/music/Metallica/+images/846545</url>
549
+ <dateadded>Sat, 31 Mar 2007 17:15:18</dateadded>
550
+ <format>jpg</format>
551
+ <owner type="user">
552
+ <name>TheDarkSide04</name>
553
+ <url>http://www.last.fm/user/TheDarkSide04</url>
554
+ </owner>
555
+ <sizes>
556
+ <size name="original" width="294" height="294">http://userserve-ak.last.fm/serve/_/846545/Metallica.jpg</size>
557
+ <size name="large" width="126" height="126">http://userserve-ak.last.fm/serve/126/846545.jpg</size>
558
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/846545.jpg</size>
559
+ <size name="medium" width="64" height="64">http://userserve-ak.last.fm/serve/64/846545.jpg</size>
560
+ <size name="small" width="34" height="34">http://userserve-ak.last.fm/serve/34/846545.jpg</size>
561
+ <size name="extralarge" width="252" height="252">http://userserve-ak.last.fm/serve/252/846545.jpg</size>
562
+ </sizes>
563
+ <votes>
564
+ <thumbsup>627</thumbsup>
565
+ <thumbsdown>234</thumbsdown>
566
+ </votes>
567
+ </image>
568
+ <image>
569
+ <title></title>
570
+ <url>http://www.last.fm/music/Metallica/+images/366052</url>
571
+ <dateadded>Mon, 11 Dec 2006 18:57:27</dateadded>
572
+ <format>jpg</format>
573
+ <owner type="user">
574
+ <name>Vinyafod</name>
575
+ <url>http://www.last.fm/user/Vinyafod</url>
576
+ </owner>
577
+ <sizes>
578
+ <size name="original" width="640" height="441">http://userserve-ak.last.fm/serve/_/366052/Metallica.jpg</size>
579
+ <size name="large" width="126" height="87">http://userserve-ak.last.fm/serve/126/366052.jpg</size>
580
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/366052.jpg</size>
581
+ <size name="medium" width="64" height="44">http://userserve-ak.last.fm/serve/64/366052.jpg</size>
582
+ <size name="small" width="34" height="23">http://userserve-ak.last.fm/serve/34/366052.jpg</size>
583
+ <size name="extralarge" width="252" height="174">http://userserve-ak.last.fm/serve/252/366052.jpg</size>
584
+ </sizes>
585
+ <votes>
586
+ <thumbsup>505</thumbsup>
587
+ <thumbsdown>174</thumbsdown>
588
+ </votes>
589
+ </image>
590
+ <image>
591
+ <title>Metallica 09</title>
592
+ <url>http://www.last.fm/music/Metallica/+images/7561217</url>
593
+ <dateadded>Sat, 5 Jul 2008 03:36:09</dateadded>
594
+ <format>jpg</format>
595
+ <sizes>
596
+ <size name="original" width="494" height="340">http://userserve-ak.last.fm/serve/_/7561217/Metallica++09.jpg</size>
597
+ <size name="large" width="126" height="87">http://userserve-ak.last.fm/serve/126/7561217.jpg</size>
598
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/7561217.jpg</size>
599
+ <size name="medium" width="64" height="44">http://userserve-ak.last.fm/serve/64/7561217.jpg</size>
600
+ <size name="small" width="34" height="23">http://userserve-ak.last.fm/serve/34/7561217.jpg</size>
601
+ <size name="extralarge" width="252" height="173">http://userserve-ak.last.fm/serve/252/7561217.jpg</size>
602
+ </sizes>
603
+ <votes>
604
+ <thumbsup>442</thumbsup>
605
+ <thumbsdown>145</thumbsdown>
606
+ </votes>
607
+ </image>
608
+ <image>
609
+ <title>07</title>
610
+ <url>http://www.last.fm/music/Metallica/+images/15311407</url>
611
+ <dateadded>Mon, 27 Oct 2008 15:06:39</dateadded>
612
+ <format>jpg</format>
613
+ <owner type="user">
614
+ <name>Nikouh</name>
615
+ <url>http://www.last.fm/user/Nikouh</url>
616
+ </owner>
617
+ <sizes>
618
+ <size name="original" width="279" height="400">http://userserve-ak.last.fm/serve/_/15311407/Metallica+07.jpg</size>
619
+ <size name="large" width="126" height="181">http://userserve-ak.last.fm/serve/126/15311407.jpg</size>
620
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/15311407.jpg</size>
621
+ <size name="medium" width="64" height="92">http://userserve-ak.last.fm/serve/64/15311407.jpg</size>
622
+ <size name="small" width="34" height="49">http://userserve-ak.last.fm/serve/34/15311407.jpg</size>
623
+ <size name="extralarge" width="252" height="361">http://userserve-ak.last.fm/serve/252/15311407.jpg</size>
624
+ </sizes>
625
+ <votes>
626
+ <thumbsup>471</thumbsup>
627
+ <thumbsdown>137</thumbsdown>
628
+ </votes>
629
+ </image>
630
+ <image>
631
+ <title>Metallica 01</title>
632
+ <url>http://www.last.fm/music/Metallica/+images/7560721</url>
633
+ <dateadded>Sat, 5 Jul 2008 02:51:09</dateadded>
634
+ <format>jpg</format>
635
+ <sizes>
636
+ <size name="original" width="500" height="308">http://userserve-ak.last.fm/serve/_/7560721/Metallica++01.jpg</size>
637
+ <size name="large" width="126" height="78">http://userserve-ak.last.fm/serve/126/7560721.jpg</size>
638
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/7560721.jpg</size>
639
+ <size name="medium" width="64" height="39">http://userserve-ak.last.fm/serve/64/7560721.jpg</size>
640
+ <size name="small" width="34" height="21">http://userserve-ak.last.fm/serve/34/7560721.jpg</size>
641
+ <size name="extralarge" width="252" height="155">http://userserve-ak.last.fm/serve/252/7560721.jpg</size>
642
+ </sizes>
643
+ <votes>
644
+ <thumbsup>428</thumbsup>
645
+ <thumbsdown>144</thumbsdown>
646
+ </votes>
647
+ </image>
648
+ <image>
649
+ <title>metallicapromo23gk</title>
650
+ <url>http://www.last.fm/music/Metallica/+images/8906915</url>
651
+ <dateadded>Mon, 4 Aug 2008 19:57:54</dateadded>
652
+ <format>jpg</format>
653
+ <owner type="user">
654
+ <name>Nikouh</name>
655
+ <url>http://www.last.fm/user/Nikouh</url>
656
+ </owner>
657
+ <sizes>
658
+ <size name="original" width="1424" height="1008">http://userserve-ak.last.fm/serve/_/8906915/Metallica+promo23gk.jpg</size>
659
+ <size name="large" width="126" height="89">http://userserve-ak.last.fm/serve/126/8906915.jpg</size>
660
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/8906915.jpg</size>
661
+ <size name="medium" width="64" height="45">http://userserve-ak.last.fm/serve/64/8906915.jpg</size>
662
+ <size name="small" width="34" height="24">http://userserve-ak.last.fm/serve/34/8906915.jpg</size>
663
+ <size name="extralarge" width="252" height="178">http://userserve-ak.last.fm/serve/252/8906915.jpg</size>
664
+ </sizes>
665
+ <votes>
666
+ <thumbsup>645</thumbsup>
667
+ <thumbsdown>202</thumbsdown>
668
+ </votes>
669
+ </image>
670
+ <image>
671
+ <title>Metallica 04</title>
672
+ <url>http://www.last.fm/music/Metallica/+images/7560695</url>
673
+ <dateadded>Sat, 5 Jul 2008 02:49:37</dateadded>
674
+ <format>jpg</format>
675
+ <sizes>
676
+ <size name="original" width="365" height="295">http://userserve-ak.last.fm/serve/_/7560695/Metallica++04.jpg</size>
677
+ <size name="large" width="126" height="102">http://userserve-ak.last.fm/serve/126/7560695.jpg</size>
678
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/7560695.jpg</size>
679
+ <size name="medium" width="64" height="52">http://userserve-ak.last.fm/serve/64/7560695.jpg</size>
680
+ <size name="small" width="34" height="27">http://userserve-ak.last.fm/serve/34/7560695.jpg</size>
681
+ <size name="extralarge" width="252" height="204">http://userserve-ak.last.fm/serve/252/7560695.jpg</size>
682
+ </sizes>
683
+ <votes>
684
+ <thumbsup>386</thumbsup>
685
+ <thumbsdown>125</thumbsdown>
686
+ </votes>
687
+ </image>
688
+ <image>
689
+ <title>Magnetyczna_Metallica_2790090</title>
690
+ <url>http://www.last.fm/music/Metallica/+images/11611143</url>
691
+ <dateadded>Thu, 11 Sep 2008 11:32:45</dateadded>
692
+ <format>jpg</format>
693
+ <sizes>
694
+ <size name="original" width="593" height="600">http://userserve-ak.last.fm/serve/_/11611143/Metallica+Magnetyczna__2790090.jpg</size>
695
+ <size name="large" width="126" height="127">http://userserve-ak.last.fm/serve/126/11611143.jpg</size>
696
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/11611143.jpg</size>
697
+ <size name="medium" width="64" height="65">http://userserve-ak.last.fm/serve/64/11611143.jpg</size>
698
+ <size name="small" width="34" height="34">http://userserve-ak.last.fm/serve/34/11611143.jpg</size>
699
+ <size name="extralarge" width="252" height="255">http://userserve-ak.last.fm/serve/252/11611143.jpg</size>
700
+ </sizes>
701
+ <votes>
702
+ <thumbsup>470</thumbsup>
703
+ <thumbsdown>147</thumbsdown>
704
+ </votes>
705
+ </image>
706
+ <image>
707
+ <title></title>
708
+ <url>http://www.last.fm/music/Metallica/+images/499652</url>
709
+ <dateadded>Wed, 13 Jun 2007 20:08:36</dateadded>
710
+ <format>jpg</format>
711
+ <owner type="user">
712
+ <name>dechrizzle</name>
713
+ <url>http://www.last.fm/user/dechrizzle</url>
714
+ </owner>
715
+ <sizes>
716
+ <size name="original" width="713" height="494">http://userserve-ak.last.fm/serve/_/499652/Metallica.jpg</size>
717
+ <size name="large" width="126" height="87">http://userserve-ak.last.fm/serve/126/499652.jpg</size>
718
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/499652.jpg</size>
719
+ <size name="medium" width="64" height="44">http://userserve-ak.last.fm/serve/64/499652.jpg</size>
720
+ <size name="small" width="34" height="24">http://userserve-ak.last.fm/serve/34/499652.jpg</size>
721
+ <size name="extralarge" width="252" height="175">http://userserve-ak.last.fm/serve/252/499652.jpg</size>
722
+ </sizes>
723
+ <votes>
724
+ <thumbsup>538</thumbsup>
725
+ <thumbsdown>174</thumbsdown>
726
+ </votes>
727
+ </image>
728
+ <image>
729
+ <title></title>
730
+ <url>http://www.last.fm/music/Metallica/+images/339349</url>
731
+ <dateadded>Fri, 20 Apr 2007 23:58:44</dateadded>
732
+ <format>jpg</format>
733
+ <owner type="user">
734
+ <name>Makal_Baenre</name>
735
+ <url>http://www.last.fm/user/Makal_Baenre</url>
736
+ </owner>
737
+ <sizes>
738
+ <size name="original" width="548" height="413">http://userserve-ak.last.fm/serve/_/339349/Metallica.jpg</size>
739
+ <size name="large" width="126" height="95">http://userserve-ak.last.fm/serve/126/339349.jpg</size>
740
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/339349.jpg</size>
741
+ <size name="medium" width="64" height="48">http://userserve-ak.last.fm/serve/64/339349.jpg</size>
742
+ <size name="small" width="34" height="26">http://userserve-ak.last.fm/serve/34/339349.jpg</size>
743
+ <size name="extralarge" width="252" height="190">http://userserve-ak.last.fm/serve/252/339349.jpg</size>
744
+ </sizes>
745
+ <votes>
746
+ <thumbsup>584</thumbsup>
747
+ <thumbsdown>196</thumbsdown>
748
+ </votes>
749
+ </image>
750
+ <image>
751
+ <title>rollingstonecrossedarms1yi</title>
752
+ <url>http://www.last.fm/music/Metallica/+images/12866847</url>
753
+ <dateadded>Mon, 29 Sep 2008 17:53:45</dateadded>
754
+ <format>jpg</format>
755
+ <owner type="user">
756
+ <name>Nikouh</name>
757
+ <url>http://www.last.fm/user/Nikouh</url>
758
+ </owner>
759
+ <sizes>
760
+ <size name="original" width="406" height="502">http://userserve-ak.last.fm/serve/_/12866847/Metallica+rollingstonecrossedarms1yi.jpg</size>
761
+ <size name="large" width="126" height="156">http://userserve-ak.last.fm/serve/126/12866847.jpg</size>
762
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/12866847.jpg</size>
763
+ <size name="medium" width="64" height="79">http://userserve-ak.last.fm/serve/64/12866847.jpg</size>
764
+ <size name="small" width="34" height="42">http://userserve-ak.last.fm/serve/34/12866847.jpg</size>
765
+ <size name="extralarge" width="252" height="312">http://userserve-ak.last.fm/serve/252/12866847.jpg</size>
766
+ </sizes>
767
+ <votes>
768
+ <thumbsup>561</thumbsup>
769
+ <thumbsdown>194</thumbsdown>
770
+ </votes>
771
+ </image>
772
+ <image>
773
+ <title>157</title>
774
+ <url>http://www.last.fm/music/Metallica/+images/5476001</url>
775
+ <dateadded>Wed, 23 Apr 2008 15:53:39</dateadded>
776
+ <format>jpg</format>
777
+ <owner type="user">
778
+ <name>Nikouh</name>
779
+ <url>http://www.last.fm/user/Nikouh</url>
780
+ </owner>
781
+ <sizes>
782
+ <size name="original" width="368" height="509">http://userserve-ak.last.fm/serve/_/5476001/Metallica+157.jpg</size>
783
+ <size name="large" width="126" height="174">http://userserve-ak.last.fm/serve/126/5476001.jpg</size>
784
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/5476001.jpg</size>
785
+ <size name="medium" width="64" height="89">http://userserve-ak.last.fm/serve/64/5476001.jpg</size>
786
+ <size name="small" width="34" height="47">http://userserve-ak.last.fm/serve/34/5476001.jpg</size>
787
+ <size name="extralarge" width="252" height="349">http://userserve-ak.last.fm/serve/252/5476001.jpg</size>
788
+ </sizes>
789
+ <votes>
790
+ <thumbsup>500</thumbsup>
791
+ <thumbsdown>163</thumbsdown>
792
+ </votes>
793
+ </image>
794
+ <image>
795
+ <title></title>
796
+ <url>http://www.last.fm/music/Metallica/+images/9803</url>
797
+ <dateadded>Sun, 24 Dec 2006 14:42:56</dateadded>
798
+ <format>jpg</format>
799
+ <owner type="user">
800
+ <name>mrheadbanger</name>
801
+ <url>http://www.last.fm/user/mrheadbanger</url>
802
+ </owner>
803
+ <sizes>
804
+ <size name="original" width="353" height="458">http://userserve-ak.last.fm/serve/_/9803/Metallica.jpg</size>
805
+ <size name="large" width="126" height="163">http://userserve-ak.last.fm/serve/126/9803.jpg</size>
806
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/9803.jpg</size>
807
+ <size name="medium" width="64" height="83">http://userserve-ak.last.fm/serve/64/9803.jpg</size>
808
+ <size name="small" width="34" height="44">http://userserve-ak.last.fm/serve/34/9803.jpg</size>
809
+ <size name="extralarge" width="252" height="327">http://userserve-ak.last.fm/serve/252/9803.jpg</size>
810
+ </sizes>
811
+ <votes>
812
+ <thumbsup>591</thumbsup>
813
+ <thumbsdown>209</thumbsdown>
814
+ </votes>
815
+ </image>
816
+ <image>
817
+ <title>Magnetyczna_Metallica_2790094</title>
818
+ <url>http://www.last.fm/music/Metallica/+images/11611283</url>
819
+ <dateadded>Thu, 11 Sep 2008 12:22:43</dateadded>
820
+ <format>jpg</format>
821
+ <sizes>
822
+ <size name="original" width="593" height="600">http://userserve-ak.last.fm/serve/_/11611283/Metallica+Magnetyczna__2790094.jpg</size>
823
+ <size name="large" width="126" height="127">http://userserve-ak.last.fm/serve/126/11611283.jpg</size>
824
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/11611283.jpg</size>
825
+ <size name="medium" width="64" height="65">http://userserve-ak.last.fm/serve/64/11611283.jpg</size>
826
+ <size name="small" width="34" height="34">http://userserve-ak.last.fm/serve/34/11611283.jpg</size>
827
+ <size name="extralarge" width="252" height="255">http://userserve-ak.last.fm/serve/252/11611283.jpg</size>
828
+ </sizes>
829
+ <votes>
830
+ <thumbsup>754</thumbsup>
831
+ <thumbsdown>247</thumbsdown>
832
+ </votes>
833
+ </image>
834
+ <image>
835
+ <title>08730_115135_Metallicatspress7</title>
836
+ <url>http://www.last.fm/music/Metallica/+images/8906539</url>
837
+ <dateadded>Mon, 4 Aug 2008 19:51:10</dateadded>
838
+ <format>jpg</format>
839
+ <owner type="user">
840
+ <name>Nikouh</name>
841
+ <url>http://www.last.fm/user/Nikouh</url>
842
+ </owner>
843
+ <sizes>
844
+ <size name="original" width="300" height="368">http://userserve-ak.last.fm/serve/_/8906539/Metallica+08730_115135_tspress7.jpg</size>
845
+ <size name="large" width="126" height="155">http://userserve-ak.last.fm/serve/126/8906539.jpg</size>
846
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/8906539.jpg</size>
847
+ <size name="medium" width="64" height="79">http://userserve-ak.last.fm/serve/64/8906539.jpg</size>
848
+ <size name="small" width="34" height="42">http://userserve-ak.last.fm/serve/34/8906539.jpg</size>
849
+ <size name="extralarge" width="252" height="309">http://userserve-ak.last.fm/serve/252/8906539.jpg</size>
850
+ </sizes>
851
+ <votes>
852
+ <thumbsup>637</thumbsup>
853
+ <thumbsdown>225</thumbsdown>
854
+ </votes>
855
+ </image>
856
+ <image>
857
+ <title></title>
858
+ <url>http://www.last.fm/music/Metallica/+images/353544</url>
859
+ <dateadded>Tue, 20 Feb 2007 04:31:13</dateadded>
860
+ <format>jpg</format>
861
+ <owner type="user">
862
+ <name>dechrizzle</name>
863
+ <url>http://www.last.fm/user/dechrizzle</url>
864
+ </owner>
865
+ <sizes>
866
+ <size name="original" width="400" height="569">http://userserve-ak.last.fm/serve/_/353544/Metallica.jpg</size>
867
+ <size name="large" width="126" height="179">http://userserve-ak.last.fm/serve/126/353544.jpg</size>
868
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/353544.jpg</size>
869
+ <size name="medium" width="64" height="91">http://userserve-ak.last.fm/serve/64/353544.jpg</size>
870
+ <size name="small" width="34" height="48">http://userserve-ak.last.fm/serve/34/353544.jpg</size>
871
+ <size name="extralarge" width="252" height="358">http://userserve-ak.last.fm/serve/252/353544.jpg</size>
872
+ </sizes>
873
+ <votes>
874
+ <thumbsup>474</thumbsup>
875
+ <thumbsdown>175</thumbsdown>
876
+ </votes>
877
+ </image>
878
+ <image>
879
+ <title></title>
880
+ <url>http://www.last.fm/music/Metallica/+images/502871</url>
881
+ <dateadded>Thu, 14 Jun 2007 09:33:35</dateadded>
882
+ <format>jpg</format>
883
+ <owner type="user">
884
+ <name>Doma_overkill</name>
885
+ <url>http://www.last.fm/user/Doma_overkill</url>
886
+ </owner>
887
+ <sizes>
888
+ <size name="original" width="549" height="800">http://userserve-ak.last.fm/serve/_/502871/Metallica.jpg</size>
889
+ <size name="large" width="126" height="184">http://userserve-ak.last.fm/serve/126/502871.jpg</size>
890
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/502871.jpg</size>
891
+ <size name="medium" width="64" height="93">http://userserve-ak.last.fm/serve/64/502871.jpg</size>
892
+ <size name="small" width="34" height="50">http://userserve-ak.last.fm/serve/34/502871.jpg</size>
893
+ <size name="extralarge" width="252" height="367">http://userserve-ak.last.fm/serve/252/502871.jpg</size>
894
+ </sizes>
895
+ <votes>
896
+ <thumbsup>662</thumbsup>
897
+ <thumbsdown>264</thumbsdown>
898
+ </votes>
899
+ </image>
900
+ <image>
901
+ <title></title>
902
+ <url>http://www.last.fm/music/Metallica/+images/2208344</url>
903
+ <dateadded>Wed, 29 Aug 2007 07:59:20</dateadded>
904
+ <format>jpg</format>
905
+ <owner type="user">
906
+ <name>umur992</name>
907
+ <url>http://www.last.fm/user/umur992</url>
908
+ </owner>
909
+ <sizes>
910
+ <size name="original" width="200" height="200">http://userserve-ak.last.fm/serve/_/2208344/Metallica.jpg</size>
911
+ <size name="large" width="126" height="126">http://userserve-ak.last.fm/serve/126/2208344.jpg</size>
912
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/2208344.jpg</size>
913
+ <size name="medium" width="64" height="64">http://userserve-ak.last.fm/serve/64/2208344.jpg</size>
914
+ <size name="small" width="34" height="34">http://userserve-ak.last.fm/serve/34/2208344.jpg</size>
915
+ <size name="extralarge" width="252" height="252">http://userserve-ak.last.fm/serve/252/2208344.jpg</size>
916
+ </sizes>
917
+ <votes>
918
+ <thumbsup>609</thumbsup>
919
+ <thumbsdown>229</thumbsdown>
920
+ </votes>
921
+ </image>
922
+ <image>
923
+ <title></title>
924
+ <url>http://www.last.fm/music/Metallica/+images/211639</url>
925
+ <dateadded>Thu, 27 Jul 2006 04:34:12</dateadded>
926
+ <format>jpg</format>
927
+ <owner type="user">
928
+ <name>ProfHaHa</name>
929
+ <url>http://www.last.fm/user/ProfHaHa</url>
930
+ </owner>
931
+ <sizes>
932
+ <size name="original" width="600" height="600">http://userserve-ak.last.fm/serve/_/211639/Metallica.jpg</size>
933
+ <size name="large" width="126" height="126">http://userserve-ak.last.fm/serve/126/211639.jpg</size>
934
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/211639.jpg</size>
935
+ <size name="medium" width="64" height="64">http://userserve-ak.last.fm/serve/64/211639.jpg</size>
936
+ <size name="small" width="34" height="34">http://userserve-ak.last.fm/serve/34/211639.jpg</size>
937
+ <size name="extralarge" width="252" height="252">http://userserve-ak.last.fm/serve/252/211639.jpg</size>
938
+ </sizes>
939
+ <votes>
940
+ <thumbsup>505</thumbsup>
941
+ <thumbsdown>191</thumbsdown>
942
+ </votes>
943
+ </image>
944
+ <image>
945
+ <title></title>
946
+ <url>http://www.last.fm/music/Metallica/+images/196840</url>
947
+ <dateadded>Tue, 19 Sep 2006 20:50:39</dateadded>
948
+ <format>jpg</format>
949
+ <owner type="user">
950
+ <name>ozzyhead</name>
951
+ <url>http://www.last.fm/user/ozzyhead</url>
952
+ </owner>
953
+ <sizes>
954
+ <size name="original" width="400" height="345">http://userserve-ak.last.fm/serve/_/196840/Metallica.jpg</size>
955
+ <size name="large" width="126" height="109">http://userserve-ak.last.fm/serve/126/196840.jpg</size>
956
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/196840.jpg</size>
957
+ <size name="medium" width="64" height="55">http://userserve-ak.last.fm/serve/64/196840.jpg</size>
958
+ <size name="small" width="34" height="29">http://userserve-ak.last.fm/serve/34/196840.jpg</size>
959
+ <size name="extralarge" width="252" height="217">http://userserve-ak.last.fm/serve/252/196840.jpg</size>
960
+ </sizes>
961
+ <votes>
962
+ <thumbsup>440</thumbsup>
963
+ <thumbsdown>152</thumbsdown>
964
+ </votes>
965
+ </image>
966
+ <image>
967
+ <title>Promo Photo 2008</title>
968
+ <url>http://www.last.fm/music/Metallica/+images/9905851</url>
969
+ <dateadded>Thu, 14 Aug 2008 14:23:49</dateadded>
970
+ <format>jpg</format>
971
+ <owner type="user">
972
+ <name>slayerus_</name>
973
+ <url>http://www.last.fm/user/slayerus_</url>
974
+ </owner>
975
+ <sizes>
976
+ <size name="original" width="632" height="421">http://userserve-ak.last.fm/serve/_/9905851/Metallica+Promo+Photo+2008.jpg</size>
977
+ <size name="large" width="126" height="84">http://userserve-ak.last.fm/serve/126/9905851.jpg</size>
978
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/9905851.jpg</size>
979
+ <size name="medium" width="64" height="43">http://userserve-ak.last.fm/serve/64/9905851.jpg</size>
980
+ <size name="small" width="34" height="23">http://userserve-ak.last.fm/serve/34/9905851.jpg</size>
981
+ <size name="extralarge" width="252" height="168">http://userserve-ak.last.fm/serve/252/9905851.jpg</size>
982
+ </sizes>
983
+ <votes>
984
+ <thumbsup>656</thumbsup>
985
+ <thumbsdown>204</thumbsdown>
986
+ </votes>
987
+ </image>
988
+ <image>
989
+ <title>lastgrouppic</title>
990
+ <url>http://www.last.fm/music/Metallica/+images/8907071</url>
991
+ <dateadded>Mon, 4 Aug 2008 20:00:02</dateadded>
992
+ <format>jpg</format>
993
+ <owner type="user">
994
+ <name>Nikouh</name>
995
+ <url>http://www.last.fm/user/Nikouh</url>
996
+ </owner>
997
+ <sizes>
998
+ <size name="original" width="398" height="424">http://userserve-ak.last.fm/serve/_/8907071/Metallica+lastgrouppic.jpg</size>
999
+ <size name="large" width="126" height="134">http://userserve-ak.last.fm/serve/126/8907071.jpg</size>
1000
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/8907071.jpg</size>
1001
+ <size name="medium" width="64" height="68">http://userserve-ak.last.fm/serve/64/8907071.jpg</size>
1002
+ <size name="small" width="34" height="36">http://userserve-ak.last.fm/serve/34/8907071.jpg</size>
1003
+ <size name="extralarge" width="252" height="268">http://userserve-ak.last.fm/serve/252/8907071.jpg</size>
1004
+ </sizes>
1005
+ <votes>
1006
+ <thumbsup>346</thumbsup>
1007
+ <thumbsdown>104</thumbsdown>
1008
+ </votes>
1009
+ </image>
1010
+ <image>
1011
+ <title>1985,U.K</title>
1012
+ <url>http://www.last.fm/music/Metallica/+images/12094583</url>
1013
+ <dateadded>Fri, 19 Sep 2008 01:41:10</dateadded>
1014
+ <format>jpg</format>
1015
+ <owner type="user">
1016
+ <name>ozzkan</name>
1017
+ <url>http://www.last.fm/user/ozzkan</url>
1018
+ </owner>
1019
+ <sizes>
1020
+ <size name="original" width="509" height="328">http://userserve-ak.last.fm/serve/_/12094583/Metallica+1985UK.jpg</size>
1021
+ <size name="large" width="126" height="81">http://userserve-ak.last.fm/serve/126/12094583.jpg</size>
1022
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/12094583.jpg</size>
1023
+ <size name="medium" width="64" height="41">http://userserve-ak.last.fm/serve/64/12094583.jpg</size>
1024
+ <size name="small" width="34" height="22">http://userserve-ak.last.fm/serve/34/12094583.jpg</size>
1025
+ <size name="extralarge" width="252" height="162">http://userserve-ak.last.fm/serve/252/12094583.jpg</size>
1026
+ </sizes>
1027
+ <votes>
1028
+ <thumbsup>410</thumbsup>
1029
+ <thumbsdown>132</thumbsdown>
1030
+ </votes>
1031
+ </image>
1032
+ <image>
1033
+ <title></title>
1034
+ <url>http://www.last.fm/music/Metallica/+images/217427</url>
1035
+ <dateadded>Tue, 30 Jan 2007 10:08:36</dateadded>
1036
+ <format>jpg</format>
1037
+ <owner type="user">
1038
+ <name>dega_metall</name>
1039
+ <url>http://www.last.fm/user/dega_metall</url>
1040
+ </owner>
1041
+ <sizes>
1042
+ <size name="original" width="845" height="1194">http://userserve-ak.last.fm/serve/_/217427/Metallica.jpg</size>
1043
+ <size name="large" width="126" height="178">http://userserve-ak.last.fm/serve/126/217427.jpg</size>
1044
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/217427.jpg</size>
1045
+ <size name="medium" width="64" height="90">http://userserve-ak.last.fm/serve/64/217427.jpg</size>
1046
+ <size name="small" width="34" height="48">http://userserve-ak.last.fm/serve/34/217427.jpg</size>
1047
+ <size name="extralarge" width="252" height="356">http://userserve-ak.last.fm/serve/252/217427.jpg</size>
1048
+ </sizes>
1049
+ <votes>
1050
+ <thumbsup>387</thumbsup>
1051
+ <thumbsdown>140</thumbsdown>
1052
+ </votes>
1053
+ </image>
1054
+ <image>
1055
+ <title>Metallica 07</title>
1056
+ <url>http://www.last.fm/music/Metallica/+images/7560663</url>
1057
+ <dateadded>Sat, 5 Jul 2008 02:46:34</dateadded>
1058
+ <format>jpg</format>
1059
+ <sizes>
1060
+ <size name="original" width="244" height="244">http://userserve-ak.last.fm/serve/_/7560663/Metallica++07.jpg</size>
1061
+ <size name="large" width="126" height="126">http://userserve-ak.last.fm/serve/126/7560663.jpg</size>
1062
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/7560663.jpg</size>
1063
+ <size name="medium" width="64" height="64">http://userserve-ak.last.fm/serve/64/7560663.jpg</size>
1064
+ <size name="small" width="34" height="34">http://userserve-ak.last.fm/serve/34/7560663.jpg</size>
1065
+ <size name="extralarge" width="252" height="252">http://userserve-ak.last.fm/serve/252/7560663.jpg</size>
1066
+ </sizes>
1067
+ <votes>
1068
+ <thumbsup>353</thumbsup>
1069
+ <thumbsdown>119</thumbsdown>
1070
+ </votes>
1071
+ </image>
1072
+ </images>
1073
+ </lfm>
1074
+