added tests for the user module

master
Abhinav Sarkar 2009-03-05 11:08:53 +00:00
parent ca436f371c
commit dd759e1f49
26 changed files with 11429 additions and 9 deletions

View File

@ -423,10 +423,10 @@ class Api(object):
@rtype: L{User}
@raise InvalidParametersError: Exception is raised if an invalid user name is supplied.
@see: L{User.get_info}
"""
user = User(self, name = name)
user.friends
return user
return User.get_info(self, name = name)
def get_authenticated_user(self):
"""
@ -439,7 +439,8 @@ class Api(object):
"""
if self.session_key is not None:
return User.get_authenticated_user(self)
return None
else:
raise AuthenticationFailedError("session key must be present to call this method")
def get_venue(self, venue):
"""

View File

@ -92,7 +92,11 @@ class User(LastfmBase, Cacheable, Shoutable):
@property
def autheticated(self):
"""is the user autheticated"""
return self._api.get_authenticated_user() == self
try:
auth_user = self._api.get_authenticated_user()
return auth_user == self
except AuthenticationFailedError:
return False
@LastfmBase.cached_property
def events(self):
@ -175,6 +179,7 @@ class User(LastfmBase, Cacheable, Shoutable):
self._api,
subject = self,
name = u.findtext('name'),
real_name = u.findtext('realname'),
image = dict([(i.get('size'), i.text) for i in u.findall('image')]),
url = u.findtext('url'),
)
@ -197,6 +202,7 @@ class User(LastfmBase, Cacheable, Shoutable):
self._api,
subject = self,
name = u.findtext('name'),
real_name = u.findtext('realname'),
image = {'medium': u.findtext('image')},
url = u.findtext('url'),
stats = Stats(
@ -609,15 +615,27 @@ class User(LastfmBase, Cacheable, Shoutable):
return gen()
def compare(self, other, limit = None):
if isinstance(other, User):
other = other.name
return Tasteometer.compare(self._api,
'user', 'user',
self.name, other.name,
self.name, other,
limit)
@property
def library(self):
return self._library
@staticmethod
def get_info(api, name):
user = User(api, name = name)
friends = user.friends
if len(friends) == 0:
return user
else:
f = friends[0]
user = [a for a in f.friends if a.name == user.name][0]
return user
@staticmethod
def get_authenticated_user(api):
data = api._fetch_data({'method': 'user.getInfo'}, sign = True, session = True).find('user')
@ -957,7 +975,7 @@ import time
from lastfm.api import Api
from lastfm.artist import Artist
from lastfm.album import Album
from lastfm.error import LastfmError, InvalidParametersError
from lastfm.error import LastfmError, InvalidParametersError, AuthenticationFailedError
from lastfm.event import Event
from lastfm.geo import Country
from lastfm.stats import Stats

View File

@ -16,6 +16,7 @@ located at http://ws.audioscrobbler.com/2.0/ .""",
maintainer_email="abhinav.sarkar@gmail.com",
url="http://python-lastfm.googlecode.com/svn/trunk/dist/",
packages=['lastfm'],
package_data = {'doc':['*.txt', '*.htm', '*.css', '*.js', '*.png']},
license="GNU Lesser General Public License",
keywords="audioscrobbler webservice api last.fm",
)
@ -23,6 +24,7 @@ located at http://ws.audioscrobbler.com/2.0/ .""",
SETUPTOOLS_METADATA = dict(
install_requires = ['setuptools'],
include_package_data = True,
tests_require = ['wsgi_intercept'],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',

View File

@ -5,4 +5,5 @@ import test_artist
import test_geo
import test_group
import test_playlist
import test_track
import test_track
import test_user

View File

@ -0,0 +1,789 @@
<?xml version="1.0" encoding="utf-8"?>
<lfm status="ok">
<tracks user="RJ" page="1" perPage="50" totalPages="383">
<track>
<name>Learning to Live</name>
<playcount>51</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Learning+to+Live</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12620339.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12620339.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12620339.jpg</image>
</track>
<track>
<name>Three Minute Warning</name>
<playcount>46</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Liquid+Tension+Experiment/_/Three+Minute+Warning</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Liquid Tension Experiment</name>
<mbid>bc641be9-ca36-4c61-9394-5230433f6646</mbid>
<url>http://www.last.fm/music/Liquid+Tension+Experiment</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/15779373.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/15779373.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/15779373.jpg</image>
</track>
<track>
<name>Pull Me Under</name>
<playcount>45</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Pull+Me+Under</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12620339.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12620339.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12620339.jpg</image>
</track>
<track>
<name>Take the Time</name>
<playcount>45</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Take+the+Time</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12620339.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12620339.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12620339.jpg</image>
</track>
<track>
<name>Under a Glass Moon</name>
<playcount>43</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Under+a+Glass+Moon</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12620339.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12620339.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12620339.jpg</image>
</track>
<track>
<name>Another Day</name>
<playcount>43</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Another+Day</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12620339.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12620339.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12620339.jpg</image>
</track>
<track>
<name>The Pusher</name>
<playcount>42</playcount>
<tagcount>1</tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Steppenwolf/_/The+Pusher</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Steppenwolf</name>
<mbid>12ff8858-bfcb-4812-a8dd-7e9debf0cbee</mbid>
<url>http://www.last.fm/music/Steppenwolf</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8673259.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8673259.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8673259.jpg</image>
</track>
<track>
<name>Sultans of Swing</name>
<playcount>38</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dire+Straits/_/Sultans+of+Swing</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dire Straits</name>
<mbid>614e3804-7d34-41ba-857f-811bad7c2b7a</mbid>
<url>http://www.last.fm/music/Dire+Straits</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/13188073.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/13188073.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/13188073.jpg</image>
</track>
<track>
<name>Wait for Sleep</name>
<playcount>37</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Wait+for+Sleep</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12620339.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12620339.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12620339.jpg</image>
</track>
<track>
<name>Caught in a Web</name>
<playcount>33</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Caught+in+a+Web</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B000002JKA.01.THUMBZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B000002JKA.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B000002JKA.01.LZZZZZZZ.jpg</image>
</track>
<track>
<name>All Right Now</name>
<playcount>30</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Free/_/All+Right+Now</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Free</name>
<mbid>6cb5d1ca-03ce-4656-92f5-bf35f53d1582</mbid>
<url>http://www.last.fm/music/Free</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8605655.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8605655.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8605655.jpg</image>
</track>
<track>
<name>Surfing With the Alien</name>
<playcount>30</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Joe+Satriani/_/Surfing+With+the+Alien</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Joe Satriani</name>
<mbid>29762c82-bb92-4acd-b1fb-09cc4da250d2</mbid>
<url>http://www.last.fm/music/Joe+Satriani</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/18263325.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/18263325.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/18263325.jpg</image>
</track>
<track>
<name>Cowboys</name>
<playcount>29</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Portishead/_/Cowboys</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Portishead</name>
<mbid>8f6bd1e4-fbe1-4f50-aa9b-94c450ec0f11</mbid>
<url>http://www.last.fm/music/Portishead</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8569347.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8569347.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8569347.jpg</image>
</track>
<track>
<name>Trial of Tears</name>
<playcount>29</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Trial+of+Tears</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/13628909.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/13628909.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/13628909.jpg</image>
</track>
<track>
<name>All Along the Watchtower</name>
<playcount>28</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Jimi+Hendrix/_/All+Along+the+Watchtower</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Jimi Hendrix</name>
<mbid>06fb1c8b-566e-4cb2-985b-b467c90781d4</mbid>
<url>http://www.last.fm/music/Jimi+Hendrix</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12619911.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12619911.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12619911.jpg</image>
</track>
<track>
<name>Surrounded</name>
<playcount>28</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Surrounded</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12620339.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12620339.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12620339.jpg</image>
</track>
<track>
<name>Closer</name>
<playcount>28</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Nine+Inch+Nails/_/Closer</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Nine Inch Nails</name>
<mbid>b7ffd2af-418f-4be2-bdd1-22f8b48613da</mbid>
<url>http://www.last.fm/music/Nine+Inch+Nails</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8652447.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8652447.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8652447.jpg</image>
</track>
<track>
<name>The Glass Prison</name>
<playcount>28</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/The+Glass+Prison</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
</track>
<track>
<name>Superstition</name>
<playcount>28</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Stevie+Wonder/_/Superstition</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Stevie Wonder</name>
<mbid>1ee18fb3-18a6-4c7f-8ba0-bc41cdd0462e</mbid>
<url>http://www.last.fm/music/Stevie+Wonder</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8590525.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8590525.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8590525.jpg</image>
</track>
<track>
<name>Hollow Years</name>
<playcount>28</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Hollow+Years</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/13628909.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/13628909.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/13628909.jpg</image>
</track>
<track>
<name>Know Your Enemy</name>
<playcount>27</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine/_/Know+Your+Enemy</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Rage Against the Machine</name>
<mbid>3798b104-01cb-484c-a3b0-56adc6399b80</mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/19784479.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/19784479.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/19784479.jpg</image>
</track>
<track>
<name>Take the Power Back</name>
<playcount>27</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine/_/Take+the+Power+Back</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Rage Against the Machine</name>
<mbid>3798b104-01cb-484c-a3b0-56adc6399b80</mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/19784479.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/19784479.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/19784479.jpg</image>
</track>
<track>
<name>Lines in the Sand</name>
<playcount>27</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Lines+in+the+Sand</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00000DD27.01._SCMZZZZZZZ_.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00000DD27.01._SCMZZZZZZZ_.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00000DD27.01._SCMZZZZZZZ_.jpg</image>
</track>
<track>
<name>Metropolis - Part I (The Miracle and the Sleeper)</name>
<playcount>26</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Metropolis+-+Part+I+%28The+Miracle+and+the+Sleeper%29</url>
<streamable fulltrack="0">0</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
</track>
<track>
<name>I Put a Spell on You</name>
<playcount>26</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Nina+Simone/_/I+Put+a+Spell+on+You</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Nina Simone</name>
<mbid>2944824d-4c26-476f-a981-be849081942f</mbid>
<url>http://www.last.fm/music/Nina+Simone</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/18081431.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/18081431.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/18081431.jpg</image>
</track>
<track>
<name>Photograph</name>
<playcount>26</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Def+Leppard/_/Photograph</url>
<streamable fulltrack="0">0</streamable>
<artist>
<name>Def Leppard</name>
<mbid>7249b899-8db8-43e7-9e6e-22f1e736024e</mbid>
<url>http://www.last.fm/music/Def+Leppard</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B000001F2V.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B000001F2V.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B000001F2V.01.MZZZZZZZ.jpg</image>
</track>
<track>
<name>Love Me or Leave Me</name>
<playcount>26</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Nina+Simone/_/Love+Me+or+Leave+Me</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Nina Simone</name>
<mbid>2944824d-4c26-476f-a981-be849081942f</mbid>
<url>http://www.last.fm/music/Nina+Simone</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B000055Y5G.01._SCMZZZZZZZ_.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B000055Y5G.01._SCMZZZZZZZ_.jpg</image>
<image size="large">http://images.amazon.com/images/P/B000055Y5G.01._SCMZZZZZZZ_.jpg</image>
</track>
<track>
<name>Settle for Nothing</name>
<playcount>26</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine/_/Settle+for+Nothing</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Rage Against the Machine</name>
<mbid>3798b104-01cb-484c-a3b0-56adc6399b80</mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/19784479.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/19784479.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/19784479.jpg</image>
</track>
<track>
<name>Just Let Me Breathe</name>
<playcount>26</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Just+Let+Me+Breathe</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00005QJDG.01._SCMZZZZZZZ_.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00005QJDG.01._SCMZZZZZZZ_.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00005QJDG.01._SCMZZZZZZZ_.jpg</image>
</track>
<track>
<name>Lifting Shadows Off a Dream</name>
<playcount>25</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Lifting+Shadows+Off+a+Dream</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B000002JKA.01.THUMBZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B000002JKA.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B000002JKA.01.LZZZZZZZ.jpg</image>
</track>
<track>
<name>Fire and Rain</name>
<playcount>25</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/James+Taylor/_/Fire+and+Rain</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>James Taylor</name>
<mbid>107d0c22-d051-4d98-8206-4e14de02132a</mbid>
<url>http://www.last.fm/music/James+Taylor</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12619275.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12619275.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12619275.jpg</image>
</track>
<track>
<name>The Great Debate</name>
<playcount>25</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/The+Great+Debate</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
</track>
<track>
<name>Peruvian Skies</name>
<playcount>25</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Peruvian+Skies</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/13628909.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/13628909.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/13628909.jpg</image>
</track>
<track>
<name>Misunderstood</name>
<playcount>24</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Misunderstood</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
</track>
<track>
<name>Quicksand Jesus</name>
<playcount>24</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Skid+Row/_/Quicksand+Jesus</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Skid Row</name>
<mbid>6da0515e-a27d-449d-84cc-00713c38a140</mbid>
<url>http://www.last.fm/music/Skid+Row</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B000002IQW.01.THUMBZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B000002IQW.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B000002IQW.01.LZZZZZZZ.jpg</image>
</track>
<track>
<name>El Paso</name>
<playcount>24</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Marty+Robbins/_/El+Paso</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Marty Robbins</name>
<mbid>2c2add7c-9a99-4812-a20e-870d331f01fd</mbid>
<url>http://www.last.fm/music/Marty+Robbins</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B0000025W4.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B0000025W4.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B0000025W4.01.MZZZZZZZ.jpg</image>
</track>
<track>
<name>Welcome to the Jungle</name>
<playcount>24</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Guns+N%27+Roses/_/Welcome+to+the+Jungle</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Guns N' Roses</name>
<mbid>eeb1195b-f213-4ce1-b28c-8565211f8e43</mbid>
<url>http://www.last.fm/music/Guns+N%27+Roses</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8616041.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8616041.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8616041.jpg</image>
</track>
<track>
<name>Lie</name>
<playcount>23</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Lie</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B000002JKA.01.THUMBZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B000002JKA.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B000002JKA.01.LZZZZZZZ.jpg</image>
</track>
<track>
<name>Get the Fuck Out</name>
<playcount>23</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Skid+Row/_/Get+the+Fuck+Out</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Skid Row</name>
<mbid>6da0515e-a27d-449d-84cc-00713c38a140</mbid>
<url>http://www.last.fm/music/Skid+Row</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/13845469.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/13845469.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/13845469.jpg</image>
</track>
<track>
<name>Porno Star</name>
<playcount>23</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Buckcherry/_/Porno+Star</url>
<streamable fulltrack="0">0</streamable>
<artist>
<name>Buckcherry</name>
<mbid>822e92ef-72ea-42e0-9af1-b987816b487a</mbid>
<url>http://www.last.fm/music/Buckcherry</url>
</artist>
</track>
<track>
<name>Township Rebellion</name>
<playcount>23</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine/_/Township+Rebellion</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Rage Against the Machine</name>
<mbid>3798b104-01cb-484c-a3b0-56adc6399b80</mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/19784479.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/19784479.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/19784479.jpg</image>
</track>
<track>
<name>Peter Gunn Theme</name>
<playcount>23</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/The+Blues+Brothers/_/Peter+Gunn+Theme</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>The Blues Brothers</name>
<mbid>7252abc2-dfc8-4aa6-889f-2d168b265403</mbid>
<url>http://www.last.fm/music/The+Blues+Brothers</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8591289.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8591289.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8591289.jpg</image>
</track>
<track>
<name>Steamroller</name>
<playcount>23</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/James+Taylor/_/Steamroller</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>James Taylor</name>
<mbid>107d0c22-d051-4d98-8206-4e14de02132a</mbid>
<url>http://www.last.fm/music/James+Taylor</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B0009YXDD8.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B0009YXDD8.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B0009YXDD8.01.MZZZZZZZ.jpg</image>
</track>
<track>
<name>Blind Faith</name>
<playcount>23</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Blind+Faith</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
</track>
<track>
<name>Wasn't Born To Follow</name>
<playcount>23</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/The+Byrds/_/Wasn%27t+Born+To+Follow</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>The Byrds</name>
<mbid>2819834e-4e08-47b0-a2c4-b7672318e8f0</mbid>
<url>http://www.last.fm/music/The+Byrds</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00000APS6.01.THUMBZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00000APS6.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00000APS6.01.LZZZZZZZ.jpg</image>
</track>
<track>
<name>Whiskey in the Morning</name>
<playcount>23</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Buckcherry/_/Whiskey+in+the+Morning</url>
<streamable fulltrack="0">0</streamable>
<artist>
<name>Buckcherry</name>
<mbid>822e92ef-72ea-42e0-9af1-b987816b487a</mbid>
<url>http://www.last.fm/music/Buckcherry</url>
</artist>
</track>
<track>
<name>Frontside</name>
<playcount>22</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Buckcherry/_/Frontside</url>
<streamable fulltrack="0">0</streamable>
<artist>
<name>Buckcherry</name>
<mbid>822e92ef-72ea-42e0-9af1-b987816b487a</mbid>
<url>http://www.last.fm/music/Buckcherry</url>
</artist>
</track>
<track>
<name>Crossroads</name>
<playcount>22</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Cream/_/Crossroads</url>
<streamable fulltrack="0">0</streamable>
<artist>
<name>Cream</name>
<mbid>04cd0cfd-bfd1-4c36-bc38-95c35e2c045f</mbid>
<url>http://www.last.fm/music/Cream</url>
</artist>
</track>
<track>
<name>Disappear</name>
<playcount>22</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Disappear</url>
<streamable fulltrack="0">0</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
</track>
<track>
<name>Nightrain</name>
<playcount>22</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Guns+N%27+Roses/_/Nightrain</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Guns N' Roses</name>
<mbid>eeb1195b-f213-4ce1-b28c-8565211f8e43</mbid>
<url>http://www.last.fm/music/Guns+N%27+Roses</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8616041.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8616041.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8616041.jpg</image>
</track>
</tracks></lfm>

View File

@ -0,0 +1,61 @@
<?xml version="1.0" encoding="utf-8"?>
<lfm status="ok">
<comparison>
<result>
<score>0.81405720173183</score>
<artists matches="65">
<artist>
<name>Coldplay</name>
<url>http://www.last.fm/music/Coldplay</url>
<image size="large">http://userserve-ak.last.fm/serve/126/5735261.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/5735261.jpg</image>
<image size="small">http://userserve-ak.last.fm/serve/34/5735261.jpg</image>
</artist>
<artist>
<name>Red Hot Chili Peppers</name>
<url>http://www.last.fm/music/Red+Hot+Chili+Peppers</url>
<image size="large">http://userserve-ak.last.fm/serve/126/403312.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/403312.jpg</image>
<image size="small">http://userserve-ak.last.fm/serve/34/403312.jpg</image>
</artist>
<artist>
<name>The Killers</name>
<url>http://www.last.fm/music/The+Killers</url>
<image size="large">http://userserve-ak.last.fm/serve/126/12895249.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/12895249.jpg</image>
<image size="small">http://userserve-ak.last.fm/serve/34/12895249.jpg</image>
</artist>
<artist>
<name>The Beatles</name>
<url>http://www.last.fm/music/The+Beatles</url>
<image size="large">http://userserve-ak.last.fm/serve/126/100199.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/100199.jpg</image>
<image size="small">http://userserve-ak.last.fm/serve/34/100199.jpg</image>
</artist>
<artist>
<name>U2</name>
<url>http://www.last.fm/music/U2</url>
<image size="large">http://userserve-ak.last.fm/serve/126/416726.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/416726.jpg</image>
<image size="small">http://userserve-ak.last.fm/serve/34/416726.jpg</image>
</artist>
</artists>
</result>
<input>
<user>
<name>RJ</name>
<url>http://www.last.fm/user/RJ</url>
<image size="large">http://userserve-ak.last.fm/serve/126/8270359.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/8270359.jpg</image>
<image size="small">http://userserve-ak.last.fm/serve/34/8270359.jpg</image>
</user>
<user>
<name>abhin4v</name>
<url>http://www.last.fm/user/abhin4v</url>
<image size="large">http://userserve-ak.last.fm/serve/126/1572487.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/1572487.jpg</image>
<image size="small">http://userserve-ak.last.fm/serve/34/1572487.jpg</image>
</user>
</input>
</comparison>
</lfm>

View File

@ -0,0 +1,982 @@
<?xml version="1.0" encoding="utf-8"?>
<lfm status="ok">
<weeklyartistchart user="RJ" from="1108296002" to="1108900802">
<artist rank="1">
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<playcount>11</playcount>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<artist rank="2">
<name>R.E.M.</name>
<mbid>ea4dfa26-f633-4da6-a52a-f49ea4897b58</mbid>
<playcount>8</playcount>
<url>http://www.last.fm/music/R.E.M.</url>
</artist>
<artist rank="3">
<name>Metallica</name>
<mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
<playcount>8</playcount>
<url>http://www.last.fm/music/Metallica</url>
</artist>
<artist rank="4">
<name>The Smashing Pumpkins</name>
<mbid>ba0d6274-db14-4ef5-b28d-657ebde1a396</mbid>
<playcount>7</playcount>
<url>http://www.last.fm/music/The+Smashing+Pumpkins</url>
</artist>
<artist rank="5">
<name>Counting Crows</name>
<mbid>a0327dc2-dc76-44d5-aec6-47cd2dff1469</mbid>
<playcount>6</playcount>
<url>http://www.last.fm/music/Counting+Crows</url>
</artist>
<artist rank="6">
<name>Ludwig van Beethoven</name>
<mbid>1f9df192-a621-4f54-8850-2c5373b7eac9</mbid>
<playcount>6</playcount>
<url>http://www.last.fm/music/Ludwig+van+Beethoven</url>
</artist>
<artist rank="7">
<name>Johann Sebastian Bach</name>
<mbid>24f1766e-9635-4d58-a4d4-9413f9f98a4c</mbid>
<playcount>6</playcount>
<url>http://www.last.fm/music/Johann+Sebastian+Bach</url>
</artist>
<artist rank="8">
<name>Mr. Big</name>
<mbid>bd1180c4-4252-461f-94dc-543906c02522</mbid>
<playcount>5</playcount>
<url>http://www.last.fm/music/Mr.+Big</url>
</artist>
<artist rank="9">
<name>Muse</name>
<mbid>9c9f1380-2516-4fc9-a3e6-f9f61941d090</mbid>
<playcount>5</playcount>
<url>http://www.last.fm/music/Muse</url>
</artist>
<artist rank="10">
<name>Bruce Springsteen</name>
<mbid>70248960-cb53-4ea4-943a-edb18f7d336f</mbid>
<playcount>5</playcount>
<url>http://www.last.fm/music/Bruce+Springsteen</url>
</artist>
<artist rank="11">
<name>Joe Satriani</name>
<mbid>29762c82-bb92-4acd-b1fb-09cc4da250d2</mbid>
<playcount>5</playcount>
<url>http://www.last.fm/music/Joe+Satriani</url>
</artist>
<artist rank="12">
<name>Pat Metheny</name>
<mbid>7daac7f9-8fcc-485f-a14f-f8091d98cf25</mbid>
<playcount>5</playcount>
<url>http://www.last.fm/music/Pat+Metheny</url>
</artist>
<artist rank="13">
<name>Eva Cassidy</name>
<mbid>6f2dfabb-f0bb-4801-a392-592489a148e7</mbid>
<playcount>5</playcount>
<url>http://www.last.fm/music/Eva+Cassidy</url>
</artist>
<artist rank="14">
<name>PJ Harvey</name>
<mbid>e795e03d-b5d5-4a5f-834d-162cfb308a2c</mbid>
<playcount>5</playcount>
<url>http://www.last.fm/music/PJ+Harvey</url>
</artist>
<artist rank="15">
<name>King's X</name>
<mbid>c8f5272e-8a94-4807-9099-70181e92fc46</mbid>
<playcount>4</playcount>
<url>http://www.last.fm/music/King%27s+X</url>
</artist>
<artist rank="16">
<name>Collective Soul</name>
<mbid>aa266ac7-d919-4132-982e-76cbd95591a7</mbid>
<playcount>4</playcount>
<url>http://www.last.fm/music/Collective+Soul</url>
</artist>
<artist rank="17">
<name>Led Zeppelin</name>
<mbid>678d88b2-87b0-403b-b63d-5da7465aecc3</mbid>
<playcount>4</playcount>
<url>http://www.last.fm/music/Led+Zeppelin</url>
</artist>
<artist rank="18">
<name>Red Hot Chili Peppers</name>
<mbid>8bfac288-ccc5-448d-9573-c33ea2aa5c30</mbid>
<playcount>4</playcount>
<url>http://www.last.fm/music/Red+Hot+Chili+Peppers</url>
</artist>
<artist rank="19">
<name>Miles Davis</name>
<mbid>561d854a-6a28-4aa7-8c99-323e6ce46c2a</mbid>
<playcount>4</playcount>
<url>http://www.last.fm/music/Miles+Davis</url>
</artist>
<artist rank="20">
<name>Free</name>
<mbid>6cb5d1ca-03ce-4656-92f5-bf35f53d1582</mbid>
<playcount>3</playcount>
<url>http://www.last.fm/music/Free</url>
</artist>
<artist rank="21">
<name>John Mayer</name>
<mbid>144ef525-85e9-40c3-8335-02c32d0861f3</mbid>
<playcount>3</playcount>
<url>http://www.last.fm/music/John+Mayer</url>
</artist>
<artist rank="22">
<name>Prince</name>
<mbid>070d193a-845c-479f-980e-bef15710653e</mbid>
<playcount>3</playcount>
<url>http://www.last.fm/music/Prince</url>
</artist>
<artist rank="23">
<name>Tom Waits</name>
<mbid>c3aeb863-7b26-4388-94e8-5a240f2be21b</mbid>
<playcount>3</playcount>
<url>http://www.last.fm/music/Tom+Waits</url>
</artist>
<artist rank="24">
<name>Guns N' Roses</name>
<mbid>eeb1195b-f213-4ce1-b28c-8565211f8e43</mbid>
<playcount>3</playcount>
<url>http://www.last.fm/music/Guns+N%27+Roses</url>
</artist>
<artist rank="25">
<name>The Jimi Hendrix Experience</name>
<mbid>33b3c323-77c2-417c-a5b4-af7e6a111cc9</mbid>
<playcount>3</playcount>
<url>http://www.last.fm/music/The+Jimi+Hendrix+Experience</url>
</artist>
<artist rank="26">
<name>Jeff Buckley</name>
<mbid>e6e879c0-3d56-4f12-b3c5-3ce459661a8e</mbid>
<playcount>3</playcount>
<url>http://www.last.fm/music/Jeff+Buckley</url>
</artist>
<artist rank="27">
<name>Jimi Hendrix</name>
<mbid>06fb1c8b-566e-4cb2-985b-b467c90781d4</mbid>
<playcount>3</playcount>
<url>http://www.last.fm/music/Jimi+Hendrix</url>
</artist>
<artist rank="28">
<name>Dave Weckl</name>
<mbid>32dca198-b5fc-4081-9dd3-1309a935014b</mbid>
<playcount>3</playcount>
<url>http://www.last.fm/music/Dave+Weckl</url>
</artist>
<artist rank="29">
<name>Frank Sinatra</name>
<mbid>197450cd-0124-4164-b723-3c22dd16494d</mbid>
<playcount>3</playcount>
<url>http://www.last.fm/music/Frank+Sinatra</url>
</artist>
<artist rank="30">
<name>Queen</name>
<mbid>0383dadf-2a4e-4d10-a46a-e9e041da8eb3</mbid>
<playcount>3</playcount>
<url>http://www.last.fm/music/Queen</url>
</artist>
<artist rank="31">
<name>Beatallica</name>
<mbid>8602561b-caa1-4ef7-9501-a4159b3a41c3</mbid>
<playcount>3</playcount>
<url>http://www.last.fm/music/Beatallica</url>
</artist>
<artist rank="32">
<name>Charles Mingus</name>
<mbid>f3b8e107-abe8-4743-b6a3-4a4ee995e71f</mbid>
<playcount>3</playcount>
<url>http://www.last.fm/music/Charles+Mingus</url>
</artist>
<artist rank="33">
<name>Enya</name>
<mbid>4967c0a1-b9f3-465e-8440-4598fd9fc33c</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Enya</url>
</artist>
<artist rank="34">
<name>Fatboy Slim</name>
<mbid>34c63966-445c-4613-afe1-4f0e1e53ae9a</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Fatboy+Slim</url>
</artist>
<artist rank="35">
<name>Dizzy Gillespie</name>
<mbid>e9ba8ccb-505f-4e5c-b909-65998d0d35b5</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Dizzy+Gillespie</url>
</artist>
<artist rank="36">
<name>Eels</name>
<mbid>14387b0f-765c-4852-852f-135335790466</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Eels</url>
</artist>
<artist rank="37">
<name>Sheryl Crow</name>
<mbid>80ccfede-c258-4575-a7ad-c982e9932e0f</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Sheryl+Crow</url>
</artist>
<artist rank="38">
<name>Nine Inch Nails</name>
<mbid>b7ffd2af-418f-4be2-bdd1-22f8b48613da</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Nine+Inch+Nails</url>
</artist>
<artist rank="39">
<name>John Patitucci</name>
<mbid>b7999b55-a0b0-4ea5-bcba-e5cc86e2f134</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/John+Patitucci</url>
</artist>
<artist rank="40">
<name>Def Leppard</name>
<mbid>7249b899-8db8-43e7-9e6e-22f1e736024e</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Def+Leppard</url>
</artist>
<artist rank="41">
<name>Frédéric Chopin</name>
<mbid>09ff1fe8-d61c-4b98-bb82-18487c74d7b7</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Fr%C3%A9d%C3%A9ric+Chopin</url>
</artist>
<artist rank="42">
<name>Foo Fighters</name>
<mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Foo+Fighters</url>
</artist>
<artist rank="43">
<name>Pearl Jam</name>
<mbid>83b9cbe7-9857-49e2-ab8e-b57b01038103</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Pearl+Jam</url>
</artist>
<artist rank="44">
<name>Dan Reed Network</name>
<mbid>2fe24c3c-5768-484d-a64b-04983e99325a</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Dan+Reed+Network</url>
</artist>
<artist rank="45">
<name>Jamiroquai</name>
<mbid>f4857fb9-e255-4dc6-bd01-e4ca7cc68544</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Jamiroquai</url>
</artist>
<artist rank="46">
<name>Marcus Miller</name>
<mbid>8fbabd07-4b2b-4f4c-add5-680429a8c44a</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Marcus+Miller</url>
</artist>
<artist rank="47">
<name>Herbie Hancock</name>
<mbid>27613b78-1b9d-4ec3-9db5-fa0743465fdd</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Herbie+Hancock</url>
</artist>
<artist rank="48">
<name>Ronny Jordan</name>
<mbid>50b3ef68-29c1-42ec-92d5-90e0f40fdf7f</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Ronny+Jordan</url>
</artist>
<artist rank="49">
<name>Marvin Gaye</name>
<mbid>afdb7919-059d-43c1-b668-ba1d265e7e42</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Marvin+Gaye</url>
</artist>
<artist rank="50">
<name>Deep Purple</name>
<mbid>79491354-3d83-40e3-9d8e-7592d58d790a</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Deep+Purple</url>
</artist>
<artist rank="51">
<name>Billie Holiday</name>
<mbid>d59c4cda-11d9-48db-8bfe-b557ee602aed</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Billie+Holiday</url>
</artist>
<artist rank="52">
<name>David Lee Roth</name>
<mbid>802d37d5-0aaa-492e-b366-99f75e5a196f</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/David+Lee+Roth</url>
</artist>
<artist rank="53">
<name>Stevie Wonder</name>
<mbid>1ee18fb3-18a6-4c7f-8ba0-bc41cdd0462e</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Stevie+Wonder</url>
</artist>
<artist rank="54">
<name>Hothouse Flowers</name>
<mbid>9ddb555e-4cf2-4d76-a9d5-7627988cf6ab</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Hothouse+Flowers</url>
</artist>
<artist rank="55">
<name>Silverchair</name>
<mbid>b0799818-22cb-4564-8e68-3c410d0722ee</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Silverchair</url>
</artist>
<artist rank="56">
<name>Tower of Power</name>
<mbid>6c4d81f8-8a34-4cda-9a4b-538c539b50f4</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Tower+of+Power</url>
</artist>
<artist rank="57">
<name>George Michael</name>
<mbid>ccb8f30e-4d71-40c4-8b1d-846dafe73e2c</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/George+Michael</url>
</artist>
<artist rank="58">
<name>Moby</name>
<mbid>8970d868-0723-483b-a75b-51088913d3d4</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Moby</url>
</artist>
<artist rank="59">
<name>John Lee Hooker &amp; Miles Davis</name>
<mbid>bb621b76-27b2-444f-9d26-7900c1bab75a</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/John%2BLee%2BHooker%2B%2526%2BMiles%2BDavis</url>
</artist>
<artist rank="60">
<name>Madonna</name>
<mbid>79239441-bfd5-4981-a70c-55c3f15c1287</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Madonna</url>
</artist>
<artist rank="61">
<name>Beth Orton</name>
<mbid>214d84a5-e9e5-4432-af95-8c84da7ba4c0</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Beth+Orton</url>
</artist>
<artist rank="62">
<name>Diana Krall</name>
<mbid>67d2cb7a-9ddb-4a7f-82bf-5a2d1a038e98</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Diana+Krall</url>
</artist>
<artist rank="63">
<name>Goo Goo Dolls</name>
<mbid>e2c00c56-8365-4160-9f40-a64682917633</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Goo+Goo+Dolls</url>
</artist>
<artist rank="64">
<name>Crash Test Dummies</name>
<mbid>afb8f901-d846-4c70-a898-59bc183d1da7</mbid>
<playcount>2</playcount>
<url>http://www.last.fm/music/Crash+Test+Dummies</url>
</artist>
<artist rank="65">
<name>Pink Floyd</name>
<mbid>83d91898-7763-47d7-b03b-b92132375c47</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Pink+Floyd</url>
</artist>
<artist rank="66">
<name>David Hudson and Friends</name>
<mbid>80e577ba-841f-43ba-9f32-72e7c1692336</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/David+Hudson+and+Friends</url>
</artist>
<artist rank="67">
<name>Genesis</name>
<mbid>8e3fcd7d-bda1-4ca0-b987-b8528d2ee74e</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Genesis</url>
</artist>
<artist rank="68">
<name>Depeche Mode</name>
<mbid>8538e728-ca0b-4321-b7e5-cff6565dd4c0</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Depeche+Mode</url>
</artist>
<artist rank="69">
<name>Larry Carlton</name>
<mbid>f1f81989-dfa9-4bd3-805e-dcf3900c43e3</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Larry+Carlton</url>
</artist>
<artist rank="70">
<name>The Killers</name>
<mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/The+Killers</url>
</artist>
<artist rank="71">
<name>Bryan Adams</name>
<mbid>4dbf5678-7a31-406a-abbe-232f8ac2cd63</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Bryan+Adams</url>
</artist>
<artist rank="72">
<name>The Pogues</name>
<mbid>d41a6875-b626-4c0f-89a1-aecb643d29ff</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/The+Pogues</url>
</artist>
<artist rank="73">
<name>The Who</name>
<mbid>9fdaa16b-a6c4-4831-b87c-bc9ca8ce7eaa</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/The+Who</url>
</artist>
<artist rank="74">
<name>The Cranberries</name>
<mbid>c98d40fd-f6cf-4b26-883e-eaa515ee2851</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/The+Cranberries</url>
</artist>
<artist rank="75">
<name>System of a Down</name>
<mbid>cc0b7089-c08d-4c10-b6b0-873582c17fd6</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/System+of+a+Down</url>
</artist>
<artist rank="76">
<name>Frankie Goes to Hollywood</name>
<mbid>c09c8263-40ef-4352-8031-e438b1ce68fc</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Frankie+Goes+to+Hollywood</url>
</artist>
<artist rank="77">
<name>The Stone Roses</name>
<mbid>b5fa29f1-6c22-4321-a488-b5f363b06b06</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/The+Stone+Roses</url>
</artist>
<artist rank="78">
<name>Sum 41</name>
<mbid>f2eef649-a6d5-4114-afba-e50ab26254d2</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Sum+41</url>
</artist>
<artist rank="79">
<name>AFI</name>
<mbid>1c3919b2-43ca-4a4a-935d-9d50135ec0ef</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/AFI</url>
</artist>
<artist rank="80">
<name>The Doors</name>
<mbid>9efff43b-3b29-4082-824e-bc82f646f93d</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/The+Doors</url>
</artist>
<artist rank="81">
<name>U2</name>
<mbid>a3cb23fc-acd3-4ce0-8f36-1e5aa6a18432</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/U2</url>
</artist>
<artist rank="82">
<name>Nirvana</name>
<mbid>5b11f4ce-a62d-471e-81fc-a69a8278c7da</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Nirvana</url>
</artist>
<artist rank="83">
<name>Chuck Berry</name>
<mbid>592a3b6d-c42b-4567-99c9-ecf63bd66499</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Chuck+Berry</url>
</artist>
<artist rank="84">
<name>Kenny Burrell</name>
<mbid>a85b66d2-34df-4d5a-8c0d-d585b8a14ce1</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Kenny+Burrell</url>
</artist>
<artist rank="85">
<name>Alice Cooper</name>
<mbid>4d7928cd-7ed2-4282-8c29-c0c9f966f1bd</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Alice+Cooper</url>
</artist>
<artist rank="86">
<name>Michael Jackson</name>
<mbid>f27ec8db-af05-4f36-916e-3d57f91ecf5e</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Michael+Jackson</url>
</artist>
<artist rank="87">
<name>Michael Andrews</name>
<mbid>ee6e8790-7123-40ab-b7e9-03c4fe6aa08f</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Michael+Andrews</url>
</artist>
<artist rank="88">
<name>Radiohead</name>
<mbid>a74b1b7f-71a5-4011-9441-d0b5e4122711</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Radiohead</url>
</artist>
<artist rank="89">
<name>Drowning Pool</name>
<mbid>87a73cf0-ebdf-483d-8b5a-3db1e5e72122</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Drowning+Pool</url>
</artist>
<artist rank="90">
<name>Iron Maiden</name>
<mbid>ca891d65-d9b0-4258-89f7-e6ba29d83767</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Iron+Maiden</url>
</artist>
<artist rank="91">
<name>Stanley Jordan</name>
<mbid>6ba7dd48-a5fe-46a3-947a-057919dbe989</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Stanley+Jordan</url>
</artist>
<artist rank="92">
<name>Suzie Higgie</name>
<mbid>2ebcc4b4-f2dc-44d1-be50-c370d56c5b8f</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Suzie+Higgie</url>
</artist>
<artist rank="93">
<name>Finger Eleven</name>
<mbid>0b76f632-25fa-4681-9862-86499c28afd3</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Finger+Eleven</url>
</artist>
<artist rank="94">
<name>Evanescence</name>
<mbid>f4a31f0a-51dd-4fa7-986d-3095c40c5ed9</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Evanescence</url>
</artist>
<artist rank="95">
<name>Eric Clapton</name>
<mbid>618b6900-0618-4f1e-b835-bccb17f84294</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Eric+Clapton</url>
</artist>
<artist rank="96">
<name>Soundgarden</name>
<mbid>153c9281-268f-4cf3-8938-f5a4593e5df4</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Soundgarden</url>
</artist>
<artist rank="97">
<name>Simon &amp; Garfunkel</name>
<mbid>5d02f264-e225-41ff-83f7-d9b1f0b1874a</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Simon%2B%2526%2BGarfunkel</url>
</artist>
<artist rank="98">
<name>Gotan Project</name>
<mbid>66cc244d-6f96-4668-a6e9-0f9cd5acc940</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Gotan+Project</url>
</artist>
<artist rank="99">
<name>Mr. Bungle</name>
<mbid>277e21a9-2d64-452d-96c4-2d23a7af5891</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Mr.+Bungle</url>
</artist>
<artist rank="100">
<name>Ronnie Scott's Quintet</name>
<mbid></mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Ronnie+Scott%27s+Quintet</url>
</artist>
<artist rank="101">
<name>Girls Against Boys</name>
<mbid>837cd182-8da4-4c1c-924c-03daf72f0237</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Girls+Against+Boys</url>
</artist>
<artist rank="102">
<name>Jane's Addiction</name>
<mbid>e3434cc7-d348-491a-9dc8-325af3d9086d</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Jane%27s+Addiction</url>
</artist>
<artist rank="103">
<name>Cutting Crew</name>
<mbid>2aa79fa9-7ac0-443b-b250-18d67227a1cb</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Cutting+Crew</url>
</artist>
<artist rank="104">
<name>Stanley Clarke</name>
<mbid>5ab6ca23-9e17-43f2-ad92-869d28bdbf11</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Stanley+Clarke</url>
</artist>
<artist rank="105">
<name>Jools Holland</name>
<mbid>29a6f210-8c16-404a-9c0f-c26e26ecb29c</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Jools+Holland</url>
</artist>
<artist rank="106">
<name>Supreme Beings of Leisure</name>
<mbid>1b483425-4f02-4599-a31c-9b5c132e0a7a</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Supreme+Beings+of+Leisure</url>
</artist>
<artist rank="107">
<name>Buckcherry</name>
<mbid>822e92ef-72ea-42e0-9af1-b987816b487a</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Buckcherry</url>
</artist>
<artist rank="108">
<name>Transatlantic</name>
<mbid>a57fb9e3-ac21-4c53-87f1-e3b25cb6944a</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Transatlantic</url>
</artist>
<artist rank="109">
<name>Massive Attack</name>
<mbid>10adbe5e-a2c0-4bf3-8249-2b4cbf6e6ca8</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Massive+Attack</url>
</artist>
<artist rank="110">
<name>Mescalito</name>
<mbid>439a0e5b-7934-4ddd-8223-794f0acdadec</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Mescalito</url>
</artist>
<artist rank="111">
<name>Antonio Vivaldi</name>
<mbid>ad79836d-9849-44df-8789-180bbc823f3c</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Antonio+Vivaldi</url>
</artist>
<artist rank="112">
<name>Weather Report</name>
<mbid>0f9997bd-e079-429e-8ccd-9378c9b0c746</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Weather+Report</url>
</artist>
<artist rank="113">
<name>Ike Quebec</name>
<mbid>d2301fc2-4416-477d-a4ca-5c5d98d0a998</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Ike+Quebec</url>
</artist>
<artist rank="114">
<name>Pat Metheny, Dave Holland, Roy Haynes</name>
<mbid></mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Pat+Metheny%2C+Dave+Holland%2C+Roy+Haynes</url>
</artist>
<artist rank="115">
<name>Madness</name>
<mbid>5f58803e-8c4c-478e-8b51-477f38483ede</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Madness</url>
</artist>
<artist rank="116">
<name>The Wallflowers</name>
<mbid>d9c90718-d54d-4ccf-a92e-37a5415ce299</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/The+Wallflowers</url>
</artist>
<artist rank="117">
<name>Norah Jones</name>
<mbid>985c709c-7771-4de3-9024-7bda29ebe3f9</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Norah+Jones</url>
</artist>
<artist rank="118">
<name>Derek Sherinian</name>
<mbid>a5171273-7c17-4628-8bd2-c372e5cd9586</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Derek+Sherinian</url>
</artist>
<artist rank="119">
<name>Kid Rock</name>
<mbid>ad0ecd8b-805e-406e-82cb-5b00c3a3a29e</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Kid+Rock</url>
</artist>
<artist rank="120">
<name>Jaco Pastorius</name>
<mbid>46a6fac0-2e14-4214-b08e-3bdb1cffa5aa</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Jaco+Pastorius</url>
</artist>
<artist rank="121">
<name>The Classic Chill Out Album</name>
<mbid></mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/The+Classic+Chill+Out+Album</url>
</artist>
<artist rank="122">
<name>Luciano Ligabue</name>
<mbid>d5b0dc28-2f22-4f7d-adfb-ebbc30fa6d48</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Luciano+Ligabue</url>
</artist>
<artist rank="123">
<name>Aretha Franklin</name>
<mbid>2f9ecbed-27be-40e6-abca-6de49d50299e</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Aretha+Franklin</url>
</artist>
<artist rank="124">
<name>David Axelrod</name>
<mbid>d5c756c1-4872-457b-8f00-d620547cbb85</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/David+Axelrod</url>
</artist>
<artist rank="125">
<name>The Rolling Stones</name>
<mbid>b071f9fa-14b0-4217-8e97-eb41da73f598</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/The+Rolling+Stones</url>
</artist>
<artist rank="126">
<name>Vangelis</name>
<mbid>57fca0e2-f9ad-4ae6-af9d-6a6f50cbcd5f</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Vangelis</url>
</artist>
<artist rank="127">
<name>Rammstein</name>
<mbid>b2d122f9-eadb-4930-a196-8f221eeb0c66</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Rammstein</url>
</artist>
<artist rank="128">
<name>The Delfonics</name>
<mbid>cfe0dee4-4409-46e3-bbf2-edac88971132</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/The+Delfonics</url>
</artist>
<artist rank="129">
<name>[unknown]</name>
<mbid>125ec42a-7229-4250-afc5-e057484327fe</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/%5Bunknown%5D</url>
</artist>
<artist rank="130">
<name>INXS</name>
<mbid>481bf5f9-2e7c-4c44-b08a-05b32bc7c00d</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/INXS</url>
</artist>
<artist rank="131">
<name>Morcheeba</name>
<mbid>067102ea-9519-4622-9077-57ca4164cfbb</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Morcheeba</url>
</artist>
<artist rank="132">
<name>James Brown</name>
<mbid>20ff3303-4fe2-4a47-a1b6-291e26aa3438</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/James+Brown</url>
</artist>
<artist rank="133">
<name>Sarah Vaughan</name>
<mbid>351d8bdf-33a1-45e2-8c04-c85fad20da55</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Sarah+Vaughan</url>
</artist>
<artist rank="134">
<name>Tracy Chapman</name>
<mbid>1129817c-488a-4096-80c1-77fc1b107c93</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Tracy+Chapman</url>
</artist>
<artist rank="135">
<name>Kings of Leon</name>
<mbid>6ffb8ea9-2370-44d8-b678-e9237bbd347b</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Kings+of+Leon</url>
</artist>
<artist rank="136">
<name>Erik Satie</name>
<mbid>e1d521ea-5b97-4981-987c-ba988b2a87d7</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Erik+Satie</url>
</artist>
<artist rank="137">
<name>Slamin' Gladys</name>
<mbid></mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Slamin%27+Gladys</url>
</artist>
<artist rank="138">
<name>Saxon</name>
<mbid>bbd80354-597e-4d53-94e4-92b3a7cb8f2c</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Saxon</url>
</artist>
<artist rank="139">
<name>Summer</name>
<mbid>c500eb5e-6899-41d3-9555-093ed3b19a17</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Summer</url>
</artist>
<artist rank="140">
<name>Nickelback</name>
<mbid>bc710bcf-8815-42cf-bad2-3f1d12246aeb</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Nickelback</url>
</artist>
<artist rank="141">
<name>Deacon Blue</name>
<mbid>1d46cb3a-8071-45ba-855e-74e3cff20974</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Deacon+Blue</url>
</artist>
<artist rank="142">
<name>Joni Mitchell</name>
<mbid>a6de8ef9-b1a1-4756-97aa-481bbb8a4069</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Joni+Mitchell</url>
</artist>
<artist rank="143">
<name>3 Doors Down</name>
<mbid>2386cd66-e923-4e8e-bf14-2eebe2e9b973</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/3+Doors+Down</url>
</artist>
<artist rank="144">
<name>Shakatak</name>
<mbid>f6372053-44f7-4353-9c76-979116a9822d</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Shakatak</url>
</artist>
<artist rank="145">
<name>Alice in Chains</name>
<mbid>4bd95eea-b9f6-4d70-a36c-cfea77431553</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Alice+in+Chains</url>
</artist>
<artist rank="146">
<name>Firebird</name>
<mbid>3dfc0a11-0122-4bc4-8474-b67c88c5a4ea</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Firebird</url>
</artist>
<artist rank="147">
<name>Linkin Park</name>
<mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Linkin+Park</url>
</artist>
<artist rank="148">
<name>Travis</name>
<mbid>22a40b75-affc-4e69-8884-266d087e4751</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Travis</url>
</artist>
<artist rank="149">
<name>The Beatles</name>
<mbid>b10bbbfc-cf9e-42e0-be17-e2c3e1d2600d</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/The+Beatles</url>
</artist>
<artist rank="150">
<name>The Police</name>
<mbid>9e0e2b01-41db-4008-bd8b-988977d6019a</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/The+Police</url>
</artist>
<artist rank="151">
<name>Dido</name>
<mbid>d1353a0c-26fb-4318-a116-defde9c7c9ad</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Dido</url>
</artist>
<artist rank="152">
<name>The James Taylor Quartet</name>
<mbid>95495d6a-c1f2-4a62-b0e3-b9c5f2e9dea6</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/The+James+Taylor+Quartet</url>
</artist>
<artist rank="153">
<name>Courtney Pine</name>
<mbid>2f254220-3fcc-4606-9b01-9d67413922ae</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Courtney+Pine</url>
</artist>
<artist rank="154">
<name>Stone Temple Pilots</name>
<mbid>8c32bb01-58a3-453b-8050-8c0620edb0e5</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Stone+Temple+Pilots</url>
</artist>
<artist rank="155">
<name>Lenny Kravitz</name>
<mbid>0ef3f425-9bd2-4216-9dd2-219d2fe90f1f</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Lenny+Kravitz</url>
</artist>
<artist rank="156">
<name>Bob Dylan</name>
<mbid>72c536dc-7137-4477-a521-567eeb840fa8</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Bob+Dylan</url>
</artist>
<artist rank="157">
<name>Placebo</name>
<mbid>847e8284-8582-4b0e-9c26-b042a4f49e57</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Placebo</url>
</artist>
<artist rank="158">
<name>Fun Lovin' Criminals</name>
<mbid>1b15e90d-910c-4be4-99cb-463772a6430f</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Fun+Lovin%27+Criminals</url>
</artist>
<artist rank="159">
<name>Rae &amp; Christian</name>
<mbid>3f41479a-8486-4c70-a338-be75e10b6efc</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Rae%2B%2526%2BChristian</url>
</artist>
<artist rank="160">
<name>The Royal Philharmonic Orchestra</name>
<mbid>299597ae-3a20-4bf1-973e-03704af69f6b</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/The+Royal+Philharmonic+Orchestra</url>
</artist>
<artist rank="161">
<name>2Pac</name>
<mbid>382f1005-e9ab-4684-afd4-0bdae4ee37f2</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/2Pac</url>
</artist>
<artist rank="162">
<name>Level 42</name>
<mbid>d69ee229-2f36-494c-b104-9ae0d8be506b</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Level+42</url>
</artist>
<artist rank="163">
<name>Main</name>
<mbid>c4be2ec7-f45d-4deb-a444-c659bebbeeb4</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Main</url>
</artist>
</weeklyartistchart></lfm>

View File

@ -0,0 +1,124 @@
<?xml version="1.0" encoding="utf-8"?>
<lfm status="ok">
<recenttracks user="RJ">
<track >
<artist mbid="2aa79fa9-7ac0-443b-b250-18d67227a1cb">Cutting Crew</artist>
<name>Sahara</name>
<streamable>1</streamable>
<mbid></mbid>
<album mbid="45d62e00-0dc3-49ba-bb6c-a0adc80dd765">Broadcast</album>
<url>http://www.last.fm/music/Cutting+Crew/_/Sahara</url>
<image size="small">http://userserve-ak.last.fm/serve/34s/11475989.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/11475989.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/11475989.jpg</image>
<date uts="1236193538">4 Mar 2009, 19:05</date>
</track>
<track >
<artist mbid="2aa79fa9-7ac0-443b-b250-18d67227a1cb">Cutting Crew</artist>
<name>Don't Look Back</name>
<streamable>1</streamable>
<mbid></mbid>
<album mbid="45d62e00-0dc3-49ba-bb6c-a0adc80dd765">Broadcast</album>
<url>http://www.last.fm/music/Cutting+Crew/_/Don%27t+Look+Back</url>
<image size="small">http://userserve-ak.last.fm/serve/34s/11475989.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/11475989.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/11475989.jpg</image>
<date uts="1236193218">4 Mar 2009, 19:00</date>
</track>
<track >
<artist mbid="2aa79fa9-7ac0-443b-b250-18d67227a1cb">Cutting Crew</artist>
<name>(I Just) Died in Your Arms</name>
<streamable>1</streamable>
<mbid></mbid>
<album mbid="45d62e00-0dc3-49ba-bb6c-a0adc80dd765">Broadcast</album>
<url>http://www.last.fm/music/Cutting+Crew/_/%28I+Just%29+Died+in+Your+Arms</url>
<image size="small">http://userserve-ak.last.fm/serve/34s/11475989.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/11475989.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/11475989.jpg</image>
<date uts="1236192937">4 Mar 2009, 18:55</date>
</track>
<track >
<artist mbid="2aa79fa9-7ac0-443b-b250-18d67227a1cb">Cutting Crew</artist>
<name>Fear of Falling</name>
<streamable>1</streamable>
<mbid></mbid>
<album mbid="45d62e00-0dc3-49ba-bb6c-a0adc80dd765">Broadcast</album>
<url>http://www.last.fm/music/Cutting+Crew/_/Fear+of+Falling</url>
<image size="small">http://userserve-ak.last.fm/serve/34s/11475989.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/11475989.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/11475989.jpg</image>
<date uts="1236182395">4 Mar 2009, 15:59</date>
</track>
<track >
<artist mbid="2aa79fa9-7ac0-443b-b250-18d67227a1cb">Cutting Crew</artist>
<name>Life in a Dangerous Time</name>
<streamable>1</streamable>
<mbid></mbid>
<album mbid="45d62e00-0dc3-49ba-bb6c-a0adc80dd765">Broadcast</album>
<url>http://www.last.fm/music/Cutting+Crew/_/Life+in+a+Dangerous+Time</url>
<image size="small">http://userserve-ak.last.fm/serve/34s/11475989.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/11475989.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/11475989.jpg</image>
<date uts="1236182122">4 Mar 2009, 15:55</date>
</track>
<track >
<artist mbid="2aa79fa9-7ac0-443b-b250-18d67227a1cb">Cutting Crew</artist>
<name>I've Been in Love Before</name>
<streamable>1</streamable>
<mbid></mbid>
<album mbid="45d62e00-0dc3-49ba-bb6c-a0adc80dd765">Broadcast</album>
<url>http://www.last.fm/music/Cutting+Crew/_/I%27ve+Been+in+Love+Before</url>
<image size="small">http://userserve-ak.last.fm/serve/34s/11475989.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/11475989.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/11475989.jpg</image>
<date uts="1236176777">4 Mar 2009, 14:26</date>
</track>
<track >
<artist mbid="2aa79fa9-7ac0-443b-b250-18d67227a1cb">Cutting Crew</artist>
<name>One for the Mockingbird</name>
<streamable>1</streamable>
<mbid></mbid>
<album mbid="45d62e00-0dc3-49ba-bb6c-a0adc80dd765">Broadcast</album>
<url>http://www.last.fm/music/Cutting+Crew/_/One+for+the+Mockingbird</url>
<image size="small">http://userserve-ak.last.fm/serve/34s/11475989.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/11475989.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/11475989.jpg</image>
<date uts="1236176512">4 Mar 2009, 14:21</date>
</track>
<track >
<artist mbid="2aa79fa9-7ac0-443b-b250-18d67227a1cb">Cutting Crew</artist>
<name>Any Colour</name>
<streamable>1</streamable>
<mbid></mbid>
<album mbid="45d62e00-0dc3-49ba-bb6c-a0adc80dd765">Broadcast</album>
<url>http://www.last.fm/music/Cutting+Crew/_/Any+Colour</url>
<image size="small">http://userserve-ak.last.fm/serve/34s/11475989.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/11475989.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/11475989.jpg</image>
<date uts="1236176230">4 Mar 2009, 14:17</date>
</track>
<track >
<artist mbid="2aa79fa9-7ac0-443b-b250-18d67227a1cb">Cutting Crew</artist>
<name>Brag</name>
<streamable>0</streamable>
<mbid></mbid>
<album mbid="f63581ad-b944-494e-b89a-ce4af2fc3677">The Scattering</album>
<url>http://www.last.fm/music/Cutting+Crew/_/Brag</url>
<image size="small">http://userserve-ak.last.fm/serve/34s/3990288.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/3990288.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/3990288.jpg</image>
<date uts="1236175865">4 Mar 2009, 14:11</date>
</track>
<track >
<artist mbid="2aa79fa9-7ac0-443b-b250-18d67227a1cb">Cutting Crew</artist>
<name>Binkies Return</name>
<streamable>0</streamable>
<mbid></mbid>
<album mbid="f63581ad-b944-494e-b89a-ce4af2fc3677">The Scattering</album>
<url>http://www.last.fm/music/Cutting+Crew/_/Binkies+Return</url>
<image size="small">http://userserve-ak.last.fm/serve/34s/3990288.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/3990288.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/3990288.jpg</image>
<date uts="1236175774">4 Mar 2009, 14:09</date>
</track>
</recenttracks></lfm>

View File

@ -0,0 +1,705 @@
<?xml version="1.0" encoding="utf-8"?>
<lfm status="ok">
<topalbums user="RJ" type="overall">
<album rank="1">
<name>Slave To The Grid</name>
<playcount>227</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Skid+Row/Slave+To+The+Grid</url>
<artist>
<name>Skid Row</name>
<mbid>6da0515e-a27d-449d-84cc-00713c38a140</mbid>
<url>http://www.last.fm/music/Skid+Row</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12621887.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12621887.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12621887.jpg</image>
</album>
<album rank="2">
<name>Images and Words</name>
<playcount>213</playcount>
<mbid>f20971f2-c8ad-4d26-91ab-730f6dedafb2</mbid>
<url>http://www.last.fm/music/Dream+Theater/Images+and+Words</url>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12620339.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12620339.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12620339.jpg</image>
</album>
<album rank="3">
<name>Once in a Livetime</name>
<playcount>202</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/Once+in+a+Livetime</url>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00000DD27.01._SCMZZZZZZZ_.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00000DD27.01._SCMZZZZZZZ_.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00000DD27.01._SCMZZZZZZZ_.jpg</image>
</album>
<album rank="4">
<name>Nina Simone's Finest Hour</name>
<playcount>165</playcount>
<mbid>80400af0-ee7b-4035-8c25-72289160ac21</mbid>
<url>http://www.last.fm/music/Nina+Simone/Nina+Simone%27s+Finest+Hour</url>
<artist>
<name>Nina Simone</name>
<mbid>2944824d-4c26-476f-a981-be849081942f</mbid>
<url>http://www.last.fm/music/Nina+Simone</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8762911.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8762911.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8762911.jpg</image>
</album>
<album rank="5">
<name>Sex and Religion</name>
<playcount>158</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Steve+Vai/Sex+and+Religion</url>
<artist>
<name>Steve Vai</name>
<mbid>5e7ccd92-6277-451a-aab9-1efd587c50f3</mbid>
<url>http://www.last.fm/music/Steve+Vai</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12620315.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12620315.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12620315.jpg</image>
</album>
<album rank="6">
<name>title</name>
<playcount>156</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Slamin%27+Gladys/title</url>
<artist>
<name>Slamin' Gladys</name>
<mbid></mbid>
<url>http://www.last.fm/music/Slamin%27+Gladys</url>
</artist>
<image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
<image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
<image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
</album>
<album rank="7">
<name>Time Bomb</name>
<playcount>151</playcount>
<mbid>01e475d1-fefa-4e83-a389-4af98e29d311</mbid>
<url>http://www.last.fm/music/Buckcherry/Time+Bomb</url>
<artist>
<name>Buckcherry</name>
<mbid>822e92ef-72ea-42e0-9af1-b987816b487a</mbid>
<url>http://www.last.fm/music/Buckcherry</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8664833.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8664833.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8664833.jpg</image>
</album>
<album rank="8">
<name>Day for Night</name>
<playcount>149</playcount>
<mbid>d2bd6f36-d795-4601-96e0-f44fc400a321</mbid>
<url>http://www.last.fm/music/Spock%27s+Beard/Day+for+Night</url>
<artist>
<name>Spock's Beard</name>
<mbid>9e57e406-4fb1-40d0-bcd2-2aa1d6390c1d</mbid>
<url>http://www.last.fm/music/Spock%27s+Beard</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00000I8CC.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00000I8CC.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00000I8CC.01.MZZZZZZZ.jpg</image>
</album>
<album rank="8">
<name>Liquid Tension Experiment</name>
<playcount>149</playcount>
<mbid>c3c0e462-1606-40dc-9667-1b26b9fb44c5</mbid>
<url>http://www.last.fm/music/Liquid+Tension+Experiment/Liquid+Tension+Experiment</url>
<artist>
<name>Liquid Tension Experiment</name>
<mbid>bc641be9-ca36-4c61-9394-5230433f6646</mbid>
<url>http://www.last.fm/music/Liquid+Tension+Experiment</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/15779373.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/15779373.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/15779373.jpg</image>
</album>
<album rank="10">
<name>Rage Against the Machine</name>
<playcount>135</playcount>
<mbid>e956c901-acb7-48d6-9dc6-389a5f91f372</mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine/Rage+Against+the+Machine</url>
<artist>
<name>Rage Against the Machine</name>
<mbid>3798b104-01cb-484c-a3b0-56adc6399b80</mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/19784479.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/19784479.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/19784479.jpg</image>
</album>
<album rank="11">
<name>Dire Straits</name>
<playcount>126</playcount>
<mbid>aa658dc0-cdce-4723-a7d6-c049aaae7a0b</mbid>
<url>http://www.last.fm/music/Dire+Straits/Dire+Straits</url>
<artist>
<name>Dire Straits</name>
<mbid>614e3804-7d34-41ba-857f-811bad7c2b7a</mbid>
<url>http://www.last.fm/music/Dire+Straits</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/13188073.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/13188073.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/13188073.jpg</image>
</album>
<album rank="12">
<name>The History of Rock</name>
<playcount>125</playcount>
<mbid>b32c1b95-8a13-4aa9-a5c5-858f408fb586</mbid>
<url>http://www.last.fm/music/Kid+Rock/The+History+of+Rock</url>
<artist>
<name>Kid Rock</name>
<mbid>ad0ecd8b-805e-406e-82cb-5b00c3a3a29e</mbid>
<url>http://www.last.fm/music/Kid+Rock</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00004TCPN.01.THUMBZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00004TCPN.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00004TCPN.01.LZZZZZZZ.jpg</image>
</album>
<album rank="13">
<name>A Night at the Hip Hopera</name>
<playcount>124</playcount>
<mbid>4a1ef9e3-09d9-41e6-8ff3-e8bf26860ae8</mbid>
<url>http://www.last.fm/music/The+Kleptones/A+Night+at+the+Hip+Hopera</url>
<artist>
<name>The Kleptones</name>
<mbid>f73b2b70-33d5-4118-923b-05ba8ad7e702</mbid>
<url>http://www.last.fm/music/The+Kleptones</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/11986865.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/11986865.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/11986865.jpg</image>
</album>
<album rank="13">
<name>Awake</name>
<playcount>124</playcount>
<mbid>7de6eb90-a8b2-4c00-80f7-c95e45929b27</mbid>
<url>http://www.last.fm/music/Dream+Theater/Awake</url>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B000002JKA.01.THUMBZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B000002JKA.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B000002JKA.01.LZZZZZZZ.jpg</image>
</album>
<album rank="13">
<name>Doggystyle</name>
<playcount>124</playcount>
<mbid>092bebff-dcf6-4fc4-8c34-837651703155</mbid>
<url>http://www.last.fm/music/Snoop+Dogg/Doggystyle</url>
<artist>
<name>Snoop Dogg</name>
<mbid>f90e8b26-9e52-4669-a5c9-e28529c47894</mbid>
<url>http://www.last.fm/music/Snoop+Dogg</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00005AQF7.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00005AQF7.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00005AQF7.01.MZZZZZZZ.jpg</image>
</album>
<album rank="13">
<name>And All That Could Have Been</name>
<playcount>124</playcount>
<mbid>85d24075-75db-4ef2-9311-10d10a737429</mbid>
<url>http://www.last.fm/music/Nine+Inch+Nails/And+All+That+Could+Have+Been</url>
<artist>
<name>Nine Inch Nails</name>
<mbid>b7ffd2af-418f-4be2-bdd1-22f8b48613da</mbid>
<url>http://www.last.fm/music/Nine+Inch+Nails</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00005RZV4.01.THUMBZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00005RZV4.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00005RZV4.01.LZZZZZZZ.jpg</image>
</album>
<album rank="17">
<name>Evergreen</name>
<playcount>122</playcount>
<mbid>95f5a532-42b8-4413-b5c3-a20d6b37b3ff</mbid>
<url>http://www.last.fm/music/Echo%2B%2526%2Bthe%2BBunnymen/Evergreen</url>
<artist>
<name>Echo &amp; the Bunnymen</name>
<mbid>ccd4879c-5e88-4385-b131-bf65296bf245</mbid>
<url>http://www.last.fm/music/Echo%2B%2526%2Bthe%2BBunnymen</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8596309.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8596309.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8596309.jpg</image>
</album>
<album rank="18">
<name>Falling Into Infinity</name>
<playcount>121</playcount>
<mbid>56805d04-50f5-49c9-ac0b-41a653d945c1</mbid>
<url>http://www.last.fm/music/Dream+Theater/Falling+Into+Infinity</url>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8599015.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8599015.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8599015.jpg</image>
</album>
<album rank="19">
<name>Blood Sugar Sex Magik</name>
<playcount>117</playcount>
<mbid>8b69a5f2-d3de-4df0-ae61-54b2227862c8</mbid>
<url>http://www.last.fm/music/Red+Hot+Chili+Peppers/Blood+Sugar+Sex+Magik</url>
<artist>
<name>Red Hot Chili Peppers</name>
<mbid>8bfac288-ccc5-448d-9573-c33ea2aa5c30</mbid>
<url>http://www.last.fm/music/Red+Hot+Chili+Peppers</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8590485.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8590485.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8590485.jpg</image>
</album>
<album rank="20">
<name>The Very Best of Level 42</name>
<playcount>116</playcount>
<mbid>4498095f-3750-4d31-938e-486fe163de0a</mbid>
<url>http://www.last.fm/music/Level+42/The+Very+Best+of+Level+42</url>
<artist>
<name>Level 42</name>
<mbid>d69ee229-2f36-494c-b104-9ae0d8be506b</mbid>
<url>http://www.last.fm/music/Level+42</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8720513.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8720513.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8720513.jpg</image>
</album>
<album rank="21">
<name>Lit Up</name>
<playcount>115</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Buckcherry/Lit+Up</url>
<artist>
<name>Buckcherry</name>
<mbid>822e92ef-72ea-42e0-9af1-b987816b487a</mbid>
<url>http://www.last.fm/music/Buckcherry</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00001ZTYQ.01._SCMZZZZZZZ_.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00001ZTYQ.01._SCMZZZZZZZ_.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00001ZTYQ.01._SCMZZZZZZZ_.jpg</image>
</album>
<album rank="22">
<name>I'd Like a Virgin</name>
<playcount>111</playcount>
<mbid>ed2498fe-7fe2-4c24-99f4-05dd2bbea157</mbid>
<url>http://www.last.fm/music/Richard+Cheese/I%27d+Like+a+Virgin</url>
<artist>
<name>Richard Cheese</name>
<mbid>9bf79f68-c064-44a1-8c2c-5764f1d7c016</mbid>
<url>http://www.last.fm/music/Richard+Cheese</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12636483.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12636483.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12636483.jpg</image>
</album>
<album rank="22">
<name>The Heat</name>
<playcount>111</playcount>
<mbid>fa59d754-22f8-400a-befe-b4ccb51f72c2</mbid>
<url>http://www.last.fm/music/Dan+Reed+Network/The+Heat</url>
<artist>
<name>Dan Reed Network</name>
<mbid>2fe24c3c-5768-484d-a64b-04983e99325a</mbid>
<url>http://www.last.fm/music/Dan+Reed+Network</url>
</artist>
<image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
<image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
<image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
</album>
<album rank="24">
<name>Deluxe</name>
<playcount>110</playcount>
<mbid>96bce911-aae9-495b-8126-8f62029a65ec</mbid>
<url>http://www.last.fm/music/Firebird/Deluxe</url>
<artist>
<name>Firebird</name>
<mbid>3dfc0a11-0122-4bc4-8474-b67c88c5a4ea</mbid>
<url>http://www.last.fm/music/Firebird</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00005MMNG.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00005MMNG.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00005MMNG.01.MZZZZZZZ.jpg</image>
</album>
<album rank="25">
<name>Firebird</name>
<playcount>107</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Firebird/Firebird</url>
<artist>
<name>Firebird</name>
<mbid>3dfc0a11-0122-4bc4-8474-b67c88c5a4ea</mbid>
<url>http://www.last.fm/music/Firebird</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/15749639.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/15749639.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/15749639.jpg</image>
</album>
<album rank="26">
<name>The Atomic Bitchwax</name>
<playcount>103</playcount>
<mbid>ca5fae8d-f6de-4cca-ac62-321f9879ea85</mbid>
<url>http://www.last.fm/music/The+Atomic+Bitchwax/The+Atomic+Bitchwax</url>
<artist>
<name>The Atomic Bitchwax</name>
<mbid>377ca1eb-83c2-40da-81fd-eb81e922a585</mbid>
<url>http://www.last.fm/music/The+Atomic+Bitchwax</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/14461111.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/14461111.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/14461111.jpg</image>
</album>
<album rank="27">
<name>The Better Life</name>
<playcount>99</playcount>
<mbid>a7fb6852-dedc-4da4-91ba-59a2753efb9f</mbid>
<url>http://www.last.fm/music/3+Doors+Down/The+Better+Life</url>
<artist>
<name>3 Doors Down</name>
<mbid>2386cd66-e923-4e8e-bf14-2eebe2e9b973</mbid>
<url>http://www.last.fm/music/3+Doors+Down</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8631753.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8631753.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8631753.jpg</image>
</album>
<album rank="27">
<name>Communiqué</name>
<playcount>99</playcount>
<mbid>71d8361b-f8d7-43bc-86d9-cc13294ae35f</mbid>
<url>http://www.last.fm/music/Dire+Straits/Communiqu%C3%A9</url>
<artist>
<name>Dire Straits</name>
<mbid>614e3804-7d34-41ba-857f-811bad7c2b7a</mbid>
<url>http://www.last.fm/music/Dire+Straits</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00004Y6NT.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00004Y6NT.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00004Y6NT.01.MZZZZZZZ.jpg</image>
</album>
<album rank="27">
<name>Train of Thought</name>
<playcount>99</playcount>
<mbid>5a4e6e59-de93-4fda-ac36-99b2efe8ff7e</mbid>
<url>http://www.last.fm/music/Dream+Theater/Train+of+Thought</url>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8634935.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8634935.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8634935.jpg</image>
</album>
<album rank="30">
<name>No. 3</name>
<playcount>98</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Firebird/No.+3</url>
<artist>
<name>Firebird</name>
<mbid>3dfc0a11-0122-4bc4-8474-b67c88c5a4ea</mbid>
<url>http://www.last.fm/music/Firebird</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00009AHPO.01._SCMZZZZZZZ_.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00009AHPO.01._SCMZZZZZZZ_.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00009AHPO.01._SCMZZZZZZZ_.jpg</image>
</album>
<album rank="30">
<name>Stoosh</name>
<playcount>98</playcount>
<mbid>846a7626-b1a6-4c54-bba4-a5d1de5945e5</mbid>
<url>http://www.last.fm/music/Skunk+Anansie/Stoosh</url>
<artist>
<name>Skunk Anansie</name>
<mbid>e212efdf-98b2-4dce-92ed-62cfc1e29854</mbid>
<url>http://www.last.fm/music/Skunk+Anansie</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/23020361.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/23020361.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/23020361.jpg</image>
</album>
<album rank="32">
<name>Dogman</name>
<playcount>96</playcount>
<mbid>fb33464f-b1df-4d60-a806-0f9683d375a1</mbid>
<url>http://www.last.fm/music/King%27s+X/Dogman</url>
<artist>
<name>King's X</name>
<mbid>c8f5272e-8a94-4807-9099-70181e92fc46</mbid>
<url>http://www.last.fm/music/King%27s+X</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B000002IXM.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B000002IXM.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B000002IXM.01.MZZZZZZZ.jpg</image>
</album>
<album rank="33">
<name>Riding with the King</name>
<playcount>94</playcount>
<mbid>49e00206-2955-48a8-a9ba-a58a2fda916e</mbid>
<url>http://www.last.fm/music/B.B.%2BKing%2B%2526%2BEric%2BClapton/Riding+with+the+King</url>
<artist>
<name>B.B. King &amp; Eric Clapton</name>
<mbid>c45474e1-8c83-41eb-b200-962c863c8a2b</mbid>
<url>http://www.last.fm/music/B.B.%2BKing%2B%2526%2BEric%2BClapton</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12622397.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12622397.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12622397.jpg</image>
</album>
<album rank="34">
<name>Slam</name>
<playcount>92</playcount>
<mbid>38145a63-a43e-4ec2-bb52-a12df7df1570</mbid>
<url>http://www.last.fm/music/Dan+Reed+Network/Slam</url>
<artist>
<name>Dan Reed Network</name>
<mbid>2fe24c3c-5768-484d-a64b-04983e99325a</mbid>
<url>http://www.last.fm/music/Dan+Reed+Network</url>
</artist>
<image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
<image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
<image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
</album>
<album rank="35">
<name>Runnin' Wild</name>
<playcount>91</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Airbourne/Runnin%27+Wild</url>
<artist>
<name>Airbourne</name>
<mbid></mbid>
<url>http://www.last.fm/music/Airbourne</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/24801615.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/24801615.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/24801615.jpg</image>
</album>
<album rank="35">
<name>Six Degrees Of Inner Turbulance</name>
<playcount>91</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/Six+Degrees+Of+Inner+Turbulance</url>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images-eu.amazon.com/images/P/B00005UEAR.02.THUMBZZZ.jpg</image>
<image size="medium">http://images-eu.amazon.com/images/P/B00005UEAR.02.MZZZZZZZ.jpg</image>
<image size="large">http://images-eu.amazon.com/images/P/B00005UEAR.02.LZZZZZZZ.jpg</image>
</album>
<album rank="37">
<name>On Every Street</name>
<playcount>90</playcount>
<mbid>aceb4f36-3e64-42eb-ac1f-55715aad40b7</mbid>
<url>http://www.last.fm/music/Dire+Straits/On+Every+Street</url>
<artist>
<name>Dire Straits</name>
<mbid>614e3804-7d34-41ba-857f-811bad7c2b7a</mbid>
<url>http://www.last.fm/music/Dire+Straits</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8677231.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8677231.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8677231.jpg</image>
</album>
<album rank="38">
<name>Love Me or Leave Me</name>
<playcount>89</playcount>
<mbid>cf3017c7-995a-474d-b542-c1f78a080f35</mbid>
<url>http://www.last.fm/music/Nina+Simone/Love+Me+or+Leave+Me</url>
<artist>
<name>Nina Simone</name>
<mbid>2944824d-4c26-476f-a981-be849081942f</mbid>
<url>http://www.last.fm/music/Nina+Simone</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B000025AMX.01.THUMBZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B000025AMX.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B000025AMX.01.LZZZZZZZ.jpg</image>
</album>
<album rank="39">
<name>Greatest Hits</name>
<playcount>88</playcount>
<mbid>0499f493-4598-4c6d-bffa-5fc3400ca070</mbid>
<url>http://www.last.fm/music/Bob+Seger/Greatest+Hits</url>
<artist>
<name>Bob Seger</name>
<mbid>4382b934-64c3-47ac-98db-65f26d845c48</mbid>
<url>http://www.last.fm/music/Bob+Seger</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12624475.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12624475.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12624475.jpg</image>
</album>
<album rank="40">
<name>Use Your Illusion II</name>
<playcount>87</playcount>
<mbid>0483e371-51fc-49cb-9711-69c324589cd6</mbid>
<url>http://www.last.fm/music/Guns+N%27+Roses/Use+Your+Illusion+II</url>
<artist>
<name>Guns N' Roses</name>
<mbid>eeb1195b-f213-4ce1-b28c-8565211f8e43</mbid>
<url>http://www.last.fm/music/Guns+N%27+Roses</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/15231979.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/15231979.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/15231979.jpg</image>
</album>
<album rank="40">
<name>Urban Hymns</name>
<playcount>87</playcount>
<mbid>839a1568-b862-43a7-81e6-a4040496f369</mbid>
<url>http://www.last.fm/music/The+Verve/Urban+Hymns</url>
<artist>
<name>The Verve</name>
<mbid>d4d17620-fd97-4574-92a8-a2cb7e72ce42</mbid>
<url>http://www.last.fm/music/The+Verve</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/14233169.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/14233169.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/14233169.jpg</image>
</album>
<album rank="40">
<name>It's Not Too Late</name>
<playcount>87</playcount>
<mbid>94572ecd-1ae3-44bb-b47b-5b7f933c416b</mbid>
<url>http://www.last.fm/music/Neal+Morse/It%27s+Not+Too+Late</url>
<artist>
<name>Neal Morse</name>
<mbid>c0926f5d-098c-4f29-a463-5489b43a273a</mbid>
<url>http://www.last.fm/music/Neal+Morse</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B000067UNC.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B000067UNC.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B000067UNC.01.MZZZZZZZ.jpg</image>
</album>
<album rank="43">
<name>Just Push Play</name>
<playcount>86</playcount>
<mbid>2fdce4fb-1194-4eba-ba07-9b2fa53bac7c</mbid>
<url>http://www.last.fm/music/Aerosmith/Just+Push+Play</url>
<artist>
<name>Aerosmith</name>
<mbid>3d2b98e5-556f-4451-a3ff-c50ea18d57cb</mbid>
<url>http://www.last.fm/music/Aerosmith</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/21685277.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/21685277.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/21685277.jpg</image>
</album>
<album rank="44">
<name>Nine Lives</name>
<playcount>85</playcount>
<mbid>12adc6cb-bb7a-426c-97f7-9a7d1cc50e07</mbid>
<url>http://www.last.fm/music/Aerosmith/Nine+Lives</url>
<artist>
<name>Aerosmith</name>
<mbid>3d2b98e5-556f-4451-a3ff-c50ea18d57cb</mbid>
<url>http://www.last.fm/music/Aerosmith</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/16815417.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/16815417.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/16815417.jpg</image>
</album>
<album rank="45">
<name>Ruby Soul</name>
<playcount>82</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Tok+Tok+Tok/Ruby+Soul</url>
<artist>
<name>Tok Tok Tok</name>
<mbid>97d9060d-2cd5-4acd-b44f-c39ea2da4753</mbid>
<url>http://www.last.fm/music/Tok+Tok+Tok</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00006OA35.01.THUMBZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00006OA35.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00006OA35.01.LZZZZZZZ.jpg</image>
</album>
<album rank="45">
<name>Renegades</name>
<playcount>82</playcount>
<mbid>8b98b2d4-91af-4a58-af54-0bd872570c5e</mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine/Renegades</url>
<artist>
<name>Rage Against the Machine</name>
<mbid>3798b104-01cb-484c-a3b0-56adc6399b80</mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/15765837.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/15765837.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/15765837.jpg</image>
</album>
<album rank="47">
<name>Supreme Beings of Leisure</name>
<playcount>81</playcount>
<mbid>62a1e7a5-d6a9-4a52-8f59-3d927a3c7f1d</mbid>
<url>http://www.last.fm/music/Supreme+Beings+of+Leisure/Supreme+Beings+of+Leisure</url>
<artist>
<name>Supreme Beings of Leisure</name>
<mbid>1b483425-4f02-4599-a31c-9b5c132e0a7a</mbid>
<url>http://www.last.fm/music/Supreme+Beings+of+Leisure</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/18064597.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/18064597.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/18064597.jpg</image>
</album>
<album rank="47">
<name>Greatest Hits</name>
<playcount>81</playcount>
<mbid>c5e29035-a258-44e3-b9de-4df9548c7866</mbid>
<url>http://www.last.fm/music/James+Taylor/Greatest+Hits</url>
<artist>
<name>James Taylor</name>
<mbid>107d0c22-d051-4d98-8206-4e14de02132a</mbid>
<url>http://www.last.fm/music/James+Taylor</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12619275.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12619275.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12619275.jpg</image>
</album>
<album rank="49">
<name>Trio Days</name>
<playcount>80</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Nat+King+Cole/Trio+Days</url>
<artist>
<name>Nat King Cole</name>
<mbid>fbe054ec-a143-4101-9e9e-64abc5ff5ac9</mbid>
<url>http://www.last.fm/music/Nat+King+Cole</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12619257.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12619257.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12619257.jpg</image>
</album>
<album rank="49">
<name>Appetite for Destruction</name>
<playcount>80</playcount>
<mbid>2174675c-2159-4405-a3af-3a4860106b58</mbid>
<url>http://www.last.fm/music/Guns+N%27+Roses/Appetite+for+Destruction</url>
<artist>
<name>Guns N' Roses</name>
<mbid>eeb1195b-f213-4ce1-b28c-8565211f8e43</mbid>
<url>http://www.last.fm/music/Guns+N%27+Roses</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8616041.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8616041.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8616041.jpg</image>
</album>
</topalbums></lfm>

View File

@ -0,0 +1,920 @@
<?xml version="1.0" encoding="utf-8"?>
<lfm status="ok">
<events user="RJ" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" page="1" perPage="50" total="13" totalPages="1">
<event>
<id>755511</id>
<title>Fairport Convention</title>
<artists>
<artist>Fairport Convention</artist>
<headliner>Fairport Convention</headliner>
</artists>
<venue>
<name>Union Chapel</name>
<location>
<city>London</city>
<country>United Kingdom</country>
<street>Compton Terrace</street>
<postalcode>N1 2UN</postalcode>
<geo:point>
<geo:lat>51.543724</geo:lat>
<geo:long>-0.102365</geo:long>
</geo:point>
</location>
<url>http://www.last.fm/venue/8778259</url>
</venue>
<startDate>Sat, 07 Feb 2009 20:00:00</startDate>
<description></description>
<image size="small">http://userserve-ak.last.fm/serve/34/13164427.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/13164427.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/13164427.jpg</image>
<attendance>14</attendance>
<reviews>0</reviews>
<tag>lastfm:event=755511</tag>
<url>http://www.last.fm/event/755511</url>
</event>
<event>
<id>879065</id>
<title>Mad Dog McRea Gig</title>
<artists>
<artist>Mad Dog McRea</artist>
<headliner>Mad Dog McRea</headliner>
</artists>
<venue>
<name>Annabels</name>
<location>
<city>Plymouth</city>
<country>United Kingdom</country>
<street></street>
<postalcode></postalcode>
<geo:point>
<geo:lat>50.36861</geo:lat>
<geo:long>-4.13504</geo:long>
</geo:point>
</location>
<url>http://www.last.fm/venue/8992290</url>
</venue>
<startDate>Sat, 27 Dec 2008 21:00:00</startDate>
<description><![CDATA[<div class="bbcode">Mad Dog McRea play at Annabels, nr Barbican in Plymouth</div>]]></description>
<image size="small">http://userserve-ak.last.fm/serve/34/81311.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/81311.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/81311.jpg</image>
<attendance>1</attendance>
<reviews>0</reviews>
<tag>lastfm:event=879065</tag>
<url>http://www.last.fm/event/879065</url>
</event>
<event>
<id>842991</id>
<title>Smash, Bang, X-Mas Party!</title>
<artists>
<artist>RTX</artist>
<artist>Sian Alice Group</artist>
<artist>The Invisible</artist>
<artist>Love's Tru Flavour</artist>
<artist>Last.fm DJ Team</artist>
<artist>Tack! Tack! Tack! DJs</artist>
<artist>High Heels Lowlives</artist>
<headliner>RTX</headliner>
</artists>
<venue>
<name>Bloomsbury Bowling Lanes</name>
<location>
<city>London</city>
<country>United Kingdom</country>
<street>Bedford Way</street>
<postalcode>WC1H 9EU</postalcode>
<geo:point>
<geo:lat>51.5</geo:lat>
<geo:long>-0.1166667</geo:long>
</geo:point>
</location>
<url>http://www.last.fm/venue/8780845</url>
</venue>
<startDate>Wed, 10 Dec 2008 20:00:00</startDate>
<description><![CDATA[<div class="bbcode">&lt;style type=&quot;text/css&quot;&gt;<br />
div.fiflufi div.leftColWrapper <br />
{<br />
<br />
position:relative;<br />
padding:165px 15px 15px;<br />
<br />
}<br />
<br />
.festivalink <br />
{<br />
margin-top: 10px;<br />
margin-left: 0px;<br />
color: #333333; <br />
font-size:12px;<br />
max-width: 490px;<br />
}<br />
<br />
div.fiflufi div.leftColWrapper .clickthrutop <br />
{<br />
position:absolute;<br />
width:100%;<br />
top:0; left:0;<br />
height:200px;<br />
<br />
}<br />
<br />
div.fiflufi div.leftColWrapper .clickthrutop a<br />
{<br />
text-indent: -9999px;<br />
margin: 15px 15px 0 15px;<br />
display:block; <br />
height: 130px;<br />
background: transparent url(<a href="http://cdn.last.fm/customisation/2008_xmassmashbang/event_header.jpg">http://cdn.last.fm/customisation/2008_xmassmashbang/event_header.jpg</a>) no-repeat scroll left top;<br />
}<br />
<br />
&lt;/style&gt;<br />
<br />
<br />
&lt;div class=&quot;clickthrutop&quot;&gt;&lt;a href=&quot;<a href="http://www.last.fm/presents&quot">http://www.last.fm/presents&quot</a>; &gt;las.tfm presents&lt;/a&gt;&lt;/div&gt;</div>]]></description>
<image size="small">http://userserve-ak.last.fm/serve/34/363010.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/363010.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/363010.jpg</image>
<attendance>108</attendance>
<reviews>0</reviews>
<tag>lastfm:event=842991</tag>
<url>http://www.last.fm/event/842991</url>
</event>
<event>
<id>457062</id>
<title>Glastonbury Festival of Contemporary Performing Arts</title>
<artists>
<artist>Massive Attack</artist>
<artist>Amy Winehouse</artist>
<artist>The Verve</artist>
<artist>Goldfrapp</artist>
<artist>James Blunt</artist>
<artist>Fatboy Slim</artist>
<artist>Kings of Leon</artist>
<artist>Panic! At the Disco</artist>
<artist>Tenacious D</artist>
<artist>Groove Armada</artist>
<artist>KT Tunstall</artist>
<artist>Editors</artist>
<artist>Jay-Z</artist>
<artist>MGMT</artist>
<artist>The Fratellis</artist>
<artist>Hot Chip</artist>
<artist>Manu Chao</artist>
<artist>Stars</artist>
<artist>Leonard Cohen</artist>
<artist>Ben Folds</artist>
<artist>Kate Nash</artist>
<artist>The Ting Tings</artist>
<artist>The Futureheads</artist>
<artist>UNKLE</artist>
<artist>Duffy</artist>
<artist>The Raconteurs</artist>
<artist>Sinéad O'Connor</artist>
<artist>The Zutons</artist>
<artist>Elbow</artist>
<artist>The Subways</artist>
<artist>The National</artist>
<artist>Ciara</artist>
<artist>Band of Horses</artist>
<artist>Cut Copy</artist>
<artist>Dirty Pretty Things</artist>
<artist>My Morning Jacket</artist>
<artist>Vampire Weekend</artist>
<artist>Kosheen</artist>
<artist>Crowded House</artist>
<artist>Squarepusher</artist>
<artist>Pendulum</artist>
<artist>Simian Mobile Disco</artist>
<artist>The Kills</artist>
<artist>CSS</artist>
<artist>Crystal Castles</artist>
<artist>The Feeling</artist>
<artist>The Cribs</artist>
<artist>Amy Macdonald</artist>
<artist>The Gossip</artist>
<artist>Neil Diamond</artist>
<artist>The Pigeon Detectives</artist>
<artist>Cansei de Ser Sexy</artist>
<artist>Mark Ronson</artist>
<artist>Foals</artist>
<artist>The Presets</artist>
<artist>Panic at the Disco</artist>
<artist>The Wombats</artist>
<artist>Joan Baez</artist>
<artist>Jimmy Cliff</artist>
<artist>Black Kids</artist>
<artist>Chris Rea</artist>
<artist>Battles</artist>
<artist>Caribou</artist>
<artist>Santogold</artist>
<artist>The Hold Steady</artist>
<artist>Laura Marling</artist>
<artist>Estelle</artist>
<artist>Dizzee Rascal</artist>
<artist>Róisín Murphy</artist>
<artist>Booka Shade</artist>
<artist>Audio Bullys</artist>
<artist>Mystery Jets</artist>
<artist>Los Campesinos!</artist>
<artist>Does It Offend You, Yeah?</artist>
<artist>Alphabeat</artist>
<artist>Spiritualized</artist>
<artist>British Sea Power</artist>
<artist>The Hoosiers</artist>
<artist>Fun Lovin' Criminals</artist>
<artist>Newton Faulkner</artist>
<artist>The Music</artist>
<artist>The Rocket Summer</artist>
<artist>Be Your Own Pet</artist>
<artist>Lykke Li</artist>
<artist>The Proclaimers</artist>
<artist>The Teenagers</artist>
<artist>Martina Topley-Bird</artist>
<artist>Biffy Clyro</artist>
<artist>Jamie Lidell</artist>
<artist>Midnight Juggernauts</artist>
<artist>Buddy Guy</artist>
<artist>The Enemy</artist>
<artist>Freestylers</artist>
<artist>Blood Red Shoes</artist>
<artist>Scouting for Girls</artist>
<artist>Way Out West</artist>
<artist>Jamie T</artist>
<artist>Will Young</artist>
<artist>The Script</artist>
<artist>Vetiver</artist>
<artist>Banco de Gaia</artist>
<artist>Roni Size</artist>
<artist>Sam Sparro</artist>
<artist>The Holloways</artist>
<artist>The Whip</artist>
<artist>The Black Ghosts</artist>
<artist>Ladyhawke</artist>
<artist>St. Vincent</artist>
<artist>The Brian Jonestown Massacre</artist>
<artist>Hercules and Love Affair</artist>
<artist>Glasvegas</artist>
<artist>Solomon Burke</artist>
<artist>The Courteeners</artist>
<artist>Friendly Fires</artist>
<artist>Tunng</artist>
<artist>Ron Sexsmith</artist>
<artist>The Paddingtons</artist>
<artist>Sons and Daughters</artist>
<artist>The Bluetones</artist>
<artist>Get Cape. Wear Cape. Fly</artist>
<artist>Joan Armatrading</artist>
<artist>Black Mountain</artist>
<artist>Yeasayer</artist>
<artist>Eddy Grant</artist>
<artist>Nizlopi</artist>
<artist>Edwyn Collins</artist>
<artist>Noah and the Whale</artist>
<artist>Ozomatli</artist>
<artist>The Rascals</artist>
<artist>X-Press 2</artist>
<artist>Alabama 3</artist>
<artist>Reverend and The Makers</artist>
<artist>The Duke Spirit</artist>
<artist>A Guy Called Gerald</artist>
<artist>Shakin' Stevens</artist>
<artist>Lightspeed Champion</artist>
<artist>Infadels</artist>
<artist>Holy Fuck</artist>
<artist>Balkan Beat Box</artist>
<artist>Operator Please</artist>
<artist>Rex the Dog</artist>
<artist>Utah Saints</artist>
<artist>Make Model</artist>
<artist>Candi Staton</artist>
<artist>The Black Dog</artist>
<artist>Black Lips</artist>
<artist>Stephen Fretwell</artist>
<artist>The Slackers</artist>
<artist>Levellers</artist>
<artist>Kraak &amp; Smaak</artist>
<artist>Patrick Watson</artist>
<artist>Cicada</artist>
<artist>DJ Format</artist>
<artist>Metronomy</artist>
<artist>Emmy the Great</artist>
<artist>Teddy Thompson</artist>
<artist>Zion Train</artist>
<artist>Dengue Fever</artist>
<artist>Florence and The Machine</artist>
<artist>Gilbert O'Sullivan</artist>
<artist>The Handsome Family</artist>
<artist>Seasick Steve</artist>
<artist>Frank Turner</artist>
<artist>Hayseed Dixie</artist>
<artist>Dreadzone</artist>
<artist>Hilltop Hoods</artist>
<artist>Stanton Warriors</artist>
<artist>Royworld</artist>
<artist>The Car Is on Fire</artist>
<artist>Neon Neon</artist>
<artist>Yoav</artist>
<artist>System 7</artist>
<artist>Shitmat</artist>
<artist>Tom Baxter</artist>
<artist>autoKratz</artist>
<artist>Kid Sister</artist>
<artist>Seth Lakeman</artist>
<artist>Soulsavers</artist>
<artist>Tift Merritt</artist>
<artist>Soul of Man</artist>
<artist>Derrick May</artist>
<artist>Captain</artist>
<artist>Cadence Weapon</artist>
<artist>White Denim</artist>
<artist>The Pietasters</artist>
<artist>Jack Peñate</artist>
<artist>Punks Jump Up</artist>
<artist>Lemon</artist>
<artist>Erol Alkan</artist>
<artist>Pivot</artist>
<artist>Pete Doherty</artist>
<artist>Appleblim</artist>
<artist>Jason Forrest</artist>
<artist>Atomic Hooligan</artist>
<artist>James Zabiela</artist>
<artist>N-Dubz</artist>
<artist>Lee Coombs</artist>
<artist>Cagedbaby</artist>
<artist>Rusko</artist>
<artist>Dr Rubberfunk</artist>
<artist>Sky Larkin</artist>
<artist>Benga &amp; Skream</artist>
<artist>Six by Seven</artist>
<artist>Slyde</artist>
<artist>Hazel O'Connor</artist>
<artist>Kid Harpoon</artist>
<artist>DJ Die</artist>
<artist>Bass Clef</artist>
<artist>Eric Bibb</artist>
<artist>Caspa</artist>
<artist>Cerys Matthews</artist>
<artist>The King Blues</artist>
<artist>Eugene McGuinness</artist>
<artist>Blak Twang</artist>
<artist>Million Dan</artist>
<artist>Rodney P</artist>
<artist>Example</artist>
<artist>Caspa &amp; Rusko</artist>
<artist>Team Waterpolo</artist>
<artist>Magnetic Man</artist>
<artist>Natty</artist>
<artist>Dynamite MC</artist>
<artist>Joe Lean and the Jing Jang Jong</artist>
<artist>The Wurzels</artist>
<artist>Modern Skirts</artist>
<artist>Nick Warren</artist>
<artist>Subfocus</artist>
<artist>28 Costumes</artist>
<artist>Alex Metric</artist>
<artist>Young Knives</artist>
<artist>DJ Clipz</artist>
<artist>These United States</artist>
<artist>The Count &amp; Sinden</artist>
<artist>Portico Quartet</artist>
<artist>Kathy Diamond</artist>
<artist>Elle S'appelle</artist>
<artist>The Voodoo Trombone Quartet</artist>
<artist>Deekline &amp; Wizard</artist>
<artist>Vandaveer</artist>
<artist>Mirror System</artist>
<artist>Rachel Unthank &amp; The Winterset</artist>
<artist>Ethiopiques</artist>
<artist>John Tams</artist>
<artist>Crystal Distortion</artist>
<artist>Toby Tobias</artist>
<artist>Samsara</artist>
<artist>Räfven</artist>
<artist>Neil Cowley Trio</artist>
<artist>Babel</artist>
<artist>Bison</artist>
<artist>BabyHead</artist>
<artist>Voodoo Trombone Quartet</artist>
<artist>Amsterdam</artist>
<artist>Officer Kicks</artist>
<artist>Beber &amp; Tamra</artist>
<artist>Attila the Stockbroker</artist>
<artist>Magic Wands</artist>
<artist>Toddla T</artist>
<artist>Ebony Bones</artist>
<artist>DJ Dee Kline</artist>
<artist>Annie Mac</artist>
<artist>Magistrates</artist>
<artist>JAPANESE POPSTARS</artist>
<artist>Dub Colossus</artist>
<artist>Dawn Kinnard</artist>
<artist>Queens of Noize</artist>
<artist>Size 9</artist>
<artist>Luke Wright</artist>
<artist>The Blessing</artist>
<artist>Eliza Doolittle</artist>
<artist>Annie Nightingale</artist>
<artist>Rod Thomas</artist>
<artist>Dr. Alex Patterson</artist>
<artist>Sian Evans &amp; Simon Kingman</artist>
<artist>Revere</artist>
<artist>Red Letter Day</artist>
<artist>Stackridge</artist>
<artist>Sheelanagig</artist>
<artist>Beggars</artist>
<artist>360</artist>
<artist>Robert Logan</artist>
<artist>Phantom Limb</artist>
<artist>Orphan Boy</artist>
<artist>Seize The Day</artist>
<artist>12 Stone Toddler</artist>
<artist>Mumford And Sons</artist>
<artist>The Travelling Band</artist>
<artist>The Unstoppable Team</artist>
<artist>Black Cherry</artist>
<artist>Swimming</artist>
<artist>The Franks</artist>
<artist>SMASH N GRAB</artist>
<artist>Pronghorn</artist>
<artist>Shantel &amp; Bucovina Club Orkestar</artist>
<artist>Kool Keith &amp; Kutmasta Kurt</artist>
<artist>Dead Silence</artist>
<artist>Mama Shamone</artist>
<artist>Sicknote</artist>
<artist>The Mirettes</artist>
<artist>The Seal Cub Clubbing Club</artist>
<artist>Mully</artist>
<artist>Massukos</artist>
<artist>Mankala</artist>
<artist>3 Daft Monkeys</artist>
<artist>Dr Meaker</artist>
<artist>The Imagined Village</artist>
<artist>Dynamo's Rhythm Aces</artist>
<artist>Blazin' Fiddles</artist>
<artist>The Daisy Riots</artist>
<artist>Pete Gooding</artist>
<artist>BeardyMan</artist>
<artist>i!AMYOU</artist>
<artist>Melancholy Moose Society</artist>
<artist>Alex Paterson</artist>
<artist>The Golden Silvers</artist>
<artist>Siyaya</artist>
<artist>Bad Science</artist>
<artist>Diane Charlemagne</artist>
<artist>Los Albertos</artist>
<artist>Almasala</artist>
<artist>Beat Torrent</artist>
<artist>Audioporn</artist>
<artist>The Lightyears</artist>
<artist>Dogtanion</artist>
<artist>Katharine Blake</artist>
<artist>Grinny Grandad</artist>
<artist>The Urban Voodoo Machine</artist>
<artist>The Moody Boyz</artist>
<artist>Mungos Hi Fi</artist>
<artist>Bone-Box</artist>
<artist>MC Xander</artist>
<artist>The Mentalists</artist>
<artist>Nomad Jones</artist>
<artist>Yes Sir Boss</artist>
<artist>MC Wrec</artist>
<artist>Wichita</artist>
<artist>Digidub</artist>
<artist>the she creatures</artist>
<artist>Married to the Sea</artist>
<artist>Ilya K</artist>
<artist>Dirty Weekend</artist>
<artist>Dan Donnelly</artist>
<artist>digs</artist>
<artist>James Zabelia</artist>
<artist>Three Daft Monkeys</artist>
<artist>Evi Vine</artist>
<artist>soul immigrants</artist>
<artist>Whoosh</artist>
<artist>Andrew Motion</artist>
<artist>Alan Tyler &amp; The Lost Sons of Littlefield</artist>
<artist>holestar</artist>
<artist>Myth of Unity</artist>
<artist>Paprika Balkanicus</artist>
<artist>Trevor Fung</artist>
<artist>Johnny Action Finger</artist>
<artist>roland the bastard</artist>
<artist>Russ Jones</artist>
<artist>The Krak</artist>
<artist>Eddy Temple Morris</artist>
<artist>Yes Sir Boss!!!</artist>
<artist>Glitzy Bag Hags</artist>
<artist>The Undercover Hippy</artist>
<artist>Nuala &amp; The Alchemy Quartet</artist>
<artist>Nicky Holloway</artist>
<artist>Hollis Greene</artist>
<artist>DJ Tayo</artist>
<artist>The Black Bloc</artist>
<artist>Derek May</artist>
<artist>Hattie Hatstar</artist>
<artist>Plaster Of Paris</artist>
<artist>Fundamental Skillz</artist>
<artist>Bass Cleff</artist>
<artist>Healer Selecta</artist>
<artist>Sex Slaves From Hell</artist>
<artist>Shlomo and the Vocal Orchestra</artist>
<artist>Young Runaways</artist>
<artist>The Boat Band</artist>
<artist>Dub Pistols Soundsystem</artist>
<artist>Horse Meat Disco</artist>
<artist>Cock 'n' Bull Kid</artist>
<artist>4Fifteen</artist>
<artist>FOS Brothers</artist>
<artist>20/20 Soundsystem</artist>
<artist>Port Erin</artist>
<artist>Sense of Sound Choir</artist>
<artist>Brothers Bab</artist>
<artist>Alec Townsend</artist>
<artist>Andy Hickie</artist>
<artist>Demon Cabbage</artist>
<artist>East Of Ealing</artist>
<artist>Dubblehead</artist>
<artist>Dj Ipek</artist>
<artist>Miss Behave</artist>
<artist>Biggles Wartime Band</artist>
<artist>The Rusticles</artist>
<artist>Sean Rowley</artist>
<artist>Juldeh Camara</artist>
<artist>Red Route</artist>
<artist>Don Bradmans</artist>
<artist>Keth</artist>
<artist>Cuttashine</artist>
<artist>carrivick sisters</artist>
<artist>Hobo Jones and the Junkyard Dogs</artist>
<artist>We Don't Play</artist>
<artist>Davide Rossi</artist>
<artist>joe ling and the jing jang jong</artist>
<artist>Simon Atkinson and the Ben Marcato Trio</artist>
<headliner>Massive Attack</headliner>
</artists>
<venue>
<name>Worthy Farm</name>
<location>
<city>Shepton Mallet</city>
<country>United Kingdom</country>
<street>Pilton</street>
<postalcode>BA4 4BY</postalcode>
<geo:point>
<geo:lat>51.159843</geo:lat>
<geo:long>-2.585621</geo:long>
</geo:point>
</location>
<url>http://www.last.fm/venue/8783201</url>
</venue>
<startDate>Fri, 27 Jun 2008 22:51:01</startDate>
<endDate>Sun, 29 Jun 2008 22:51:01</endDate>
<description><![CDATA[<div class="bbcode"><strong>Glastonbury Festival of Contemporary Performing Arts</strong><br />
<br />
The next Glastonbury Festival will be held on the weekend of 27th, 28th and 29th June 2008<br />
<br />
You can camp from Wednesday 25th June 2008<br />
<br />
Glastonbury 2008 Tickets<br />
<br />
2008 will see the return of Glastonburys award winning registration process and photo tickets. Full details regarding ticket purchase and how to register will be published here, on the official website by the middle of January, so watch this space for details.<br />
<br />
Performing at Glastonbury 2008<br />
<br />
Agents for artists signed with major labels can contact the Festival in the usual manner. Only digital submissions are accepted for Pyramid, Other and John Peel stages. Please do not send in CDs.<br />
<br />
For Acoustic Stage please send CDs to Glastonbury Acoustic Stage, Asgard, 125 Parkway, Regents Park, London, NW1 7PS and for Dance Village - CDs to Glastonbury Dance Village, P O Box 1132, Bristol, BS99 2JZ or EPKs to the usual address.<br />
<br />
For other peformers, the Festival is again running the Glastonbury New Talent Competition. Over 50 performers or groups that entered the competition last year played at Glastonbury 2007, with the winner, Liz Green, having a spot on the Pyramid Stage.<br />
<br />
<img src="http://icons.primail.ch/arrows/arr04.gif" />Glastonbury Festival Line-Up 2008 can be found <a href="http://www.glastonburyfestivals.co.uk/performance.aspx?id=2179" rel="nofollow">here</a>.</div>]]></description>
<image size="small">http://userserve-ak.last.fm/serve/34/5599198.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/5599198.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/5599198.jpg</image>
<attendance>848</attendance>
<reviews>21</reviews>
<tag>lastfm:event=457062</tag>
<url>http://www.last.fm/event/457062</url>
</event>
<event>
<id>394026</id>
<title>Matthew Ogle</title>
<artists>
<artist>Matthew Ogle</artist>
<headliner>Matthew Ogle</headliner>
</artists>
<venue>
<name>Wenlock Arms</name>
<location>
<city>London</city>
<country>United Kingdom</country>
<street>26 Wenlock Road</street>
<postalcode>N1 7TA</postalcode>
<geo:point>
<geo:lat>51.4916446565303</geo:lat>
<geo:long>-0.17852783203125</geo:long>
</geo:point>
</location>
<url>http://www.last.fm/venue/8820178</url>
</venue>
<startDate>Fri, 26 Oct 2007 19:00:00</startDate>
<description></description>
<image size="small">http://userserve-ak.last.fm/serve/34/394648.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/394648.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/394648.jpg</image>
<attendance>21</attendance>
<reviews>0</reviews>
<tag>lastfm:event=394026</tag>
<url>http://www.last.fm/event/394026</url>
</event>
<event>
<id>318269</id>
<title>Hot Chip DJs</title>
<artists>
<artist>Hot Chip DJs</artist>
<artist>Everyone to the Anderson</artist>
<artist>Lost Penguin</artist>
<artist>Agaskodo Teliverek</artist>
<artist>Turbowolf</artist>
<artist>Mica Levi</artist>
<artist>The Last.fm User Generated DJ Team</artist>
<headliner>Hot Chip DJs</headliner>
</artists>
<venue>
<name>The Spitz</name>
<location>
<city>London</city>
<country>United Kingdom</country>
<street>109 Commercial Street, Old Spitalfields Market</street>
<postalcode>E1 6BG</postalcode>
<geo:point>
<geo:lat>51.519176</geo:lat>
<geo:long>-0.075927</geo:long>
</geo:point>
</location>
<url>http://www.last.fm/venue/8778213</url>
</venue>
<startDate>Tue, 11 Sep 2007 18:00:00</startDate>
<description><![CDATA[<div class="bbcode">Thanks for coming out!<br />
<br />
Back in the early zeroes, two of the three founders of Last.fm used to put on events at The Spitz, an East London venue thatÕs been showcasing new bands almost as long as Spitalfields has had a market (which is 369 years, fact fans). Then they got distracted by all this web start-up malarkey.<br />
<br />
But on the 11th September 2007 they returned Ð with the rest of us, plus five amazing bands, our finest Last.fm deck-wreckers, and special guest DJs Hot Chip.<br />
<br />
Altogether, we rocked the place and in the process raised £1,600 on the door alone (not to mention the bar which was practically drunk dry!). Anyway enough typing check out the footage below for yourselves...</div>]]></description>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
<attendance>299</attendance>
<reviews>0</reviews>
<tag>lastfm:event=318269</tag>
<url>http://www.last.fm/event/318269</url>
</event>
<event>
<id>172767</id>
<title>The Police</title>
<artists>
<artist>The Police</artist>
<artist>Maxïmo Park</artist>
<artist>Fiction Plane</artist>
<headliner>The Police</headliner>
</artists>
<venue>
<name>Twickenham Stadium</name>
<location>
<city>London</city>
<country>United Kingdom</country>
<street></street>
<postalcode></postalcode>
<geo:point>
<geo:lat>51.447881</geo:lat>
<geo:long>-0.355958</geo:long>
</geo:point>
</location>
<url>http://www.last.fm/venue/8787312</url>
</venue>
<startDate>Sun, 09 Sep 2007 16:30:00</startDate>
<description></description>
<image size="small">http://userserve-ak.last.fm/serve/34/21470781.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/21470781.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/21470781.jpg</image>
<attendance>72</attendance>
<reviews>0</reviews>
<tag>lastfm:event=172767</tag>
<url>http://www.last.fm/event/172767</url>
</event>
<event>
<id>223495</id>
<title>Roof Party/BBQ 2007.1</title>
<artists>
<artist>Erik Jälevik</artist>
<artist>The Singing Microwave</artist>
<artist>Mokele</artist>
<artist>Matthew Ogle</artist>
<artist>Norman Casagrande</artist>
<headliner>Erik Jälevik</headliner>
</artists>
<venue>
<name>Last.fm Office</name>
<location>
<city>London</city>
<country>United Kingdom</country>
<street>1-11 Baches Street</street>
<postalcode>N1 6DL</postalcode>
<geo:point>
<geo:lat>51.527555</geo:lat>
<geo:long>-0.085916</geo:long>
</geo:point>
</location>
<url>http://www.last.fm/venue/8778225</url>
</venue>
<startDate>Fri, 27 Apr 2007 20:00:00</startDate>
<description><![CDATA[<div class="bbcode">Impromptu roof bbq party.. Steve announced it a couple of hours before, and everyone sprang into action. There was team sausages, team beer, team electric...</div>]]></description>
<image size="small">http://userserve-ak.last.fm/serve/34/294903.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/294903.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/294903.jpg</image>
<attendance>14</attendance>
<reviews>0</reviews>
<tag>lastfm:event=223495</tag>
<url>http://www.last.fm/event/223495</url>
</event>
<event>
<id>139097</id>
<title>Matthew Ogle</title>
<artists>
<artist>Matthew Ogle</artist>
<artist>David Hasselhoff</artist>
<artist>Mokele</artist>
<artist>Norman Casagrande</artist>
<headliner>Matthew Ogle</headliner>
</artists>
<venue>
<name>The Prince Arthur</name>
<location>
<city>London</city>
<country>United Kingdom</country>
<street>49, Brunswick Place</street>
<postalcode>N1 4DL</postalcode>
<geo:point>
<geo:lat>51.5436532272676</geo:lat>
<geo:long>-0.0802746133284284</geo:long>
</geo:point>
</location>
<url>http://www.last.fm/venue/8798239</url>
</venue>
<startDate>Fri, 09 Feb 2007 19:00:00</startDate>
<description><![CDATA[<div class="bbcode">Matthew The Ogle has been pushing up the beta very hard and will be ready for party-ing.</div>]]></description>
<image size="small">http://userserve-ak.last.fm/serve/34/394648.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/394648.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/394648.jpg</image>
<attendance>17</attendance>
<reviews>2</reviews>
<tag>lastfm:event=139097</tag>
<url>http://www.last.fm/event/139097</url>
</event>
<event>
<id>127518</id>
<title>Mokele</title>
<artists>
<artist>Mokele</artist>
<artist>Matthew Ogle</artist>
<artist>Norman Casagrande</artist>
<artist>&amp; ö' / Muz &quot;Muzwald&quot; Titten</artist>
<headliner>Mokele</headliner>
</artists>
<venue>
<name>The Prince Arthur</name>
<location>
<city>London</city>
<country>United Kingdom</country>
<street>49, Brunswick Place</street>
<postalcode>N1 4DL</postalcode>
<geo:point>
<geo:lat>51.5436532272676</geo:lat>
<geo:long>-0.0802746133284284</geo:long>
</geo:point>
</location>
<url>http://www.last.fm/venue/8798239</url>
</venue>
<startDate>Thu, 01 Feb 2007 19:00:00</startDate>
<description><![CDATA[<div class="bbcode">This is a birthday bash with a special surprise!<br />
<br />
N-Dog has been hard at work, spitting out some fresh licks from his upcoming vinyl.<br />
<br />
The Ogle is returning, in true style. He left you savouring for more after his Silent Night rendition, and boy, he ain't going to disappoint.<br />
<br />
The Hoff, as always, in there on hand should it get wet and wild!</div>]]></description>
<image size="small">http://userserve-ak.last.fm/serve/34/3639628.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/3639628.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/3639628.jpg</image>
<attendance>21</attendance>
<reviews>0</reviews>
<tag>lastfm:event=127518</tag>
<url>http://www.last.fm/event/127518</url>
</event>
<event>
<id>81969</id>
<title>Donald Byrd</title>
<artists>
<artist>Donald Byrd</artist>
<headliner>Donald Byrd</headliner>
</artists>
<venue>
<name>Jazz Cafe</name>
<location>
<city>London</city>
<country>United Kingdom</country>
<street>5 Parkway, Camden</street>
<postalcode>NW1 7PG</postalcode>
<geo:point>
<geo:lat>51.513528</geo:lat>
<geo:long>-0.131467</geo:long>
</geo:point>
</location>
<url>http://www.last.fm/venue/8778292</url>
</venue>
<startDate>Sun, 07 Jan 2007 19:00:00</startDate>
<description><![CDATA[<div class="bbcode"><strong><span style="color:red">CANCELLED :(</span></strong> (see ticket link)</div>]]></description>
<image size="small">http://userserve-ak.last.fm/serve/34/347133.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/347133.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/347133.jpg</image>
<attendance>2</attendance>
<reviews>0</reviews>
<tag>lastfm:event=81969</tag>
<url>http://www.last.fm/event/81969</url>
</event>
<event>
<id>17877</id>
<title>Jurassic 5</title>
<artists>
<artist>Jurassic 5</artist>
<headliner>Jurassic 5</headliner>
</artists>
<venue>
<name>Carling Academy Brixton</name>
<location>
<city>London</city>
<country>United Kingdom</country>
<street>211 Stockwell Road</street>
<postalcode>SW9 9SL</postalcode>
<geo:point>
<geo:lat>51.465373</geo:lat>
<geo:long>-0.115206</geo:long>
</geo:point>
</location>
<url>http://www.last.fm/venue/8777911</url>
</venue>
<startDate>Sat, 30 Sep 2006 19:30:00</startDate>
<description><![CDATA[<div class="bbcode">J5 are awesome live, go see!</div>]]></description>
<image size="small">http://userserve-ak.last.fm/serve/34/269347.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/269347.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/269347.jpg</image>
<attendance>4</attendance>
<reviews>0</reviews>
<tag>lastfm:event=17877</tag>
<url>http://www.last.fm/event/17877</url>
</event>
<event>
<id>6810</id>
<title>Zero 7</title>
<artists>
<artist>Zero 7</artist>
<headliner>Zero 7</headliner>
</artists>
<venue>
<name>Rock City</name>
<location>
<city>Nottingham</city>
<country>United Kingdom</country>
<street>8 Talbot Street</street>
<postalcode>NG1 5GG</postalcode>
<geo:point>
<geo:lat>52.9561548201744</geo:lat>
<geo:long>-1.15430083692082</geo:long>
</geo:point>
</location>
<url>http://www.last.fm/venue/8777130</url>
</venue>
<startDate>Thu, 25 May 2006 19:30:00</startDate>
<description></description>
<image size="small">http://userserve-ak.last.fm/serve/34/246136.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/246136.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/246136.jpg</image>
<attendance>3</attendance>
<reviews>0</reviews>
<tag>lastfm:event=6810</tag>
<url>http://www.last.fm/event/6810</url>
</event>
</events></lfm>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,554 @@
<?xml version="1.0" encoding="utf-8"?>
<lfm status="ok">
<artists user="RJ" page="1" perPage="50" totalPages="69">
<artist>
<name>Dream Theater</name>
<playcount>1642</playcount>
<tagcount></tagcount>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/373098.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/373098.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/373098.jpg</image>
</artist>
<artist>
<name>Dire Straits</name>
<playcount>770</playcount>
<tagcount></tagcount>
<mbid>614e3804-7d34-41ba-857f-811bad7c2b7a</mbid>
<url>http://www.last.fm/music/Dire+Straits</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/3801700.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/3801700.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/3801700.jpg</image>
</artist>
<artist>
<name>Miles Davis</name>
<playcount>757</playcount>
<tagcount>1</tagcount>
<mbid>561d854a-6a28-4aa7-8c99-323e6ce46c2a</mbid>
<url>http://www.last.fm/music/Miles+Davis</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/4971157.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/4971157.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/183755.jpg</image>
</artist>
<artist>
<name>Metallica</name>
<playcount>654</playcount>
<tagcount>2</tagcount>
<mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
<url>http://www.last.fm/music/Metallica</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/7560709.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/7560709.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/7560709.jpg</image>
</artist>
<artist>
<name>Guns N' Roses</name>
<playcount>634</playcount>
<tagcount>1</tagcount>
<mbid>eeb1195b-f213-4ce1-b28c-8565211f8e43</mbid>
<url>http://www.last.fm/music/Guns+N%27+Roses</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/3223900.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/3223900.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/3223900.jpg</image>
</artist>
<artist>
<name>Aerosmith</name>
<playcount>622</playcount>
<tagcount></tagcount>
<mbid>3d2b98e5-556f-4451-a3ff-c50ea18d57cb</mbid>
<url>http://www.last.fm/music/Aerosmith</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/300793.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/300793.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/300793.jpg</image>
</artist>
<artist>
<name>Joe Satriani</name>
<playcount>570</playcount>
<tagcount></tagcount>
<mbid>29762c82-bb92-4acd-b1fb-09cc4da250d2</mbid>
<url>http://www.last.fm/music/Joe+Satriani</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/70714.gif</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/70714.gif</image>
<image size="large">http://userserve-ak.last.fm/serve/126/70714.gif</image>
</artist>
<artist>
<name>Rage Against the Machine</name>
<playcount>541</playcount>
<tagcount>2</tagcount>
<mbid>3798b104-01cb-484c-a3b0-56adc6399b80</mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/282898.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/380903.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/282898.jpg</image>
</artist>
<artist>
<name>Led Zeppelin</name>
<playcount>481</playcount>
<tagcount></tagcount>
<mbid>678d88b2-87b0-403b-b63d-5da7465aecc3</mbid>
<url>http://www.last.fm/music/Led+Zeppelin</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/193960.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/193960.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/193960.jpg</image>
</artist>
<artist>
<name>Buckcherry</name>
<playcount>478</playcount>
<tagcount>3</tagcount>
<mbid>822e92ef-72ea-42e0-9af1-b987816b487a</mbid>
<url>http://www.last.fm/music/Buckcherry</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/364623.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/364623.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/364623.jpg</image>
</artist>
<artist>
<name>Mr. Big</name>
<playcount>448</playcount>
<tagcount></tagcount>
<mbid>bd1180c4-4252-461f-94dc-543906c02522</mbid>
<url>http://www.last.fm/music/Mr.+Big</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/320486.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/320486.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/320486.jpg</image>
</artist>
<artist>
<name>Jimi Hendrix</name>
<playcount>438</playcount>
<tagcount>1</tagcount>
<mbid>06fb1c8b-566e-4cb2-985b-b467c90781d4</mbid>
<url>http://www.last.fm/music/Jimi+Hendrix</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/388933.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/388933.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/388933.jpg</image>
</artist>
<artist>
<name>Nine Inch Nails</name>
<playcount>418</playcount>
<tagcount></tagcount>
<mbid>b7ffd2af-418f-4be2-bdd1-22f8b48613da</mbid>
<url>http://www.last.fm/music/Nine+Inch+Nails</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/10629345.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/10629345.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/10629345.jpg</image>
</artist>
<artist>
<name>Nina Simone</name>
<playcount>404</playcount>
<tagcount></tagcount>
<mbid>2944824d-4c26-476f-a981-be849081942f</mbid>
<url>http://www.last.fm/music/Nina+Simone</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/414771.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/414771.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/414771.jpg</image>
</artist>
<artist>
<name>Red Hot Chili Peppers</name>
<playcount>400</playcount>
<tagcount>2</tagcount>
<mbid>8bfac288-ccc5-448d-9573-c33ea2aa5c30</mbid>
<url>http://www.last.fm/music/Red+Hot+Chili+Peppers</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/403312.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/403312.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/403312.jpg</image>
</artist>
<artist>
<name>Snoop Dogg</name>
<playcount>372</playcount>
<tagcount></tagcount>
<mbid>f90e8b26-9e52-4669-a5c9-e28529c47894</mbid>
<url>http://www.last.fm/music/Snoop+Dogg</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/224432.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/224432.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/224432.jpg</image>
</artist>
<artist>
<name>Counting Crows</name>
<playcount>371</playcount>
<tagcount></tagcount>
<mbid>a0327dc2-dc76-44d5-aec6-47cd2dff1469</mbid>
<url>http://www.last.fm/music/Counting+Crows</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/302855.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/302855.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/302855.jpg</image>
</artist>
<artist>
<name>Def Leppard</name>
<playcount>367</playcount>
<tagcount></tagcount>
<mbid>7249b899-8db8-43e7-9e6e-22f1e736024e</mbid>
<url>http://www.last.fm/music/Def+Leppard</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/4800466.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/4800466.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/4800466.jpg</image>
</artist>
<artist>
<name>Firebird</name>
<playcount>349</playcount>
<tagcount></tagcount>
<mbid>3dfc0a11-0122-4bc4-8474-b67c88c5a4ea</mbid>
<url>http://www.last.fm/music/Firebird</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/109444.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/109444.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/109444.jpg</image>
</artist>
<artist>
<name>Free</name>
<playcount>336</playcount>
<tagcount></tagcount>
<mbid>6cb5d1ca-03ce-4656-92f5-bf35f53d1582</mbid>
<url>http://www.last.fm/music/Free</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/2799321.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/2799321.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/2799321.jpg</image>
</artist>
<artist>
<name>R.E.M.</name>
<playcount>329</playcount>
<tagcount></tagcount>
<mbid>ea4dfa26-f633-4da6-a52a-f49ea4897b58</mbid>
<url>http://www.last.fm/music/R.E.M.</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/296066.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/296066.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/296066.jpg</image>
</artist>
<artist>
<name>Radiohead</name>
<playcount>322</playcount>
<tagcount>1</tagcount>
<mbid>a74b1b7f-71a5-4011-9441-d0b5e4122711</mbid>
<url>http://www.last.fm/music/Radiohead</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/14055285.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/14055285.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/14055285.jpg</image>
</artist>
<artist>
<name>Matchbox Twenty</name>
<playcount>313</playcount>
<tagcount></tagcount>
<mbid>75af9d25-cf32-49c0-9192-60bd8e9784e6</mbid>
<url>http://www.last.fm/music/Matchbox+Twenty</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/33022.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/33022.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/33022.jpg</image>
</artist>
<artist>
<name>Skid Row</name>
<playcount>313</playcount>
<tagcount></tagcount>
<mbid>6da0515e-a27d-449d-84cc-00713c38a140</mbid>
<url>http://www.last.fm/music/Skid+Row</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/2595057.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/2595057.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/2595057.jpg</image>
</artist>
<artist>
<name>Dan Reed Network</name>
<playcount>312</playcount>
<tagcount></tagcount>
<mbid>2fe24c3c-5768-484d-a64b-04983e99325a</mbid>
<url>http://www.last.fm/music/Dan+Reed+Network</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/191748.gif</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/191748.gif</image>
<image size="large">http://userserve-ak.last.fm/serve/126/191748.gif</image>
</artist>
<artist>
<name>The Rolling Stones</name>
<playcount>304</playcount>
<tagcount></tagcount>
<mbid>b071f9fa-14b0-4217-8e97-eb41da73f598</mbid>
<url>http://www.last.fm/music/The+Rolling+Stones</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/123525.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/123525.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/123525.jpg</image>
</artist>
<artist>
<name>Ben Folds Five</name>
<playcount>303</playcount>
<tagcount></tagcount>
<mbid>abe2669a-a612-4bf6-9193-bb4f4b8a9088</mbid>
<url>http://www.last.fm/music/Ben+Folds+Five</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/53735.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/53735.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/53735.jpg</image>
</artist>
<artist>
<name>Spock's Beard</name>
<playcount>295</playcount>
<tagcount></tagcount>
<mbid>9e57e406-4fb1-40d0-bcd2-2aa1d6390c1d</mbid>
<url>http://www.last.fm/music/Spock%27s+Beard</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/430197.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/430197.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/430197.jpg</image>
</artist>
<artist>
<name>Goo Goo Dolls</name>
<playcount>282</playcount>
<tagcount></tagcount>
<mbid>e2c00c56-8365-4160-9f40-a64682917633</mbid>
<url>http://www.last.fm/music/Goo+Goo+Dolls</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/126546.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/126546.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/126546.jpg</image>
</artist>
<artist>
<name>Liquid Tension Experiment</name>
<playcount>282</playcount>
<tagcount></tagcount>
<mbid>bc641be9-ca36-4c61-9394-5230433f6646</mbid>
<url>http://www.last.fm/music/Liquid+Tension+Experiment</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/17714685.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/17714685.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/17714685.jpg</image>
</artist>
<artist>
<name>3 Doors Down</name>
<playcount>271</playcount>
<tagcount></tagcount>
<mbid>2386cd66-e923-4e8e-bf14-2eebe2e9b973</mbid>
<url>http://www.last.fm/music/3+Doors+Down</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/8575787.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/8575787.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8575787.jpg</image>
</artist>
<artist>
<name>Moby</name>
<playcount>262</playcount>
<tagcount></tagcount>
<mbid>8970d868-0723-483b-a75b-51088913d3d4</mbid>
<url>http://www.last.fm/music/Moby</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/130045.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/130045.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/130045.jpg</image>
</artist>
<artist>
<name>The Kleptones</name>
<playcount>245</playcount>
<tagcount></tagcount>
<mbid>f73b2b70-33d5-4118-923b-05ba8ad7e702</mbid>
<url>http://www.last.fm/music/The+Kleptones</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/361272.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/361272.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/361272.jpg</image>
</artist>
<artist>
<name>Deep Purple</name>
<playcount>245</playcount>
<tagcount></tagcount>
<mbid>79491354-3d83-40e3-9d8e-7592d58d790a</mbid>
<url>http://www.last.fm/music/Deep+Purple</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/20352.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/20352.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/20352.jpg</image>
</artist>
<artist>
<name>King's X</name>
<playcount>240</playcount>
<tagcount></tagcount>
<mbid>c8f5272e-8a94-4807-9099-70181e92fc46</mbid>
<url>http://www.last.fm/music/King%27s+X</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/309728.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/309728.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/309728.jpg</image>
</artist>
<artist>
<name>Stevie Wonder</name>
<playcount>238</playcount>
<tagcount></tagcount>
<mbid>1ee18fb3-18a6-4c7f-8ba0-bc41cdd0462e</mbid>
<url>http://www.last.fm/music/Stevie+Wonder</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/125434.png</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/125434.png</image>
<image size="large">http://userserve-ak.last.fm/serve/126/125434.png</image>
</artist>
<artist>
<name>Richard Cheese</name>
<playcount>228</playcount>
<tagcount>4</tagcount>
<mbid>9bf79f68-c064-44a1-8c2c-5764f1d7c016</mbid>
<url>http://www.last.fm/music/Richard+Cheese</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/469800.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/469800.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/469800.jpg</image>
</artist>
<artist>
<name>James Taylor</name>
<playcount>228</playcount>
<tagcount></tagcount>
<mbid>107d0c22-d051-4d98-8206-4e14de02132a</mbid>
<url>http://www.last.fm/music/James+Taylor</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/218940.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/218940.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/218940.jpg</image>
</artist>
<artist>
<name>Weather Report</name>
<playcount>223</playcount>
<tagcount></tagcount>
<mbid>0f9997bd-e079-429e-8ccd-9378c9b0c746</mbid>
<url>http://www.last.fm/music/Weather+Report</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/2919856.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/2919856.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/2919856.jpg</image>
</artist>
<artist>
<name>Fleetwood Mac</name>
<playcount>223</playcount>
<tagcount></tagcount>
<mbid>bd13909f-1c29-4c27-a874-d4aaf27c5b1a</mbid>
<url>http://www.last.fm/music/Fleetwood+Mac</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/337211.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/337211.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/337211.jpg</image>
</artist>
<artist>
<name>The Jimi Hendrix Experience</name>
<playcount>220</playcount>
<tagcount></tagcount>
<mbid>33b3c323-77c2-417c-a5b4-af7e6a111cc9</mbid>
<url>http://www.last.fm/music/The+Jimi+Hendrix+Experience</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/18062541.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/18062541.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/18062541.jpg</image>
</artist>
<artist>
<name>Steve Vai</name>
<playcount>214</playcount>
<tagcount></tagcount>
<mbid>5e7ccd92-6277-451a-aab9-1efd587c50f3</mbid>
<url>http://www.last.fm/music/Steve+Vai</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/187687.gif</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/187687.gif</image>
<image size="large">http://userserve-ak.last.fm/serve/126/187687.gif</image>
</artist>
<artist>
<name>Symphony X</name>
<playcount>210</playcount>
<tagcount></tagcount>
<mbid>b669c53e-5a1f-4adc-80be-755e64e8115e</mbid>
<url>http://www.last.fm/music/Symphony+X</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/76257.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/76257.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/76257.jpg</image>
</artist>
<artist>
<name>James Brown</name>
<playcount>207</playcount>
<tagcount></tagcount>
<mbid>20ff3303-4fe2-4a47-a1b6-291e26aa3438</mbid>
<url>http://www.last.fm/music/James+Brown</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/107634.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/107634.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/107634.jpg</image>
</artist>
<artist>
<name>Jamiroquai</name>
<playcount>207</playcount>
<tagcount></tagcount>
<mbid>f4857fb9-e255-4dc6-bd01-e4ca7cc68544</mbid>
<url>http://www.last.fm/music/Jamiroquai</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/198652.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/198652.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/198652.jpg</image>
</artist>
<artist>
<name>Tom Waits</name>
<playcount>205</playcount>
<tagcount></tagcount>
<mbid>c3aeb863-7b26-4388-94e8-5a240f2be21b</mbid>
<url>http://www.last.fm/music/Tom+Waits</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/2335574.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/2335574.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/2335574.jpg</image>
</artist>
<artist>
<name>Slamin' Gladys</name>
<playcount>204</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Slamin%27+Gladys</url>
<streamable>1</streamable>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
</artist>
<artist>
<name>Santana</name>
<playcount>204</playcount>
<tagcount></tagcount>
<mbid>9a3bf45c-347d-4630-894d-7cf3e8e0b632</mbid>
<url>http://www.last.fm/music/Santana</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/344600.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/344600.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/344600.jpg</image>
</artist>
<artist>
<name>Fun Lovin' Criminals</name>
<playcount>203</playcount>
<tagcount></tagcount>
<mbid>1b15e90d-910c-4be4-99cb-463772a6430f</mbid>
<url>http://www.last.fm/music/Fun+Lovin%27+Criminals</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/139766.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/139766.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/139766.jpg</image>
</artist>
<artist>
<name>Foo Fighters</name>
<playcount>197</playcount>
<tagcount></tagcount>
<mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
<url>http://www.last.fm/music/Foo+Fighters</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/2513072.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/2513072.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/2513072.jpg</image>
</artist>
</artists></lfm>

View File

@ -0,0 +1,737 @@
<?xml version="1.0" encoding="utf-8"?>
<lfm status="ok">
<toptracks user="RJ" type="overall">
<track rank="1">
<name>Learning to Live</name>
<playcount>51</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Learning+to+Live</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12620339.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12620339.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12620339.jpg</image>
</track>
<track rank="2">
<name>Three Minute Warning</name>
<playcount>46</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Liquid+Tension+Experiment/_/Three+Minute+Warning</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Liquid Tension Experiment</name>
<mbid>bc641be9-ca36-4c61-9394-5230433f6646</mbid>
<url>http://www.last.fm/music/Liquid+Tension+Experiment</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/15779373.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/15779373.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/15779373.jpg</image>
</track>
<track rank="3">
<name>Pull Me Under</name>
<playcount>45</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Pull+Me+Under</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12620339.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12620339.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12620339.jpg</image>
</track>
<track rank="3">
<name>Take the Time</name>
<playcount>45</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Take+the+Time</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12620339.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12620339.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12620339.jpg</image>
</track>
<track rank="5">
<name>Under a Glass Moon</name>
<playcount>43</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Under+a+Glass+Moon</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12620339.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12620339.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12620339.jpg</image>
</track>
<track rank="5">
<name>Another Day</name>
<playcount>43</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Another+Day</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12620339.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12620339.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12620339.jpg</image>
</track>
<track rank="7">
<name>The Pusher</name>
<playcount>42</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Steppenwolf/_/The+Pusher</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Steppenwolf</name>
<mbid>12ff8858-bfcb-4812-a8dd-7e9debf0cbee</mbid>
<url>http://www.last.fm/music/Steppenwolf</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8673259.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8673259.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8673259.jpg</image>
</track>
<track rank="8">
<name>Sultans of Swing</name>
<playcount>38</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dire+Straits/_/Sultans+of+Swing</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dire Straits</name>
<mbid>614e3804-7d34-41ba-857f-811bad7c2b7a</mbid>
<url>http://www.last.fm/music/Dire+Straits</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/13188073.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/13188073.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/13188073.jpg</image>
</track>
<track rank="9">
<name>Wait for Sleep</name>
<playcount>37</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Wait+for+Sleep</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12620339.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12620339.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12620339.jpg</image>
</track>
<track rank="10">
<name>Caught in a Web</name>
<playcount>33</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Caught+in+a+Web</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B000002JKA.01.THUMBZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B000002JKA.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B000002JKA.01.LZZZZZZZ.jpg</image>
</track>
<track rank="11">
<name>All Right Now</name>
<playcount>30</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Free/_/All+Right+Now</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Free</name>
<mbid>6cb5d1ca-03ce-4656-92f5-bf35f53d1582</mbid>
<url>http://www.last.fm/music/Free</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8605655.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8605655.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8605655.jpg</image>
</track>
<track rank="11">
<name>Surfing With the Alien</name>
<playcount>30</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Joe+Satriani/_/Surfing+With+the+Alien</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Joe Satriani</name>
<mbid>29762c82-bb92-4acd-b1fb-09cc4da250d2</mbid>
<url>http://www.last.fm/music/Joe+Satriani</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/18263325.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/18263325.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/18263325.jpg</image>
</track>
<track rank="13">
<name>Cowboys</name>
<playcount>29</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Portishead/_/Cowboys</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Portishead</name>
<mbid>8f6bd1e4-fbe1-4f50-aa9b-94c450ec0f11</mbid>
<url>http://www.last.fm/music/Portishead</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8569347.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8569347.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8569347.jpg</image>
</track>
<track rank="13">
<name>Trial of Tears</name>
<playcount>29</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Trial+of+Tears</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/13628909.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/13628909.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/13628909.jpg</image>
</track>
<track rank="15">
<name>Closer</name>
<playcount>28</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Nine+Inch+Nails/_/Closer</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Nine Inch Nails</name>
<mbid>b7ffd2af-418f-4be2-bdd1-22f8b48613da</mbid>
<url>http://www.last.fm/music/Nine+Inch+Nails</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8652447.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8652447.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8652447.jpg</image>
</track>
<track rank="15">
<name>The Glass Prison</name>
<playcount>28</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/The+Glass+Prison</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
</track>
<track rank="15">
<name>Superstition</name>
<playcount>28</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Stevie+Wonder/_/Superstition</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Stevie Wonder</name>
<mbid>1ee18fb3-18a6-4c7f-8ba0-bc41cdd0462e</mbid>
<url>http://www.last.fm/music/Stevie+Wonder</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8590525.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8590525.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8590525.jpg</image>
</track>
<track rank="15">
<name>Hollow Years</name>
<playcount>28</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Hollow+Years</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/13628909.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/13628909.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/13628909.jpg</image>
</track>
<track rank="15">
<name>All Along the Watchtower</name>
<playcount>28</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Jimi+Hendrix/_/All+Along+the+Watchtower</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Jimi Hendrix</name>
<mbid>06fb1c8b-566e-4cb2-985b-b467c90781d4</mbid>
<url>http://www.last.fm/music/Jimi+Hendrix</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12619911.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12619911.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12619911.jpg</image>
</track>
<track rank="15">
<name>Surrounded</name>
<playcount>28</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Surrounded</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12620339.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12620339.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12620339.jpg</image>
</track>
<track rank="21">
<name>Lines in the Sand</name>
<playcount>27</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Lines+in+the+Sand</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00000DD27.01._SCMZZZZZZZ_.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00000DD27.01._SCMZZZZZZZ_.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00000DD27.01._SCMZZZZZZZ_.jpg</image>
</track>
<track rank="21">
<name>Know Your Enemy</name>
<playcount>27</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine/_/Know+Your+Enemy</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Rage Against the Machine</name>
<mbid>3798b104-01cb-484c-a3b0-56adc6399b80</mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/19784479.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/19784479.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/19784479.jpg</image>
</track>
<track rank="21">
<name>Take the Power Back</name>
<playcount>27</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine/_/Take+the+Power+Back</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Rage Against the Machine</name>
<mbid>3798b104-01cb-484c-a3b0-56adc6399b80</mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/19784479.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/19784479.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/19784479.jpg</image>
</track>
<track rank="24">
<name>Settle for Nothing</name>
<playcount>26</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine/_/Settle+for+Nothing</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Rage Against the Machine</name>
<mbid>3798b104-01cb-484c-a3b0-56adc6399b80</mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/19784479.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/19784479.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/19784479.jpg</image>
</track>
<track rank="24">
<name>Metropolis - Part I (The Miracle and the Sleeper)</name>
<playcount>26</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Metropolis+-+Part+I+%28The+Miracle+and+the+Sleeper%29</url>
<streamable fulltrack="0">0</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
</track>
<track rank="24">
<name>Photograph</name>
<playcount>26</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Def+Leppard/_/Photograph</url>
<streamable fulltrack="0">0</streamable>
<artist>
<name>Def Leppard</name>
<mbid>7249b899-8db8-43e7-9e6e-22f1e736024e</mbid>
<url>http://www.last.fm/music/Def+Leppard</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B000001F2V.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B000001F2V.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B000001F2V.01.MZZZZZZZ.jpg</image>
</track>
<track rank="24">
<name>Just Let Me Breathe</name>
<playcount>26</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Just+Let+Me+Breathe</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00005QJDG.01._SCMZZZZZZZ_.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00005QJDG.01._SCMZZZZZZZ_.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00005QJDG.01._SCMZZZZZZZ_.jpg</image>
</track>
<track rank="24">
<name>I Put a Spell on You</name>
<playcount>26</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Nina+Simone/_/I+Put+a+Spell+on+You</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Nina Simone</name>
<mbid>2944824d-4c26-476f-a981-be849081942f</mbid>
<url>http://www.last.fm/music/Nina+Simone</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/18081431.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/18081431.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/18081431.jpg</image>
</track>
<track rank="24">
<name>Love Me or Leave Me</name>
<playcount>26</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Nina+Simone/_/Love+Me+or+Leave+Me</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Nina Simone</name>
<mbid>2944824d-4c26-476f-a981-be849081942f</mbid>
<url>http://www.last.fm/music/Nina+Simone</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B000055Y5G.01._SCMZZZZZZZ_.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B000055Y5G.01._SCMZZZZZZZ_.jpg</image>
<image size="large">http://images.amazon.com/images/P/B000055Y5G.01._SCMZZZZZZZ_.jpg</image>
</track>
<track rank="30">
<name>Fire and Rain</name>
<playcount>25</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/James+Taylor/_/Fire+and+Rain</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>James Taylor</name>
<mbid>107d0c22-d051-4d98-8206-4e14de02132a</mbid>
<url>http://www.last.fm/music/James+Taylor</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12619275.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12619275.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12619275.jpg</image>
</track>
<track rank="30">
<name>The Great Debate</name>
<playcount>25</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/The+Great+Debate</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
</track>
<track rank="30">
<name>Lifting Shadows Off a Dream</name>
<playcount>25</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Lifting+Shadows+Off+a+Dream</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B000002JKA.01.THUMBZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B000002JKA.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B000002JKA.01.LZZZZZZZ.jpg</image>
</track>
<track rank="30">
<name>Peruvian Skies</name>
<playcount>25</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Peruvian+Skies</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/13628909.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/13628909.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/13628909.jpg</image>
</track>
<track rank="34">
<name>Welcome to the Jungle</name>
<playcount>24</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Guns+N%27+Roses/_/Welcome+to+the+Jungle</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Guns N' Roses</name>
<mbid>eeb1195b-f213-4ce1-b28c-8565211f8e43</mbid>
<url>http://www.last.fm/music/Guns+N%27+Roses</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8616041.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8616041.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8616041.jpg</image>
</track>
<track rank="34">
<name>El Paso</name>
<playcount>24</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Marty+Robbins/_/El+Paso</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Marty Robbins</name>
<mbid>2c2add7c-9a99-4812-a20e-870d331f01fd</mbid>
<url>http://www.last.fm/music/Marty+Robbins</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B0000025W4.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B0000025W4.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B0000025W4.01.MZZZZZZZ.jpg</image>
</track>
<track rank="34">
<name>Misunderstood</name>
<playcount>24</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Misunderstood</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
</track>
<track rank="37">
<name>Quicksand Jesus</name>
<playcount>23</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Skid+Row/_/Quicksand+Jesus</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Skid Row</name>
<mbid>6da0515e-a27d-449d-84cc-00713c38a140</mbid>
<url>http://www.last.fm/music/Skid+Row</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B000002IQW.01.THUMBZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B000002IQW.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B000002IQW.01.LZZZZZZZ.jpg</image>
</track>
<track rank="37">
<name>Whiskey in the Morning</name>
<playcount>23</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Buckcherry/_/Whiskey+in+the+Morning</url>
<streamable fulltrack="0">0</streamable>
<artist>
<name>Buckcherry</name>
<mbid>822e92ef-72ea-42e0-9af1-b987816b487a</mbid>
<url>http://www.last.fm/music/Buckcherry</url>
</artist>
</track>
<track rank="37">
<name>Township Rebellion</name>
<playcount>23</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine/_/Township+Rebellion</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Rage Against the Machine</name>
<mbid>3798b104-01cb-484c-a3b0-56adc6399b80</mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/19784479.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/19784479.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/19784479.jpg</image>
</track>
<track rank="37">
<name>Steamroller</name>
<playcount>23</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/James+Taylor/_/Steamroller</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>James Taylor</name>
<mbid>107d0c22-d051-4d98-8206-4e14de02132a</mbid>
<url>http://www.last.fm/music/James+Taylor</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B0009YXDD8.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B0009YXDD8.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B0009YXDD8.01.MZZZZZZZ.jpg</image>
</track>
<track rank="37">
<name>Peter Gunn Theme</name>
<playcount>23</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/The+Blues+Brothers/_/Peter+Gunn+Theme</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>The Blues Brothers</name>
<mbid>7252abc2-dfc8-4aa6-889f-2d168b265403</mbid>
<url>http://www.last.fm/music/The+Blues+Brothers</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8591289.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8591289.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8591289.jpg</image>
</track>
<track rank="37">
<name>Lie</name>
<playcount>23</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Lie</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B000002JKA.01.THUMBZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B000002JKA.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B000002JKA.01.LZZZZZZZ.jpg</image>
</track>
<track rank="37">
<name>Porno Star</name>
<playcount>23</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Buckcherry/_/Porno+Star</url>
<streamable fulltrack="0">0</streamable>
<artist>
<name>Buckcherry</name>
<mbid>822e92ef-72ea-42e0-9af1-b987816b487a</mbid>
<url>http://www.last.fm/music/Buckcherry</url>
</artist>
</track>
<track rank="37">
<name>Blind Faith</name>
<playcount>23</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/_/Blind+Faith</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
</track>
<track rank="45">
<name>It's So Easy</name>
<playcount>22</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Guns+N%27+Roses/_/It%27s+So+Easy</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Guns N' Roses</name>
<mbid>eeb1195b-f213-4ce1-b28c-8565211f8e43</mbid>
<url>http://www.last.fm/music/Guns+N%27+Roses</url>
</artist>
</track>
<track rank="45">
<name>Nightrain</name>
<playcount>22</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Guns+N%27+Roses/_/Nightrain</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Guns N' Roses</name>
<mbid>eeb1195b-f213-4ce1-b28c-8565211f8e43</mbid>
<url>http://www.last.fm/music/Guns+N%27+Roses</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8616041.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8616041.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8616041.jpg</image>
</track>
<track rank="45">
<name>Slamin'</name>
<playcount>22</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Buckcherry/_/Slamin%27</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Buckcherry</name>
<mbid>822e92ef-72ea-42e0-9af1-b987816b487a</mbid>
<url>http://www.last.fm/music/Buckcherry</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00005ABN7.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00005ABN7.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00005ABN7.01.MZZZZZZZ.jpg</image>
</track>
<track rank="45">
<name>Frontside</name>
<playcount>22</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Buckcherry/_/Frontside</url>
<streamable fulltrack="0">0</streamable>
<artist>
<name>Buckcherry</name>
<mbid>822e92ef-72ea-42e0-9af1-b987816b487a</mbid>
<url>http://www.last.fm/music/Buckcherry</url>
</artist>
</track>
<track rank="45">
<name>Don't Smoke in Bed</name>
<playcount>22</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Nina+Simone/_/Don%27t+Smoke+in+Bed</url>
<streamable fulltrack="0">1</streamable>
<artist>
<name>Nina Simone</name>
<mbid>2944824d-4c26-476f-a981-be849081942f</mbid>
<url>http://www.last.fm/music/Nina+Simone</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/10081017.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/10081017.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/10081017.jpg</image>
</track>
<track rank="45">
<name>Crossroads</name>
<playcount>22</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Cream/_/Crossroads</url>
<streamable fulltrack="0">0</streamable>
<artist>
<name>Cream</name>
<mbid>04cd0cfd-bfd1-4c36-bc38-95c35e2c045f</mbid>
<url>http://www.last.fm/music/Cream</url>
</artist>
</track>
</toptracks></lfm>

View File

@ -0,0 +1,206 @@
<?xml version="1.0" encoding="utf-8"?>
<lfm status="ok">
<weeklychartlist user="RJ">
<chart from="1108296002" to="1108900802"/>
<chart from="1108900801" to="1109505601"/>
<chart from="1109505601" to="1110110401"/>
<chart from="1110715201" to="1111320001"/>
<chart from="1111320001" to="1111924801"/>
<chart from="1111924801" to="1112529601"/>
<chart from="1112529601" to="1113134401"/>
<chart from="1113134400" to="1113739200"/>
<chart from="1113739202" to="1114344002"/>
<chart from="1114965332" to="1115570132"/>
<chart from="1115553600" to="1116158400"/>
<chart from="1116158400" to="1116763200"/>
<chart from="1116759602" to="1117364402"/>
<chart from="1117364401" to="1117969201"/>
<chart from="1117969201" to="1118574001"/>
<chart from="1118577601" to="1119182401"/>
<chart from="1119787202" to="1120392002"/>
<chart from="1120392002" to="1120996802"/>
<chart from="1120996803" to="1121601603"/>
<chart from="1121601602" to="1122206402"/>
<chart from="1122206401" to="1122811201"/>
<chart from="1122811201" to="1123416001"/>
<chart from="1123416004" to="1124020804"/>
<chart from="1124020801" to="1124625601"/>
<chart from="1124625601" to="1125230401"/>
<chart from="1125230401" to="1125835201"/>
<chart from="1126440001" to="1127044801"/>
<chart from="1127044802" to="1127649602"/>
<chart from="1127649601" to="1128254401"/>
<chart from="1128254402" to="1128859202"/>
<chart from="1128859201" to="1129464001"/>
<chart from="1129464001" to="1130068801"/>
<chart from="1130068802" to="1130673602"/>
<chart from="1130673602" to="1131278402"/>
<chart from="1131278402" to="1131883202"/>
<chart from="1131883201" to="1132488001"/>
<chart from="1132488002" to="1133092802"/>
<chart from="1133092801" to="1133697601"/>
<chart from="1133697601" to="1134302401"/>
<chart from="1134302403" to="1134907203"/>
<chart from="1134907202" to="1135512002"/>
<chart from="1135512002" to="1136116802"/>
<chart from="1136116801" to="1136721601"/>
<chart from="1136721601" to="1137326401"/>
<chart from="1137326402" to="1137931202"/>
<chart from="1137931202" to="1138536002"/>
<chart from="1138536002" to="1139140802"/>
<chart from="1139140801" to="1139745601"/>
<chart from="1139745601" to="1140350401"/>
<chart from="1140350401" to="1140955201"/>
<chart from="1140955203" to="1141560003"/>
<chart from="1141560002" to="1142164802"/>
<chart from="1142769602" to="1143374402"/>
<chart from="1143374402" to="1143979202"/>
<chart from="1143979202" to="1144584000"/>
<chart from="1144584000" to="1145188800"/>
<chart from="1145188800" to="1145793600"/>
<chart from="1145793600" to="1146398400"/>
<chart from="1146398400" to="1147003200"/>
<chart from="1147003200" to="1147608000"/>
<chart from="1147608000" to="1148212800"/>
<chart from="1148212800" to="1148817600"/>
<chart from="1148817600" to="1149422400"/>
<chart from="1149422400" to="1150027200"/>
<chart from="1150027200" to="1150632000"/>
<chart from="1150632000" to="1151236800"/>
<chart from="1151236800" to="1151841600"/>
<chart from="1151841600" to="1152446400"/>
<chart from="1152446400" to="1153051200"/>
<chart from="1153051200" to="1153656000"/>
<chart from="1153656000" to="1154260800"/>
<chart from="1154260800" to="1154865600"/>
<chart from="1154865600" to="1155470400"/>
<chart from="1155470400" to="1156075200"/>
<chart from="1156075200" to="1156680000"/>
<chart from="1156680000" to="1157284800"/>
<chart from="1157284800" to="1157889600"/>
<chart from="1157889600" to="1158494400"/>
<chart from="1158494400" to="1159099200"/>
<chart from="1159099200" to="1159704000"/>
<chart from="1159704000" to="1160308800"/>
<chart from="1160308800" to="1160913600"/>
<chart from="1160913600" to="1161518400"/>
<chart from="1161518400" to="1162123200"/>
<chart from="1162123200" to="1162728000"/>
<chart from="1162728000" to="1163332800"/>
<chart from="1163332800" to="1163937600"/>
<chart from="1163937600" to="1164542400"/>
<chart from="1164542400" to="1165147200"/>
<chart from="1165147200" to="1165752000"/>
<chart from="1165752000" to="1166356800"/>
<chart from="1166356800" to="1166961600"/>
<chart from="1166961600" to="1167566400"/>
<chart from="1167566400" to="1168171200"/>
<chart from="1168171200" to="1168776000"/>
<chart from="1168776000" to="1169380800"/>
<chart from="1169380800" to="1169985600"/>
<chart from="1169985600" to="1170590400"/>
<chart from="1170590400" to="1171195200"/>
<chart from="1171195200" to="1171800000"/>
<chart from="1171800000" to="1172404800"/>
<chart from="1172404800" to="1173009600"/>
<chart from="1173009600" to="1173614400"/>
<chart from="1173614400" to="1174219200"/>
<chart from="1174219200" to="1174824000"/>
<chart from="1174824000" to="1175428800"/>
<chart from="1175428800" to="1176033600"/>
<chart from="1176033600" to="1176638400"/>
<chart from="1176638400" to="1177243200"/>
<chart from="1177243200" to="1177848000"/>
<chart from="1177848000" to="1178452800"/>
<chart from="1178452800" to="1179057600"/>
<chart from="1179057600" to="1179662400"/>
<chart from="1179662400" to="1180267200"/>
<chart from="1180267200" to="1180872000"/>
<chart from="1180872000" to="1181476800"/>
<chart from="1181476800" to="1182081600"/>
<chart from="1182081600" to="1182686400"/>
<chart from="1182686400" to="1183291200"/>
<chart from="1183291200" to="1183896000"/>
<chart from="1183896000" to="1184500800"/>
<chart from="1184500800" to="1185105600"/>
<chart from="1185105600" to="1185710400"/>
<chart from="1185710400" to="1186315200"/>
<chart from="1186315200" to="1186920000"/>
<chart from="1186920000" to="1187524800"/>
<chart from="1187524800" to="1188129600"/>
<chart from="1188129600" to="1188734400"/>
<chart from="1188734400" to="1189339200"/>
<chart from="1189339200" to="1189944000"/>
<chart from="1189944000" to="1190548800"/>
<chart from="1190548800" to="1191153600"/>
<chart from="1191153600" to="1191758400"/>
<chart from="1191758400" to="1192363200"/>
<chart from="1192363200" to="1192968000"/>
<chart from="1192968000" to="1193572800"/>
<chart from="1193572800" to="1194177600"/>
<chart from="1194177600" to="1194782400"/>
<chart from="1194782400" to="1195387200"/>
<chart from="1195387200" to="1195992000"/>
<chart from="1195992000" to="1196596800"/>
<chart from="1196596800" to="1197201600"/>
<chart from="1197201600" to="1197806400"/>
<chart from="1197806400" to="1198411200"/>
<chart from="1199620800" to="1200225600"/>
<chart from="1200225600" to="1200830400"/>
<chart from="1200830400" to="1201435200"/>
<chart from="1201435200" to="1202040000"/>
<chart from="1202040000" to="1202644800"/>
<chart from="1202644800" to="1203249600"/>
<chart from="1203249600" to="1203854400"/>
<chart from="1203854400" to="1204459200"/>
<chart from="1204459200" to="1205064000"/>
<chart from="1205064000" to="1205668800"/>
<chart from="1205668800" to="1206273600"/>
<chart from="1206273600" to="1206878400"/>
<chart from="1206878400" to="1207483200"/>
<chart from="1207483200" to="1208088000"/>
<chart from="1208088000" to="1208692800"/>
<chart from="1208692800" to="1209297600"/>
<chart from="1209297600" to="1209902400"/>
<chart from="1209902400" to="1210507200"/>
<chart from="1210507200" to="1211112000"/>
<chart from="1211112000" to="1211716800"/>
<chart from="1211716800" to="1212321600"/>
<chart from="1212321600" to="1212926400"/>
<chart from="1212926400" to="1213531200"/>
<chart from="1213531200" to="1214136000"/>
<chart from="1214740800" to="1215345600"/>
<chart from="1215345600" to="1215950400"/>
<chart from="1215950400" to="1216555200"/>
<chart from="1216555200" to="1217160000"/>
<chart from="1217160000" to="1217764800"/>
<chart from="1217764800" to="1218369600"/>
<chart from="1218974400" to="1219579200"/>
<chart from="1219579200" to="1220184000"/>
<chart from="1220184000" to="1220788800"/>
<chart from="1220788800" to="1221393600"/>
<chart from="1221393600" to="1221998400"/>
<chart from="1221998400" to="1222603200"/>
<chart from="1222603200" to="1223208000"/>
<chart from="1223208000" to="1223812800"/>
<chart from="1223812800" to="1224417600"/>
<chart from="1224417600" to="1225022400"/>
<chart from="1225022400" to="1225627200"/>
<chart from="1225627200" to="1226232000"/>
<chart from="1226232000" to="1226836800"/>
<chart from="1226836800" to="1227441600"/>
<chart from="1227441600" to="1228046400"/>
<chart from="1228046400" to="1228651200"/>
<chart from="1228651200" to="1229256000"/>
<chart from="1229256000" to="1229860800"/>
<chart from="1229860800" to="1230465600"/>
<chart from="1230465600" to="1231070400"/>
<chart from="1231070400" to="1231675200"/>
<chart from="1231675200" to="1232280000"/>
<chart from="1232280000" to="1232884800"/>
<chart from="1232884800" to="1233489600"/>
<chart from="1233489600" to="1234094400"/>
<chart from="1234094400" to="1234699200"/>
<chart from="1234699200" to="1235304000"/>
<chart from="1235304000" to="1235908800"/>
</weeklychartlist></lfm>

View File

@ -0,0 +1,484 @@
<?xml version="1.0" encoding="utf-8"?>
<lfm status="ok">
<neighbours user="RJ">
<user>
<name>Lucas-Lentini</name>
<url>http://www.last.fm/user/Lucas-Lentini</url>
<image size="small">http://userserve-ak.last.fm/serve/34/3490602.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/3490602.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/3490602.jpg</image>
<match>0.00082679983461276</match>
</user>
<user>
<name>rockerD82</name>
<url>http://www.last.fm/user/rockerD82</url>
<image size="small">http://userserve-ak.last.fm/serve/34/4091361.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/4091361.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/4091361.jpg</image>
<match>0.00081684079486877</match>
</user>
<user>
<name>count-bassy</name>
<url>http://www.last.fm/user/count-bassy</url>
<image size="small">http://userserve-ak.last.fm/serve/34/662027.gif</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/662027.gif</image>
<image size="large">http://userserve-ak.last.fm/serve/126/662027.gif</image>
<match>0.0024498179554939</match>
</user>
<user>
<name>greg_a</name>
<url>http://www.last.fm/user/greg_a</url>
<image size="small">http://userserve-ak.last.fm/serve/34/798370.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/798370.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/798370.jpg</image>
<match>0.0021055492106825</match>
</user>
<user>
<name>STLJA</name>
<url>http://www.last.fm/user/STLJA</url>
<image size="small">http://userserve-ak.last.fm/serve/34/18380435.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/18380435.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/18380435.jpg</image>
<match>0.00093835708685219</match>
</user>
<user>
<name>clauaud</name>
<url>http://www.last.fm/user/clauaud</url>
<image size="small">http://userserve-ak.last.fm/serve/34/22355877.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/22355877.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/22355877.jpg</image>
<match>0.00083252211334184</match>
</user>
<user>
<name>Biaxident_</name>
<url>http://www.last.fm/user/Biaxident_</url>
<image size="small">http://userserve-ak.last.fm/serve/34/3712862.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/3712862.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/3712862.jpg</image>
<match>0.00087362749036402</match>
</user>
<user>
<name>frood73</name>
<url>http://www.last.fm/user/frood73</url>
<image size="small">http://userserve-ak.last.fm/serve/34/1279453.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/1279453.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/1279453.jpg</image>
<match>0.00085416226647794</match>
</user>
<user>
<name>fillito</name>
<url>http://www.last.fm/user/fillito</url>
<image size="small">http://userserve-ak.last.fm/serve/34/8755757.png</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/8755757.png</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8755757.png</image>
<match>0.00058790174080059</match>
</user>
<user>
<name>CHBeat</name>
<url>http://www.last.fm/user/CHBeat</url>
<image size="small">http://userserve-ak.last.fm/serve/34/4220283.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/4220283.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/4220283.jpg</image>
<match>0.00050574075430632</match>
</user>
<user>
<name>-ada-</name>
<url>http://www.last.fm/user/-ada-</url>
<image size="small">http://userserve-ak.last.fm/serve/34/3817349.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/3817349.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/3817349.jpg</image>
<match>0.0004797427682206</match>
</user>
<user>
<name>vtoman</name>
<url>http://www.last.fm/user/vtoman</url>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
<match>0.0004468530532904</match>
</user>
<user>
<name>DGRules</name>
<url>http://www.last.fm/user/DGRules</url>
<image size="small">http://userserve-ak.last.fm/serve/34/8299023.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/8299023.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8299023.jpg</image>
<match>0.00041392719140276</match>
</user>
<user>
<name>RafaelRoschel</name>
<url>http://www.last.fm/user/RafaelRoschel</url>
<image size="small">http://userserve-ak.last.fm/serve/34/2779669.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/2779669.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/2779669.jpg</image>
<match>0.00038098997902125</match>
</user>
<user>
<name>CodePoet5150</name>
<url>http://www.last.fm/user/CodePoet5150</url>
<image size="small">http://userserve-ak.last.fm/serve/34/708315.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/708315.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/708315.jpg</image>
<match>0.00037187727866694</match>
</user>
<user>
<name>ArekK74</name>
<url>http://www.last.fm/user/ArekK74</url>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
<match>0.0003679063229356</match>
</user>
<user>
<name>gr8gonzo</name>
<url>http://www.last.fm/user/gr8gonzo</url>
<image size="small">http://userserve-ak.last.fm/serve/34/1554364.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/1554364.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/1554364.jpg</image>
<match>0.00035882837255485</match>
</user>
<user>
<name>nietzscheman</name>
<url>http://www.last.fm/user/nietzscheman</url>
<image size="small">http://userserve-ak.last.fm/serve/34/7776917.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/7776917.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/7776917.jpg</image>
<match>0.0003552679263521</match>
</user>
<user>
<name>nimdas01</name>
<url>http://www.last.fm/user/nimdas01</url>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
<match>0.00032501632813364</match>
</user>
<user>
<name>yamlzaml</name>
<url>http://www.last.fm/user/yamlzaml</url>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
<match>0.00032364649814554</match>
</user>
<user>
<name>thewakeoftheman</name>
<url>http://www.last.fm/user/thewakeoftheman</url>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
<match>0.00032352862763219</match>
</user>
<user>
<name>tomalo</name>
<url>http://www.last.fm/user/tomalo</url>
<image size="small">http://userserve-ak.last.fm/serve/34/4512529.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/4512529.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/4512529.jpg</image>
<match>0.00031631108140573</match>
</user>
<user>
<name>anemonepink</name>
<url>http://www.last.fm/user/anemonepink</url>
<image size="small">http://userserve-ak.last.fm/serve/34/9154645.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/9154645.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/9154645.jpg</image>
<match>0.00031550251878798</match>
</user>
<user>
<name>uforrr</name>
<url>http://www.last.fm/user/uforrr</url>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
<match>0.00028308926266618</match>
</user>
<user>
<name>CITRIL</name>
<url>http://www.last.fm/user/CITRIL</url>
<image size="small">http://userserve-ak.last.fm/serve/34/5069933.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/5069933.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/5069933.jpg</image>
<match>0.00028306856984273</match>
</user>
<user>
<name>kuditherion</name>
<url>http://www.last.fm/user/kuditherion</url>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
<match>0.00026139742112719</match>
</user>
<user>
<name>mpolla</name>
<url>http://www.last.fm/user/mpolla</url>
<image size="small">http://userserve-ak.last.fm/serve/34/887955.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/887955.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/887955.jpg</image>
<match>0.00026108475867659</match>
</user>
<user>
<name>stephanieblum</name>
<url>http://www.last.fm/user/stephanieblum</url>
<image size="small">http://userserve-ak.last.fm/serve/34/24678185.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/24678185.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/24678185.jpg</image>
<match>0.00026078929658979</match>
</user>
<user>
<name>rw1983</name>
<url>http://www.last.fm/user/rw1983</url>
<image size="small">http://userserve-ak.last.fm/serve/34/5192576.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/5192576.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/5192576.jpg</image>
<match>0.00025056168669835</match>
</user>
<user>
<name>BB_Lamour</name>
<url>http://www.last.fm/user/BB_Lamour</url>
<image size="small">http://userserve-ak.last.fm/serve/34/4188345.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/4188345.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/4188345.jpg</image>
<match>0.0002490115002729</match>
</user>
<user>
<name>Kameleon81</name>
<url>http://www.last.fm/user/Kameleon81</url>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
<match>0.00024840116384439</match>
</user>
<user>
<name>BlubberBelly</name>
<url>http://www.last.fm/user/BlubberBelly</url>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
<match>0.00023381348000839</match>
</user>
<user>
<name>MaD_CLuSTeR</name>
<url>http://www.last.fm/user/MaD_CLuSTeR</url>
<image size="small">http://userserve-ak.last.fm/serve/34/988683.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/988683.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/988683.jpg</image>
<match>0.00023235363187268</match>
</user>
<user>
<name>Spyro329</name>
<url>http://www.last.fm/user/Spyro329</url>
<image size="small">http://userserve-ak.last.fm/serve/34/1748969.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/1748969.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/1748969.jpg</image>
<match>0.00023005818366073</match>
</user>
<user>
<name>MatthewKononov</name>
<url>http://www.last.fm/user/MatthewKononov</url>
<image size="small">http://userserve-ak.last.fm/serve/34/2824691.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/2824691.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/2824691.jpg</image>
<match>0.00021153468696866</match>
</user>
<user>
<name>FREQUENCEJP</name>
<url>http://www.last.fm/user/FREQUENCEJP</url>
<image size="small">http://userserve-ak.last.fm/serve/34/17898239.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/17898239.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/17898239.jpg</image>
<match>0.00021089932124596</match>
</user>
<user>
<name>claesgilbert</name>
<url>http://www.last.fm/user/claesgilbert</url>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
<match>0.00018662810907699</match>
</user>
<user>
<name>nakedlefty</name>
<url>http://www.last.fm/user/nakedlefty</url>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
<match>0.00018320076924283</match>
</user>
<user>
<name>Maxe86</name>
<url>http://www.last.fm/user/Maxe86</url>
<image size="small">http://userserve-ak.last.fm/serve/34/10406347.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/10406347.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/10406347.jpg</image>
<match>0.00017870338342618</match>
</user>
<user>
<name>ViggenZ</name>
<url>http://www.last.fm/user/ViggenZ</url>
<image size="small">http://userserve-ak.last.fm/serve/34/11873867.png</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/11873867.png</image>
<image size="large">http://userserve-ak.last.fm/serve/126/11873867.png</image>
<match>0.00016321717703249</match>
</user>
<user>
<name>GenBully</name>
<url>http://www.last.fm/user/GenBully</url>
<image size="small">http://userserve-ak.last.fm/serve/34/1152585.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/1152585.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/1152585.jpg</image>
<match>0.00015994488785509</match>
</user>
<user>
<name>saxm</name>
<url>http://www.last.fm/user/saxm</url>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
<match>0.00015649547276553</match>
</user>
<user>
<name>Borbu</name>
<url>http://www.last.fm/user/Borbu</url>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
<match>0.00015243219968397</match>
</user>
<user>
<name>polmag</name>
<url>http://www.last.fm/user/polmag</url>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
<match>0.00015046366024762</match>
</user>
<user>
<name>blogliedrico</name>
<url>http://www.last.fm/user/blogliedrico</url>
<image size="small">http://userserve-ak.last.fm/serve/34/1531063.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/1531063.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/1531063.jpg</image>
<match>0.00014791206922382</match>
</user>
<user>
<name>Papipede</name>
<url>http://www.last.fm/user/Papipede</url>
<image size="small">http://userserve-ak.last.fm/serve/34/10900953.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/10900953.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/10900953.jpg</image>
<match>0.00014703735359944</match>
</user>
<user>
<name>alexkid1986</name>
<url>http://www.last.fm/user/alexkid1986</url>
<image size="small">http://userserve-ak.last.fm/serve/34/19642623.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/19642623.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/19642623.jpg</image>
<match>0.00014607490447816</match>
</user>
<user>
<name>waciak1974</name>
<url>http://www.last.fm/user/waciak1974</url>
<image size="small">http://userserve-ak.last.fm/serve/34/4185638.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/4185638.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/4185638.jpg</image>
<match>0.0001440364139853</match>
</user>
<user>
<name>danielgd</name>
<url>http://www.last.fm/user/danielgd</url>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
<match>0.000141596145113</match>
</user>
<user>
<name>gkirilov</name>
<url>http://www.last.fm/user/gkirilov</url>
<image size="small">http://userserve-ak.last.fm/serve/34/21743749.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/21743749.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/21743749.jpg</image>
<match>0.00014150721835904</match>
</user>
<user>
<name>geamarvis</name>
<url>http://www.last.fm/user/geamarvis</url>
<image size="small">http://userserve-ak.last.fm/serve/34/3059378.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/3059378.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/3059378.jpg</image>
<match>0.00012616273306776</match>
</user>
<user>
<name>mkowalski</name>
<url>http://www.last.fm/user/mkowalski</url>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
<match>0.00012488648644648</match>
</user>
<user>
<name>mig2</name>
<url>http://www.last.fm/user/mig2</url>
<image size="small">http://userserve-ak.last.fm/serve/34/3897329.png</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/3897329.png</image>
<image size="large">http://userserve-ak.last.fm/serve/126/3897329.png</image>
<match>0.00012446731852833</match>
</user>
<user>
<name>Prikkie</name>
<url>http://www.last.fm/user/Prikkie</url>
<image size="small">http://userserve-ak.last.fm/serve/34/1072981.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/1072981.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/1072981.jpg</image>
<match>0.00012381533451844</match>
</user>
<user>
<name>Gawd1</name>
<url>http://www.last.fm/user/Gawd1</url>
<image size="small">http://userserve-ak.last.fm/serve/34/1858543.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/1858543.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/1858543.jpg</image>
<match>0.00012269693252165</match>
</user>
<user>
<name>mipel</name>
<url>http://www.last.fm/user/mipel</url>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
<match>0.00012065666669514</match>
</user>
<user>
<name>markblaze</name>
<url>http://www.last.fm/user/markblaze</url>
<image size="small">http://userserve-ak.last.fm/serve/34/3786253.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/3786253.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/3786253.jpg</image>
<match>0.00012027878256049</match>
</user>
<user>
<name>thenchant</name>
<url>http://www.last.fm/user/thenchant</url>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
<match>0.00011938366515096</match>
</user>
<user>
<name>KoRrNiSh</name>
<url>http://www.last.fm/user/KoRrNiSh</url>
<image size="small">http://userserve-ak.last.fm/serve/34/10977775.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/10977775.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/10977775.jpg</image>
<match>0.00011808059934992</match>
</user>
<user>
<name>JMX9030</name>
<url>http://www.last.fm/user/JMX9030</url>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
<match>0.00011789623385994</match>
</user>
</neighbours></lfm>

View File

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<lfm status="ok">
<friends for="lobsterclaw">
<user>
<name>RJ</name>
<realname>Richard Jones </realname>
<image size="small">http://userserve-ak.last.fm/serve/34/8270359.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/8270359.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8270359.jpg</image>
<url>http://www.last.fm/user/RJ</url>
</user><user>
<name>dirtyblonde</name>
<realname>Laura</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/1092964.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/1092964.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/1092964.jpg</image>
<url>http://www.last.fm/user/dirtyblonde</url>
</user><user>
<name>count-bassy</name>
<realname>Martin Szomszor</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/662027.gif</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/662027.gif</image>
<image size="large">http://userserve-ak.last.fm/serve/126/662027.gif</image>
<url>http://www.last.fm/user/count-bassy</url>
</user><user>
<name>sophiesocks</name>
<realname></realname>
<image size="small">http://userserve-ak.last.fm/serve/34/680294.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/680294.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/680294.jpg</image>
<url>http://www.last.fm/user/sophiesocks</url>
</user></friends></lfm>

View File

@ -0,0 +1,505 @@
<?xml version="1.0" encoding="utf-8"?>
<lfm status="ok">
<topartists user="RJ" type="overall">
<artist rank="1">
<name>Dream Theater</name>
<playcount>1642</playcount>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/373098.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/373098.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/373098.jpg</image>
</artist>
<artist rank="2">
<name>Dire Straits</name>
<playcount>770</playcount>
<mbid>614e3804-7d34-41ba-857f-811bad7c2b7a</mbid>
<url>http://www.last.fm/music/Dire+Straits</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/3801700.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/3801700.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/3801700.jpg</image>
</artist>
<artist rank="3">
<name>Miles Davis</name>
<playcount>757</playcount>
<mbid>561d854a-6a28-4aa7-8c99-323e6ce46c2a</mbid>
<url>http://www.last.fm/music/Miles+Davis</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/4971157.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/4971157.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/183755.jpg</image>
</artist>
<artist rank="4">
<name>Metallica</name>
<playcount>654</playcount>
<mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
<url>http://www.last.fm/music/Metallica</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/7560709.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/7560709.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/7560709.jpg</image>
</artist>
<artist rank="5">
<name>Guns N' Roses</name>
<playcount>634</playcount>
<mbid>eeb1195b-f213-4ce1-b28c-8565211f8e43</mbid>
<url>http://www.last.fm/music/Guns+N%27+Roses</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/3223900.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/3223900.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/3223900.jpg</image>
</artist>
<artist rank="6">
<name>Aerosmith</name>
<playcount>622</playcount>
<mbid>3d2b98e5-556f-4451-a3ff-c50ea18d57cb</mbid>
<url>http://www.last.fm/music/Aerosmith</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/300793.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/300793.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/300793.jpg</image>
</artist>
<artist rank="7">
<name>Joe Satriani</name>
<playcount>570</playcount>
<mbid>29762c82-bb92-4acd-b1fb-09cc4da250d2</mbid>
<url>http://www.last.fm/music/Joe+Satriani</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/70714.gif</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/70714.gif</image>
<image size="large">http://userserve-ak.last.fm/serve/126/70714.gif</image>
</artist>
<artist rank="8">
<name>Rage Against the Machine</name>
<playcount>541</playcount>
<mbid>3798b104-01cb-484c-a3b0-56adc6399b80</mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/282898.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/380903.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/282898.jpg</image>
</artist>
<artist rank="9">
<name>Led Zeppelin</name>
<playcount>481</playcount>
<mbid>678d88b2-87b0-403b-b63d-5da7465aecc3</mbid>
<url>http://www.last.fm/music/Led+Zeppelin</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/193960.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/193960.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/193960.jpg</image>
</artist>
<artist rank="10">
<name>Buckcherry</name>
<playcount>478</playcount>
<mbid>822e92ef-72ea-42e0-9af1-b987816b487a</mbid>
<url>http://www.last.fm/music/Buckcherry</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/364623.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/364623.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/364623.jpg</image>
</artist>
<artist rank="11">
<name>Mr. Big</name>
<playcount>448</playcount>
<mbid>bd1180c4-4252-461f-94dc-543906c02522</mbid>
<url>http://www.last.fm/music/Mr.+Big</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/320486.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/320486.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/320486.jpg</image>
</artist>
<artist rank="12">
<name>Jimi Hendrix</name>
<playcount>438</playcount>
<mbid>06fb1c8b-566e-4cb2-985b-b467c90781d4</mbid>
<url>http://www.last.fm/music/Jimi+Hendrix</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/388933.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/388933.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/388933.jpg</image>
</artist>
<artist rank="13">
<name>Nine Inch Nails</name>
<playcount>418</playcount>
<mbid>b7ffd2af-418f-4be2-bdd1-22f8b48613da</mbid>
<url>http://www.last.fm/music/Nine+Inch+Nails</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/10629345.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/10629345.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/10629345.jpg</image>
</artist>
<artist rank="14">
<name>Nina Simone</name>
<playcount>404</playcount>
<mbid>2944824d-4c26-476f-a981-be849081942f</mbid>
<url>http://www.last.fm/music/Nina+Simone</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/414771.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/414771.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/414771.jpg</image>
</artist>
<artist rank="15">
<name>Red Hot Chili Peppers</name>
<playcount>399</playcount>
<mbid>8bfac288-ccc5-448d-9573-c33ea2aa5c30</mbid>
<url>http://www.last.fm/music/Red+Hot+Chili+Peppers</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/403312.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/403312.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/403312.jpg</image>
</artist>
<artist rank="16">
<name>Snoop Dogg</name>
<playcount>372</playcount>
<mbid>f90e8b26-9e52-4669-a5c9-e28529c47894</mbid>
<url>http://www.last.fm/music/Snoop+Dogg</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/224432.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/224432.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/224432.jpg</image>
</artist>
<artist rank="17">
<name>Counting Crows</name>
<playcount>371</playcount>
<mbid>a0327dc2-dc76-44d5-aec6-47cd2dff1469</mbid>
<url>http://www.last.fm/music/Counting+Crows</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/302855.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/302855.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/302855.jpg</image>
</artist>
<artist rank="18">
<name>Def Leppard</name>
<playcount>366</playcount>
<mbid>7249b899-8db8-43e7-9e6e-22f1e736024e</mbid>
<url>http://www.last.fm/music/Def+Leppard</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/4800466.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/4800466.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/4800466.jpg</image>
</artist>
<artist rank="19">
<name>Firebird</name>
<playcount>349</playcount>
<mbid>3dfc0a11-0122-4bc4-8474-b67c88c5a4ea</mbid>
<url>http://www.last.fm/music/Firebird</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/109444.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/109444.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/109444.jpg</image>
</artist>
<artist rank="20">
<name>Free</name>
<playcount>336</playcount>
<mbid>6cb5d1ca-03ce-4656-92f5-bf35f53d1582</mbid>
<url>http://www.last.fm/music/Free</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/2799321.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/2799321.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/2799321.jpg</image>
</artist>
<artist rank="21">
<name>R.E.M.</name>
<playcount>329</playcount>
<mbid>ea4dfa26-f633-4da6-a52a-f49ea4897b58</mbid>
<url>http://www.last.fm/music/R.E.M.</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/296066.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/296066.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/296066.jpg</image>
</artist>
<artist rank="22">
<name>Radiohead</name>
<playcount>319</playcount>
<mbid>a74b1b7f-71a5-4011-9441-d0b5e4122711</mbid>
<url>http://www.last.fm/music/Radiohead</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/14055285.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/14055285.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/14055285.jpg</image>
</artist>
<artist rank="23">
<name>Dan Reed Network</name>
<playcount>312</playcount>
<mbid>2fe24c3c-5768-484d-a64b-04983e99325a</mbid>
<url>http://www.last.fm/music/Dan+Reed+Network</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/191748.gif</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/191748.gif</image>
<image size="large">http://userserve-ak.last.fm/serve/126/191748.gif</image>
</artist>
<artist rank="24">
<name>Ben Folds Five</name>
<playcount>303</playcount>
<mbid>abe2669a-a612-4bf6-9193-bb4f4b8a9088</mbid>
<url>http://www.last.fm/music/Ben+Folds+Five</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/53735.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/53735.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/53735.jpg</image>
</artist>
<artist rank="24">
<name>The Rolling Stones</name>
<playcount>303</playcount>
<mbid>b071f9fa-14b0-4217-8e97-eb41da73f598</mbid>
<url>http://www.last.fm/music/The+Rolling+Stones</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/123525.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/123525.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/123525.jpg</image>
</artist>
<artist rank="26">
<name>Skid Row</name>
<playcount>300</playcount>
<mbid>6da0515e-a27d-449d-84cc-00713c38a140</mbid>
<url>http://www.last.fm/music/Skid+Row</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/2595057.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/2595057.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/2595057.jpg</image>
</artist>
<artist rank="27">
<name>Spock's Beard</name>
<playcount>295</playcount>
<mbid>9e57e406-4fb1-40d0-bcd2-2aa1d6390c1d</mbid>
<url>http://www.last.fm/music/Spock%27s+Beard</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/430197.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/430197.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/430197.jpg</image>
</artist>
<artist rank="28">
<name>Liquid Tension Experiment</name>
<playcount>282</playcount>
<mbid>bc641be9-ca36-4c61-9394-5230433f6646</mbid>
<url>http://www.last.fm/music/Liquid+Tension+Experiment</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/17714685.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/17714685.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/17714685.jpg</image>
</artist>
<artist rank="29">
<name>Matchbox Twenty</name>
<playcount>278</playcount>
<mbid>75af9d25-cf32-49c0-9192-60bd8e9784e6</mbid>
<url>http://www.last.fm/music/Matchbox+Twenty</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/33022.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/33022.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/33022.jpg</image>
</artist>
<artist rank="30">
<name>Goo Goo Dolls</name>
<playcount>274</playcount>
<mbid>e2c00c56-8365-4160-9f40-a64682917633</mbid>
<url>http://www.last.fm/music/Goo+Goo+Dolls</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/126546.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/126546.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/126546.jpg</image>
</artist>
<artist rank="31">
<name>3 Doors Down</name>
<playcount>271</playcount>
<mbid>2386cd66-e923-4e8e-bf14-2eebe2e9b973</mbid>
<url>http://www.last.fm/music/3+Doors+Down</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/8575787.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/8575787.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8575787.jpg</image>
</artist>
<artist rank="32">
<name>Moby</name>
<playcount>262</playcount>
<mbid>8970d868-0723-483b-a75b-51088913d3d4</mbid>
<url>http://www.last.fm/music/Moby</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/130045.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/130045.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/130045.jpg</image>
</artist>
<artist rank="33">
<name>The Kleptones</name>
<playcount>245</playcount>
<mbid>f73b2b70-33d5-4118-923b-05ba8ad7e702</mbid>
<url>http://www.last.fm/music/The+Kleptones</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/361272.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/361272.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/361272.jpg</image>
</artist>
<artist rank="33">
<name>Deep Purple</name>
<playcount>245</playcount>
<mbid>79491354-3d83-40e3-9d8e-7592d58d790a</mbid>
<url>http://www.last.fm/music/Deep+Purple</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/20352.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/20352.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/20352.jpg</image>
</artist>
<artist rank="35">
<name>Stevie Wonder</name>
<playcount>238</playcount>
<mbid>1ee18fb3-18a6-4c7f-8ba0-bc41cdd0462e</mbid>
<url>http://www.last.fm/music/Stevie+Wonder</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/125434.png</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/125434.png</image>
<image size="large">http://userserve-ak.last.fm/serve/126/125434.png</image>
</artist>
<artist rank="36">
<name>Richard Cheese</name>
<playcount>228</playcount>
<mbid>9bf79f68-c064-44a1-8c2c-5764f1d7c016</mbid>
<url>http://www.last.fm/music/Richard+Cheese</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/469800.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/469800.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/469800.jpg</image>
</artist>
<artist rank="36">
<name>James Taylor</name>
<playcount>228</playcount>
<mbid>107d0c22-d051-4d98-8206-4e14de02132a</mbid>
<url>http://www.last.fm/music/James+Taylor</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/218940.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/218940.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/218940.jpg</image>
</artist>
<artist rank="38">
<name>King's X</name>
<playcount>226</playcount>
<mbid>c8f5272e-8a94-4807-9099-70181e92fc46</mbid>
<url>http://www.last.fm/music/King%27s+X</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/309728.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/309728.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/309728.jpg</image>
</artist>
<artist rank="39">
<name>Weather Report</name>
<playcount>223</playcount>
<mbid>0f9997bd-e079-429e-8ccd-9378c9b0c746</mbid>
<url>http://www.last.fm/music/Weather+Report</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/2919856.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/2919856.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/2919856.jpg</image>
</artist>
<artist rank="39">
<name>Fleetwood Mac</name>
<playcount>223</playcount>
<mbid>bd13909f-1c29-4c27-a874-d4aaf27c5b1a</mbid>
<url>http://www.last.fm/music/Fleetwood+Mac</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/337211.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/337211.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/337211.jpg</image>
</artist>
<artist rank="41">
<name>The Jimi Hendrix Experience</name>
<playcount>220</playcount>
<mbid>33b3c323-77c2-417c-a5b4-af7e6a111cc9</mbid>
<url>http://www.last.fm/music/The+Jimi+Hendrix+Experience</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/18062541.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/18062541.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/18062541.jpg</image>
</artist>
<artist rank="42">
<name>Steve Vai</name>
<playcount>214</playcount>
<mbid>5e7ccd92-6277-451a-aab9-1efd587c50f3</mbid>
<url>http://www.last.fm/music/Steve+Vai</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/187687.gif</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/187687.gif</image>
<image size="large">http://userserve-ak.last.fm/serve/126/187687.gif</image>
</artist>
<artist rank="43">
<name>Symphony X</name>
<playcount>210</playcount>
<mbid>b669c53e-5a1f-4adc-80be-755e64e8115e</mbid>
<url>http://www.last.fm/music/Symphony+X</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/76257.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/76257.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/76257.jpg</image>
</artist>
<artist rank="44">
<name>Jamiroquai</name>
<playcount>207</playcount>
<mbid>f4857fb9-e255-4dc6-bd01-e4ca7cc68544</mbid>
<url>http://www.last.fm/music/Jamiroquai</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/198652.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/198652.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/198652.jpg</image>
</artist>
<artist rank="44">
<name>James Brown</name>
<playcount>207</playcount>
<mbid>20ff3303-4fe2-4a47-a1b6-291e26aa3438</mbid>
<url>http://www.last.fm/music/James+Brown</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/107634.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/107634.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/107634.jpg</image>
</artist>
<artist rank="46">
<name>Tom Waits</name>
<playcount>205</playcount>
<mbid>c3aeb863-7b26-4388-94e8-5a240f2be21b</mbid>
<url>http://www.last.fm/music/Tom+Waits</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/2335574.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/2335574.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/2335574.jpg</image>
</artist>
<artist rank="47">
<name>Santana</name>
<playcount>204</playcount>
<mbid>9a3bf45c-347d-4630-894d-7cf3e8e0b632</mbid>
<url>http://www.last.fm/music/Santana</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/344600.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/344600.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/344600.jpg</image>
</artist>
<artist rank="47">
<name>Slamin' Gladys</name>
<playcount>204</playcount>
<mbid></mbid>
<url>http://www.last.fm/music/Slamin%27+Gladys</url>
<streamable>1</streamable>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
</artist>
<artist rank="49">
<name>Fun Lovin' Criminals</name>
<playcount>203</playcount>
<mbid>1b15e90d-910c-4be4-99cb-463772a6430f</mbid>
<url>http://www.last.fm/music/Fun+Lovin%27+Criminals</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/139766.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/139766.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/139766.jpg</image>
</artist>
<artist rank="50">
<name>Foo Fighters</name>
<playcount>197</playcount>
<mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
<url>http://www.last.fm/music/Foo+Fighters</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/2513072.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/2513072.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/2513072.jpg</image>
</artist>
</topartists></lfm>

View File

@ -0,0 +1,340 @@
<?xml version="1.0" encoding="utf-8"?>
<lfm status="ok">
<weeklyalbumchart user="RJ" from="1108296002" to="1108900802">
<album rank="1">
<artist mbid="b10bbbfc-cf9e-42e0-be17-e2c3e1d2600d">The Beatles</artist>
<name>1962-1966: The Red Album</name>
<mbid></mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/The+Beatles/1962-1966%3A+The+Red+Album</url>
</album>
<album rank="2">
<artist mbid="847e8284-8582-4b0e-9c26-b042a4f49e57">Placebo</artist>
<name>The X List (Disc 2)</name>
<mbid></mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Placebo/The+X+List+%28Disc+2%29</url>
</album>
<album rank="3">
<artist mbid="bbd80354-597e-4d53-94e4-92b3a7cb8f2c">Saxon</artist>
<name>Killing Ground</name>
<mbid>3803db93-28b9-41ac-8694-235971b141e3</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Saxon/Killing+Ground</url>
</album>
<album rank="4">
<artist mbid="f27ec8db-af05-4f36-916e-3d57f91ecf5e">Michael Jackson</artist>
<name>Thriller</name>
<mbid>959272f9-97ae-4179-aebe-950eef64ed93</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Michael+Jackson/Thriller</url>
</album>
<album rank="5">
<artist mbid="79491354-3d83-40e3-9d8e-7592d58d790a">Deep Purple</artist>
<name>Deep Purple Hit The Road - Mk 2 &amp; Mk 3</name>
<mbid></mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Deep+Purple/Deep%2BPurple%2BHit%2BThe%2BRoad%2B-%2BMk%2B2%2B%2526%2BMk%2B3</url>
</album>
<album rank="6">
<artist mbid="6ffb8ea9-2370-44d8-b678-e9237bbd347b">Kings of Leon</artist>
<name>Youth and Young Manhood</name>
<mbid>f5bb9e04-e307-46bc-baaa-5342da1a44b8</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Kings+of+Leon/Youth+and+Young+Manhood</url>
</album>
<album rank="7">
<artist mbid="0b76f632-25fa-4681-9862-86499c28afd3">Finger Eleven</artist>
<name>The Greyest of Blue Skies</name>
<mbid>aee056e2-4712-4daf-83e9-1ca56ae1413b</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Finger+Eleven/The+Greyest+of+Blue+Skies</url>
</album>
<album rank="8">
<artist mbid="8538e728-ca0b-4321-b7e5-cff6565dd4c0">Depeche Mode</artist>
<name>Ultra</name>
<mbid>c83ced6f-ea72-4659-9144-94e50165158b</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Depeche+Mode/Ultra</url>
</album>
<album rank="9">
<artist mbid="1c3919b2-43ca-4a4a-935d-9d50135ec0ef">AFI</artist>
<name>Sing the Sorrow</name>
<mbid>825eee5b-03d1-43f9-9cf1-c78b39f47886</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/AFI/Sing+the+Sorrow</url>
</album>
<album rank="10">
<artist mbid="4dbf5678-7a31-406a-abbe-232f8ac2cd63">Bryan Adams</artist>
<name>Reckless</name>
<mbid>71b3c346-fcb9-4a93-99d1-aae3b31a1ff7</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Bryan+Adams/Reckless</url>
</album>
<album rank="11">
<artist mbid="4d7928cd-7ed2-4282-8c29-c0c9f966f1bd">Alice Cooper</artist>
<name>Definitive Collection</name>
<mbid></mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Alice+Cooper/Definitive+Collection</url>
</album>
<album rank="12">
<artist mbid="2386cd66-e923-4e8e-bf14-2eebe2e9b973">3 Doors Down</artist>
<name>Away From the Sun</name>
<mbid>edf2cec0-86cb-4c48-9f63-08f3e4e2e79e</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/3+Doors+Down/Away+From+the+Sun</url>
</album>
<album rank="13">
<artist mbid="9fdaa16b-a6c4-4831-b87c-bc9ca8ce7eaa">The Who</artist>
<name>My Generation - The Very Best of The Who</name>
<mbid></mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/The+Who/My+Generation+-+The+Very+Best+of+The+Who</url>
</album>
<album rank="14">
<artist mbid="22a40b75-affc-4e69-8884-266d087e4751">Travis</artist>
<name>12 Memories</name>
<mbid>47a1f944-e46f-4a7e-b882-1632c9397176</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Travis/12+Memories</url>
</album>
<album rank="15">
<artist mbid="89ad4ac3-39f7-470e-963a-56509c546377">Various Artists</artist>
<name>QCD</name>
<mbid></mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Various+Artists/QCD</url>
</album>
<album rank="16">
<artist mbid="87a73cf0-ebdf-483d-8b5a-3db1e5e72122">Drowning Pool</artist>
<name>Desensitized</name>
<mbid>21478f60-2242-4c17-8fed-506581a14996</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Drowning+Pool/Desensitized</url>
</album>
<album rank="17">
<artist mbid="b5fa29f1-6c22-4321-a488-b5f363b06b06">The Stone Roses</artist>
<name>The Stone Roses</name>
<mbid>595d4a7d-452a-49e8-82d6-a39b2d189b2d</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/The+Stone+Roses/The+Stone+Roses</url>
</album>
<album rank="18">
<artist mbid="678d88b2-87b0-403b-b63d-5da7465aecc3">Led Zeppelin</artist>
<name>Houses of the Holy</name>
<mbid>3ccb4cb2-940a-4e2e-b1fd-4c0b7483280f</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Led+Zeppelin/Houses+of+the+Holy</url>
</album>
<album rank="19">
<artist mbid="83b9cbe7-9857-49e2-ab8e-b57b01038103">Pearl Jam</artist>
<name>Vs.</name>
<mbid>7244f710-6090-43a2-a4e0-772623d71cf5</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Pearl+Jam/Vs.</url>
</album>
<album rank="20">
<artist mbid="153c9281-268f-4cf3-8938-f5a4593e5df4">Soundgarden</artist>
<name>Superunknown</name>
<mbid>53e70778-6771-4674-8933-9438b4528dd8</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Soundgarden/Superunknown</url>
</album>
<album rank="21">
<artist mbid="95e1ead9-4d31-4808-a7ac-32c3614c116b">The Killers</artist>
<name>Hot Fuss</name>
<mbid>3127c6af-617f-4d82-9002-6cc74ab8648d</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/The+Killers/Hot+Fuss</url>
</album>
<album rank="22">
<artist mbid="9efff43b-3b29-4082-824e-bc82f646f93d">The Doors</artist>
<name>The Doors</name>
<mbid>3b0c9338-f60d-49b0-8601-91a013b49a05</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/The+Doors/The+Doors</url>
</album>
<album rank="23">
<artist mbid="83d91898-7763-47d7-b03b-b92132375c47">Pink Floyd</artist>
<name>Pulse (disc 1)</name>
<mbid>11132acb-a95e-4bc4-b071-f926b6b139cd</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Pink+Floyd/Pulse+%28disc+1%29</url>
</album>
<album rank="24">
<artist mbid="a3cb23fc-acd3-4ce0-8f36-1e5aa6a18432">U2</artist>
<name>All That You Can't Leave Behind</name>
<mbid>cad30b91-e506-415b-9a66-a565481c0a82</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/U2/All+That+You+Can%27t+Leave+Behind</url>
</album>
<album rank="25">
<artist mbid="481bf5f9-2e7c-4c44-b08a-05b32bc7c00d">INXS</artist>
<name>The Greatest Hits</name>
<mbid>ecd97ad8-3ce1-4341-afa0-be99749f23ac</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/INXS/The+Greatest+Hits</url>
</album>
<album rank="26">
<artist mbid="4bd95eea-b9f6-4d70-a36c-cfea77431553">Alice in Chains</artist>
<name>Nothing Safe - The Best of the Box</name>
<mbid></mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Alice+in+Chains/Nothing+Safe+-+The+Best+of+the+Box</url>
</album>
<album rank="27">
<artist mbid="28503ab7-8bf2-4666-a7bd-2644bfc7cb1d">Dream Theater</artist>
<name>Train of Thought</name>
<mbid>5a4e6e59-de93-4fda-ac36-99b2efe8ff7e</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Dream+Theater/Train+of+Thought</url>
</album>
<album rank="28">
<artist mbid="d41a6875-b626-4c0f-89a1-aecb643d29ff">The Pogues</artist>
<name>The Very Best Of The Pogues</name>
<mbid></mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/The+Pogues/The+Very+Best+Of+The+Pogues</url>
</album>
<album rank="29">
<artist mbid="f59c5520-5f46-4d2c-b2c4-822eabf53419">Linkin Park</artist>
<name>Hybrid Theory</name>
<mbid>e355399d-701d-4cfb-a0d8-d73966f1ab5a</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Linkin+Park/Hybrid+Theory</url>
</album>
<album rank="30">
<artist mbid="9c9f1380-2516-4fc9-a3e6-f9f61941d090">Muse</artist>
<name>Showbiz</name>
<mbid>4b812512-5dc1-4f61-9104-7d3289390395</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Muse/Showbiz</url>
</album>
<album rank="31">
<artist mbid="83b9cbe7-9857-49e2-ab8e-b57b01038103">Pearl Jam</artist>
<name>Ten</name>
<mbid>4b06b597-9c73-42b9-9bc2-978883ead127</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Pearl+Jam/Ten</url>
</album>
<album rank="32">
<artist mbid="c98d40fd-f6cf-4b26-883e-eaa515ee2851">The Cranberries</artist>
<name>No Need to Argue</name>
<mbid>c5f9c7d9-249f-4589-ab04-01b19fa1467c</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/The+Cranberries/No+Need+to+Argue</url>
</album>
<album rank="33">
<artist mbid="a74b1b7f-71a5-4011-9441-d0b5e4122711">Radiohead</artist>
<name>Hail to the Thief</name>
<mbid>f470c26b-0beb-44d0-b49e-4caa02379b76</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Radiohead/Hail+to+the+Thief</url>
</album>
<album rank="34">
<artist mbid="070d193a-845c-479f-980e-bef15710653e">Prince</artist>
<name>Rave un2 the joy fantastic</name>
<mbid>4b769178-6fa8-4bcc-aff3-ec2cc3164512</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Prince/Rave+un2+the+joy+fantastic</url>
</album>
<album rank="35">
<artist mbid="8bfac288-ccc5-448d-9573-c33ea2aa5c30">Red Hot Chili Peppers</artist>
<name>By the Way</name>
<mbid>3f66063a-e91b-4025-9582-1adb1695123b</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Red+Hot+Chili+Peppers/By+the+Way</url>
</album>
<album rank="36">
<artist mbid="cc0b7089-c08d-4c10-b6b0-873582c17fd6">System of a Down</artist>
<name>Toxicity</name>
<mbid>e1752cff-b0e4-4c06-b08e-de169498bfa5</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/System+of+a+Down/Toxicity</url>
</album>
<album rank="37">
<artist mbid="ca891d65-d9b0-4258-89f7-e6ba29d83767">Iron Maiden</artist>
<name>Edward the Great</name>
<mbid>cc3feee0-1038-49b0-9f03-3d456a290a45</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Iron+Maiden/Edward+the+Great</url>
</album>
<album rank="38">
<artist mbid="57fca0e2-f9ad-4ae6-af9d-6a6f50cbcd5f">Vangelis</artist>
<name>Chariots Of Fire</name>
<mbid>89fb6b5b-6ac2-465c-93bf-be430010de66</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Vangelis/Chariots+Of+Fire</url>
</album>
<album rank="39">
<artist mbid="8c32bb01-58a3-453b-8050-8c0620edb0e5">Stone Temple Pilots</artist>
<name>Core</name>
<mbid>01ad1808-59c1-46c7-90ce-eda16ec4b121</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Stone+Temple+Pilots/Core</url>
</album>
<album rank="40">
<artist mbid="f2eef649-a6d5-4114-afba-e50ab26254d2">Sum 41</artist>
<name>All Killer No Filler</name>
<mbid>3944abb0-dfb3-46b0-914c-a1117f568c7d</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Sum+41/All+Killer+No+Filler</url>
</album>
<album rank="41">
<artist mbid="f4a31f0a-51dd-4fa7-986d-3095c40c5ed9">Evanescence</artist>
<name>Fallen</name>
<mbid>afc4be52-b92e-4a6e-99e4-decde16d7ee7</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Evanescence/Fallen</url>
</album>
<album rank="42">
<artist mbid="382f1005-e9ab-4684-afd4-0bdae4ee37f2">2Pac</artist>
<name>Me Against the World</name>
<mbid>37d89c1e-4f78-4116-ae56-48ee06b8f64b</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/2Pac/Me+Against+the+World</url>
</album>
<album rank="43">
<artist mbid="0383dadf-2a4e-4d10-a46a-e9e041da8eb3">Queen</artist>
<name>Greatest Hits</name>
<mbid>84213105-f89d-4243-9b71-c27f1d17598c</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Queen/Greatest+Hits</url>
</album>
<album rank="44">
<artist mbid="3f41479a-8486-4c70-a338-be75e10b6efc">Rae &amp; Christian</artist>
<name>Sleepwalking</name>
<mbid>58872c8b-a607-4bab-a7fd-735785af4159</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Rae%2B%2526%2BChristian/Sleepwalking</url>
</album>
<album rank="45">
<artist mbid="c4be2ec7-f45d-4deb-a444-c659bebbeeb4">Main</artist>
<name>Hydra-Calm</name>
<mbid>cdf7d8fe-022a-425e-b90b-020b1ead1263</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Main/Hydra-Calm</url>
</album>
<album rank="46">
<artist mbid="d5c756c1-4872-457b-8f00-d620547cbb85">David Axelrod</artist>
<name>David Axelrod</name>
<mbid>95889442-0500-41bc-b465-2b87553b443c</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/David+Axelrod/David+Axelrod</url>
</album>
<album rank="47">
<artist mbid="14387b0f-765c-4852-852f-135335790466">Eels</artist>
<name>Electro-Shock Blues</name>
<mbid>439b88b6-fe90-4f47-839f-06d337544166</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Eels/Electro-Shock+Blues</url>
</album>
<album rank="48">
<artist mbid="5b11f4ce-a62d-471e-81fc-a69a8278c7da">Nirvana</artist>
<name>Nirvana</name>
<mbid>d8f9547d-5e46-45f0-b694-0d9af9e2de63</mbid>
<playcount>1</playcount>
<url>http://www.last.fm/music/Nirvana/Nirvana</url>
</album>
</weeklyalbumchart></lfm>

View File

@ -0,0 +1,592 @@
<?xml version="1.0" encoding="utf-8"?>
<lfm status="ok">
<friends for="RJ">
<user>
<name>lobsterclaw</name>
<realname>Laura Weiss</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/1733471.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/1733471.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/1733471.jpg</image>
<url>http://www.last.fm/user/lobsterclaw</url>
</user><user>
<name>jajo</name>
<realname></realname>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
<url>http://www.last.fm/user/jajo</url>
</user><user>
<name>mremond</name>
<realname>Mickaël</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/5129358.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/5129358.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/5129358.jpg</image>
<url>http://www.last.fm/user/mremond</url>
</user><user>
<name>Orlenay</name>
<realname>Orlena</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/4734059.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/4734059.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/4734059.jpg</image>
<url>http://www.last.fm/user/Orlenay</url>
</user><user>
<name>schlagschnitzel</name>
<realname></realname>
<image size="small">http://userserve-ak.last.fm/serve/34/23454373.gif</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/23454373.gif</image>
<image size="large">http://userserve-ak.last.fm/serve/126/23454373.gif</image>
<url>http://www.last.fm/user/schlagschnitzel</url>
</user><user>
<name>Edouard</name>
<realname>Edouard</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/16991503.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/16991503.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/16991503.jpg</image>
<url>http://www.last.fm/user/Edouard</url>
</user><user>
<name>naniel</name>
<realname>Lyndsey</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/1723822.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/1723822.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/1723822.jpg</image>
<url>http://www.last.fm/user/naniel</url>
</user><user>
<name>dunk</name>
<realname>Duncan</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/24235437.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/24235437.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/24235437.jpg</image>
<url>http://www.last.fm/user/dunk</url>
</user><user>
<name>RUPERT</name>
<realname></realname>
<image size="small">http://userserve-ak.last.fm/serve/34/4424601.png</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/4424601.png</image>
<image size="large">http://userserve-ak.last.fm/serve/126/4424601.png</image>
<url>http://www.last.fm/user/RUPERT</url>
</user><user>
<name>mxcl</name>
<realname>Max Howell</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/3294118.png</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/3294118.png</image>
<image size="large">http://userserve-ak.last.fm/serve/126/3294118.png</image>
<url>http://www.last.fm/user/mxcl</url>
</user><user>
<name>jwheare</name>
<realname>James Wheare</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/15823365.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/15823365.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/15823365.jpg</image>
<url>http://www.last.fm/user/jwheare</url>
</user><user>
<name>nancyvw</name>
<realname>Nancy Walker</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/13608711.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/13608711.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/13608711.jpg</image>
<url>http://www.last.fm/user/nancyvw</url>
</user><user>
<name>underpangs</name>
<realname>David Singleton</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/13884831.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/13884831.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/13884831.jpg</image>
<url>http://www.last.fm/user/underpangs</url>
</user><user>
<name>p_wheel</name>
<realname>Paul Wheeler</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/10441989.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/10441989.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/10441989.jpg</image>
<url>http://www.last.fm/user/p_wheel</url>
</user><user>
<name>spietsch</name>
<realname>Sebastian Pietsch</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/17614085.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/17614085.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/17614085.jpg</image>
<url>http://www.last.fm/user/spietsch</url>
</user><user>
<name>musicmobs</name>
<realname>Toby Padilla</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/754833.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/754833.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/754833.jpg</image>
<url>http://www.last.fm/user/musicmobs</url>
</user><user>
<name>Schrollum</name>
<realname></realname>
<image size="small">http://userserve-ak.last.fm/serve/34/13180545.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/13180545.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/13180545.jpg</image>
<url>http://www.last.fm/user/Schrollum</url>
</user><user>
<name>luke_10</name>
<realname></realname>
<image size="small">http://userserve-ak.last.fm/serve/34/22813615.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/22813615.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/22813615.jpg</image>
<url>http://www.last.fm/user/luke_10</url>
</user><user>
<name>tgwizard</name>
<realname>Adam Renberg</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/8088043.png</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/8088043.png</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8088043.png</image>
<url>http://www.last.fm/user/tgwizard</url>
</user><user>
<name>pkeanecbs</name>
<realname></realname>
<image size="small">http://userserve-ak.last.fm/serve/34/1498420.gif</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/1498420.gif</image>
<image size="large">http://userserve-ak.last.fm/serve/126/1498420.gif</image>
<url>http://www.last.fm/user/pkeanecbs</url>
</user><user>
<name>Roelven</name>
<realname>Roel van der Ven</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/22071689.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/22071689.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/22071689.jpg</image>
<url>http://www.last.fm/user/Roelven</url>
</user><user>
<name>BecFrost</name>
<realname></realname>
<image size="small">http://userserve-ak.last.fm/serve/34/2015672.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/2015672.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/2015672.jpg</image>
<url>http://www.last.fm/user/BecFrost</url>
</user><user>
<name>gracehn001</name>
<realname></realname>
<image size="small">http://userserve-ak.last.fm/serve/34/1517141.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/1517141.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/1517141.jpg</image>
<url>http://www.last.fm/user/gracehn001</url>
</user><user>
<name>saulklein</name>
<realname>saul klein</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/822428.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/822428.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/822428.jpg</image>
<url>http://www.last.fm/user/saulklein</url>
</user><user>
<name>arrdis</name>
<realname>Ingrid</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/1384629.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/1384629.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/1384629.jpg</image>
<url>http://www.last.fm/user/arrdis</url>
</user><user>
<name>jarvis</name>
<realname>Lunchbox</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/622332.gif</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/622332.gif</image>
<image size="large">http://userserve-ak.last.fm/serve/126/622332.gif</image>
<url>http://www.last.fm/user/jarvis</url>
</user><user>
<name>sickdm</name>
<realname>Anthony V</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/12243053.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/12243053.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12243053.jpg</image>
<url>http://www.last.fm/user/sickdm</url>
</user><user>
<name>HawkeVIPER</name>
<realname>Tony</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/5548999.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/5548999.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/5548999.jpg</image>
<url>http://www.last.fm/user/HawkeVIPER</url>
</user><user>
<name>marquezmj</name>
<realname></realname>
<image size="small">http://userserve-ak.last.fm/serve/34/1939522.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/1939522.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/1939522.jpg</image>
<url>http://www.last.fm/user/marquezmj</url>
</user><user>
<name>julians</name>
<realname>♫ Julian Stahnke</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/664283.gif</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/664283.gif</image>
<image size="large">http://userserve-ak.last.fm/serve/126/664283.gif</image>
<url>http://www.last.fm/user/julians</url>
</user><user>
<name>david</name>
<realname>David</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/24533125.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/24533125.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/24533125.jpg</image>
<url>http://www.last.fm/user/david</url>
</user><user>
<name>pellitero</name>
<realname></realname>
<image size="small">http://userserve-ak.last.fm/serve/34/2911140.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/2911140.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/2911140.jpg</image>
<url>http://www.last.fm/user/pellitero</url>
</user><user>
<name>claoi</name>
<realname>Claudia</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/1836824.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/1836824.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/1836824.jpg</image>
<url>http://www.last.fm/user/claoi</url>
</user><user>
<name>grazziee</name>
<realname>Graziela</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/16101045.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/16101045.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/16101045.jpg</image>
<url>http://www.last.fm/user/grazziee</url>
</user><user>
<name>clairewkyb</name>
<realname>Claire Levy</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/1582132.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/1582132.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/1582132.jpg</image>
<url>http://www.last.fm/user/clairewkyb</url>
</user><user>
<name>lumberjack</name>
<realname></realname>
<image size="small">http://userserve-ak.last.fm/serve/34/13743993.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/13743993.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/13743993.jpg</image>
<url>http://www.last.fm/user/lumberjack</url>
</user><user>
<name>foreverautumn</name>
<realname>Laura</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/3269826.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/3269826.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/3269826.jpg</image>
<url>http://www.last.fm/user/foreverautumn</url>
</user><user>
<name>Yllona</name>
<realname>Yllona</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/742832.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/742832.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/742832.jpg</image>
<url>http://www.last.fm/user/Yllona</url>
</user><user>
<name>cakemix</name>
<realname>cherie matrix-holt</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/699672.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/699672.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/699672.jpg</image>
<url>http://www.last.fm/user/cakemix</url>
</user><user>
<name>Jonty</name>
<realname>Jonty</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/665390.png</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/665390.png</image>
<image size="large">http://userserve-ak.last.fm/serve/126/665390.png</image>
<url>http://www.last.fm/user/Jonty</url>
</user><user>
<name>nova77LF</name>
<realname></realname>
<image size="small">http://userserve-ak.last.fm/serve/34/2274378.gif</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/2274378.gif</image>
<image size="large">http://userserve-ak.last.fm/serve/126/2274378.gif</image>
<url>http://www.last.fm/user/nova77LF</url>
</user><user>
<name>mustaqila</name>
<realname>Muz</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/916565.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/916565.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/916565.jpg</image>
<url>http://www.last.fm/user/mustaqila</url>
</user><user>
<name>mischa</name>
<realname>Mischa Zurke</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/16287619.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/16287619.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/16287619.jpg</image>
<url>http://www.last.fm/user/mischa</url>
</user><user>
<name>AlexJohnson</name>
<realname>Alex</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/652957.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/652957.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/652957.jpg</image>
<url>http://www.last.fm/user/AlexJohnson</url>
</user><user>
<name>stinis</name>
<realname>Stina</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/23656141.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/23656141.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/23656141.jpg</image>
<url>http://www.last.fm/user/stinis</url>
</user><user>
<name>dirtyblonde</name>
<realname>Laura</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/1092964.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/1092964.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/1092964.jpg</image>
<url>http://www.last.fm/user/dirtyblonde</url>
</user><user>
<name>fionapinkstars</name>
<realname>Fiona McLaren</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/11015071.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/11015071.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/11015071.jpg</image>
<url>http://www.last.fm/user/fionapinkstars</url>
</user><user>
<name>mokele</name>
<realname>Steven Gravell</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/24126467.png</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/24126467.png</image>
<image size="large">http://userserve-ak.last.fm/serve/126/24126467.png</image>
<url>http://www.last.fm/user/mokele</url>
</user><user>
<name>sideb0ard</name>
<realname>Thorsten Sideb0ard</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/11937221.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/11937221.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/11937221.jpg</image>
<url>http://www.last.fm/user/sideb0ard</url>
</user><user>
<name>lizz</name>
<realname>Liz</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/643133.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/643133.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/643133.jpg</image>
<url>http://www.last.fm/user/lizz</url>
</user><user>
<name>lexdra</name>
<realname>Alex</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/9034985.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/9034985.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/9034985.jpg</image>
<url>http://www.last.fm/user/lexdra</url>
</user><user>
<name>hannahdonovan</name>
<realname>Hannah Donovan</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/7389271.png</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/7389271.png</image>
<image size="large">http://userserve-ak.last.fm/serve/126/7389271.png</image>
<url>http://www.last.fm/user/hannahdonovan</url>
</user><user>
<name>Waters_M</name>
<realname>Matthew Waters</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/1300537.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/1300537.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/1300537.jpg</image>
<url>http://www.last.fm/user/Waters_M</url>
</user><user>
<name>beanusmeridious</name>
<realname>Andy</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/1627247.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/1627247.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/1627247.jpg</image>
<url>http://www.last.fm/user/beanusmeridious</url>
</user><user>
<name>gragg</name>
<realname>Gareth Cooper</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/1657341.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/1657341.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/1657341.jpg</image>
<url>http://www.last.fm/user/gragg</url>
</user><user>
<name>Orlando</name>
<realname>Tom Coates</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/630985.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/630985.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/630985.jpg</image>
<url>http://www.last.fm/user/Orlando</url>
</user><user>
<name>andz</name>
<realname></realname>
<image size="small">http://userserve-ak.last.fm/serve/34/839537.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/839537.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/839537.jpg</image>
<url>http://www.last.fm/user/andz</url>
</user><user>
<name>sharevari</name>
<realname>Erik</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/22166507.png</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/22166507.png</image>
<image size="large">http://userserve-ak.last.fm/serve/126/22166507.png</image>
<url>http://www.last.fm/user/sharevari</url>
</user><user>
<name>pete_bug</name>
<realname>Jonas Woost</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/20645233.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/20645233.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/20645233.jpg</image>
<url>http://www.last.fm/user/pete_bug</url>
</user><user>
<name>Russ</name>
<realname>Russ Garrett</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/628252.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/628252.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/628252.jpg</image>
<url>http://www.last.fm/user/Russ</url>
</user><user>
<name>thearrogance</name>
<realname></realname>
<image size="small">http://userserve-ak.last.fm/serve/34/1046300.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/1046300.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/1046300.jpg</image>
<url>http://www.last.fm/user/thearrogance</url>
</user><user>
<name>lozzd</name>
<realname>Laurie Denness</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/14929697.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/14929697.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/14929697.jpg</image>
<url>http://www.last.fm/user/lozzd</url>
</user><user>
<name>avalyn2</name>
<realname>Peter</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/739188.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/739188.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/739188.jpg</image>
<url>http://www.last.fm/user/avalyn2</url>
</user><user>
<name>jen2</name>
<realname></realname>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
<url>http://www.last.fm/user/jen2</url>
</user><user>
<name>crshamburg</name>
<realname>Stefan Glänzer</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/1092107.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/1092107.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/1092107.jpg</image>
<url>http://www.last.fm/user/crshamburg</url>
</user><user>
<name>bubblenut</name>
<realname>Rob Young</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/902898.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/902898.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/902898.jpg</image>
<url>http://www.last.fm/user/bubblenut</url>
</user><user>
<name>muesli</name>
<realname></realname>
<image size="small">http://userserve-ak.last.fm/serve/34/19648927.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/19648927.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/19648927.jpg</image>
<url>http://www.last.fm/user/muesli</url>
</user><user>
<name>skr</name>
<realname>Johan Oskarsson</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/5112891.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/5112891.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/5112891.jpg</image>
<url>http://www.last.fm/user/skr</url>
</user><user>
<name>honeypea</name>
<realname>honey</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/1001843.gif</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/1001843.gif</image>
<image size="large">http://userserve-ak.last.fm/serve/126/1001843.gif</image>
<url>http://www.last.fm/user/honeypea</url>
</user><user>
<name>flaneur</name>
<realname>Matt</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/2704011.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/2704011.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/2704011.jpg</image>
<url>http://www.last.fm/user/flaneur</url>
</user><user>
<name>cikkolata</name>
<realname>Nikki</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/679428.gif</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/679428.gif</image>
<image size="large">http://userserve-ak.last.fm/serve/126/679428.gif</image>
<url>http://www.last.fm/user/cikkolata</url>
</user><user>
<name>djsalt</name>
<realname>david</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/622369.gif</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/622369.gif</image>
<image size="large">http://userserve-ak.last.fm/serve/126/622369.gif</image>
<url>http://www.last.fm/user/djsalt</url>
</user><user>
<name>bonne</name>
<realname>Richard Harrison</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/633303.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/633303.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/633303.jpg</image>
<url>http://www.last.fm/user/bonne</url>
</user><user>
<name>treepotato</name>
<realname></realname>
<image size="small">http://userserve-ak.last.fm/serve/34/3807936.gif</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/3807936.gif</image>
<image size="large">http://userserve-ak.last.fm/serve/126/3807936.gif</image>
<url>http://www.last.fm/user/treepotato</url>
</user><user>
<name>HairMetalAddict</name>
<realname>Never stop the rock when it's started to Roll...</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/2312702.gif</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/2312702.gif</image>
<image size="large">http://userserve-ak.last.fm/serve/126/2312702.gif</image>
<url>http://www.last.fm/user/HairMetalAddict</url>
</user><user>
<name>Eingang</name>
<realname>Eingang</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/630953.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/630953.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/630953.jpg</image>
<url>http://www.last.fm/user/Eingang</url>
</user><user>
<name>RNR</name>
<realname>Felix</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/642182.gif</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/642182.gif</image>
<image size="large">http://userserve-ak.last.fm/serve/126/642182.gif</image>
<url>http://www.last.fm/user/RNR</url>
</user><user>
<name>Ched</name>
<realname>James</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/622356.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/622356.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/622356.jpg</image>
<url>http://www.last.fm/user/Ched</url>
</user><user>
<name>count-bassy</name>
<realname>Martin Szomszor</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/662027.gif</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/662027.gif</image>
<image size="large">http://userserve-ak.last.fm/serve/126/662027.gif</image>
<url>http://www.last.fm/user/count-bassy</url>
</user><user>
<name>mainstream</name>
<realname>Martin Stiksel</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/16251931.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/16251931.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/16251931.jpg</image>
<url>http://www.last.fm/user/mainstream</url>
</user><user>
<name>joi</name>
<realname>Joichi Ito</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/4281324.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/4281324.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/4281324.jpg</image>
<url>http://www.last.fm/user/joi</url>
</user><user>
<name>AlexStapleton</name>
<realname>Alex Stapleton</realname>
<image size="small"></image>
<image size="medium"></image>
<image size="large"></image>
<url>http://www.last.fm/user/AlexStapleton</url>
</user><user>
<name>LAST.HQ</name>
<realname>The Team</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/615839.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/615839.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/615839.jpg</image>
<url>http://www.last.fm/user/LAST.HQ</url>
</user><user>
<name>timgaunt</name>
<realname>Tim</realname>
<image size="small">http://userserve-ak.last.fm/serve/34/731228.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/731228.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/731228.jpg</image>
<url>http://www.last.fm/user/timgaunt</url>
</user></friends></lfm>

View File

@ -0,0 +1,754 @@
<?xml version="1.0" encoding="utf-8"?>
<lfm status="ok">
<albums user="RJ" page="1" perPage="50" totalPages="77">
<album>
<name>Slave To The Grid</name>
<playcount>239</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Skid+Row/Slave+To+The+Grid</url>
<artist>
<name>Skid Row</name>
<mbid>6da0515e-a27d-449d-84cc-00713c38a140</mbid>
<url>http://www.last.fm/music/Skid+Row</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12621887.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12621887.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12621887.jpg</image>
</album>
<album>
<name>Images and Words</name>
<playcount>213</playcount>
<tagcount></tagcount>
<mbid>f20971f2-c8ad-4d26-91ab-730f6dedafb2</mbid>
<url>http://www.last.fm/music/Dream+Theater/Images+and+Words</url>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12620339.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12620339.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12620339.jpg</image>
</album>
<album>
<name>Once in a Livetime</name>
<playcount>202</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/Once+in+a+Livetime</url>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00000DD27.01._SCMZZZZZZZ_.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00000DD27.01._SCMZZZZZZZ_.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00000DD27.01._SCMZZZZZZZ_.jpg</image>
</album>
<album>
<name>Nina Simone's Finest Hour</name>
<playcount>165</playcount>
<tagcount></tagcount>
<mbid>80400af0-ee7b-4035-8c25-72289160ac21</mbid>
<url>http://www.last.fm/music/Nina+Simone/Nina+Simone%27s+Finest+Hour</url>
<artist>
<name>Nina Simone</name>
<mbid>2944824d-4c26-476f-a981-be849081942f</mbid>
<url>http://www.last.fm/music/Nina+Simone</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8762911.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8762911.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8762911.jpg</image>
</album>
<album>
<name>Sex and Religion</name>
<playcount>158</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Steve+Vai/Sex+and+Religion</url>
<artist>
<name>Steve Vai</name>
<mbid>5e7ccd92-6277-451a-aab9-1efd587c50f3</mbid>
<url>http://www.last.fm/music/Steve+Vai</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12620315.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12620315.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12620315.jpg</image>
</album>
<album>
<name>title</name>
<playcount>156</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Slamin%27+Gladys/title</url>
<artist>
<name>Slamin' Gladys</name>
<mbid></mbid>
<url>http://www.last.fm/music/Slamin%27+Gladys</url>
</artist>
<image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
<image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
<image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
</album>
<album>
<name>Time Bomb</name>
<playcount>151</playcount>
<tagcount>1</tagcount>
<mbid>01e475d1-fefa-4e83-a389-4af98e29d311</mbid>
<url>http://www.last.fm/music/Buckcherry/Time+Bomb</url>
<artist>
<name>Buckcherry</name>
<mbid>822e92ef-72ea-42e0-9af1-b987816b487a</mbid>
<url>http://www.last.fm/music/Buckcherry</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8664833.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8664833.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8664833.jpg</image>
</album>
<album>
<name>Day for Night</name>
<playcount>149</playcount>
<tagcount></tagcount>
<mbid>d2bd6f36-d795-4601-96e0-f44fc400a321</mbid>
<url>http://www.last.fm/music/Spock%27s+Beard/Day+for+Night</url>
<artist>
<name>Spock's Beard</name>
<mbid>9e57e406-4fb1-40d0-bcd2-2aa1d6390c1d</mbid>
<url>http://www.last.fm/music/Spock%27s+Beard</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00000I8CC.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00000I8CC.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00000I8CC.01.MZZZZZZZ.jpg</image>
</album>
<album>
<name>Liquid Tension Experiment</name>
<playcount>149</playcount>
<tagcount></tagcount>
<mbid>c3c0e462-1606-40dc-9667-1b26b9fb44c5</mbid>
<url>http://www.last.fm/music/Liquid+Tension+Experiment/Liquid+Tension+Experiment</url>
<artist>
<name>Liquid Tension Experiment</name>
<mbid>bc641be9-ca36-4c61-9394-5230433f6646</mbid>
<url>http://www.last.fm/music/Liquid+Tension+Experiment</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/15779373.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/15779373.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/15779373.jpg</image>
</album>
<album>
<name>Rage Against the Machine</name>
<playcount>135</playcount>
<tagcount></tagcount>
<mbid>e956c901-acb7-48d6-9dc6-389a5f91f372</mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine/Rage+Against+the+Machine</url>
<artist>
<name>Rage Against the Machine</name>
<mbid>3798b104-01cb-484c-a3b0-56adc6399b80</mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/19784479.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/19784479.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/19784479.jpg</image>
</album>
<album>
<name>Dire Straits</name>
<playcount>126</playcount>
<tagcount></tagcount>
<mbid>aa658dc0-cdce-4723-a7d6-c049aaae7a0b</mbid>
<url>http://www.last.fm/music/Dire+Straits/Dire+Straits</url>
<artist>
<name>Dire Straits</name>
<mbid>614e3804-7d34-41ba-857f-811bad7c2b7a</mbid>
<url>http://www.last.fm/music/Dire+Straits</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/13188073.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/13188073.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/13188073.jpg</image>
</album>
<album>
<name>The History of Rock</name>
<playcount>125</playcount>
<tagcount></tagcount>
<mbid>b32c1b95-8a13-4aa9-a5c5-858f408fb586</mbid>
<url>http://www.last.fm/music/Kid+Rock/The+History+of+Rock</url>
<artist>
<name>Kid Rock</name>
<mbid>ad0ecd8b-805e-406e-82cb-5b00c3a3a29e</mbid>
<url>http://www.last.fm/music/Kid+Rock</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00004TCPN.01.THUMBZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00004TCPN.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00004TCPN.01.LZZZZZZZ.jpg</image>
</album>
<album>
<name>Awake</name>
<playcount>124</playcount>
<tagcount></tagcount>
<mbid>7de6eb90-a8b2-4c00-80f7-c95e45929b27</mbid>
<url>http://www.last.fm/music/Dream+Theater/Awake</url>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B000002JKA.01.THUMBZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B000002JKA.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B000002JKA.01.LZZZZZZZ.jpg</image>
</album>
<album>
<name>And All That Could Have Been</name>
<playcount>124</playcount>
<tagcount></tagcount>
<mbid>85d24075-75db-4ef2-9311-10d10a737429</mbid>
<url>http://www.last.fm/music/Nine+Inch+Nails/And+All+That+Could+Have+Been</url>
<artist>
<name>Nine Inch Nails</name>
<mbid>b7ffd2af-418f-4be2-bdd1-22f8b48613da</mbid>
<url>http://www.last.fm/music/Nine+Inch+Nails</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00005RZV4.01.THUMBZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00005RZV4.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00005RZV4.01.LZZZZZZZ.jpg</image>
</album>
<album>
<name>A Night at the Hip Hopera</name>
<playcount>124</playcount>
<tagcount></tagcount>
<mbid>4a1ef9e3-09d9-41e6-8ff3-e8bf26860ae8</mbid>
<url>http://www.last.fm/music/The+Kleptones/A+Night+at+the+Hip+Hopera</url>
<artist>
<name>The Kleptones</name>
<mbid>f73b2b70-33d5-4118-923b-05ba8ad7e702</mbid>
<url>http://www.last.fm/music/The+Kleptones</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/11986865.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/11986865.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/11986865.jpg</image>
</album>
<album>
<name>Doggystyle</name>
<playcount>124</playcount>
<tagcount></tagcount>
<mbid>092bebff-dcf6-4fc4-8c34-837651703155</mbid>
<url>http://www.last.fm/music/Snoop+Dogg/Doggystyle</url>
<artist>
<name>Snoop Dogg</name>
<mbid>f90e8b26-9e52-4669-a5c9-e28529c47894</mbid>
<url>http://www.last.fm/music/Snoop+Dogg</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00005AQF7.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00005AQF7.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00005AQF7.01.MZZZZZZZ.jpg</image>
</album>
<album>
<name>Evergreen</name>
<playcount>122</playcount>
<tagcount></tagcount>
<mbid>95f5a532-42b8-4413-b5c3-a20d6b37b3ff</mbid>
<url>http://www.last.fm/music/Echo%2B%2526%2Bthe%2BBunnymen/Evergreen</url>
<artist>
<name>Echo &amp; the Bunnymen</name>
<mbid>ccd4879c-5e88-4385-b131-bf65296bf245</mbid>
<url>http://www.last.fm/music/Echo%2B%2526%2Bthe%2BBunnymen</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8596309.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8596309.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8596309.jpg</image>
</album>
<album>
<name>Falling Into Infinity</name>
<playcount>121</playcount>
<tagcount></tagcount>
<mbid>56805d04-50f5-49c9-ac0b-41a653d945c1</mbid>
<url>http://www.last.fm/music/Dream+Theater/Falling+Into+Infinity</url>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8599015.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8599015.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8599015.jpg</image>
</album>
<album>
<name>Blood Sugar Sex Magik</name>
<playcount>117</playcount>
<tagcount></tagcount>
<mbid>8b69a5f2-d3de-4df0-ae61-54b2227862c8</mbid>
<url>http://www.last.fm/music/Red+Hot+Chili+Peppers/Blood+Sugar+Sex+Magik</url>
<artist>
<name>Red Hot Chili Peppers</name>
<mbid>8bfac288-ccc5-448d-9573-c33ea2aa5c30</mbid>
<url>http://www.last.fm/music/Red+Hot+Chili+Peppers</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8590485.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8590485.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8590485.jpg</image>
</album>
<album>
<name>The Very Best of Level 42</name>
<playcount>116</playcount>
<tagcount></tagcount>
<mbid>4498095f-3750-4d31-938e-486fe163de0a</mbid>
<url>http://www.last.fm/music/Level+42/The+Very+Best+of+Level+42</url>
<artist>
<name>Level 42</name>
<mbid>d69ee229-2f36-494c-b104-9ae0d8be506b</mbid>
<url>http://www.last.fm/music/Level+42</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8720513.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8720513.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8720513.jpg</image>
</album>
<album>
<name>Lit Up</name>
<playcount>115</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Buckcherry/Lit+Up</url>
<artist>
<name>Buckcherry</name>
<mbid>822e92ef-72ea-42e0-9af1-b987816b487a</mbid>
<url>http://www.last.fm/music/Buckcherry</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00001ZTYQ.01._SCMZZZZZZZ_.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00001ZTYQ.01._SCMZZZZZZZ_.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00001ZTYQ.01._SCMZZZZZZZ_.jpg</image>
</album>
<album>
<name>The Heat</name>
<playcount>111</playcount>
<tagcount></tagcount>
<mbid>fa59d754-22f8-400a-befe-b4ccb51f72c2</mbid>
<url>http://www.last.fm/music/Dan+Reed+Network/The+Heat</url>
<artist>
<name>Dan Reed Network</name>
<mbid>2fe24c3c-5768-484d-a64b-04983e99325a</mbid>
<url>http://www.last.fm/music/Dan+Reed+Network</url>
</artist>
<image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
<image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
<image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
</album>
<album>
<name>I'd Like a Virgin</name>
<playcount>111</playcount>
<tagcount></tagcount>
<mbid>ed2498fe-7fe2-4c24-99f4-05dd2bbea157</mbid>
<url>http://www.last.fm/music/Richard+Cheese/I%27d+Like+a+Virgin</url>
<artist>
<name>Richard Cheese</name>
<mbid>9bf79f68-c064-44a1-8c2c-5764f1d7c016</mbid>
<url>http://www.last.fm/music/Richard+Cheese</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12636483.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12636483.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12636483.jpg</image>
</album>
<album>
<name>Dogman</name>
<playcount>110</playcount>
<tagcount></tagcount>
<mbid>fb33464f-b1df-4d60-a806-0f9683d375a1</mbid>
<url>http://www.last.fm/music/King%27s+X/Dogman</url>
<artist>
<name>King's X</name>
<mbid>c8f5272e-8a94-4807-9099-70181e92fc46</mbid>
<url>http://www.last.fm/music/King%27s+X</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B000002IXM.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B000002IXM.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B000002IXM.01.MZZZZZZZ.jpg</image>
</album>
<album>
<name>Deluxe</name>
<playcount>110</playcount>
<tagcount></tagcount>
<mbid>96bce911-aae9-495b-8126-8f62029a65ec</mbid>
<url>http://www.last.fm/music/Firebird/Deluxe</url>
<artist>
<name>Firebird</name>
<mbid>3dfc0a11-0122-4bc4-8474-b67c88c5a4ea</mbid>
<url>http://www.last.fm/music/Firebird</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00005MMNG.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00005MMNG.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00005MMNG.01.MZZZZZZZ.jpg</image>
</album>
<album>
<name>Firebird</name>
<playcount>107</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Firebird/Firebird</url>
<artist>
<name>Firebird</name>
<mbid>3dfc0a11-0122-4bc4-8474-b67c88c5a4ea</mbid>
<url>http://www.last.fm/music/Firebird</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/15749639.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/15749639.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/15749639.jpg</image>
</album>
<album>
<name>The Atomic Bitchwax</name>
<playcount>103</playcount>
<tagcount></tagcount>
<mbid>ca5fae8d-f6de-4cca-ac62-321f9879ea85</mbid>
<url>http://www.last.fm/music/The+Atomic+Bitchwax/The+Atomic+Bitchwax</url>
<artist>
<name>The Atomic Bitchwax</name>
<mbid>377ca1eb-83c2-40da-81fd-eb81e922a585</mbid>
<url>http://www.last.fm/music/The+Atomic+Bitchwax</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/14461111.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/14461111.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/14461111.jpg</image>
</album>
<album>
<name>Communiqué</name>
<playcount>99</playcount>
<tagcount></tagcount>
<mbid>71d8361b-f8d7-43bc-86d9-cc13294ae35f</mbid>
<url>http://www.last.fm/music/Dire+Straits/Communiqu%C3%A9</url>
<artist>
<name>Dire Straits</name>
<mbid>614e3804-7d34-41ba-857f-811bad7c2b7a</mbid>
<url>http://www.last.fm/music/Dire+Straits</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00004Y6NT.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00004Y6NT.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00004Y6NT.01.MZZZZZZZ.jpg</image>
</album>
<album>
<name>Train of Thought</name>
<playcount>99</playcount>
<tagcount></tagcount>
<mbid>5a4e6e59-de93-4fda-ac36-99b2efe8ff7e</mbid>
<url>http://www.last.fm/music/Dream+Theater/Train+of+Thought</url>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8634935.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8634935.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8634935.jpg</image>
</album>
<album>
<name>The Better Life</name>
<playcount>99</playcount>
<tagcount></tagcount>
<mbid>a7fb6852-dedc-4da4-91ba-59a2753efb9f</mbid>
<url>http://www.last.fm/music/3+Doors+Down/The+Better+Life</url>
<artist>
<name>3 Doors Down</name>
<mbid>2386cd66-e923-4e8e-bf14-2eebe2e9b973</mbid>
<url>http://www.last.fm/music/3+Doors+Down</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8631753.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8631753.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8631753.jpg</image>
</album>
<album>
<name>Stoosh</name>
<playcount>98</playcount>
<tagcount></tagcount>
<mbid>846a7626-b1a6-4c54-bba4-a5d1de5945e5</mbid>
<url>http://www.last.fm/music/Skunk+Anansie/Stoosh</url>
<artist>
<name>Skunk Anansie</name>
<mbid>e212efdf-98b2-4dce-92ed-62cfc1e29854</mbid>
<url>http://www.last.fm/music/Skunk+Anansie</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/23020361.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/23020361.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/23020361.jpg</image>
</album>
<album>
<name>No. 3</name>
<playcount>98</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Firebird/No.+3</url>
<artist>
<name>Firebird</name>
<mbid>3dfc0a11-0122-4bc4-8474-b67c88c5a4ea</mbid>
<url>http://www.last.fm/music/Firebird</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00009AHPO.01._SCMZZZZZZZ_.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00009AHPO.01._SCMZZZZZZZ_.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00009AHPO.01._SCMZZZZZZZ_.jpg</image>
</album>
<album>
<name>Riding with the King</name>
<playcount>94</playcount>
<tagcount></tagcount>
<mbid>49e00206-2955-48a8-a9ba-a58a2fda916e</mbid>
<url>http://www.last.fm/music/B.B.%2BKing%2B%2526%2BEric%2BClapton/Riding+with+the+King</url>
<artist>
<name>B.B. King &amp; Eric Clapton</name>
<mbid>c45474e1-8c83-41eb-b200-962c863c8a2b</mbid>
<url>http://www.last.fm/music/B.B.%2BKing%2B%2526%2BEric%2BClapton</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12622397.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12622397.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12622397.jpg</image>
</album>
<album>
<name>Runnin' Wild</name>
<playcount>92</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Airbourne/Runnin%27+Wild</url>
<artist>
<name>Airbourne</name>
<mbid></mbid>
<url>http://www.last.fm/music/Airbourne</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/24801615.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/24801615.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/24801615.jpg</image>
</album>
<album>
<name>Slam</name>
<playcount>92</playcount>
<tagcount></tagcount>
<mbid>38145a63-a43e-4ec2-bb52-a12df7df1570</mbid>
<url>http://www.last.fm/music/Dan+Reed+Network/Slam</url>
<artist>
<name>Dan Reed Network</name>
<mbid>2fe24c3c-5768-484d-a64b-04983e99325a</mbid>
<url>http://www.last.fm/music/Dan+Reed+Network</url>
</artist>
<image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
<image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
<image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
</album>
<album>
<name>Six Degrees Of Inner Turbulance</name>
<playcount>91</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Dream+Theater/Six+Degrees+Of+Inner+Turbulance</url>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images-eu.amazon.com/images/P/B00005UEAR.02.THUMBZZZ.jpg</image>
<image size="medium">http://images-eu.amazon.com/images/P/B00005UEAR.02.MZZZZZZZ.jpg</image>
<image size="large">http://images-eu.amazon.com/images/P/B00005UEAR.02.LZZZZZZZ.jpg</image>
</album>
<album>
<name>On Every Street</name>
<playcount>90</playcount>
<tagcount></tagcount>
<mbid>aceb4f36-3e64-42eb-ac1f-55715aad40b7</mbid>
<url>http://www.last.fm/music/Dire+Straits/On+Every+Street</url>
<artist>
<name>Dire Straits</name>
<mbid>614e3804-7d34-41ba-857f-811bad7c2b7a</mbid>
<url>http://www.last.fm/music/Dire+Straits</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8677231.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8677231.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8677231.jpg</image>
</album>
<album>
<name>Love Me or Leave Me</name>
<playcount>89</playcount>
<tagcount></tagcount>
<mbid>cf3017c7-995a-474d-b542-c1f78a080f35</mbid>
<url>http://www.last.fm/music/Nina+Simone/Love+Me+or+Leave+Me</url>
<artist>
<name>Nina Simone</name>
<mbid>2944824d-4c26-476f-a981-be849081942f</mbid>
<url>http://www.last.fm/music/Nina+Simone</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B000025AMX.01.THUMBZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B000025AMX.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B000025AMX.01.LZZZZZZZ.jpg</image>
</album>
<album>
<name>Greatest Hits</name>
<playcount>88</playcount>
<tagcount></tagcount>
<mbid>0499f493-4598-4c6d-bffa-5fc3400ca070</mbid>
<url>http://www.last.fm/music/Bob+Seger/Greatest+Hits</url>
<artist>
<name>Bob Seger</name>
<mbid>4382b934-64c3-47ac-98db-65f26d845c48</mbid>
<url>http://www.last.fm/music/Bob+Seger</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12624475.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12624475.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12624475.jpg</image>
</album>
<album>
<name>Use Your Illusion II</name>
<playcount>87</playcount>
<tagcount></tagcount>
<mbid>0483e371-51fc-49cb-9711-69c324589cd6</mbid>
<url>http://www.last.fm/music/Guns+N%27+Roses/Use+Your+Illusion+II</url>
<artist>
<name>Guns N' Roses</name>
<mbid>eeb1195b-f213-4ce1-b28c-8565211f8e43</mbid>
<url>http://www.last.fm/music/Guns+N%27+Roses</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/15231979.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/15231979.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/15231979.jpg</image>
</album>
<album>
<name>Urban Hymns</name>
<playcount>87</playcount>
<tagcount></tagcount>
<mbid>839a1568-b862-43a7-81e6-a4040496f369</mbid>
<url>http://www.last.fm/music/The+Verve/Urban+Hymns</url>
<artist>
<name>The Verve</name>
<mbid>d4d17620-fd97-4574-92a8-a2cb7e72ce42</mbid>
<url>http://www.last.fm/music/The+Verve</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/14233169.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/14233169.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/14233169.jpg</image>
</album>
<album>
<name>It's Not Too Late</name>
<playcount>87</playcount>
<tagcount></tagcount>
<mbid>94572ecd-1ae3-44bb-b47b-5b7f933c416b</mbid>
<url>http://www.last.fm/music/Neal+Morse/It%27s+Not+Too+Late</url>
<artist>
<name>Neal Morse</name>
<mbid>c0926f5d-098c-4f29-a463-5489b43a273a</mbid>
<url>http://www.last.fm/music/Neal+Morse</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B000067UNC.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B000067UNC.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B000067UNC.01.MZZZZZZZ.jpg</image>
</album>
<album>
<name>Just Push Play</name>
<playcount>86</playcount>
<tagcount></tagcount>
<mbid>2fdce4fb-1194-4eba-ba07-9b2fa53bac7c</mbid>
<url>http://www.last.fm/music/Aerosmith/Just+Push+Play</url>
<artist>
<name>Aerosmith</name>
<mbid>3d2b98e5-556f-4451-a3ff-c50ea18d57cb</mbid>
<url>http://www.last.fm/music/Aerosmith</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/21685277.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/21685277.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/21685277.jpg</image>
</album>
<album>
<name>Nine Lives</name>
<playcount>85</playcount>
<tagcount></tagcount>
<mbid>12adc6cb-bb7a-426c-97f7-9a7d1cc50e07</mbid>
<url>http://www.last.fm/music/Aerosmith/Nine+Lives</url>
<artist>
<name>Aerosmith</name>
<mbid>3d2b98e5-556f-4451-a3ff-c50ea18d57cb</mbid>
<url>http://www.last.fm/music/Aerosmith</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/16815417.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/16815417.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/16815417.jpg</image>
</album>
<album>
<name>Renegades</name>
<playcount>82</playcount>
<tagcount></tagcount>
<mbid>8b98b2d4-91af-4a58-af54-0bd872570c5e</mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine/Renegades</url>
<artist>
<name>Rage Against the Machine</name>
<mbid>3798b104-01cb-484c-a3b0-56adc6399b80</mbid>
<url>http://www.last.fm/music/Rage+Against+the+Machine</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/15765837.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/15765837.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/15765837.jpg</image>
</album>
<album>
<name>Ruby Soul</name>
<playcount>82</playcount>
<tagcount></tagcount>
<mbid></mbid>
<url>http://www.last.fm/music/Tok+Tok+Tok/Ruby+Soul</url>
<artist>
<name>Tok Tok Tok</name>
<mbid>97d9060d-2cd5-4acd-b44f-c39ea2da4753</mbid>
<url>http://www.last.fm/music/Tok+Tok+Tok</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00006OA35.01.THUMBZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00006OA35.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00006OA35.01.LZZZZZZZ.jpg</image>
</album>
<album>
<name>Greatest Hits</name>
<playcount>81</playcount>
<tagcount></tagcount>
<mbid>c5e29035-a258-44e3-b9de-4df9548c7866</mbid>
<url>http://www.last.fm/music/James+Taylor/Greatest+Hits</url>
<artist>
<name>James Taylor</name>
<mbid>107d0c22-d051-4d98-8206-4e14de02132a</mbid>
<url>http://www.last.fm/music/James+Taylor</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12619275.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12619275.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12619275.jpg</image>
</album>
<album>
<name>Supreme Beings of Leisure</name>
<playcount>81</playcount>
<tagcount></tagcount>
<mbid>62a1e7a5-d6a9-4a52-8f59-3d927a3c7f1d</mbid>
<url>http://www.last.fm/music/Supreme+Beings+of+Leisure/Supreme+Beings+of+Leisure</url>
<artist>
<name>Supreme Beings of Leisure</name>
<mbid>1b483425-4f02-4599-a31c-9b5c132e0a7a</mbid>
<url>http://www.last.fm/music/Supreme+Beings+of+Leisure</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/18064597.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/18064597.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/18064597.jpg</image>
</album>
<album>
<name>Appetite for Destruction</name>
<playcount>80</playcount>
<tagcount></tagcount>
<mbid>2174675c-2159-4405-a3af-3a4860106b58</mbid>
<url>http://www.last.fm/music/Guns+N%27+Roses/Appetite+for+Destruction</url>
<artist>
<name>Guns N' Roses</name>
<mbid>eeb1195b-f213-4ce1-b28c-8565211f8e43</mbid>
<url>http://www.last.fm/music/Guns+N%27+Roses</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8616041.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8616041.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8616041.jpg</image>
</album>
<album>
<name>With Teeth</name>
<playcount>80</playcount>
<tagcount></tagcount>
<mbid>df025315-4897-4759-ba77-d2cd09b5b4b6</mbid>
<url>http://www.last.fm/music/Nine+Inch+Nails/With+Teeth</url>
<artist>
<name>Nine Inch Nails</name>
<mbid>b7ffd2af-418f-4be2-bdd1-22f8b48613da</mbid>
<url>http://www.last.fm/music/Nine+Inch+Nails</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8671925.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8671925.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8671925.jpg</image>
</album>
</albums></lfm>

View File

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="utf-8"?>
<lfm status="ok">
<event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
<id>834368</id>
<title>The Gaslight Anthem</title>
<artists>
<artist>The Gaslight Anthem</artist>
<artist>Frank Turner</artist>
<artist>Polar Bear Club</artist>
<headliner>The Gaslight Anthem</headliner>
</artists>
<venue>
<name>Academy</name>
<location>
<city>Dublin</city>
<country>Ireland</country>
<street>57 Middle Abbey Street</street>
<postalcode></postalcode>
<geo:point>
<geo:lat>53.352461</geo:lat>
<geo:long>-6.259799</geo:long>
</geo:point>
</location>
<url>http://www.last.fm/venue/8887925</url>
</venue>
<startDate>Wed, 04 Mar 2009 14:38:01</startDate>
<description><![CDATA[<div class="bbcode">The Gaslight Anthem for Dublin<br />
New Jersey folk-punks The Gaslight Anthem will play Dublin in 2009.<br />
<br />
The quartet, beloved of Tom Petty and Bruce Springsteen fans, will play The Academy on March 4th, in support of their second full-length album 'The '59 Sound', which is out now.<br />
<br />
Tickets are €17.50 and on sale from usual outlets soon.</div>]]></description>
<image size="small">http://userserve-ak.last.fm/serve/34/7454839.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/7454839.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/7454839.jpg</image>
<url>http://www.last.fm/event/834368</url>
<attendance>38</attendance>
<reviews>0</reviews>
<tag>lastfm:event=834368</tag>
</event></lfm>

View File

@ -0,0 +1,56 @@
<?xml version="1.0" encoding="utf-8"?>
<lfm status="ok">
<playlists user="RJ">
<playlist>
<id>5606</id>
<title>Misc gubbins</title>
<description>This is a misc test playlist with a few random tracks in it.</description>
<date>2006-11-15T13:05:48</date>
<size>10</size>
<duration>2818</duration>
<streamable>0</streamable>
<creator>http://www.last.fm/user/RJ</creator>
<url>http://www.last.fm/user/RJ/library/playlists/4bq_misc_gubbins</url>
<image size="small">http://userserve-ak.last.fm/serve/34/4218758.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/4218758.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/4218758.jpg</image>
</playlist><playlist>
<id>2615079</id>
<title>Duck playlist</title>
<description>Duck and cover</description>
<date>2008-05-22T09:40:09</date>
<size>10</size>
<duration>2143</duration>
<streamable>0</streamable>
<creator>http://www.last.fm/user/RJ</creator>
<url>http://www.last.fm/user/RJ/library/playlists/1k1t3_duck_playlist</url>
<image size="small">http://userserve-ak.last.fm/serve/34/5985590.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/5985590.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/5985590.jpg</image>
</playlist><playlist>
<id>2614993</id>
<title>Doglist</title>
<description>Guess what i searched for..</description>
<date>2008-05-22T09:24:23</date>
<size>18</size>
<duration>3599</duration>
<streamable>0</streamable>
<creator>http://www.last.fm/user/RJ</creator>
<url>http://www.last.fm/user/RJ/library/playlists/1k1qp_doglist</url>
<image size="small">http://userserve-ak.last.fm/serve/34/5976386.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/5976386.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/5976386.jpg</image>
</playlist><playlist>
<id>2612216</id>
<title>Sexyplaylist</title>
<description>My only regret is that the search feature doesn't give me more than 10 results</description>
<date>2008-05-21T19:43:46</date>
<size>9</size>
<duration>2396</duration>
<streamable>0</streamable>
<creator>http://www.last.fm/user/RJ</creator>
<url>http://www.last.fm/user/RJ/library/playlists/1jzlk_sexyplaylist</url>
<image size="small">http://userserve-ak.last.fm/serve/34/5976429.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/5976429.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/5976429.jpg</image>
</playlist></playlists></lfm>

View File

@ -0,0 +1,364 @@
<?xml version="1.0" encoding="utf-8"?>
<lfm status="ok">
<toptags user="RJ">
<tag>
<name>rock</name>
<count>16</count>
<url>www.last.fm/tag/rock</url>
</tag>
<tag>
<name>jazz</name>
<count>10</count>
<url>www.last.fm/tag/jazz</url>
</tag>
<tag>
<name>metal</name>
<count>10</count>
<url>www.last.fm/tag/metal</url>
</tag>
<tag>
<name>mellow</name>
<count>6</count>
<url>www.last.fm/tag/mellow</url>
</tag>
<tag>
<name>80s</name>
<count>6</count>
<url>www.last.fm/tag/80s</url>
</tag>
<tag>
<name>guitar</name>
<count>6</count>
<url>www.last.fm/tag/guitar</url>
</tag>
<tag>
<name>checkitout</name>
<count>5</count>
<url>www.last.fm/tag/checkitout</url>
</tag>
<tag>
<name>funky</name>
<count>4</count>
<url>www.last.fm/tag/funky</url>
</tag>
<tag>
<name>stoner rock</name>
<count>3</count>
<url>www.last.fm/tag/stoner%20rock</url>
</tag>
<tag>
<name>funk</name>
<count>3</count>
<url>www.last.fm/tag/funk</url>
</tag>
<tag>
<name>blues</name>
<count>3</count>
<url>www.last.fm/tag/blues</url>
</tag>
<tag>
<name>female vocalists</name>
<count>3</count>
<url>www.last.fm/tag/female%20vocalists</url>
</tag>
<tag>
<name>drone rock</name>
<count>3</count>
<url>www.last.fm/tag/drone%20rock</url>
</tag>
<tag>
<name>soul</name>
<count>3</count>
<url>www.last.fm/tag/soul</url>
</tag>
<tag>
<name>acoustic</name>
<count>3</count>
<url>www.last.fm/tag/acoustic</url>
</tag>
<tag>
<name>easy listening</name>
<count>2</count>
<url>www.last.fm/tag/easy%20listening</url>
</tag>
<tag>
<name>singer-songwriter</name>
<count>2</count>
<url>www.last.fm/tag/singer-songwriter</url>
</tag>
<tag>
<name>classic rock</name>
<count>2</count>
<url>www.last.fm/tag/classic%20rock</url>
</tag>
<tag>
<name>vacuum tube</name>
<count>2</count>
<url>www.last.fm/tag/vacuum%20tube</url>
</tag>
<tag>
<name>covers</name>
<count>2</count>
<url>www.last.fm/tag/covers</url>
</tag>
<tag>
<name>instrumental</name>
<count>2</count>
<url>www.last.fm/tag/instrumental</url>
</tag>
<tag>
<name>country</name>
<count>2</count>
<url>www.last.fm/tag/country</url>
</tag>
<tag>
<name>melodic rock</name>
<count>2</count>
<url>www.last.fm/tag/melodic%20rock</url>
</tag>
<tag>
<name>cowboy</name>
<count>1</count>
<url>www.last.fm/tag/cowboy</url>
</tag>
<tag>
<name>chilled out</name>
<count>1</count>
<url>www.last.fm/tag/chilled%20out</url>
</tag>
<tag>
<name>groove</name>
<count>1</count>
<url>www.last.fm/tag/groove</url>
</tag>
<tag>
<name>instrumental rock</name>
<count>1</count>
<url>www.last.fm/tag/instrumental%20rock</url>
</tag>
<tag>
<name>guitar virtuoso</name>
<count>1</count>
<url>www.last.fm/tag/guitar%20virtuoso</url>
</tag>
<tag>
<name>canadian</name>
<count>1</count>
<url>www.last.fm/tag/canadian</url>
</tag>
<tag>
<name>live</name>
<count>1</count>
<url>www.last.fm/tag/live</url>
</tag>
<tag>
<name>dance</name>
<count>1</count>
<url>www.last.fm/tag/dance</url>
</tag>
<tag>
<name>freedom</name>
<count>1</count>
<url>www.last.fm/tag/freedom</url>
</tag>
<tag>
<name>crap</name>
<count>1</count>
<url>www.last.fm/tag/crap</url>
</tag>
<tag>
<name>unplugged</name>
<count>1</count>
<url>www.last.fm/tag/unplugged</url>
</tag>
<tag>
<name>groovy</name>
<count>1</count>
<url>www.last.fm/tag/groovy</url>
</tag>
<tag>
<name>chillout</name>
<count>1</count>
<url>www.last.fm/tag/chillout</url>
</tag>
<tag>
<name>uplifting</name>
<count>1</count>
<url>www.last.fm/tag/uplifting</url>
</tag>
<tag>
<name>chilled</name>
<count>1</count>
<url>www.last.fm/tag/chilled</url>
</tag>
<tag>
<name>woman</name>
<count>1</count>
<url>www.last.fm/tag/woman</url>
</tag>
<tag>
<name>soft rock</name>
<count>1</count>
<url>www.last.fm/tag/soft%20rock</url>
</tag>
<tag>
<name>female vocalist</name>
<count>1</count>
<url>www.last.fm/tag/female%20vocalist</url>
</tag>
<tag>
<name>britpop</name>
<count>1</count>
<url>www.last.fm/tag/britpop</url>
</tag>
<tag>
<name>new wave</name>
<count>1</count>
<url>www.last.fm/tag/new%20wave</url>
</tag>
<tag>
<name>romantic</name>
<count>1</count>
<url>www.last.fm/tag/romantic</url>
</tag>
<tag>
<name>blahtag</name>
<count>1</count>
<url>www.last.fm/tag/blahtag</url>
</tag>
<tag>
<name>geek</name>
<count>1</count>
<url>www.last.fm/tag/geek</url>
</tag>
<tag>
<name>heavy</name>
<count>1</count>
<url>www.last.fm/tag/heavy</url>
</tag>
<tag>
<name>porno rock</name>
<count>1</count>
<url>www.last.fm/tag/porno%20rock</url>
</tag>
<tag>
<name>agressive</name>
<count>1</count>
<url>www.last.fm/tag/agressive</url>
</tag>
<tag>
<name>lounge</name>
<count>1</count>
<url>www.last.fm/tag/lounge</url>
</tag>
<tag>
<name>popular</name>
<count>1</count>
<url>www.last.fm/tag/popular</url>
</tag>
<tag>
<name>parody</name>
<count>1</count>
<url>www.last.fm/tag/parody</url>
</tag>
<tag>
<name>upcoming</name>
<count>1</count>
<url>www.last.fm/tag/upcoming</url>
</tag>
<tag>
<name>test tag</name>
<count>1</count>
<url>www.last.fm/tag/test%20tag</url>
</tag>
<tag>
<name>nostalgia</name>
<count>1</count>
<url>www.last.fm/tag/nostalgia</url>
</tag>
<tag>
<name>fixmytags</name>
<count>1</count>
<url>www.last.fm/tag/fixmytags</url>
</tag>
<tag>
<name>rhythm and blues</name>
<count>1</count>
<url>www.last.fm/tag/rhythm%20and%20blues</url>
</tag>
<tag>
<name>aggressive</name>
<count>1</count>
<url>www.last.fm/tag/aggressive</url>
</tag>
<tag>
<name>indie</name>
<count>1</count>
<url>www.last.fm/tag/indie</url>
</tag>
<tag>
<name>slow</name>
<count>1</count>
<url>www.last.fm/tag/slow</url>
</tag>
<tag>
<name>smooth jazz</name>
<count>1</count>
<url>www.last.fm/tag/smooth%20jazz</url>
</tag>
<tag>
<name>hard rock</name>
<count>1</count>
<url>www.last.fm/tag/hard%20rock</url>
</tag>
<tag>
<name>gothic</name>
<count>1</count>
<url>www.last.fm/tag/gothic</url>
</tag>
<tag>
<name>folk</name>
<count>1</count>
<url>www.last.fm/tag/folk</url>
</tag>
<tag>
<name>jason robert brown</name>
<count>1</count>
<url>www.last.fm/tag/jason%20robert%20brown</url>
</tag>
<tag>
<name>acid jazz</name>
<count>1</count>
<url>www.last.fm/tag/acid%20jazz</url>
</tag>
<tag>
<name>alt-country</name>
<count>1</count>
<url>www.last.fm/tag/alt-country</url>
</tag>
<tag>
<name>tag-tastic</name>
<count>1</count>
<url>www.last.fm/tag/tag-tastic</url>
</tag>
<tag>
<name>symphonic metal</name>
<count>1</count>
<url>www.last.fm/tag/symphonic%20metal</url>
</tag>
<tag>
<name>hip-hop</name>
<count>1</count>
<url>www.last.fm/tag/hip-hop</url>
</tag>
<tag>
<name>sleazy</name>
<count>1</count>
<url>www.last.fm/tag/sleazy</url>
</tag>
<tag>
<name>hair metal</name>
<count>1</count>
<url>www.last.fm/tag/hair%20metal</url>
</tag>
</toptags></lfm>

View File

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="utf-8"?>
<lfm status="ok">
<events user="RJ" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" total="1">
<event status="1">
<id>834368</id>
<title>The Gaslight Anthem</title>
<artists>
<artist>The Gaslight Anthem</artist>
<artist>Frank Turner</artist>
<artist>Polar Bear Club</artist>
<headliner>The Gaslight Anthem</headliner>
</artists>
<venue>
<id>8887925</id>
<name>Academy</name>
<location>
<city>Dublin</city>
<country>Ireland</country>
<street>57 Middle Abbey Street</street>
<postalcode></postalcode>
<geo:point>
<geo:lat>53.352461</geo:lat>
<geo:long>-6.259799</geo:long>
</geo:point>
</location>
<url>http://www.last.fm/venue/8887925</url>
</venue>
<startDate>Wed, 04 Mar 2009 14:38:01</startDate>
<description><![CDATA[<div class="bbcode">The Gaslight Anthem for Dublin<br />
New Jersey folk-punks The Gaslight Anthem will play Dublin in 2009.<br />
<br />
The quartet, beloved of Tom Petty and Bruce Springsteen fans, will play The Academy on March 4th, in support of their second full-length album 'The '59 Sound', which is out now.<br />
<br />
Tickets are €17.50 and on sale from usual outlets soon.</div>]]></description>
<image size="small">http://userserve-ak.last.fm/serve/34/7454839.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/7454839.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/7454839.jpg</image>
<attendance>38</attendance>
<reviews>0</reviews>
<tag>lastfm:event=834368</tag>
<url>http://www.last.fm/event/834368</url>
</event>
</events>
</lfm>

View File

@ -0,0 +1,678 @@
<?xml version="1.0" encoding="utf-8"?>
<lfm status="ok">
<lovedtracks user="RJ">
<track>
<name>Young</name>
<mbid></mbid>
<url>www.last.fm/music/Mokele/_/Young</url>
<date uts="1236212894">5 Mar 2009, 00:28</date>
<artist>
<name>Mokele</name>
<mbid></mbid>
<url>http://www.last.fm/music/Mokele</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/4485816.png</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/4485816.png</image>
<image size="large">http://userserve-ak.last.fm/serve/126/4485816.png</image>
</track>
<track>
<name>Hell March</name>
<mbid></mbid>
<url>www.last.fm/music/Frank+Klepacki/_/Hell+March</url>
<date uts="1233237013">29 Jan 2009, 13:50</date>
<artist>
<name>Frank Klepacki</name>
<mbid>4f3d90f0-4ea5-489f-a7d5-4c9496949db4</mbid>
<url>http://www.last.fm/music/Frank+Klepacki</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/3613344.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/3613344.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/3613344.jpg</image>
</track>
<track>
<name>Summertime</name>
<mbid></mbid>
<url>www.last.fm/music/Will+Smith/_/Summertime</url>
<date uts="1228996029">11 Dec 2008, 11:47</date>
<artist>
<name>Will Smith</name>
<mbid>5bae7081-64ef-4473-825a-38d310deb14c</mbid>
<url>http://www.last.fm/music/Will+Smith</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/23040737.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/23040737.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/23040737.jpg</image>
</track>
<track>
<name>Calm</name>
<mbid></mbid>
<url>www.last.fm/music/Wayne+Shorter/_/Calm</url>
<date uts="1225225044">28 Oct 2008, 20:17</date>
<artist>
<name>Wayne Shorter</name>
<mbid>2379937f-6e0d-46a2-b8ff-633fafd72002</mbid>
<url>http://www.last.fm/music/Wayne+Shorter</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8596999.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8596999.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8596999.jpg</image>
</track>
<track>
<name>The One and Only</name>
<mbid></mbid>
<url>www.last.fm/music/Chesney+Hawkes/_/The+One+and+Only</url>
<date uts="1225211701">28 Oct 2008, 16:35</date>
<artist>
<name>Chesney Hawkes</name>
<mbid>4d74424b-627d-42dd-ab1b-85f16f10e027</mbid>
<url>http://www.last.fm/music/Chesney+Hawkes</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/17687939.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/17687939.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/17687939.jpg</image>
</track>
<track>
<name>Cliffs of Dover</name>
<mbid></mbid>
<url>www.last.fm/music/Eric+Johnson/_/Cliffs+of+Dover</url>
<date uts="1222682821">29 Sep 2008, 10:07</date>
<artist>
<name>Eric Johnson</name>
<mbid>b53868c8-3654-41d3-91db-3c5a1237f0c3</mbid>
<url>http://www.last.fm/music/Eric+Johnson</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/14200813.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/14200813.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/14200813.jpg</image>
</track>
<track>
<name>Orion (Instrumental)</name>
<mbid></mbid>
<url>www.last.fm/music/Metallica/_/Orion+%28Instrumental%29</url>
<date uts="1222279069">24 Sep 2008, 17:57</date>
<artist>
<name>Metallica</name>
<mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
<url>http://www.last.fm/music/Metallica</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8622967.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8622967.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8622967.jpg</image>
</track>
<track>
<name>Whiskey in the Jar</name>
<mbid></mbid>
<url>www.last.fm/music/Metallica/_/Whiskey+in+the+Jar</url>
<date uts="1222279060">24 Sep 2008, 17:57</date>
<artist>
<name>Metallica</name>
<mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
<url>http://www.last.fm/music/Metallica</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
</track>
<track>
<name>Loverman</name>
<mbid></mbid>
<url>www.last.fm/music/Metallica/_/Loverman</url>
<date uts="1222279057">24 Sep 2008, 17:57</date>
<artist>
<name>Metallica</name>
<mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
<url>http://www.last.fm/music/Metallica</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
</track>
<track>
<name>Turn the Page</name>
<mbid></mbid>
<url>www.last.fm/music/Metallica/_/Turn+the+Page</url>
<date uts="1222279053">24 Sep 2008, 17:57</date>
<artist>
<name>Metallica</name>
<mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
<url>http://www.last.fm/music/Metallica</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
</track>
<track>
<name>Get Behind the Mule</name>
<mbid></mbid>
<url>www.last.fm/music/John+Hammond/_/Get+Behind+the+Mule</url>
<date uts="1220788948">7 Sep 2008, 12:02</date>
<artist>
<name>John Hammond</name>
<mbid>d83e599c-2d5a-44ec-b727-587e1455b1b5</mbid>
<url>http://www.last.fm/music/John+Hammond</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B000059T5O.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B000059T5O.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B000059T5O.01.MZZZZZZZ.jpg</image>
</track>
<track>
<name>Gin &amp; Juice</name>
<mbid></mbid>
<url>www.last.fm/music/Richard+Cheese/_/Gin%2B%2526%2BJuice</url>
<date uts="1220451345">3 Sep 2008, 14:15</date>
<artist>
<name>Richard Cheese</name>
<mbid>9bf79f68-c064-44a1-8c2c-5764f1d7c016</mbid>
<url>http://www.last.fm/music/Richard+Cheese</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12636483.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12636483.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12636483.jpg</image>
</track>
<track>
<name>Big Shot</name>
<mbid></mbid>
<url>www.last.fm/music/Billy+Joel/_/Big+Shot</url>
<date uts="1220009196">29 Aug 2008, 11:26</date>
<artist>
<name>Billy Joel</name>
<mbid>64b94289-9474-4d43-8c93-918ccc1920d1</mbid>
<url>http://www.last.fm/music/Billy+Joel</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/10084135.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/10084135.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/10084135.jpg</image>
</track>
<track>
<name>British Racing Green</name>
<mbid></mbid>
<url>www.last.fm/music/Black+Box+Recorder/_/British+Racing+Green</url>
<date uts="1220008476">29 Aug 2008, 11:14</date>
<artist>
<name>Black Box Recorder</name>
<mbid>49302df8-9e4f-42ed-8a9c-5d6f8d6cb83c</mbid>
<url>http://www.last.fm/music/Black+Box+Recorder</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/14320439.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/14320439.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/14320439.jpg</image>
</track>
<track>
<name>Bette Davis Eyes</name>
<mbid></mbid>
<url>www.last.fm/music/Kim+Carnes/_/Bette+Davis+Eyes</url>
<date uts="1217497756">31 Jul 2008, 09:49</date>
<artist>
<name>Kim Carnes</name>
<mbid>600c5212-a8e6-458e-bd3f-78b6fbfe329a</mbid>
<url>http://www.last.fm/music/Kim+Carnes</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/15223033.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/15223033.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/15223033.jpg</image>
</track>
<track>
<name>Too High to Fly</name>
<mbid></mbid>
<url>www.last.fm/music/Dokken/_/Too+High+to+Fly</url>
<date uts="1217166736">27 Jul 2008, 13:52</date>
<artist>
<name>Dokken</name>
<mbid>09ade3bd-b110-4277-b923-7dc32e6a3f92</mbid>
<url>http://www.last.fm/music/Dokken</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/19149665.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/19149665.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/19149665.jpg</image>
</track>
<track>
<name>If you've got it, you'll get it</name>
<mbid></mbid>
<url>www.last.fm/music/Jestofunk/_/If+you%27ve+got+it%2C+you%27ll+get+it</url>
<date uts="1217166132">27 Jul 2008, 13:42</date>
<artist>
<name>Jestofunk</name>
<mbid>cacb8596-f62d-4427-9cce-a90f453c3242</mbid>
<url>http://www.last.fm/music/Jestofunk</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00003ZKRV.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00003ZKRV.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00003ZKRV.01.MZZZZZZZ.jpg</image>
</track>
<track>
<name>The House of the Rising Sun</name>
<mbid></mbid>
<url>www.last.fm/music/The+Animals/_/The+House+of+the+Rising+Sun</url>
<date uts="1216485718">19 Jul 2008, 16:41</date>
<artist>
<name>The Animals</name>
<mbid>4d8afa16-4018-4ca8-8b5e-ede8f9314562</mbid>
<url>http://www.last.fm/music/The+Animals</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B000003BDD.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B000003BDD.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B000003BDD.01.MZZZZZZZ.jpg</image>
</track>
<track>
<name>Voodoo Child (Slight Return) (Live Version)</name>
<mbid></mbid>
<url>www.last.fm/music/G3/_/Voodoo+Child+%28Slight+Return%29+%28Live+Version%29</url>
<date uts="1216485074">19 Jul 2008, 16:31</date>
<artist>
<name>G3</name>
<mbid>ec676b1e-9586-479d-926b-25face38e87f</mbid>
<url>http://www.last.fm/music/G3</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/19784029.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/19784029.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/19784029.jpg</image>
</track>
<track>
<name>You're So Rude (Remastered Album Version)</name>
<mbid></mbid>
<url>www.last.fm/music/Faces/_/You%27re+So+Rude+%28Remastered+Album+Version%29</url>
<date uts="1216484895">19 Jul 2008, 16:28</date>
<artist>
<name>Faces</name>
<mbid>8c7a8406-f15a-408d-b0f6-23be813bdddc</mbid>
<url>http://www.last.fm/music/Faces</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8803083.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8803083.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8803083.jpg</image>
</track>
<track>
<name>Stardust Bubblegum</name>
<mbid></mbid>
<url>www.last.fm/music/Mother+Earth/_/Stardust+Bubblegum</url>
<date uts="1216484374">19 Jul 2008, 16:19</date>
<artist>
<name>Mother Earth</name>
<mbid>17058fed-f37e-4a3f-902f-062004040e5d</mbid>
<url>http://www.last.fm/music/Mother+Earth</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B000000OHI.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B000000OHI.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B000000OHI.01.MZZZZZZZ.jpg</image>
</track>
<track>
<name>Baker Street</name>
<mbid></mbid>
<url>www.last.fm/music/Gerry+Rafferty/_/Baker+Street</url>
<date uts="1216483922">19 Jul 2008, 16:12</date>
<artist>
<name>Gerry Rafferty</name>
<mbid>563201cb-721c-4cfb-acca-c1ba69e3d1fb</mbid>
<url>http://www.last.fm/music/Gerry+Rafferty</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B000007O5H.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B000007O5H.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B000007O5H.01.MZZZZZZZ.jpg</image>
</track>
<track>
<name>You Bring Me Down</name>
<mbid></mbid>
<url>www.last.fm/music/Sebastian+Bach/_/You+Bring+Me+Down</url>
<date uts="1216483425">19 Jul 2008, 16:03</date>
<artist>
<name>Sebastian Bach</name>
<mbid>50f10489-c87e-4df3-800f-be1f8d6bda4b</mbid>
<url>http://www.last.fm/music/Sebastian+Bach</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/14068171.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/14068171.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/14068171.jpg</image>
</track>
<track>
<name>The Glass Prison</name>
<mbid></mbid>
<url>www.last.fm/music/Dream+Theater/_/The+Glass+Prison</url>
<date uts="1216371514">18 Jul 2008, 08:58</date>
<artist>
<name>Dream Theater</name>
<mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
<url>http://www.last.fm/music/Dream+Theater</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
</track>
<track>
<name>The Pusher</name>
<mbid></mbid>
<url>www.last.fm/music/Steppenwolf/_/The+Pusher</url>
<date uts="1216371495">18 Jul 2008, 08:58</date>
<artist>
<name>Steppenwolf</name>
<mbid>12ff8858-bfcb-4812-a8dd-7e9debf0cbee</mbid>
<url>http://www.last.fm/music/Steppenwolf</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8673259.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8673259.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8673259.jpg</image>
</track>
<track>
<name>Take a Load Off Fanny</name>
<mbid></mbid>
<url>www.last.fm/music/Bob+Dylan/_/Take+a+Load+Off+Fanny</url>
<date uts="1216371490">18 Jul 2008, 08:58</date>
<artist>
<name>Bob Dylan</name>
<mbid>72c536dc-7137-4477-a521-567eeb840fa8</mbid>
<url>http://www.last.fm/music/Bob+Dylan</url>
</artist>
</track>
<track>
<name>Dreams</name>
<mbid></mbid>
<url>www.last.fm/music/Jason+Luckett/_/Dreams</url>
<date uts="1215774863">11 Jul 2008, 11:14</date>
<artist>
<name>Jason Luckett</name>
<mbid>97b552a7-5266-478e-98cf-c920a5e2cf42</mbid>
<url>http://www.last.fm/music/Jason+Luckett</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8695811.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8695811.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8695811.jpg</image>
</track>
<track>
<name>Hawking</name>
<mbid></mbid>
<url>www.last.fm/music/Paul+Gilbert/_/Hawking</url>
<date uts="1215709270">10 Jul 2008, 17:01</date>
<artist>
<name>Paul Gilbert</name>
<mbid>453321a7-3a77-47b0-8125-7bd385f3a730</mbid>
<url>http://www.last.fm/music/Paul+Gilbert</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/10025087.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/10025087.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/10025087.jpg</image>
</track>
<track>
<name>Guerilla Radio</name>
<mbid></mbid>
<url>www.last.fm/music/Richard+Cheese/_/Guerilla+Radio</url>
<date uts="1193534120">28 Oct 2007, 01:15</date>
<artist>
<name>Richard Cheese</name>
<mbid>9bf79f68-c064-44a1-8c2c-5764f1d7c016</mbid>
<url>http://www.last.fm/music/Richard+Cheese</url>
</artist>
</track>
<track>
<name>Cherries From My Neighbours Tree</name>
<mbid></mbid>
<url>www.last.fm/music/Tok+Tok+Tok/_/Cherries+From+My+Neighbours+Tree</url>
<date uts="1185382620">25 Jul 2007, 16:57</date>
<artist>
<name>Tok Tok Tok</name>
<mbid>97d9060d-2cd5-4acd-b44f-c39ea2da4753</mbid>
<url>http://www.last.fm/music/Tok+Tok+Tok</url>
</artist>
</track>
<track>
<name>For What It's Worth</name>
<mbid></mbid>
<url>www.last.fm/music/Buffalo+Springfield/_/For+What+It%27s+Worth</url>
<date uts="1183045192">28 Jun 2007, 15:39</date>
<artist>
<name>Buffalo Springfield</name>
<mbid>22dc19af-d085-4c9b-adfb-22ec256251f1</mbid>
<url>http://www.last.fm/music/Buffalo+Springfield</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/23906803.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/23906803.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/23906803.jpg</image>
</track>
<track>
<name>It's a Man's Man's Man's World</name>
<mbid></mbid>
<url>www.last.fm/music/James+Brown/_/It%27s+a+Man%27s+Man%27s+Man%27s+World</url>
<date uts="1176765638">16 Apr 2007, 23:20</date>
<artist>
<name>James Brown</name>
<mbid>20ff3303-4fe2-4a47-a1b6-291e26aa3438</mbid>
<url>http://www.last.fm/music/James+Brown</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/24491831.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/24491831.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/24491831.jpg</image>
</track>
<track>
<name>When It Was</name>
<mbid></mbid>
<url>www.last.fm/music/The+Brecker+Brothers/_/When+It+Was</url>
<date uts="1176245641">10 Apr 2007, 22:54</date>
<artist>
<name>The Brecker Brothers</name>
<mbid>46bdb0fa-6db1-44ea-b7b1-57de05b2cba1</mbid>
<url>http://www.last.fm/music/The+Brecker+Brothers</url>
</artist>
<image size="small">http://images.amazon.com/images/P/B0000001U2.03.MZZZZZZZ.jpg</image>
<image size="medium">http://images.amazon.com/images/P/B0000001U2.03.MZZZZZZZ.jpg</image>
<image size="large">http://images.amazon.com/images/P/B0000001U2.03.MZZZZZZZ.jpg</image>
</track>
<track>
<name>Is It Sweet? (LP Version)</name>
<mbid></mbid>
<url>www.last.fm/music/Bill+Frisell/_/Is+It+Sweet%3F+%28LP+Version%29</url>
<date uts="1176244958">10 Apr 2007, 22:42</date>
<artist>
<name>Bill Frisell</name>
<mbid>a21318db-f228-4a4d-8bce-6947a62985a5</mbid>
<url>http://www.last.fm/music/Bill+Frisell</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8619409.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8619409.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8619409.jpg</image>
</track>
<track>
<name>Lie in Our Graves</name>
<mbid></mbid>
<url>www.last.fm/music/Dave+Matthews+Band/_/Lie+in+Our+Graves</url>
<date uts="1175809360">5 Apr 2007, 21:42</date>
<artist>
<name>Dave Matthews Band</name>
<mbid>07e748f1-075e-428d-85dc-ce3be434e906</mbid>
<url>http://www.last.fm/music/Dave+Matthews+Band</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/23748033.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/23748033.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/23748033.jpg</image>
</track>
<track>
<name>Morning Dance</name>
<mbid></mbid>
<url>www.last.fm/music/Spyro+Gyra/_/Morning+Dance</url>
<date uts="1163006139">8 Nov 2006, 17:15</date>
<artist>
<name>Spyro Gyra</name>
<mbid>9a7c8025-1af8-42cd-8df8-857220610bc5</mbid>
<url>http://www.last.fm/music/Spyro+Gyra</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/15534973.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/15534973.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/15534973.jpg</image>
</track>
<track>
<name>I Love My Computer</name>
<mbid></mbid>
<url>www.last.fm/music/Bad+Religion/_/I+Love+My+Computer</url>
<date uts="1162310037">31 Oct 2006, 15:53</date>
<artist>
<name>Bad Religion</name>
<mbid>149e6720-4e4a-41a4-afca-6d29083fc091</mbid>
<url>http://www.last.fm/music/Bad+Religion</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/23060375.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/23060375.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/23060375.jpg</image>
</track>
<track>
<name>My Lover's Box</name>
<mbid></mbid>
<url>www.last.fm/music/Garbage/_/My+Lover%27s+Box</url>
<date uts="1152024200">4 Jul 2006, 14:43</date>
<artist>
<name>Garbage</name>
<mbid>f9ef7a22-4262-4596-a2a8-1d19345b8e50</mbid>
<url>http://www.last.fm/music/Garbage</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8593715.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8593715.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8593715.jpg</image>
</track>
<track>
<name>Melbourne Song</name>
<mbid></mbid>
<url>www.last.fm/music/Colin+Hay/_/Melbourne+Song</url>
<date uts="1150984166">22 Jun 2006, 13:49</date>
<artist>
<name>Colin Hay</name>
<mbid>864d7069-57dc-45f6-b408-875b35106dd3</mbid>
<url>http://www.last.fm/music/Colin+Hay</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8635917.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8635917.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8635917.jpg</image>
</track>
<track>
<name>La Femme d'argent</name>
<mbid></mbid>
<url>www.last.fm/music/Air/_/La+Femme+d%27argent</url>
<date uts="1150979678">22 Jun 2006, 12:34</date>
<artist>
<name>Air</name>
<mbid>cb67438a-7f50-4f2b-a6f1-2bb2729fd538</mbid>
<url>http://www.last.fm/music/Air</url>
</artist>
<image size="small">http://images-eu.amazon.com/images/P/B0000262YS.02.THUMBZZZ.jpg</image>
<image size="medium">http://images-eu.amazon.com/images/P/B0000262YS.02.MZZZZZZZ.jpg</image>
<image size="large">http://images-eu.amazon.com/images/P/B0000262YS.02.LZZZZZZZ.jpg</image>
</track>
<track>
<name>Pony the Funk</name>
<mbid></mbid>
<url>www.last.fm/music/International+Pony/_/Pony+the+Funk</url>
<date uts="1150969541">22 Jun 2006, 09:45</date>
<artist>
<name>International Pony</name>
<mbid>685e3fa1-d4da-452b-b351-39f9fa3327c5</mbid>
<url>http://www.last.fm/music/International+Pony</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/23011205.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/23011205.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/23011205.jpg</image>
</track>
<track>
<name>Downtown</name>
<mbid></mbid>
<url>www.last.fm/music/Tom+Waits/_/Downtown</url>
<date uts="1150908458">21 Jun 2006, 16:47</date>
<artist>
<name>Tom Waits</name>
<mbid>c3aeb863-7b26-4388-94e8-5a240f2be21b</mbid>
<url>http://www.last.fm/music/Tom+Waits</url>
</artist>
</track>
<track>
<name>Welcome Home (Sanitarium)</name>
<mbid></mbid>
<url>www.last.fm/music/Metallica/_/Welcome+Home+%28Sanitarium%29</url>
<date uts="1150886900">21 Jun 2006, 10:48</date>
<artist>
<name>Metallica</name>
<mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
<url>http://www.last.fm/music/Metallica</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/8622967.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/8622967.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/8622967.jpg</image>
</track>
<track>
<name>White Room</name>
<mbid></mbid>
<url>www.last.fm/music/Eric+Clapton/_/White+Room</url>
<date uts="0">1 Jan 1970, 00:00</date>
<artist>
<name>Eric Clapton</name>
<mbid>618b6900-0618-4f1e-b835-bccb17f84294</mbid>
<url>http://www.last.fm/music/Eric+Clapton</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/4114211.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/4114211.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/4114211.jpg</image>
</track>
<track>
<name>Paris Train</name>
<mbid></mbid>
<url>www.last.fm/music/Beth+Orton/_/Paris+Train</url>
<date uts="0">1 Jan 1970, 00:00</date>
<artist>
<name>Beth Orton</name>
<mbid>214d84a5-e9e5-4432-af95-8c84da7ba4c0</mbid>
<url>http://www.last.fm/music/Beth+Orton</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/14169919.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/14169919.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/14169919.jpg</image>
</track>
<track>
<name>Smut</name>
<mbid></mbid>
<url>www.last.fm/music/Tom+Lehrer/_/Smut</url>
<date uts="0">1 Jan 1970, 00:00</date>
<artist>
<name>Tom Lehrer</name>
<mbid>359363a8-1dc7-40c9-9337-f5aa507000b6</mbid>
<url>http://www.last.fm/music/Tom+Lehrer</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12619575.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12619575.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12619575.jpg</image>
</track>
<track>
<name>I Wants To Stay Here</name>
<mbid></mbid>
<url>www.last.fm/music/Ella+Fitzgerald/_/I+Wants+To+Stay+Here</url>
<date uts="0">1 Jan 1970, 00:00</date>
<artist>
<name>Ella Fitzgerald</name>
<mbid>54799c0e-eb45-4eea-996d-c4d71a63c499</mbid>
<url>http://www.last.fm/music/Ella+Fitzgerald</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/12618629.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/12618629.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/12618629.jpg</image>
</track>
<track>
<name>The One That Got Away</name>
<mbid></mbid>
<url>www.last.fm/music/Tom+Waits/_/The+One+That+Got+Away</url>
<date uts="0">1 Jan 1970, 00:00</date>
<artist>
<name>Tom Waits</name>
<mbid>c3aeb863-7b26-4388-94e8-5a240f2be21b</mbid>
<url>http://www.last.fm/music/Tom+Waits</url>
</artist>
<image size="small">http://images-eu.amazon.com/images/P/B000002GY9.02.THUMBZZZ.jpg</image>
<image size="medium">http://images-eu.amazon.com/images/P/B000002GY9.02.MZZZZZZZ.jpg</image>
<image size="large">http://images-eu.amazon.com/images/P/B000002GY9.02.LZZZZZZZ.jpg</image>
</track>
<track>
<name>180 Degrees</name>
<mbid></mbid>
<url>www.last.fm/music/NOFX/_/180+Degrees</url>
<date uts="0">1 Jan 1970, 00:00</date>
<artist>
<name>NOFX</name>
<mbid>dcaa4f81-bfb7-44eb-8594-4e74f004b6e4</mbid>
<url>http://www.last.fm/music/NOFX</url>
</artist>
<image size="small">http://images-eu.amazon.com/images/P/B0000248LI.02.THUMBZZZ.jpg</image>
<image size="medium">http://images-eu.amazon.com/images/P/B0000248LI.02.MZZZZZZZ.jpg</image>
<image size="large">http://images-eu.amazon.com/images/P/B0000248LI.02.LZZZZZZZ.jpg</image>
</track>
</lovedtracks></lfm>

270
test/test_user.py Normal file
View File

@ -0,0 +1,270 @@
#!/usr/bin/env python
__author__ = "Abhinav Sarkar <abhinav@abhinavsarkar.net>"
__version__ = "0.2"
__license__ = "GNU Lesser General Public License"
import unittest
import datetime
import sys, os
from wsgi_intercept.urllib2_intercept import install_opener
import wsgi_intercept
from wsgi_test_app import create_wsgi_app
install_opener()
wsgi_intercept.add_wsgi_intercept('ws.audioscrobbler.com', 80, create_wsgi_app)
sys.path.append(os.path.dirname(os.path.dirname(__file__)))
from lastfm import Api
class TestUser(unittest.TestCase):
""" A test class for the Geo module. """
def setUp(self):
self.user = api.get_user('RJ')
def tearDown(self):
pass
def testUserStats(self):
self.assertAlmostEqual(self.user.nearest_neighbour.stats.match, 0.000826, 5)
def testUserPastEvents(self):
self.assertEqual([e.id for e in self.user.past_events[:5]],
[755511, 879065, 842991, 457062, 394026])
def testUserFriends(self):
friends = ['lobsterclaw', 'jajo', 'mremond', 'Orlenay', 'schlagschnitzel',
'Edouard', 'naniel', 'dunk', 'RUPERT', 'mxcl']
self.assertEqual([f.name for f in self.user.friends[:10]], friends)
def testUserNeighbours(self):
neighbours = ['Lucas-Lentini', 'rockerD82', 'count-bassy', 'greg_a',
'STLJA', 'clauaud', 'Biaxident_', 'frood73', 'fillito',
'CHBeat']
self.assertEqual([n.name for n in self.user.neighbours[:10]],
neighbours)
def testUserNearestNeighbour(self):
self.assertEqual(self.user.nearest_neighbour.name, 'Lucas-Lentini')
def testUserPlaylists(self):
self.assertEqual([p.id for p in self.user.playlists],
[5606, 2615079, 2614993, 2612216])
def testUserLovedTracks(self):
tracks = [('Young', 'Mokele'),
('Hell March', 'Frank Klepacki'),
('Summertime', 'Will Smith'),
('Calm', 'Wayne Shorter'),
('The One and Only', 'Chesney Hawkes'),
('Cliffs of Dover', 'Eric Johnson'),
('Orion (Instrumental)', 'Metallica'),
('Whiskey in the Jar', 'Metallica'),
('Loverman', 'Metallica'),
('Turn the Page', 'Metallica')]
self.assertEqual([(t.name, t.artist.name) for t in self.user.loved_tracks[:10]],
tracks)
def testUserRecentTracks(self):
tracks = [('Sahara', 'Cutting Crew'),
("Don't Look Back", 'Cutting Crew'),
('(I Just) Died in Your Arms', 'Cutting Crew'),
('Fear of Falling', 'Cutting Crew'),
('Life in a Dangerous Time', 'Cutting Crew'),
("I've Been in Love Before", 'Cutting Crew'),
('One for the Mockingbird', 'Cutting Crew'),
('Any Colour', 'Cutting Crew'),
('Brag', 'Cutting Crew'),
('Binkies Return', 'Cutting Crew')]
self.assertEqual([(t.name, t.artist.name) for t in self.user.recent_tracks[:10]],
tracks)
def testUserMostRecentTrack(self):
mrt = self.user.most_recent_track
self.assertEquals((mrt.name, mrt.artist.name), ('Sahara', 'Cutting Crew'))
def testUserTopAlbums(self):
albums = [('Slave To The Grid', 'Skid Row'),
('Images and Words', 'Dream Theater'),
('Once in a Livetime', 'Dream Theater'),
("Nina Simone's Finest Hour", 'Nina Simone'),
('Sex and Religion', 'Steve Vai'),
('title', "Slamin' Gladys"),
('Time Bomb', 'Buckcherry'),
('Day for Night', "Spock's Beard"),
('Liquid Tension Experiment', 'Liquid Tension Experiment'),
('Rage Against the Machine', 'Rage Against the Machine')]
self.assertEqual([(a.name, a.artist.name) for a in self.user.top_albums[:10]],
albums)
def testUserTopAlbum(self):
ta = self.user.top_album
self.assertEqual((ta.name, ta.artist.name), ('Slave To The Grid', 'Skid Row'))
def testUserTopArtists(self):
artists = ['Dream Theater', 'Dire Straits', 'Miles Davis', 'Metallica',
"Guns N' Roses", 'Aerosmith', 'Joe Satriani',
'Rage Against the Machine', 'Led Zeppelin', 'Buckcherry']
self.assertEqual([a.name for a in self.user.top_artists[:10]],
artists)
def testUserTopArtist(self):
self.assertEqual(self.user.top_artist.name, 'Dream Theater')
def testUserTopTracks(self):
tracks = [('Learning to Live', 'Dream Theater'),
('Three Minute Warning', 'Liquid Tension Experiment'),
('Pull Me Under', 'Dream Theater'),
('Take the Time', 'Dream Theater'),
('Under a Glass Moon', 'Dream Theater'),
('Another Day', 'Dream Theater'),
('The Pusher', 'Steppenwolf'),
('Sultans of Swing', 'Dire Straits'),
('Wait for Sleep', 'Dream Theater'),
('Caught in a Web', 'Dream Theater')]
self.assertEqual( [(t.name, t.artist.name) for t in self.user.top_tracks[:10]],
tracks)
def testUserTopTrack(self):
tt = self.user.top_track
self.assertEquals((tt.name, tt.artist.name),
('Learning to Live', 'Dream Theater'))
def testUserTopTags(self):
tags = ['rock', 'jazz', 'metal', 'mellow', '80s',
'guitar', 'checkitout', 'funky', 'stoner rock', 'funk']
self.assertEquals([t.name for t in self.user.top_tags[:10]], tags)
def testUserTopTag(self):
self.assertEquals(self.user.top_tag.name, 'rock')
def testUserWeeklyChartList(self):
wcl = [('Sun, 13 Feb 2005', 'Sun, 20 Feb 2005'),
('Sun, 20 Feb 2005', 'Sun, 27 Feb 2005'),
('Sun, 27 Feb 2005', 'Sun, 06 Mar 2005'),
('Sun, 13 Mar 2005', 'Sun, 20 Mar 2005'),
('Sun, 20 Mar 2005', 'Sun, 27 Mar 2005'),
('Sun, 27 Mar 2005', 'Sun, 03 Apr 2005'),
('Sun, 03 Apr 2005', 'Sun, 10 Apr 2005'),
('Sun, 10 Apr 2005', 'Sun, 17 Apr 2005'),
('Sun, 17 Apr 2005', 'Sun, 24 Apr 2005'),
('Sun, 01 May 2005', 'Sun, 08 May 2005')]
self.assertEqual(
[
(
wc.start.date().strftime('%a, %d %b %Y'),
wc.end.date().strftime('%a, %d %b %Y')
)
for wc in self.user.weekly_chart_list[:10]
],
wcl
)
def testUserGetWeeklyArtistChart(self):
artists = ['Dream Theater', 'R.E.M.', 'Metallica', 'The Smashing Pumpkins',
'Counting Crows', 'Ludwig van Beethoven', 'Johann Sebastian Bach',
'Mr. Big', 'Muse', 'Bruce Springsteen']
wc = self.user.weekly_chart_list[0]
self.assertEqual(
[artist.name
for artist in self.user.get_weekly_artist_chart(wc.start, wc.end).artists[:10]],
artists)
def testUserGetWeeklyAlbumChart(self):
albums = [('1962-1966: The Red Album', 'The Beatles', 1),
('The X List (Disc 2)', 'Placebo', 1),
('Killing Ground', 'Saxon', 1),
('Thriller', 'Michael Jackson', 1),
('Deep Purple Hit The Road - Mk 2 & Mk 3', 'Deep Purple', 1),
('Youth and Young Manhood', 'Kings of Leon', 1),
('The Greyest of Blue Skies', 'Finger Eleven', 1),
('Ultra', 'Depeche Mode', 1),
('Sing the Sorrow', 'AFI', 1),
('Reckless', 'Bryan Adams', 1)]
wc = self.user.weekly_chart_list[0]
self.assertEqual(
[(album.name, album.artist.name, album.stats.playcount)
for album in self.user.get_weekly_album_chart(wc.start, wc.end).albums[:10]],
albums)
def testUserGetWeeklyTrackChart(self):
tracks = [('This Is Love', 'PJ Harvey', 2),
('Track 06', 'Muse', 1),
('Snail', 'The Smashing Pumpkins', 1),
('The Struggle Within', 'Metallica', 1),
('Burn', 'Deep Purple', 1),
('Loaded', 'Deacon Blue', 1),
('Anything Goes', 'Frank Sinatra', 1),
('Flying Home', 'Stanley Jordan', 1),
('Blackmail', 'John Lee Hooker & Miles Davis', 1),
("Ladie's Nite In Buffalo-", 'David Lee Roth', 1)]
wc = self.user.weekly_chart_list[0]
self.assertEqual(
[(track.name, track.artist.name, track.stats.playcount)
for track in self.user.get_weekly_track_chart(wc.start, wc.end).tracks[:10]],
tracks)
def testUserCompare(self):
tm = self.user.compare('abhin4v')
self.assertAlmostEqual(tm.score, 0.81405, 4)
self.assertEqual([a.name for a in tm.artists],
['Coldplay', 'Red Hot Chili Peppers', 'The Killers', 'The Beatles', 'U2'])
def testUserLibraryAlbums(self):
albums = [('Dire Straits', 'Dire Straits', 126),
('The History of Rock', 'Kid Rock', 125),
('Awake', 'Dream Theater', 124),
('And All That Could Have Been', 'Nine Inch Nails', 124),
('A Night at the Hip Hopera', 'The Kleptones', 124),
('Doggystyle', 'Snoop Dogg', 124),
('Evergreen', 'Echo & the Bunnymen', 122),
('Falling Into Infinity', 'Dream Theater', 121),
('Blood Sugar Sex Magik', 'Red Hot Chili Peppers', 117),
('The Very Best of Level 42', 'Level 42', 116)]
self.assertEqual([(album.name, album.artist.name, album.stats.playcount)
for album in self.user.library.albums[10:20]], albums)
def testUserLibraryArtists(self):
artists = ['Mr. Big', 'Jimi Hendrix', 'Nine Inch Nails',
'Nina Simone', 'Red Hot Chili Peppers', 'Snoop Dogg',
'Counting Crows', 'Def Leppard', 'Firebird', 'Free']
self.assertEqual([artist.name for artist
in self.user.library.artists[10:20]], artists)
def testUserLibraryTracks(self):
tracks = [('All Right Now', 'Free', 30),
('Surfing With the Alien', 'Joe Satriani', 30),
('Cowboys', 'Portishead', 29),
('Trial of Tears', 'Dream Theater', 29),
('All Along the Watchtower', 'Jimi Hendrix', 28),
('Surrounded', 'Dream Theater', 28),
('Closer', 'Nine Inch Nails', 28),
('The Glass Prison', 'Dream Theater', 28),
('Superstition', 'Stevie Wonder', 28),
('Hollow Years', 'Dream Theater', 28)]
self.assertEqual([(track.name, track.artist.name, track.stats.playcount)
for track in self.user.library.tracks[10:20]], tracks)
apikey = "152a230561e72192b8b0f3e42362c6ff"
api = Api(apikey, no_cache = True)
data = {
'name': 'RJ',
'real_name': 'Richard Jones ',
'url': 'http://www.last.fm/user/RJ',
'image': {'large': 'http://userserve-ak.last.fm/serve/126/8270359.jpg',
'medium': 'http://userserve-ak.last.fm/serve/64/8270359.jpg',
'small': 'http://userserve-ak.last.fm/serve/34/8270359.jpg'},
'autheticated': False,
'events': [api.get_event(834368)]
}
for k,v in data.iteritems():
def testFunc(self):
self.assertEqual(getattr(self.user, k), v)
setattr(TestUser, "testUser%s" % k.replace('_', ' ').title().replace(' ', ''), testFunc)
test_suite = unittest.TestLoader().loadTestsFromTestCase(TestUser)
if __name__ == '__main__':
unittest.main()