- Follow along at http://w3.org/brief/MTc1
- Last modified: 2009-06-09
- This work is licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License, with attribution to Cambridge Semantics.

SPARQL is the query language of the Semantic Web. It lets us:
SERVICE <http://uu3.org:8888/7tm_receptors>
{
?iuphar iface:family ?family .
?iuphar iface:code ?code .
?iuphar iface:iupharName ?iupharNm .
?human iface:iuphar ?iuphar .
?human iface:geneName "GABBR1" .
?human iface:entrezGene ?humanEntrez .
}
SERVICE <http://dbpedia.org/sparql?default-graph-uri=http%3A%2F%2Fdbpedia.org&should-sponge=&>
{
_:gene dbp:entrezgene ?humanEntrez ;
rdfs:label ?label ;
FILTER (lang(?label) = "en")
}
SERVICE <http://hcls.deri.org/atag/data/gabab_example.html>
{
?topic rdfs:label ?label .
?post sioc:topic ?topic
}
SPARQL is the query language of the Semantic Web. It lets us:

A SPARQL query comprises, in order:
# prefix declarations PREFIX foo: <http://example.com/resources/> ... # dataset definition FROM ... # result clause SELECT ... # query pattern WHERE { ... } # query modifiers ORDER BY ...
@prefix card: <http://www.w3.org/People/Berners-Lee/card#> . @prefix foaf: <http://xmlns.com/foaf/0.1/> . card:i foaf:name "Timothy Berners-Lee" . <http://bblfish.net/people/henry/card#me> foaf:name "Henry Story" . <http://www.cambridgesemantics.com/people/about/lee> foaf:name "Lee Feigenbaum" . card:amy foaf:name "Amy van der Hiel" . ...
In the graph http://www.w3.org/People/Berners-Lee/card, find me all subjects (?person) and objects (?name) linked with the foaf:name predicate. Then return all the values of ?name. In other words, find all names mentioned in Tim Berners-Lee's FOAF file.
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?name
WHERE {
?person foaf:name ?name .
}
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?name
WHERE {
?person foaf:name ?name .
}
Given:
SELECT ?p ?o
{
<http://nasa.dataincubator.org/spacecraft/1968-089A> ?p ?o
}
(query)
Find me all the people in Tim Berners-Lee's FOAF file that have names and email addresses. Return each person's URI, name, and email address.
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT *
WHERE {
?person foaf:name ?name .
?person foaf:mbox ?email .
}
Try it with HP's ARQ, OpenLink's Virtuoso, or Redland's Rasqal. (Expected results.)
What URL does this database use for "Apollo 7"?
What is the (NASA) homepage for the mission?
Given the Talis endpoint:
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?craft ?homepage
{
?craft foaf:name "Apollo 7" .
?craft foaf:homepage ?homepage
}
(query)
Find me the homepage of anyone known by Tim Berners-Lee.
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX card: <http://www.w3.org/People/Berners-Lee/card#>
SELECT ?homepage
FROM <http://www.w3.org/People/Berners-Lee/card>
WHERE {
card:i foaf:knows ?known .
?known foaf:homepage ?homepage .
}

Try it with HP's ARQ, OpenLink's Virtuoso, or Redland's Rasqal. (Expected results.)
Given, the Talis endpoint:
PREFIX space: <http://purl.org/net/schemas/space/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?disc ?label
{
<http://nasa.dataincubator.org/spacecraft/1968-089A> space:discipline ?disc .
?disc rdfs:label ?label
}
(query)
Find me 50 example concepts in the DBPedia dataset.
SELECT DISTINCT ?concept
WHERE {
?s a ?concept .
} LIMIT 50
Try it with a DBPedia-specific SPARQL endpoint. (Expected results.)
Given:
PREFIX space: <http://purl.org/net/schemas/space/>
SELECT ?craft
{
?craft a space:Spacecraft
}
LIMIT 50
(query)
Find me all landlocked countries with a population greater than 15 million.
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX type: <http://dbpedia.org/class/yago/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT ?country_name ?population
WHERE {
?country a type:LandlockedCountries ;
rdfs:label ?country_name ;
prop:populationEstimate ?population .
FILTER (?population > 15000000) .
}
Try it with one of DBPedia's SPARQL endpoint. (Expected results.)
Given, the Talis endpoint:
PREFIX space: <http://purl.org/net/schemas/space/>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT *
{ ?launch space:launched ?date
FILTER (
?date > "1968-10-1"^^xsd:date &&
?date < "1968-10-30"^^xsd:date
)
}
(query)
Find me all landlocked countries with a population greater than 15 million (revisited), with the highest population country first.
PREFIX type: <http://dbpedia.org/class/yago/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT ?country_name ?population
WHERE {
?country a type:LandlockedCountries ;
rdfs:label ?country_name ;
prop:populationEstimate ?population .
FILTER (?population > 15000000 && langMatches(lang(?country_name), "EN")) .
} ORDER BY DESC(?population)
Try it with a DBPedia-specific SPARQL endpoint. (Expected results.)
Find all Jamendo artists along with their image, home page, and the location they're near.
PREFIX mo: <http://purl.org/ontology/mo/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?name ?img ?hp ?loc
WHERE {
?a a mo:MusicArtist ;
foaf:name ?name ;
foaf:img ?img ;
foaf:homepage ?hp ;
foaf:based_near ?loc .
}
Try it with DBTune.org's Jamendo-specific SPARQL endpoint. Be sure to choose SPARQL rather than SeRQL. (Expected results.)
Find all Jamendo artists along with their image, home page, and the location they're near, if any.
PREFIX mo: <http://purl.org/ontology/mo/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?name ?img ?hp ?loc
WHERE {
?a a mo:MusicArtist ;
foaf:name ?name .
OPTIONAL { ?a foaf:img ?img }
OPTIONAL { ?a foaf:homepage ?hp }
OPTIONAL { ?a foaf:based_near ?loc }
}
Try it with DBTune.org's Jamendo-specific SPARQL endpoint. Be sure to choose SPARQL rather than SeRQL. (Expected results.)
Find me the cellular processes that are either integral to or a refinement of signal transduction.
PREFIX go: <http://purl.org/obo/owl/GO#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX obo: <http://www.obofoundry.org/ro/ro.owl#>
SELECT DISTINCT ?label ?process
WHERE {
{ ?process obo:part_of go:GO_0007165 } # integral to
UNION
{ ?process rdfs:subClassOf go:GO_0007165 } # refinement of
?process rdfs:label ?label
}
Try it with the HCLS knowledgebase SPARQL endpoint. (Expected results.)
Find me people who have been involved with at least three ISWC or ESWC conference events.
SELECT DISTINCT ?person
WHERE {
?person foaf:name ?name .
GRAPH ?g1 { ?person a foaf:Person }
GRAPH ?g2 { ?person a foaf:Person }
GRAPH ?g3 { ?person a foaf:Person }
FILTER(?g1 != ?g2 && ?g1 != ?g3 && ?g2 != ?g3) .
}
Try it with the data.semanticweb.org SPARQL endpoint. (Expected results.)
Convert FOAF data to VCard data.
PREFIX vCard: <http://www.w3.org/2001/vcard-rdf/3.0#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
CONSTRUCT {
?X vCard:FN ?name .
?X vCard:URL ?url .
?X vCard:TITLE ?title .
}FROM <http://www.w3.org/People/Berners-Lee/card>
WHERE {
OPTIONAL { ?X foaf:name ?name . FILTER isLiteral(?name) . }
OPTIONAL { ?X foaf:homepage ?url . FILTER isURI(?url) . }
OPTIONAL { ?X foaf:title ?title . FILTER isLiteral(?title) . }
}
Try it with HP's ARQ or OpenLink's Virtuoso. (Expected results.)
Is the Amazon river longer than the Nile River?
PREFIX prop: <http://dbpedia.org/property/>
ASK
{
<http://dbpedia.org/resource/Amazon_River> prop:length ?amazon .
<http://dbpedia.org/resource/Nile> prop:length ?nile .
FILTER(?amazon > ?nile) .
}
Try it with the Virtuoso DBPedia SPARQL endpoint. (Expected results. - or are they??)
Tell me whatever you'd like to tell me about the Ford Motor Company.
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
DESCRIBE ?ford WHERE {
?ford foaf:name "FORD MOTOR CO" .
}
Try it with the EDGAR-specific SPARQL endpoint. (Expected results.)
Find me members of the Senate Armed Service committee's Strategic Forces subcommittee who do not also serve on the Personnel subcommittee.
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?name
WHERE {
# find members in the Strategic Forces subcommittee
<http://www.rdfabout.com/rdf/usgov/congress/committees/SenateArmedServices/StrategicForces>
foaf:member ?member .
OPTIONAL {
# find out if this same member is in the Personnel
# subcommittee - but call him/her something different
# (?member2)
<http://www.rdfabout.com/rdf/usgov/congress/committees/SenateArmedServices/Personnel>
foaf:member ?member2 .
FILTER (?member2 = ?member) .
}
# keep only those rows that failed to find a ?member2
# (member of Personnel subcommittee)
FILTER (!bound(?member2)) .
?member foaf:name ?name .
}
Try it with the GovTrack-specific SPARQL endpoint. (Expected results.)
What are the top interests of LiveJournal users interested in Harry Potter?
PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT ?interest COUNT(*) AS ?count where { ?p foaf:interest <http://www.livejournal.com/interests.bml?int=harry+potter> . ?p foaf:interest ?interest } GROUP BY ?interest ORDER BY DESC(COUNT(*)) LIMIT 10
Try it with the Virtuoso Linked Open Data endpoint. (Expected results.)
Retrieve the second page of names and emails of people in Tim Berners-Lee's FOAF file, given that each page has 10 people.
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?name ?email
FROM <http://www.w3.org/People/Berners-Lee/card>
WHERE {
?person foaf:name ?name .
OPTIONAL { ?person foaf:mbox ?email }
} ORDER BY ?name LIMIT 10 OFFSET 10
Retrieve the second page of names and emails of people in Tim Berners-Lee's FOAF file, given that each page has 10 people.
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?name ?email
FROM <http://www.w3.org/People/Berners-Lee/card>
WHERE {
{ SELECT DISTINCT ?person ?name WHERE {
?person foaf:name ?name
} ORDER BY ?name LIMIT 10 OFFSET 10 }
OPTIONAL { ?person foaf:mbox ?email }
}
Find me countries with 'Republic' in their name that were established before 1920.
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX type: <http://dbpedia.org/class/yago/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT ?lbl ?est
WHERE {
?country rdfs:label ?lbl .
FILTER(bif:contains(?lbl, "Republic")) .
?country a type:Country108544813 ;
prop:establishedDate ?est .
FILTER(?est < "1920-01-01"^^xsd:date) .
}
Try it with the Virtuoso DBPedia SPARQL endpoint. (Expected results.)
SPARQL CONSTRUCTs can be used as input for:
| name |
|---|
| "mc schraefel" |
| "John Klensin" |
| "Libby Miller" |
| "Henrik Nielsen" |
| "John Markoff" |
| "Edd Dumbill" |
| "Nicholas Gibbins" |
| "Daniel Krech" |
| "Coralie Mercier" |
| "Norman Walsh" |
| "Les Carr" |
| "Shinnyih Huang" |
| "Philippe Le Hégaret" |
| "Oshani Seneviratne" |
| "Joe Lambda" |
| "Lalana Kagal" |
| "Karl Dubost" |
| "Bijan Parsia" |
| "John Seely Brown" |
| "Robert Hoffmann" |
| "Henry Story" |
| "Kjetil Kjernsmo" |
| "Håkon Wium Lie" |
| "Eric Miller" |
| "Charles McCathieNevile" |
| "Ira Fuchs" |
| "Aaron Swartz" |
| "Ian Jacobs" |
| "Dave Beckett" |
| "Yolanda Gill" |
| "Dean Jackson" |
| "Nigel Shadbolt" |
| "Jim Hendler" |
| "Dan Connolly" |
| "Christoph Bussler" |
| "Susie Stephens" |
| "John Gage" |
| "Ivan Herman" |
| "Sean Palmer" |
| "Lee Feigenbaum" |
| "World Wide Web Consortium" |
| "Peter Szolovits" |
| "Danny Ayers" |
| "Ora Lassila" |
| "Daniel J Weitzner" |
| "Jennifer Golbeck" |
| "Timothy Berners-Lee" |
| "Kingsley Idehen" |
| "Tim Bray" |
| "Wendy Hall" |
| "Simon J. Hernandez" |
| "Amy van der Hiel" |
| person | name | |
|---|---|---|
| <http://www.w3.org/People/karl/karl-foaf.xrdf#me> | "Karl Dubost" | <mailto:karl@w3.org> |
| <http://www.w3.org/People/Berners-Lee/card#amy> | "Amy van der Hiel" | <mailto:amy@w3.org> |
| <http://www.w3.org/People/Berners-Lee/card#edd> | "Edd Dumbill" | <mailto:edd@xmlhack.com> |
| <http://www.w3.org/People/Berners-Lee/card#dj> | "Dean Jackson" | <mailto:dean@w3.org> |
| <http://www.w3.org/People/Berners-Lee/card#edd> | "Edd Dumbill" | <mailto:edd@usefulinc.com> |
| <http://www.aaronsw.com/about.xrdf#aaronsw> | "Aaron Swartz" | <mailto:me@aaronsw.com> |
| <http://www.w3.org/People/Berners-Lee/card#i> | "Timothy Berners-Lee" | <mailto:timbl@w3.org> |
| <http://www.w3.org/People/EM/contact#me> | "Eric Miller" | <mailto:em@w3.org> |
| <http://www.w3.org/People/Berners-Lee/card#edd> | "Edd Dumbill" | <mailto:edd@xml.com> |
| <http://www.w3.org/People/Berners-Lee/card#dj> | "Dean Jackson" | <mailto:dino@grorg.org> |
| <http://www.w3.org/People/Berners-Lee/card#libby> | "Libby Miller" | <mailto:libby.miller@bristol.ac.uk> |
| <http://www.w3.org/People/Connolly/#me> | "Dan Connolly" | <mailto:connolly@w3.org> |
| homepage |
|---|
| <http://purl.org/net/eric/> |
| <http://www.mellon.org/about_foundation/staff/program-area-staff/irafuchs> |
| <http://www.johnseelybrown.com/> |
| <http://heddley.com/edd/> |
| concept |
|---|
| http://www.w3.org/1999/02/22-rdf-syntax-ns#Property |
| http://xmlns.com/foaf/0.1/Person |
| http://dbpedia.org/class/yago/Landmark108624891 |
| http://dbpedia.org/class/Book |
| http://www.w3.org/2004/02/skos/core#Concept |
| http://dbpedia.org/class/yago/CoastalCities |
| http://dbpedia.org/class/yago/AmericanAbolitionists |
| http://dbpedia.org/class/yago/AssassinatedAmericanPoliticians |
| http://dbpedia.org/class/yago/AssassinatedUnitedStatesPresidents |
| http://dbpedia.org/class/yago/Duellists |
| http://dbpedia.org/class/yago/IllinoisLawyers |
| http://dbpedia.org/class/yago/IllinoisPoliticians |
| http://dbpedia.org/class/yago/IllinoisRepublicans |
| http://dbpedia.org/class/yago/PeopleFromColesCounty,Illinois |
| http://dbpedia.org/class/yago/PeopleFromSpringfield,Illinois |
| http://dbpedia.org/class/yago/AristotelianPhilosophers |
| http://dbpedia.org/class/yago/AncientGreekMathematicians |
| http://dbpedia.org/class/yago/AncientGreekPhysicists |
| http://dbpedia.org/class/yago/AncientGreekPhilosophers |
| http://dbpedia.org/class/yago/Cosmologists |
| http://dbpedia.org/class/yago/Empiricists |
| http://dbpedia.org/class/yago/GreekLogicians |
| http://dbpedia.org/class/yago/Meteorologists |
| http://dbpedia.org/class/yago/PeripateticPhilosophers |
| http://dbpedia.org/class/yago/Philosophers |
| http://dbpedia.org/class/yago/PhilosophersOfLanguage |
| http://dbpedia.org/class/yago/PhilosophersOfLaw |
| http://dbpedia.org/class/yago/PhilosophersOfMind |
| http://dbpedia.org/class/yago/PoliticalPhilosophers |
| http://dbpedia.org/class/yago/ActingTheorists |
| http://dbpedia.org/class/yago/RhetoricTheorists |
| http://dbpedia.org/class/yago/1996Films |
| http://dbpedia.org/class/yago/Catalan-languageFilms |
| http://dbpedia.org/class/yago/1986Books |
| http://dbpedia.org/class/yago/AmericanFilmDirectors |
| http://dbpedia.org/class/yago/ExpatriatesInTheUnitedStates |
| http://dbpedia.org/class/yago/AtheistPhilosophers |
| http://dbpedia.org/class/yago/AmericanNovels |
| http://dbpedia.org/class/yago/DystopianNovels |
| http://dbpedia.org/class/yago/LandlockedCountries |
| http://dbpedia.org/class/yago/MotileCells |
| http://dbpedia.org/class/yago/CharacterSets |
| http://dbpedia.org/class/yago/LatinAlphabetRepresentations |
| http://dbpedia.org/class/yago/PresentationLayerProtocols |
| http://dbpedia.org/class/yago/GreekGods |
| http://dbpedia.org/class/yago/RomanGods |
| http://dbpedia.org/class/yago/OracularGods |
| http://dbpedia.org/class/yago/HealthGods |
| http://dbpedia.org/class/yago/SolarGods |
| http://dbpedia.org/class/yago/ArtsGods |
| country_name | population |
|---|---|
| Afghanistan | 31889923 |
| Afganistán | 31889923 |
| Afghanistan | 31889923 |
| Afganistan | 31889923 |
| Afghanistan | 31889923 |
| Afghanistan | 31889923 |
| アフガニスタン | 31889923 |
| Afghanistan | 31889923 |
| Afghanistan | 31889923 |
| Afganistan | 31889923 |
| Afeganistão | 31889923 |
| Афганистан | 31889923 |
| Afghanistan | 31889923 |
| 阿富汗 | 31889923 |
| Ethiopia | 75067000 |
| Etiopía | 75067000 |
| Äthiopien | 75067000 |
| Etiopia | 75067000 |
| Éthiopie | 75067000 |
| Etiopia | 75067000 |
| エチオピア | 75067000 |
| Ethiopië | 75067000 |
| Etiopia | 75067000 |
| Etiopia | 75067000 |
| Etiópia | 75067000 |
| Эфиопия | 75067000 |
| Etiopien | 75067000 |
| 埃塞俄比亚 | 75067000 |
| Kazakhstan | 15217711 |
| Kazajistán | 15217711 |
| Kasachstan | 15217711 |
| Kazakstan | 15217711 |
| Kazakhstan | 15217711 |
| Kazakistan | 15217711 |
| カザフスタン | 15217711 |
| Kazachstan | 15217711 |
| Kasakhstan | 15217711 |
| Kazachstan | 15217711 |
| Cazaquistão | 15217711 |
| Казахстан | 15217711 |
| Kazakstan | 15217711 |
| 哈萨克斯坦 | 15217711 |
| Nepal | 29519114 |
| Nepal | 29519114 |
| Nepal | 29519114 |
| Nepal | 29519114 |
| Népal | 29519114 |
| Nepal | 29519114 |
| ネパール | 29519114 |
| Nepal | 29519114 |
| Nepal | 29519114 |
| Nepal | 29519114 |
| Nepal | 29519114 |
| Непал | 29519114 |
| Nepal | 29519114 |
| 尼泊尔 | 29519114 |
| Uganda | 30900000 |
| Uganda | 30900000 |
| Uganda | 30900000 |
| Uganda | 30900000 |
| Ouganda | 30900000 |
| Uganda | 30900000 |
| ウガンダ | 30900000 |
| Oeganda | 30900000 |
| Uganda | 30900000 |
| Uganda | 30900000 |
| Uganda | 30900000 |
| Уганда | 30900000 |
| Uganda | 30900000 |
| 乌干达 | 30900000 |
| Uzbekistan | 27372000 |
| Uzbekistán | 27372000 |
| Usbekistan | 27372000 |
| Uzbekistan | 27372000 |
| Ouzbékistan | 27372000 |
| Uzbekistan | 27372000 |
| ウズベキスタン | 27372000 |
| Oezbekistan | 27372000 |
| Usbekistan | 27372000 |
| Uzbekistan | 27372000 |
| Uzbequistão | 27372000 |
| Узбекистан | 27372000 |
| Uzbekistan | 27372000 |
| 乌兹别克斯坦 | 27372000 |
| country_name | population |
|---|---|
| Ethiopia | 75067000 |
| Afghanistan | 31889923 |
| Uganda | 30900000 |
| Nepal | 29519114 |
| Uzbekistan | 27372000 |
| Kazakhstan | 15217711 |
| name | img | hp | loc |
|---|---|---|---|
| "Cicada"^^xsd:string | http://img.jamendo.com/artists/h/hattrickman.jpg | http://www.cicada.fr.st | http://sws.geonames.org/3031359/ |
| "Hace Soul"^^xsd:string | http://img.jamendo.com/artists/h/hace.soul.jpg | http://www.hacesoul.com | http://sws.geonames.org/2510769/ |
| "vincent j"^^xsd:string | http://img.jamendo.com/artists/v/vincentj.jpg | http://v.joudrier.free.fr/SiteV | http://sws.geonames.org/3020781/ |
| "NoU"^^xsd:string | http://img.jamendo.com/artists/n/nou.gif | http://www.noumusic.be | http://sws.geonames.org/2802361/ |
| "Margin of Safety"^^xsd:string | http://img.jamendo.com/artists/m/mos.jpg | http://wheresthestation.blogspot.com/ | http://sws.geonames.org/660013/ |
| "Bobywan"^^xsd:string | http://img.jamendo.com/artists/b/bobywan.jpg | http://bobywan.over-blog.org | http://sws.geonames.org/3923057/ |
| "Les Clip's"^^xsd:string | http://img.jamendo.com/artists/l/les.clips.jpg | http://www.chez.com/theclips/ | http://sws.geonames.org/3023414/ |
| "La Tumba"^^xsd:string | http://img.jamendo.com/artists/l/la.tumba.jpg | http://www.tumbalaye.com | http://sws.geonames.org/2967196/ |
| "King Dubby"^^xsd:string | http://img.jamendo.com/artists/k/king.dubby.jpg | http://kingdubby.hautetfort.com/ | http://sws.geonames.org/2996663/ |
| "vavrek"^^xsd:string | http://img.jamendo.com/artists/v/vavrek.jpg | http://vavrek.com | http://sws.geonames.org/6252001/ |
| "Suerte"^^xsd:string | http://img.jamendo.com/artists/s/suerte.jpg | http://suerte.hautetfort.com | http://sws.geonames.org/3036264/ |
| "My Name Is Fantastik"^^xsd:string | http://img.jamendo.com/artists/m/my.name.is.fantastik.png | http://www.myspace.com/mynameisfantastik | http://sws.geonames.org/3038049/ |
| "KEPAY"^^xsd:string | http://img.jamendo.com/artists/k/kepay.jpg | http://www.kepay.net | http://sws.geonames.org/2510769/ |
| "t r y ^ d"^^xsd:string | http://img.jamendo.com/artists/t/tryad.jpg | http://tryad.org/ | http://sws.geonames.org/6252001/ |
| "Buzzworkers"^^xsd:string | http://img.jamendo.com/artists/b/buzzworkers.jpg | http://www.buzzworkers.com | http://sws.geonames.org/2802361/ |
| "Mr Nuts"^^xsd:string | http://img.jamendo.com/artists/m/mr.nuts.jpg | http://www.mrnuts.net | http://sws.geonames.org/2510769/ |
| "Stian"^^xsd:string | http://img.jamendo.com/artists/s/stian.jpg | http://lignu.no | http://sws.geonames.org/3133897/ |
| "433 erOs"^^xsd:string | http://img.jamendo.com/artists/4/433.eros.jpg | http://users.skynet.be/fa869102/ | http://sws.geonames.org/2802361/ |
| "Mael"^^xsd:string | http://img.jamendo.com/artists/m/mael.jpg | http://fr.audiofanzine.com/compos/titres/index,idmembre,170802.html | http://sws.geonames.org/3018471/ |
| "Haine Brigade"^^xsd:string | http://img.jamendo.com/artists/h/haine.brigade.jpg | http://hainebrigade.free.fr/index.htm | http://sws.geonames.org/2987410/ |
| "woc007"^^xsd:string | http://img.jamendo.com/artists/w/woc007.jpg | http://www.dogmazic.net/woc007 | http://sws.geonames.org/2975246/ |
| "Le Leprechaune"^^xsd:string | http://img.jamendo.com/artists/l/leleprechaune.gif | http://leleprechaune.free.fr/ | http://sws.geonames.org/2990129/ |
| "lecyr"^^xsd:string | http://img.jamendo.com/artists/l/lecyr.jpg | http://synthosaure.free.fr | http://sws.geonames.org/2968815/ |
| "MEA"^^xsd:string | http://img.jamendo.com/artists/m/mea.png | http://frenchlaboratoryof.ifrance.com | http://sws.geonames.org/2984986/ |
| "Dubphil"^^xsd:string | http://img.jamendo.com/artists/d/dubphil.jpg | http://dubphil.free.fr | http://sws.geonames.org/3034720/ |
| "crashtesttaurus"^^xsd:string | http://img.jamendo.com/artists/c/crashtesttaurus.jpg | http://imprec.free.fr | http://sws.geonames.org/2997857/ |
| "PARALLAX VIEW"^^xsd:string | http://img.jamendo.com/artists/p/parallax.view.jpg | http://pxv.wgp.be | http://sws.geonames.org/2802361/ |
| "Les Féelarsen"^^xsd:string | http://img.jamendo.com/artists/f/feelarsen.gif | http://feelarsen.over-blog.com | http://sws.geonames.org/2969280/ |
| "Spleen"^^xsd:string | http://img.jamendo.com/artists/s/spleen.jpg | http://perso.orange.fr/Spleen.Music/ | http://sws.geonames.org/2971071/ |
| "MAKO"^^xsd:string | http://img.jamendo.com/artists/m/mako.jpg | http://makolove.blogspot.com | http://sws.geonames.org/3017382/ |
| "Bambax"^^xsd:string | http://img.jamendo.com/artists/b/bambax.gif | http://www.bambax.com/ | http://sws.geonames.org/2968815/ |
| "K.Lin"^^xsd:string | http://img.jamendo.com/artists/k/k.lin.jpg | http://perso.wanadoo.fr/jyppe | http://sws.geonames.org/2968815/ |
| "DJ DEVINCI"^^xsd:string | http://img.jamendo.com/artists/d/dj.devinci.jpg | http://djdevincimusicworld.wifeo.com/ | http://sws.geonames.org/3020989/ |
| "Phantom ladies over Paris"^^xsd:string | http://img.jamendo.com/artists/p/phantom.ladies.over.paris.jpg | http://www.phantomladiesoverparis.com | http://sws.geonames.org/3023423/ |
| "Karl Cosmos"^^xsd:string | http://img.jamendo.com/artists/k/karl.cosmos.jpg | http://www.karlcosmos.com | http://sws.geonames.org/2968815/ |
| "Vertiges"^^xsd:string | http://img.jamendo.com/artists/v/vertiges.jpg | http://www.vertiges.fr.tc | http://sws.geonames.org/3031359/ |
| "snapo"^^xsd:string | http://img.jamendo.com/artists/s/snapo.jpg | http://snaposong.free.fr | http://sws.geonames.org/3038049/ |
| "Happiness Project"^^xsd:string | http://img.jamendo.com/artists/h/happiness.project.jpg | http://www.myspace.com-happinessproject | http://sws.geonames.org/3013719/ |
| "Geminius Corpus"^^xsd:string | http://img.jamendo.com/artists/g/geminius.corpus.jpg | http://geminius.corpus.voila.fr | http://sws.geonames.org/2971071/ |
| "Niconoclaste"^^xsd:string | http://img.jamendo.com/artists/n/niconoclaste.jpg | http://www.niconoclaste.blogspot.com | http://sws.geonames.org/2968815/ |
| "Dj EWAS"^^xsd:string | http://img.jamendo.com/artists/d/dj.ewas.jpg | http://www.myspace.com/nerfamily | http://sws.geonames.org/3013657/ |
| "Patknot"^^xsd:string | http://img.jamendo.com/artists/p/patknot.jpg | http://patknot.hautetfort.com/ | http://sws.geonames.org/2658434/ |
| "Franck "KP7" Cappellacci"^^xsd:string | http://img.jamendo.com/artists/f/franck.kp7.cappellacci.jpg | http://karmakomae.free.fr/IHDB/ | http://sws.geonames.org/2994111/ |
| "jibs"^^xsd:string | http://img.jamendo.com/artists/j/jibs.jpg | http://jibs.hautetfort.com/ | http://sws.geonames.org/2975248/ |
| "Djet"^^xsd:string | http://img.jamendo.com/artists/d/djet.jpg | http://djet.hearusplay.com/ | http://sws.geonames.org/2017370/ |
| "Vinc2"^^xsd:string | http://img.jamendo.com/artists/v/vinc2.jpg | http://vinc2creations.free.fr | http://sws.geonames.org/3013736/ |
| "Rescue Rangers"^^xsd:string | http://img.jamendo.com/artists/r/rescue.rangers.gif | http://www.myspace.com/rangersdurisque | http://sws.geonames.org/3031359/ |
| "Ninja force"^^xsd:string | http://img.jamendo.com/artists/n/ninja.force.jpg | http://ninja.force.free.fr | http://sws.geonames.org/3013500/ |
| "Eldorado"^^xsd:string | http://img.jamendo.com/artists/e/eldorado.jpg | http://www.eldorado.zik.mu | http://sws.geonames.org/2975248/ |
| "SyNopTiK"^^xsd:string | http://img.jamendo.com/artists/s/synoptik.jpg | http://synoptik.9online.fr/ | http://sws.geonames.org/3019599/ |
| "GDM"^^xsd:string | http://img.jamendo.com/artists/g/gdm.jpg | http://www.gdm-music.com | http://sws.geonames.org/3012849/ |
| "Les Jocks"^^xsd:string | http://img.jamendo.com/artists/l/les.jocks.jpg | http://jocks.online.free.fr | http://sws.geonames.org/2973362/ |
| "Mac Lomig"^^xsd:string | http://img.jamendo.com/artists/m/mac.lomig.jpg | http://www.myspace.com/mlomig | http://sws.geonames.org/2975926/ |
| "Jérémy Dewinter"^^xsd:string | http://img.jamendo.com/artists/j/jeremy.dewinter.jpg | http://www.jeremydewinter.com | http://sws.geonames.org/2990129/ |
| "Phoniques"^^xsd:string | http://img.jamendo.com/artists/p/phoniques.jpg | http://www.phoniques.ch | http://sws.geonames.org/2658434/ |
| "Binärpilot"^^xsd:string | http://img.jamendo.com/artists/b/binaerpilot.jpg | http://www.binaerpilot.info | http://sws.geonames.org/3144096/ |
| "Bluster"^^xsd:string | http://img.jamendo.com/artists/b/bluster.jpg | http://www.myspace.com/thebluster | http://sws.geonames.org/3034720/ |
| "KING D.A."^^xsd:string | http://img.jamendo.com/artists/k/kingda.jpg | http://www.wat.tv/KINGDA | http://sws.geonames.org/2970140/ |
| "TANAEKA"^^xsd:string | http://img.jamendo.com/artists/t/tanaeka.gif | http://www.tanaeka.com | http://sws.geonames.org/3013500/ |
| "Michiboux"^^xsd:string | http://img.jamendo.com/artists/m/michiboux.jpg | http://www.geocities.com/michiboux/ | http://sws.geonames.org/3019317/ |
| "Switch oN"^^xsd:string | http://img.jamendo.com/artists/s/switch.on.jpg | http://www.switch-on-groupe.com | http://sws.geonames.org/2995603/ |
| "AMPM"^^xsd:string | http://img.jamendo.com/artists/a/ampm.jpg | http://www.ampm-officiel.com | http://sws.geonames.org/3034720/ |
| "Midi Clock"^^xsd:string | http://img.jamendo.com/artists/m/midi.clock.jpg | http://perso.wanadoo.fr/sebastien.manaches/ | http://sws.geonames.org/2968815/ |
| "Bézèd'h"^^xsd:string | http://img.jamendo.com/artists/b/b.z.d.h.jpg | http://www.bezedh.com | http://sws.geonames.org/3013663/ |
| "Akeuponctur"^^xsd:string | http://img.jamendo.com/artists/a/akeuponctur.jpg | http://akeuponctur.blogspot.com | http://sws.geonames.org/2975926/ |
| "Bodycocktail"^^xsd:string | http://img.jamendo.com/artists/b/bodycocktail.gif | http://zh27.blogspot.com | http://sws.geonames.org/6252001/ |
| "Melampyre"^^xsd:string | http://img.jamendo.com/artists/m/melampyre.jpg | http://www.melampyre.com/ | http://sws.geonames.org/2975249/ |
| "Neurone"^^xsd:string | http://img.jamendo.com/artists/n/neurone.jpg | http://imprec.free.fr/artistfiche.php?id=13 | http://sws.geonames.org/2997857/ |
| "Fenshu"^^xsd:string | http://img.jamendo.com/artists/f/fenshu.jpg | http://fenshu.free.fr | http://sws.geonames.org/2997857/ |
| "DUK"^^xsd:string | http://img.jamendo.com/artists/d/duk.gif | http://imprec.free.fr/artistfiche.php?id=8 | http://sws.geonames.org/2997857/ |
| "Dud"^^xsd:string | http://img.jamendo.com/artists/d/dud.jpg | http://www.dudmusic.fr | http://sws.geonames.org/3031359/ |
| "ultraphallus"^^xsd:string | http://img.jamendo.com/artists/u/ultraphallus.gif | http://www.ultraphallus.be/ | http://sws.geonames.org/2802361/ |
| "REGIM LIQUID"^^xsd:string | http://img.jamendo.com/artists/r/regim.liquid.jpg | http://regimliquid.free.fr | http://sws.geonames.org/3031359/ |
| "superstring theory"^^xsd:string | http://img.jamendo.com/artists/s/superstring.theory.jpg | http://www.jamendo.com/?superstring.theory | http://sws.geonames.org/2976082/ |
| "T-ROOTS"^^xsd:string | http://img.jamendo.com/artists/t/t-roots.jpg | http://t-roots.ifrance.com | http://sws.geonames.org/2970140/ |
| "SILVER666"^^xsd:string | http://img.jamendo.com/artists/s/silver666.png | http://silver666musica.blogspot.com/ | http://sws.geonames.org/3015948/ |
| "RMX"^^xsd:string | http://img.jamendo.com/artists/r/rmx.gif | http://rmx.oldiblog.com/ | http://sws.geonames.org/3023423/ |
| "Zero Vs. One"^^xsd:string | http://img.jamendo.com/artists/z/zero.vs.one.jpg | http://www.sheket.net | http://sws.geonames.org/294640/ |
| "CRS"^^xsd:string | http://img.jamendo.com/artists/c/crs.jamendo.com.jpg | http://misere-record.skyblog.com | http://sws.geonames.org/2975248/ |
| "Extatik"^^xsd:string | http://img.jamendo.com/artists/e/extatik.jpg | http://www.extatik.net | http://sws.geonames.org/3038111/ |
| "c-nergy"^^xsd:string | http://img.jamendo.com/artists/c/c-nergy.jpg | http://www.c-nergy.fr.nr | http://sws.geonames.org/2996268/ |
| "Binary Mind"^^xsd:string | http://img.jamendo.com/artists/b/binary.mind.jpg | http://www.binarymind.org | http://sws.geonames.org/2968815/ |
| "Lysthea"^^xsd:string | http://img.jamendo.com/artists/l/lysthea.jpg | http://www.lysthea.com | http://sws.geonames.org/2991627/ |
| "Saint-Jean"^^xsd:string | http://img.jamendo.com/artists/b/bouvier.jpg | http://jeanobob.ifrance.com/ | http://sws.geonames.org/3018471/ |
| "LUXUS"^^xsd:string | http://img.jamendo.com/artists/l/luxus.jpg | http://www.luxus.lu | http://sws.geonames.org/2960313/ |
| "Briareus"^^xsd:string | http://img.jamendo.com/artists/b/briareus.jpg | http://www.myspace.com/briareusmusic | http://sws.geonames.org/6252001/ |
| "Juice lee"^^xsd:string | http://img.jamendo.com/artists/j/juice.lee.jpg | http://www.juicelee.net | http://sws.geonames.org/3019599/ |
| "Gauthier Paturo"^^xsd:string | http://img.jamendo.com/artists/g/gauthier.paturo.jpg | http://www.ma-bonne-etoile.com | http://sws.geonames.org/2968815/ |
| "Bacco Baccanels"^^xsd:string | http://img.jamendo.com/artists/b/bacco.baccanels.jpg | http://www.baccobaccanels.com | http://sws.geonames.org/3175395/ |
| "kerana"^^xsd:string | http://img.jamendo.com/artists/k/kerana.jpg | http://fabrice89.skyblog.com | http://sws.geonames.org/3012849/ |
| "Nesta Positive"^^xsd:string | http://img.jamendo.com/artists/n/nesta.positive.jpg | http://nestapositive.free.fr | http://sws.geonames.org/2994111/ |
| "Beto Stocker"^^xsd:string | http://img.jamendo.com/artists/b/beto.stocker.jpg | http://www.betostocker.com | http://sws.geonames.org/3895114/ |
| "PORNBOY"^^xsd:string | http://img.jamendo.com/artists/p/pornboy.jpg | http://www.anorakcd.net | http://sws.geonames.org/3037147/ |
| "LucB"^^xsd:string | http://img.jamendo.com/artists/l/lucb.jpg | http://lucB.hautetfort.com | http://sws.geonames.org/3013500/ |
| "la curiosite tua le chat"^^xsd:string | http://img.jamendo.com/artists/l/la.curiosite.tua.le.chat.jpg | http://www.lacuriositetualechat.com | http://sws.geonames.org/2987410/ |
| "Judas"^^xsd:string | http://img.jamendo.com/artists/j/judas.jpg | http://www.judas.cl | http://sws.geonames.org/3895114/ |
| "Ben Othman"^^xsd:string | http://img.jamendo.com/artists/b/ben.othman.jpg | http://www.ben-othman.de | http://sws.geonames.org/2921044/ |
| "Gély-Fort Pierre"^^xsd:string | http://img.jamendo.com/artists/g/gely.pierre.jpg | http://gely-fort.hautetfort.com | http://sws.geonames.org/2984986/ |
| "dave pretty"^^xsd:string | http://img.jamendo.com/artists/d/dave.pretty.jpg | http://davepretty.com | http://sws.geonames.org/2077456/ |
| "nitramm"^^xsd:string | http://img.jamendo.com/artists/n/nitramm.jpg | http://www.nitramm.net | http://sws.geonames.org/3012715/ |
| "Obviously Grimy"^^xsd:string | http://img.jamendo.com/artists/o/obviously.grimmy.jpg | http://obviously-grimy.noosblog.fr/ | http://sws.geonames.org/3012849/ |
| "Rob Costlow - Solo Piano"^^xsd:string | http://img.jamendo.com/artists/r/rob.costlow.jpg | http://www.robcostlow.com | http://sws.geonames.org/6252001/ |
| "Vate"^^xsd:string | http://img.jamendo.com/artists/v/vate.jpg | http://www.vate.com.mx | http://sws.geonames.org/3996063/ |
| "By.K"^^xsd:string | http://img.jamendo.com/artists/b/byk.jpg | http://byk.hautetfort.com/ | http://sws.geonames.org/2988430/ |
| "Narcis"^^xsd:string | http://img.jamendo.com/artists/n/narcis.jpg | http://rock.ampm.free.fr/narcis.htm | http://sws.geonames.org/3034720/ |
| "Glue Trax"^^xsd:string | http://img.jamendo.com/artists/g/glue.trax.jpg | file:///home/yves/jamendo/www.myspace.com/gluetrax | http://sws.geonames.org/3023423/ |
| "John Sore & his Afro-Safety"^^xsd:string | http://img.jamendo.com/artists/j/johnsore.jpg | http://www.johnsore.net | http://sws.geonames.org/660013/ |
| "Les K-Rock"^^xsd:string | http://img.jamendo.com/artists/l/les.k-rock.gif | http://www.k-rock.fr/ | http://sws.geonames.org/2969280/ |
| "16pac"^^xsd:string | http://img.jamendo.com/artists/1/16pac.jpg | http://www.16pac.com | http://sws.geonames.org/2968815/ |
| "Pierced Data"^^xsd:string | http://img.jamendo.com/artists/p/pierceddata.jpg | http://www.myspace.com/pierceddata | http://sws.geonames.org/6252001/ |
| "Bubar the cook"^^xsd:string | http://img.jamendo.com/artists/b/bubarthecook.gif | http://www.bablukid.com/music/ | http://sws.geonames.org/2968815/ |
| "MAMASAID"^^xsd:string | http://img.jamendo.com/artists/m/mamasaid.jpg | http://www.mamasaid-legroupe.com | http://sws.geonames.org/3013657/ |
| "Echo lali"^^xsd:string | http://img.jamendo.com/artists/e/echo.lali.jpg | http://www.echolali.fr | http://sws.geonames.org/2991627/ |
| "Kolokon"^^xsd:string | http://img.jamendo.com/artists/k/kolokon.jpg | http://www.kolokon.es | http://sws.geonames.org/2510769/ |
| "Manu Cornet"^^xsd:string | http://img.jamendo.com/artists/m/manu.cornet.jpg | http://www.manucornet.net/album | http://sws.geonames.org/2968815/ |
| "Triole"^^xsd:string | http://img.jamendo.com/artists/w/www.triole.com.ar.jpg | http://www.triole.com.ar | http://sws.geonames.org/3865483/ |
| "shex"^^xsd:string | http://img.jamendo.com/artists/s/shex.jpg | http://lxt.free.fr | http://sws.geonames.org/3038375/ |
| "Hollywood & Deadbeat"^^xsd:string | http://img.jamendo.com/artists/h/hollywood.deadbeat.jpg | http://myrealtalent.com | http://sws.geonames.org/6251999/ |
| "En attendant Mado"^^xsd:string | http://img.jamendo.com/artists/e/en.attendant.mado.png | http://hopmado.free.fr/ | http://sws.geonames.org/3015948/ |
| "Antalgic"^^xsd:string | http://img.jamendo.com/artists/a/antalgic.jpg | http://antalgic.neuf.fr | http://sws.geonames.org/2990129/ |
| "Naetherna"^^xsd:string | http://img.jamendo.com/artists/n/naetherna.jpg | http://myspace.com/naetherna | http://sws.geonames.org/2510769/ |
| "TROY"^^xsd:string | http://img.jamendo.com/artists/t/troy.gif | http://www.TROY.co.il | http://sws.geonames.org/294640/ |
| "Rach'"^^xsd:string | http://img.jamendo.com/artists/r/rach.jpg | http://jamendo.com/?rach1 | http://sws.geonames.org/2987410/ |
| "Ludantes"^^xsd:string | http://img.jamendo.com/artists/l/ludantes.png | http://www.ludantes.net | http://sws.geonames.org/3012715/ |
| "Brad Sucks"^^xsd:string | http://img.jamendo.com/artists/b/bradsucks.jpg | http://www.bradsucks.net/ | http://sws.geonames.org/6251999/ |
| "The Georges Habitbol Brothers"^^xsd:string | http://img.jamendo.com/artists/g/georges.habitbol.jpg | http://www.ghbaddicted.com | http://sws.geonames.org/3017382/ |
| "Elecmutec"^^xsd:string | http://img.jamendo.com/artists/e/elecmutec.jpg | http://elecmutec.com | http://sws.geonames.org/2970749/ |
| "claudioh"^^xsd:string | http://img.jamendo.com/artists/c/claudioh.jpg | http://www.claudioh.com | http://sws.geonames.org/2510769/ |
| "the precious band"^^xsd:string | http://img.jamendo.com/artists/t/the.precious.band.jpg | http://www.soundclick.com/bands/pageartist.cfm?bandID=472061 | http://sws.geonames.org/3015948/ |
| "chevalier dominique"^^xsd:string | http://img.jamendo.com/artists/g/gell.jpg | http://www.putfil.com/dominiquec | http://sws.geonames.org/3022516/ |
| "Skastation"^^xsd:string | http://img.jamendo.com/artists/s/skastation.gif | http://www.skastation.fr.st | http://sws.geonames.org/2967196/ |
| "Aurélien Girelli"^^xsd:string | http://img.jamendo.com/artists/m/metropolis.images.unlimited.jpg | http://www.aureliengirelli.fr | http://sws.geonames.org/2968815/ |
| "B.O.Y.L."^^xsd:string | http://img.jamendo.com/artists/b/b.o.y.l.jpg | http://users.skynet.be/boyl/ | http://sws.geonames.org/2802361/ |
| "downliners sekt"^^xsd:string | http://img.jamendo.com/artists/d/downliners-sekt.jpg | file:///home/yves/jamendo/www.dsekt.com | http://sws.geonames.org/2968815/ |
| "Léon Plane"^^xsd:string | http://img.jamendo.com/artists/l/leon.plane.jpg | http://leonplane.blogspot.com/ | http://sws.geonames.org/2987410/ |
| "Human Signals"^^xsd:string | http://img.jamendo.com/artists/h/human.signals.jpg | http://www.soundclick.com/bands/pageartist.cfm?bandID=498017 | http://sws.geonames.org/6252001/ |
| "Greg V"^^xsd:string | http://img.jamendo.com/artists/g/greg.v.jpg | http://greg-v.monsite.wanadoo.fr | http://sws.geonames.org/2967196/ |
| "BrunoXe"^^xsd:string | http://img.jamendo.com/artists/b/brunoxe.jpg | http://www.geocities.com/brunoxe3 | http://sws.geonames.org/2520597/ |
| "BCreativ"^^xsd:string | http://img.jamendo.com/artists/b/bcreativ.jpg | http://www.soiscreatif.com/bcreativ | http://sws.geonames.org/6251999/ |
| "HYPNOSS"^^xsd:string | http://img.jamendo.com/artists/h/hypnoss.jpg | http://hypnoss02100.free.fr | http://sws.geonames.org/3038375/ |
| "LA CAJA NEGRA"^^xsd:string | http://img.jamendo.com/artists/l/la.caja.negra.jpg | http://www.lacajanegra.org | http://sws.geonames.org/2510769/ |
| "La Manutention"^^xsd:string | http://img.jamendo.com/artists/l/la.manutention.jpg | http://www.lamanutention.fr | http://sws.geonames.org/2991627/ |
| "MARTO"^^xsd:string | http://img.jamendo.com/artists/m/marto.jpg | http://www.martoland.com | http://sws.geonames.org/3013500/ |
| "SONGO 21"^^xsd:string | http://img.jamendo.com/artists/s/songo.21.jpg | http://www.songo21.com | http://sws.geonames.org/2968815/ |
| "Bruno"^^xsd:string | http://img.jamendo.com/artists/b/bruno.jpg | http://www.bruno.new.fr | http://sws.geonames.org/3033789/ |
| "Yue"^^xsd:string | http://img.jamendo.com/artists/y/yue.jpg | http://www.yue.it | http://sws.geonames.org/3175395/ |
| "Cristan Roba"^^xsd:string | http://img.jamendo.com/artists/c/cristan.roba.jpg | http://www.cristan.be | http://sws.geonames.org/2802361/ |
| "Kea182"^^xsd:string | http://img.jamendo.com/artists/k/kea182.jpg | http://www.myspace.com/bluedazed | http://sws.geonames.org/2968815/ |
| "ARCTIC"^^xsd:string | http://img.jamendo.com/artists/a/arctic.gif | http://www.projectarctic.com | http://sws.geonames.org/6251999/ |
| "David TMX"^^xsd:string | http://img.jamendo.com/artists/d/david.tmx.jpg | http://www.davidtmx.com/ | http://sws.geonames.org/2991627/ |
| "Dd le malfrat"^^xsd:string | http://img.jamendo.com/artists/d/dd.le.malfrat1.jpg | http://www.labellemadouna.org | http://sws.geonames.org/2997870/ |
| "littlecaniche"^^xsd:string | http://img.jamendo.com/artists/l/littlecaniche.jpg | http://www.myspace.com/littlecaniche | http://sws.geonames.org/2996663/ |
| "frey"^^xsd:string | http://img.jamendo.com/artists/f/frey.jpg | http://www.frey.co.nz | http://sws.geonames.org/2186224/ |
| "Al Azred"^^xsd:string | http://img.jamendo.com/artists/a/alazred.jpg | http://alazred.free.fr | http://sws.geonames.org/3012715/ |
| "Bluemiss"^^xsd:string | http://img.jamendo.com/artists/b/bluemiss.jpg | http://bluemiss.free.fr | http://sws.geonames.org/2997861/ |
| "Swirl Of Dust"^^xsd:string | http://img.jamendo.com/artists/c/christine.clement.jpg | http://perso.wanadoo.fr/mayalyon/swirlofdustcad.htm | http://sws.geonames.org/2987410/ |
| "Kiprokro"^^xsd:string | http://img.jamendo.com/artists/k/kiprokro.jpg | http://www.kiprokro.tk | http://sws.geonames.org/2967196/ |
| "Psyxxx"^^xsd:string | http://img.jamendo.com/artists/p/psyxxx.jpg | http://www.myspace.com/cixxxj | http://sws.geonames.org/3175395/ |
| "New-G"^^xsd:string | http://img.jamendo.com/artists/n/new-g.jpg | http://www.laviedespingouins.com | http://sws.geonames.org/2997861/ |
| "International Corpus Industry"^^xsd:string | http://img.jamendo.com/artists/i/international.corpus.industry.jpg | http://www.myspace.com/internationalcorpusindustry | http://sws.geonames.org/2997861/ |
| "All:My:Faults"^^xsd:string | http://img.jamendo.com/artists/a/allmyfaults.jpg | http://www.allmyfaults.com | http://sws.geonames.org/6557769/ |
| "FOGGY BOTTOM"^^xsd:string | http://img.jamendo.com/artists/f/foggy.bottom.jpg | http://www.myspace.com/lesfoggybottom | http://sws.geonames.org/2991627/ |
| "Cesare Marilungo"^^xsd:string | http://img.jamendo.com/artists/c/cesare.marilungo.jpg | http://www.cesaremarilungo.com | http://sws.geonames.org/3175395/ |
| "JT Bruce"^^xsd:string | http://img.jamendo.com/artists/j/jtbruce.jpg | http://www.subjectruin.net | http://sws.geonames.org/6252001/ |
| "las kademy"^^xsd:string | http://img.jamendo.com/artists/l/laskademy.jpg | http://www.laskademy.fr | http://sws.geonames.org/2975249/ |
| "david aubrun"^^xsd:string | http://img.jamendo.com/artists/d/davidaubrun.jpg | http://davidaubrun.free.fr | http://sws.geonames.org/2997857/ |
| "Clemix SoundShaker"^^xsd:string | http://img.jamendo.com/artists/c/clemix.soundshaker.jpg | http://www.clemixsoundshaker.com | http://sws.geonames.org/2802361/ |
| "Bluedozer"^^xsd:string | http://img.jamendo.com/artists/b/bluedozer.jpg | http://demolid.com/bluedozer | http://sws.geonames.org/719819/ |
| "DEREK"^^xsd:string | http://img.jamendo.com/artists/d/derek.music.jpg | http://www.derek-music.com | http://sws.geonames.org/3013663/ |
| "MYHYBRIS"^^xsd:string | http://img.jamendo.com/artists/m/myhybris.jpg | http://www.myhybris.net | http://sws.geonames.org/2971071/ |
| "Kvaleoun"^^xsd:string | http://img.jamendo.com/artists/k/kvaleoun.jpg | http://max.coste.club.fr | http://sws.geonames.org/3031359/ |
| "Vodevil"^^xsd:string | http://img.jamendo.com/artists/v/vodevil.gif | http://www.vodevil.com.ar | http://sws.geonames.org/3865483/ |
| "PhIlIpPe ChAvArOcHe"^^xsd:string | http://img.jamendo.com/artists/p/philippe.chavaroche.jpg | http://www.philippechavaroche.com | http://sws.geonames.org/3017382/ |
| "L. Saint Lazare"^^xsd:string | http://img.jamendo.com/artists/s/saintlazare.jpg | http://www.saintlazare.be | http://sws.geonames.org/2802361/ |
| "Mister Poison"^^xsd:string | http://img.jamendo.com/artists/m/misterpoison.jpg | http://www.orkyd.net | http://sws.geonames.org/2967196/ |
| "Countdown"^^xsd:string | http://img.jamendo.com/artists/c/countdown.jpg | http://www.countdown.fr.fm | http://sws.geonames.org/2994111/ |
| "Ciruelo Cilíndrico"^^xsd:string | http://img.jamendo.com/artists/c/ciruelo.cilindrico.jpg | http://www.ciruelocilindrico.com | http://sws.geonames.org/2510769/ |
| "b-Shake"^^xsd:string | http://img.jamendo.com/artists/b/bshake.jpg | http://www.bshake.com | http://sws.geonames.org/2802361/ |
| "LeBelgeElectrod"^^xsd:string | http://img.jamendo.com/artists/l/lebelgeelectrod.jpg | http://users.electrobel.be/LeBelgeElectrod | http://sws.geonames.org/2802361/ |
| "FuryKane"^^xsd:string | http://img.jamendo.com/artists/f/furykane.jpg | http://www.FuryKane.com | http://sws.geonames.org/2968815/ |
| "Badaboum"^^xsd:string | http://img.jamendo.com/artists/b/badaboum.jpg | http://antoineboullenot.free.fr | http://sws.geonames.org/2975248/ |
| "white andersen"^^xsd:string | http://img.jamendo.com/artists/w/white.andersen.jpg | http://www.andersen-white.com | http://sws.geonames.org/2975517/ |
| "Kaiser IK"^^xsd:string | http://img.jamendo.com/artists/k/kaiser.ik.jpg | http://kaiser.ik.free.fr/ | http://sws.geonames.org/3038375/ |
| "Exit Roméo"^^xsd:string | http://img.jamendo.com/artists/e/exit.romeo.jpg | http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid=151102259 | http://sws.geonames.org/2984885/ |
| "Random I Am"^^xsd:string | http://img.jamendo.com/artists/r/randomiam.jpg | http://www.randomiam.de | http://sws.geonames.org/3213264/ |
| "Classic Tragic Hero"^^xsd:string | http://img.jamendo.com/artists/c/classictragichero.jpg | http://www.classictragichero.com | http://sws.geonames.org/6252001/ |
| "VS"^^xsd:string | http://img.jamendo.com/artists/v/vs.jpg | http://www.vs-music.com | http://sws.geonames.org/3017382/ |
| "Mysth-R"^^xsd:string | http://img.jamendo.com/artists/m/mysth-r.gif | http://mysthr.oldiblog.com | http://sws.geonames.org/3031359/ |
| "Hr.LoXX"^^xsd:string | http://img.jamendo.com/artists/h/hr.loxx.jpg | http://hr.loxx.free.fr/ | http://sws.geonames.org/3013663/ |
| "Jacques COUTURIER"^^xsd:string | http://img.jamendo.com/artists/j/jacques.couturier.jpg | http://www.couturiermusart.com | http://sws.geonames.org/3013657/ |
| "Fishbone Rocket"^^xsd:string | http://img.jamendo.com/artists/f/fishbone.rocket.png | http://myspace.com/fishbonerocket , http://www.fishbonerocket.com | http://sws.geonames.org/2991879/ |
| "Lithium"^^xsd:string | http://img.jamendo.com/artists/x/xlithiumx.jpg | http://xsmokingbenx.free.fr | http://sws.geonames.org/2988430/ |
| "37%human"^^xsd:string | http://img.jamendo.com/artists/3/37.human.jpg | http://37human.hautetfort.com | http://sws.geonames.org/2984887/ |
| "Stefan Colomb"^^xsd:string | http://img.jamendo.com/artists/s/stefan.colomb.jpg | http://modelpif.free.fr | http://sws.geonames.org/3038111/ |
| "M.O.A. - ALIX"^^xsd:string | http://img.jamendo.com/artists/a/alix.jpg | http://www.ALIX.Biz | http://sws.geonames.org/3017382/ |
| "greguenox"^^xsd:string | http://img.jamendo.com/artists/g/greguenox.jpg | http://en construction/ | http://sws.geonames.org/2967222/ |
| "UNSOUND"^^xsd:string | http://img.jamendo.com/artists/u/unsound.jpg | http://unsound4.free.fr/ | http://sws.geonames.org/2991627/ |
| "Monnaie de singe"^^xsd:string | http://img.jamendo.com/artists/m/monnaiedesinge.jpg | http://www.monnaiedesinge.net | http://sws.geonames.org/3028791/ |
| "The SillyJunX"^^xsd:string | http://img.jamendo.com/artists/t/the.sillyjunx.jpg | http://bioteckrecords.free.fr | http://sws.geonames.org/3038375/ |
| "sir-clandestino"^^xsd:string | http://img.jamendo.com/artists/s/sir-clandestino.jpg | http://underground-pressbook.ifrance.com/ | http://sws.geonames.org/2802361/ |
| "Rouler Pinder"^^xsd:string | http://img.jamendo.com/artists/r/rouler.pinder.jpg | http://roulerpinder.free.fr | http://sws.geonames.org/2994111/ |
| "MFMR"^^xsd:string | http://img.jamendo.com/artists/m/mifmir.jpg | http://blogs.aol.fr/mifmir/MIFUGUEMIRAISON/ | http://sws.geonames.org/2991879/ |
| "Manès"^^xsd:string | http://img.jamendo.com/artists/m/manes.jpg | http://bioteckrecords.free.fr | http://sws.geonames.org/3038375/ |
| "Mr Haze dub project"^^xsd:string | http://img.jamendo.com/artists/m/mr.haze.jpg | http://www.mrhaze.net | http://sws.geonames.org/2995603/ |
| "Los Rápidos"^^xsd:string | http://img.jamendo.com/artists/l/los.rapidos.jpg | http://www.estoesrapidos.com | http://sws.geonames.org/2510769/ |
| "Fast Friday"^^xsd:string | http://img.jamendo.com/artists/f/fast.friday.jpg | http://www.myspace.com/fastfriday | http://sws.geonames.org/2960313/ |
| "Rouge"^^xsd:string | http://img.jamendo.com/artists/r/rouge.jpg | http://bsidefactorie.free.fr/cariboost1/index.html | http://sws.geonames.org/2968815/ |
| "Pachuco Cadaver"^^xsd:string | http://img.jamendo.com/artists/p/pachuco.cadaver.jpg | http://www.myspace.com/lesmortsquimarchent | http://sws.geonames.org/2991627/ |
| "staiff"^^xsd:string | http://img.jamendo.com/artists/m/menestrel.gif | http://www.staiff.com | http://sws.geonames.org/2991879/ |
| "Chelmi"^^xsd:string | http://img.jamendo.com/artists/c/chelmi.jpg | http://mc-chelmi.blogspot.com/ | http://sws.geonames.org/2994111/ |
| "Wikoo"^^xsd:string | http://img.jamendo.com/artists/w/wikoo.jpg | http://wikoo.free.fr | http://sws.geonames.org/3017382/ |
| "Omri Levy"^^xsd:string | http://img.jamendo.com/artists/o/omri.levy.jpg | http://www.omrilevy.com | http://sws.geonames.org/294640/ |
| "Keep Cool Vibration"^^xsd:string | http://img.jamendo.com/artists/k/kcv.jpg | http://keepcoolvibration.free.fr | http://sws.geonames.org/2994111/ |
| "Sick Side Project"^^xsd:string | http://img.jamendo.com/artists/s/sick.side.project.gif | http://www.sicksideproject.fr.st | http://sws.geonames.org/2994111/ |
| "Religionnaire"^^xsd:string | http://img.jamendo.com/artists/r/religionnaire.jpg | http://perso.orange.fr/religionnaire | http://sws.geonames.org/3013657/ |
| "Curly's Revenge"^^xsd:string | http://img.jamendo.com/artists/c/curlysrevenge.jpg | http://curlys.free.fr/ | http://sws.geonames.org/2971090/ |
| "The Abogix (J.K.)"^^xsd:string | http://img.jamendo.com/artists/t/the.abogix.jpg | http://www.theabogix.rockzone.lu | http://sws.geonames.org/2960313/ |
| "Godon"^^xsd:string | http://img.jamendo.com/artists/g/godon.jpg | http://www.godon.org | http://sws.geonames.org/3023532/ |
| "[GO:MACHE]"^^xsd:string | http://img.jamendo.com/artists/g/gomache.jpg | http://gomache.hautetfort.com / | http://sws.geonames.org/2968815/ |
| "Haki Groucho Empire"^^xsd:string | http://img.jamendo.com/artists/h/haki.groucho.empire.jpg | http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendID=61809949 | http://sws.geonames.org/2984887/ |
| "Santiago Louvet"^^xsd:string | http://img.jamendo.com/artists/s/santiago.louvet.png | http://www.santiagolouvet.info | http://sws.geonames.org/3013767/ |
| "Antinéa"^^xsd:string | http://img.jamendo.com/artists/a/antinea.png | http://antinea-world.blogspot.com/ | http://sws.geonames.org/3037147/ |
| "Guess"^^xsd:string | http://img.jamendo.com/artists/g/guess.jpg | http://www.guess-groupe.com | http://sws.geonames.org/2995603/ |
| "Came Into Dust"^^xsd:string | http://img.jamendo.com/artists/c/came.into.dust1.jpg | http://www.cameintodust.be | http://sws.geonames.org/2802361/ |
| "Amniotik"^^xsd:string | http://img.jamendo.com/artists/a/amniotik.jpg | http://amniotik.blogspot.com/ | http://sws.geonames.org/3016670/ |
| "...anabase*"^^xsd:string | http://img.jamendo.com/artists/a/anabase.jpg | http://www.anabase.fr | http://sws.geonames.org/2968815/ |
| "Three Star Hotel"^^xsd:string | http://img.jamendo.com/artists/t/three.star.hotel.png | http://www.threestarhotel.org | http://sws.geonames.org/3007866/ |
| "Abdou Day"^^xsd:string | http://img.jamendo.com/artists/a/abdou.day.jpg | http://www.abdouday.fr.st | http://sws.geonames.org/2991627/ |
| "TerPacific"^^xsd:string | http://img.jamendo.com/artists/t/terpacific.jpg | http://terrepacifique.info | http://sws.geonames.org/3013760/ |
| "Indiana Jones"^^xsd:string | http://img.jamendo.com/artists/i/indiana.jones.png | http://www.myspace.com/indianajones | http://sws.geonames.org/2921044/ |
| "sam & thierry blanchard"^^xsd:string | http://img.jamendo.com/artists/s/sam.thierry.blanchard.jpg | http://lesgrandesroues.free.fr | http://sws.geonames.org/2971090/ |
| "mekanix"^^xsd:string | http://img.jamendo.com/artists/m/mekanix.jpg | http://l-artduson.hautetfort.com/archive/2006/04/09/mekanix-road.html | http://sws.geonames.org/3023414/ |
| "Jean-Fred"^^xsd:string | http://img.jamendo.com/artists/j/jean-fred.jpg | http://www.jean-fred.net | http://sws.geonames.org/2975249/ |
| "Silly Monday"^^xsd:string | http://img.jamendo.com/artists/s/silly.monday.jpg | http://www.creabc.com/sites/index.php?site=SillyMonday | http://sws.geonames.org/2802361/ |
| "dubsoniq"^^xsd:string | http://img.jamendo.com/artists/d/dubsoniq.jpg | http://dubsoniq.blogspot.com | http://sws.geonames.org/3013657/ |
| "Briovere Buffentis"^^xsd:string | http://img.jamendo.com/artists/b/briovere.buffentis.png | http://brioverebuffentis.com | http://sws.geonames.org/3013767/ |
| "DKZ"^^xsd:string | http://img.jamendo.com/artists/d/dkz.jpg | http://www.cleantraxx.com | http://sws.geonames.org/3013663/ |
| "VéBé"^^xsd:string | http://img.jamendo.com/artists/v/vebe.jpg | http://www.myspace.com/vebe07 | http://sws.geonames.org/3037147/ |
| "PistONE"^^xsd:string | http://img.jamendo.com/artists/s/stef.png | http://pistonemusique.free.fr | http://sws.geonames.org/2987410/ |
| "BioCarbon13"^^xsd:string | http://img.jamendo.com/artists/b/biocarbon13.jpg | http://www.BioCarbon13.com | http://sws.geonames.org/6252001/ |
| "KATCHIN-A"^^xsd:string | http://img.jamendo.com/artists/k/katchin-a.gif | http://katchinarock.free.fr/ | http://sws.geonames.org/3012849/ |
| "Maya de Luna"^^xsd:string | http://img.jamendo.com/artists/m/maya.de.luna.jpg | http://perso.orange.fr/mayalyon | http://sws.geonames.org/2987410/ |
| "SYLMER"^^xsd:string | http://img.jamendo.com/artists/s/sylmer.jpg | http://blogs.aol.fr/merezettesylmer/SYLMERartiste | http://sws.geonames.org/2975248/ |
| "Dj Bexos"^^xsd:string | http://img.jamendo.com/artists/d/djbexos.jpg | http://www.djbexos.info | http://sws.geonames.org/3013760/ |
| "Electric Fence"^^xsd:string | http://img.jamendo.com/artists/e/electric.fence1.jpg | http://www.myspace.com/electricfencerocks | http://sws.geonames.org/2510769/ |
| "Tomawox"^^xsd:string | http://img.jamendo.com/artists/t/tomawox.jpg | http://www.tomawox.com | http://sws.geonames.org/3013500/ |
| "czskamaarù"^^xsd:string | http://img.jamendo.com/artists/c/czskamaaru.jpg | http://www.softly-dangerous.com | http://sws.geonames.org/3018471/ |
| "babyPaul"^^xsd:string | http://img.jamendo.com/artists/b/babypaul.jpg | http://www.baby-paul.com | http://sws.geonames.org/3038049/ |
| "dj blanguy"^^xsd:string | http://img.jamendo.com/artists/d/dj.blanguy.jpg | htpp://djblanguy.blog.radiofg.com | http://sws.geonames.org/2989663/ |
| "sAMi"^^xsd:string | http://img.jamendo.com/artists/s/sami.jpg | http://leblogdesami.blogg.org/ | http://sws.geonames.org/3017382/ |
| "GRASSHOPERS"^^xsd:string | http://img.jamendo.com/artists/g/grasshopers.jpg | http://www.grasshopers.net | http://sws.geonames.org/2991627/ |
| "Freibeuter AG"^^xsd:string | http://img.jamendo.com/artists/f/freibeuter.ag.jpg | http://www.freibeuter-ag.de/freibeuter_ag/freibeuter.htm | http://sws.geonames.org/6556330/ |
| "Dorcel"^^xsd:string | http://img.jamendo.com/artists/d/dorcel.gif | http://www.dorcelmusic.com | http://sws.geonames.org/2991627/ |
| "Se7eN"^^xsd:string | http://img.jamendo.com/artists/s/se7en.png | http://www.eicko.net | http://sws.geonames.org/3019599/ |
| "Proche Chaos"^^xsd:string | http://img.jamendo.com/artists/p/proche.chaos.jpg | http://prochechaos.free.fr | http://sws.geonames.org/3013663/ |
| "Alchimie"^^xsd:string | http://img.jamendo.com/artists/a/alchimie.jpg | http://www.alchimie-legroupe.com | http://sws.geonames.org/2994111/ |
| "François Ville"^^xsd:string | http://img.jamendo.com/artists/f/francois.ville.jpg | http://www.wat.tv/francoisville | http://sws.geonames.org/2975249/ |
| "Mekah"^^xsd:string | http://img.jamendo.com/artists/m/mekah.jpg | http://www.myspace.com/mekahvoyou | http://sws.geonames.org/3012849/ |
| "Leitmotiv"^^xsd:string | http://img.jamendo.com/artists/l/leitmotivonline.jpg | http://www.leitmotivonline.net | http://sws.geonames.org/3165924/ |
| "No Mad's Land"^^xsd:string | http://img.jamendo.com/artists/n/nomads.land.gif | http://nomads.land.free.fr | http://sws.geonames.org/2973357/ |
| "Manra"^^xsd:string | http://img.jamendo.com/artists/m/manra.png | http://manra.free.fr | http://sws.geonames.org/2990129/ |
| "Phoebus"^^xsd:string | http://img.jamendo.com/artists/p/phoebus.png | http://zikweb.org/index.php?op=newindex&catid=1 | http://sws.geonames.org/3013663/ |
| "xser1964"^^xsd:string | http://img.jamendo.com/artists/x/xser1964.jpg | http://www.auranovastudio.com | http://sws.geonames.org/3895114/ |
| "Sud Equipe"^^xsd:string | http://img.jamendo.com/artists/s/sud.equipe.jpg | http://sudequipe.free.fr | http://sws.geonames.org/3036420/ |
| "Dj Poke"^^xsd:string | http://img.jamendo.com/artists/d/dj.poke.jpg | http://www.basic-sombre.com | http://sws.geonames.org/3013793/ |
| "Paiheux"^^xsd:string | http://img.jamendo.com/artists/p/paiheux.jpg | http://paiheux.blogspot.com/ | http://sws.geonames.org/3019317/ |
| "ParaVerse"^^xsd:string | http://img.jamendo.com/artists/p/paraverse.jpg | http://www.myspace.com/paraverse | http://sws.geonames.org/3013500/ |
| "autonomadic"^^xsd:string | http://img.jamendo.com/artists/a/autonomadic.jpg | http://www.autonomadic.com/ | http://sws.geonames.org/6252001/ |
| "Damien et Charles"^^xsd:string | http://img.jamendo.com/artists/d/damien.et.charles.jpg | http://kskusanagi.over-blog.com | http://sws.geonames.org/3017382/ |
| "Rodrigue DOUCHEZ"^^xsd:string | http://img.jamendo.com/artists/r/rodrigue.jpg | http://www.douchez.com | http://sws.geonames.org/2990129/ |
| "eXperpento"^^xsd:string | http://img.jamendo.com/artists/e/experpento.jpg | http://www.experpento.net | http://sws.geonames.org/2510910/ |
| "la bête malade"^^xsd:string | http://img.jamendo.com/artists/l/labetemalade.jpg | http://labetemalade.com | http://sws.geonames.org/2997861/ |
| "zOrozora"^^xsd:string | http://img.jamendo.com/artists/z/zorozora.gif | http://www.zorozora.com | http://sws.geonames.org/3036264/ |
| "Ashran"^^xsd:string | http://img.jamendo.com/artists/a/ashran.jpg | http://ashranfirebrand.free.fr/serendipity/ | http://sws.geonames.org/2802361/ |
| "-;~°§)[ k.ROCKSHIRE ](§°~;-"^^xsd:string | http://img.jamendo.com/artists/r/rockshire.jpg | http://krockshire.podemus.com | http://sws.geonames.org/3031359/ |
| "J.SPRING"^^xsd:string | http://img.jamendo.com/artists/j/j.spring.jpg | http://www.jspring.info | http://sws.geonames.org/2510769/ |
| "ToadStooL"^^xsd:string | http://img.jamendo.com/artists/t/toadstool.jpg | http://www.toadstool-fr.com | http://sws.geonames.org/2997870/ |
| "Steve Stone"^^xsd:string | http://img.jamendo.com/artists/s/steve.stone.jpg | http://no web/ | http://sws.geonames.org/2991627/ |
| "A.post.A"^^xsd:string | http://img.jamendo.com/artists/a/a.post.a.jpg | http://aposta.bleublog.ch | http://sws.geonames.org/2658434/ |
| "FOGMAN"^^xsd:string | http://img.jamendo.com/artists/f/fogman.jpg | http://www.fogman.com.ar | http://sws.geonames.org/3865483/ |
| "nicod"^^xsd:string | http://img.jamendo.com/artists/n/nicod.jpg | http://www.nicod.neufblog.com | http://sws.geonames.org/3031359/ |
| "Drozofil"^^xsd:string | http://img.jamendo.com/artists/l/l-ecoute-s-il-pleut.jpg | http://lecoutesilpleut.blogspot.com | http://sws.geonames.org/3019599/ |
| "Bibopof"^^xsd:string | http://img.jamendo.com/artists/b/bibopof.jpg | http://bibopof.free.fr | http://sws.geonames.org/3034720/ |
| "Dean Chris"^^xsd:string | http://img.jamendo.com/artists/d/dean.chris.jpg | http://dean-chris.blogspot.com | http://sws.geonames.org/3213264/ |
| "Popof"^^xsd:string | http://img.jamendo.com/artists/p/popof.jpg | http://bibopof.free.fr | http://sws.geonames.org/2994111/ |
| "PeterPanProject"^^xsd:string | http://img.jamendo.com/artists/p/peterpanproject.jpg | http://www.embryosonic.net | http://sws.geonames.org/2658434/ |
| "DJ Klass"^^xsd:string | http://img.jamendo.com/artists/d/dj.klass.jpg | http://www.myspace.com/djklassmusic | http://sws.geonames.org/3038049/ |
| "Soul Resistance"^^xsd:string | http://img.jamendo.com/artists/s/soulresistance.jpg | http://soulresistance.free.fr | http://sws.geonames.org/2968815/ |
| "Carole Masseport"^^xsd:string | http://img.jamendo.com/artists/c/carole.masseport.jpg | http://www.carolemasseport.com | http://sws.geonames.org/2968815/ |
| "Yle Sensuelle"^^xsd:string | http://img.jamendo.com/artists/y/yle.sensuelle.jpg | http://www.adrenalinicsound.com | http://sws.geonames.org/3175395/ |
| "deejay dav"^^xsd:string | http://img.jamendo.com/artists/d/deejay.dav.jpg | http://membres.lycos.fr/digitalnoise/ | http://sws.geonames.org/1699807/ |
| "Evergreen Terrasse"^^xsd:string | http://img.jamendo.com/artists/e/evergreen.terrasse.jpg | http://www.evergreenterrasse.com | http://sws.geonames.org/2994111/ |
| "Ehma"^^xsd:string | http://img.jamendo.com/artists/e/ehma.gif | http://blane-est.net/ehma/ | http://sws.geonames.org/2802361/ |
| "causa"^^xsd:string | http://img.jamendo.com/artists/c/causa.jpg | http://www.causarock.com.ar | http://sws.geonames.org/3865483/ |
| "Samgratt"^^xsd:string | http://img.jamendo.com/artists/s/samgratt.jpg | http://www.samgratt.fr.st | http://sws.geonames.org/2994111/ |
| "Ricardo Vecchio"^^xsd:string | http://img.jamendo.com/artists/r/ricardo.vecchio.jpg | http://ricardovecchio.blogspot.com/ | http://sws.geonames.org/3034720/ |
| "B & W"^^xsd:string | http://img.jamendo.com/artists/b/b.w.jpg | http://b.w.gremobs.info | http://sws.geonames.org/3012715/ |
| "Flor Mostaza"^^xsd:string | http://img.jamendo.com/artists/f/flormostaza.jpg | http://www.flormostaza.com.ar | http://sws.geonames.org/3865483/ |
| "TAT"^^xsd:string | http://img.jamendo.com/artists/t/tat.jpg | http://tat.darkfolk.free.fr/ | http://sws.geonames.org/2987410/ |
| "POSITIV HATE"^^xsd:string | http://img.jamendo.com/artists/p/positiv.hate.jpg | http://positivhate.propagande.org | http://sws.geonames.org/2990129/ |
| "YAZ TRAX"^^xsd:string | http://img.jamendo.com/artists/y/yaz.trax1.jpg | http://www.yaztrax.com | http://sws.geonames.org/3034720/ |
| "les bas d'anselm"^^xsd:string | http://img.jamendo.com/artists/l/lesbasdanselm.jpg | http://www.lesbasdanselm.com | http://sws.geonames.org/3015948/ |
| "Aching Beauty"^^xsd:string | http://img.jamendo.com/artists/a/achingbeauty.jpg | http://www.aching-beauty.com/ | http://sws.geonames.org/2968815/ |
| "Talley Lambert"^^xsd:string | http://img.jamendo.com/artists/t/talley.lambert.jpg | http://www.talleylambert.com | http://sws.geonames.org/6252001/ |
| "PearlPlex"^^xsd:string | http://img.jamendo.com/artists/p/perlplex.png | http://www.pearl-plex.de | http://sws.geonames.org/3209442/ |
| "SF5X"^^xsd:string | http://img.jamendo.com/artists/s/sf5x.gif | http://stakyprod.canalblog.com | http://sws.geonames.org/2991627/ |
| "Valérianne Lavi"^^xsd:string | http://img.jamendo.com/artists/v/valerianne.lavi.jpg | http://www.valeriannelavi.com | http://sws.geonames.org/2802361/ |
| "EXIT"^^xsd:string | http://img.jamendo.com/artists/e/exit-project.jpg | http://www.exit-project.com | http://sws.geonames.org/2968815/ |
| "Trafic de Blues"^^xsd:string | http://img.jamendo.com/artists/t/trafic.de.blues.jpg | http://www.traficdeblues.fr.st | http://sws.geonames.org/3012804/ |
| "Deckard"^^xsd:string | http://img.jamendo.com/artists/d/deckard.jpg | http://www.deckard-worldwide.com | http://sws.geonames.org/6556330/ |
| "Solarfall"^^xsd:string | http://img.jamendo.com/artists/s/solarfall.jpg | http://www.solarfall.jexiste.fr | http://sws.geonames.org/2987410/ |
| "subatomicglue"^^xsd:string | http://img.jamendo.com/artists/s/subatomicglue.png | http://www.subatomicglue.com | http://sws.geonames.org/6252001/ |
| "Sea and Field"^^xsd:string | http://img.jamendo.com/artists/s/sea.and.field.jpg | http://www.sea-and-field.com | http://sws.geonames.org/2997856/ |
| "Laxa_Tif"^^xsd:string | http://img.jamendo.com/artists/l/laxa.tif.jpg | http://laxatif.canalblog.com/ | http://sws.geonames.org/2991627/ |
| "Dream ED"^^xsd:string | http://img.jamendo.com/artists/d/dreamed.jpg | http://dream.ed.free.fr | http://sws.geonames.org/3013767/ |
| "Matthew Tyas"^^xsd:string | http://img.jamendo.com/artists/m/matthew.tyas.jpg | http://mtyas.com | http://sws.geonames.org/2984887/ |
| "Clainzy"^^xsd:string | http://img.jamendo.com/artists/c/clainzy.jpg | http://perso.orange.fr/music.titi/ | http://sws.geonames.org/3019599/ |
| "#Dance 75#"^^xsd:string | http://img.jamendo.com/artists/d/dance.75.png | http://www.dance.cmon.biz | http://sws.geonames.org/2968815/ |
| "anarchy in progress"^^xsd:string | http://img.jamendo.com/artists/a/anarchy.in.progress.jpg | http://dem0nd1g1tal.blogspot.com/ | http://sws.geonames.org/3026644/ |
| "Saelynh"^^xsd:string | http://img.jamendo.com/artists/s/saelynh.jpg | http://saelynh.hautetfort.com/ | http://sws.geonames.org/3013657/ |
| "El Frero"^^xsd:string | http://img.jamendo.com/artists/e/el.frero.jpg | http://www.elfrero.com | http://sws.geonames.org/2990129/ |
| "Testicore"^^xsd:string | http://img.jamendo.com/artists/t/testicore.jpg | http://www.testicore.fr.st | http://sws.geonames.org/3013500/ |
| "Quendi"^^xsd:string | http://img.jamendo.com/artists/q/quendi.gif | http://www.myspace.com/quendi57 | http://sws.geonames.org/2991627/ |
| "New-York Black Watacloza"^^xsd:string | http://img.jamendo.com/artists/n/nybwc.jpg | http://nybwc.free.fr | http://sws.geonames.org/2991627/ |
| "Samsara"^^xsd:string | http://img.jamendo.com/artists/s/samsara.oneshot.jpg | http://www.samsara.new.fr | http://sws.geonames.org/3013767/ |
| "gautam sen"^^xsd:string | http://img.jamendo.com/artists/g/gautam.sen.jpg | http://gaetansengupta.free.fr/site/nouveausite.swf | http://sws.geonames.org/2990129/ |
| "Yoogz & Nix"^^xsd:string | http://img.jamendo.com/artists/y/yoogz.nix.jpg | http://spaces.msn.com/nixno-funk/ | http://sws.geonames.org/3012715/ |
| "Nika"^^xsd:string | http://img.jamendo.com/artists/n/nika.jpg | http://face-nika.sup.fr | http://sws.geonames.org/2991627/ |
| "Asser Sleds"^^xsd:string | http://img.jamendo.com/artists/a/asser.sleds.jpg | http://assersleds.over-blog.com/ | http://sws.geonames.org/3026644/ |
| "DJ Epsilon"^^xsd:string | http://img.jamendo.com/artists/d/djepsilon.jpg | http://www.djepsilon.net | http://sws.geonames.org/3034720/ |
| "The Clock"^^xsd:string | http://img.jamendo.com/artists/t/theclock.jpg | http://www.theclock.org | http://sws.geonames.org/6252001/ |
| "Maniax Memori"^^xsd:string | http://img.jamendo.com/artists/m/maniax.memori.jpg | http://maniaxmemori.net | http://sws.geonames.org/3031359/ |
| "Idayam"^^xsd:string | http://img.jamendo.com/artists/i/idayam.png | http://www.idayam.net | http://sws.geonames.org/2971071/ |
| "Soap Parano"^^xsd:string | http://img.jamendo.com/artists/s/soapparano.jpg | http://www.soapparano.net | http://sws.geonames.org/2967196/ |
| "Pied d'nez"^^xsd:string | http://img.jamendo.com/artists/p/pied.d.nez.png | http://piednez.free.fr | http://sws.geonames.org/3029094/ |
| "cyprien"^^xsd:string | http://img.jamendo.com/artists/c/cyprien.jpg | http://www.night-bird.c0wb0ys.org | http://sws.geonames.org/3015948/ |
| "sukara"^^xsd:string | http://img.jamendo.com/artists/s/sukara.png | http://sukara.ouame.com | http://sws.geonames.org/3012804/ |
| "Amaral"^^xsd:string | http://img.jamendo.com/artists/a/amaral.png | http://www.misogyne.com/ | http://sws.geonames.org/3013767/ |
| "HORION"^^xsd:string | http://img.jamendo.com/artists/h/horion.jpg | http://myspace.com/horion | http://sws.geonames.org/3013767/ |
| "Lillian Gish"^^xsd:string | http://img.jamendo.com/artists/l/lillian.gish.jpg | http://lilliangish.hautetfort.com/ | http://sws.geonames.org/2802361/ |
| "Pompey"^^xsd:string | http://img.jamendo.com/artists/p/pompey.jpg | http://www.pocketclock.org/pompey | http://sws.geonames.org/2077456/ |
| "Les baguettes moulées"^^xsd:string | http://img.jamendo.com/artists/l/les.baguettes.moulees.jpg | http://www.lesbaguettesmoulees.com | http://sws.geonames.org/2975926/ |
| "Crabtambour"^^xsd:string | http://img.jamendo.com/artists/c/crabtambour.jpg | http://www.crabtambour.infos.st | http://sws.geonames.org/2967681/ |
| "4neurones"^^xsd:string | http://img.jamendo.com/artists/4/4neurones.jpg | http://www.4-n.org | http://sws.geonames.org/2990129/ |
| "Sacha Rives"^^xsd:string | http://img.jamendo.com/artists/s/sacha.jpg | http://sacha33000.free.fr | http://sws.geonames.org/3015948/ |
| "Heymeget"^^xsd:string | http://img.jamendo.com/artists/h/heymeget.jpg | http://heymeget.typepad.com/walrus_pop_music/ | http://sws.geonames.org/2968815/ |
| "Guillaume de la Chapelle"^^xsd:string | http://img.jamendo.com/artists/g/guillaume.de.la.chapelle.jpg | http://g.dlc.free.fr | http://sws.geonames.org/3017382/ |
| "nOle"^^xsd:string | http://img.jamendo.com/artists/n/nole.gif | http://nolemusic.free.fr | http://sws.geonames.org/3017382/ |
| "Platinum Limb"^^xsd:string | http://img.jamendo.com/artists/p/platinumlimb.jpg | http://platinumlimb.org/ | http://sws.geonames.org/6252001/ |
| "Cero Amor"^^xsd:string | http://img.jamendo.com/artists/c/ceroamor.png | http://www.mundofree.com/ceroamor | http://sws.geonames.org/2510769/ |
| "Anarcotik"^^xsd:string | http://img.jamendo.com/artists/a/anarcotik.jpg | http://anarcotik.free.fr | http://sws.geonames.org/3023423/ |
| "WELFARE"^^xsd:string | http://img.jamendo.com/artists/w/welfare.jpg | http://www.welfare.fr.nf | http://sws.geonames.org/3012715/ |
| "Morpheus"^^xsd:string | http://img.jamendo.com/artists/m/morpheus.jpg | http://www.chaospiral-studios.net | http://sws.geonames.org/2510769/ |
| "EL HUERTO DEL CURA"^^xsd:string | http://img.jamendo.com/artists/e/el.huerto.del.cura.gif | http://www.elhuertodelcura.com | http://sws.geonames.org/2510769/ |
| "Artistix"^^xsd:string | http://img.jamendo.com/artists/a/artistix.png | http://nossaraj.free.fr/ | http://sws.geonames.org/2975249/ |
| "le Komité Mité"^^xsd:string | http://img.jamendo.com/artists/k/komite.mite.jpg | http://www.chez.com/drjekyll/ | http://sws.geonames.org/2991627/ |
| "Keroseno"^^xsd:string | http://img.jamendo.com/artists/k/keroseno.jpg | http://www.keroseno.org/blog | http://sws.geonames.org/2510769/ |
| "clbustos"^^xsd:string | http://img.jamendo.com/artists/c/clbustos.png | http://www.algodemusica.com/es/artist/clbustos | http://sws.geonames.org/3895114/ |
| "Stan-X"^^xsd:string | http://img.jamendo.com/artists/s/stan-x.jpg | http://www.stan-x.com | http://sws.geonames.org/3019599/ |
| "Weirdland"^^xsd:string | http://img.jamendo.com/artists/w/weirdland.png | http://weirdland.fr.st | http://sws.geonames.org/2997870/ |
| "Monkey Throw Feces"^^xsd:string | http://img.jamendo.com/artists/m/monkeythrowfeces.png | http://www.yodellingllama.com/?page_id=99 | http://sws.geonames.org/223816/ |
| "Sidekick Lupchen & The Bad Generation"^^xsd:string | http://img.jamendo.com/artists/s/sidekick.lupchen.and.the.bad.generation.jpg | http://www.bad-generation.de | http://sws.geonames.org/2921044/ |
| "UFS"^^xsd:string | http://img.jamendo.com/artists/u/ufs.jpg | http://perso.wanadoo.fr/U.F.S/ | http://sws.geonames.org/3013767/ |
| "Natis"^^xsd:string | http://img.jamendo.com/artists/n/natis.jpg | http://www.natis.fr.tc | http://sws.geonames.org/3036264/ |
| "Buddhaz Yoyos"^^xsd:string | http://img.jamendo.com/artists/b/buddhaz.yoyos.jpg | http://buddhazyoyos.new.fr | http://sws.geonames.org/2975248/ |
| "Ecchymoze"^^xsd:string | http://img.jamendo.com/artists/e/ecchymoze.jpg | http://www.ecchymoze.com | http://sws.geonames.org/3034720/ |
| "HEAVENOISE"^^xsd:string | http://img.jamendo.com/artists/h/heavenoise.jpg | http://www.heavenoise.com | http://sws.geonames.org/3175395/ |
| "Les Petits Chanteurs de Montigny"^^xsd:string | http://img.jamendo.com/artists/p/pcmontigny.jpg | http://melimelodie.montigny.free.fr | http://sws.geonames.org/2991627/ |
| "Pascal Garry"^^xsd:string | http://img.jamendo.com/artists/p/pascal.garry.jpg | http://www.pascalgarry.com | http://sws.geonames.org/3019599/ |
| "Micko"^^xsd:string | http://img.jamendo.com/artists/m/micko.jpg | http://www.micko.blogspot.com | http://sws.geonames.org/2510769/ |
| "#Blockout"^^xsd:string | http://img.jamendo.com/artists/b/blockout.jpg | http://www.blockout.new.fr | http://sws.geonames.org/2967196/ |
| "UNEX"^^xsd:string | http://img.jamendo.com/artists/u/unex.jpg | http://www.myspace.com/unexofgermany | http://sws.geonames.org/2921044/ |
| "Julien Stankiewicz"^^xsd:string | http://img.jamendo.com/artists/j/julien.stankiewicz.jpg | http://stankiewicz.free.fr | http://sws.geonames.org/2968815/ |
| "Desiderata"^^xsd:string | http://img.jamendo.com/artists/d/desiderata.jpg | http://www.desiderata.ch | http://sws.geonames.org/2658182/ |
| "WENLOCK"^^xsd:string | http://img.jamendo.com/artists/w/wenlock.jpg | http://wenlockworld.free.fr | http://sws.geonames.org/2989663/ |
| "laMundial.net"^^xsd:string | http://img.jamendo.com/artists/l/lamundial.jpg | http://www.lamundial.net | http://sws.geonames.org/2510769/ |
| "Antony Raijekov"^^xsd:string | http://img.jamendo.com/artists/a/antony.raijekov.jpg | http://tony.cult.bg | http://sws.geonames.org/6459211/ |
| "Cynicism"^^xsd:string | http://img.jamendo.com/artists/c/cynicism.jpg | http://www.cynicism.de | http://sws.geonames.org/6556330/ |
| "Dazibao"^^xsd:string | http://img.jamendo.com/artists/d/dazibao.jpg | http://www.dazibao-land.com | http://sws.geonames.org/2967222/ |
| "TkDonF"^^xsd:string | http://img.jamendo.com/artists/t/tkdonf.jpg | http://tkdonf.supersite.fr | http://sws.geonames.org/3036420/ |
| "The Chadderandom Abyss"^^xsd:string | http://img.jamendo.com/artists/c/chadderandom.abyss.jpg | http://www.geocities.com/drandomusic/ | http://sws.geonames.org/6252001/ |
| "Le bruit de la rue"^^xsd:string | http://img.jamendo.com/artists/l/le.bruit.de.la.rue.jpg | http://lebruitdelarue.free.fr | http://sws.geonames.org/3012715/ |
| "Atomic cat"^^xsd:string | http://img.jamendo.com/artists/a/atomic.cat.jpg | http://www.atomic-cat.fr | http://sws.geonames.org/3013500/ |
| "from roots"^^xsd:string | http://img.jamendo.com/artists/f/from.roots.jpg | http://fromroots.over-blog.com | http://sws.geonames.org/3013767/ |
| "Galdson"^^xsd:string | http://img.jamendo.com/artists/g/galdson.png | http://galdson.com | http://sws.geonames.org/2510769/ |
| "Corentin et ses Danseuses"^^xsd:string | http://img.jamendo.com/artists/c/corentin.et.ses.danseuses.gif | http://corentinlesite.free.fr | http://sws.geonames.org/2989663/ |
| "NMDV"^^xsd:string | http://img.jamendo.com/artists/n/nmdv.gif | http://nmdv.vandalay.org | http://sws.geonames.org/6556330/ |
| "Quezillacolt45"^^xsd:string | http://img.jamendo.com/artists/q/quezillacolt45.jpg | http://quezillacolt45.blogspot.com/ | http://sws.geonames.org/6251999/ |
| "Vincent Soleil"^^xsd:string | http://img.jamendo.com/artists/v/vincent.soleil.jpg | http://vsoleil.free.fr/anotherpasttime-lesite/ | http://sws.geonames.org/2968815/ |
| "Le Milieu"^^xsd:string | http://img.jamendo.com/artists/l/lemilieu.png | http://lemilieu.free.fr | http://sws.geonames.org/3029094/ |
| "Wuzz"^^xsd:string | http://img.jamendo.com/artists/w/wuzz.jpg | http://jerome.wuzz.free.fr/wuzz | http://sws.geonames.org/3038049/ |
| "Sickboys and Lowmen"^^xsd:string | http://img.jamendo.com/artists/s/sicklow.jpg | http://www.sickboys.nl | http://sws.geonames.org/2750405/ |
| "steven host"^^xsd:string | http://img.jamendo.com/artists/s/stevenhost.jpg | http://stevenhost.free.fr | http://sws.geonames.org/2968815/ |
| "Hiktheb"^^xsd:string | http://img.jamendo.com/artists/h/hiktheb.jpg | http://www.hiktheb.com | http://sws.geonames.org/2989663/ |
| "57 grados"^^xsd:string | http://img.jamendo.com/artists/5/57grados.jpg | http://www.57grados.tk | http://sws.geonames.org/3114471/ |
| "Essebea"^^xsd:string | http://img.jamendo.com/artists/e/essebea.jpg | http://essebea.blogspot.com/ | http://sws.geonames.org/3036420/ |
| "djbouly"^^xsd:string | http://img.jamendo.com/artists/d/djbouly.jpg | http://chefgeorges.free.fr | http://sws.geonames.org/2988430/ |
| "Georges Bloch"^^xsd:string | http://img.jamendo.com/artists/g/georges.bloch.jpg | http://www.georgesbloch.com | http://sws.geonames.org/2658434/ |
| "Talking Cure"^^xsd:string | http://img.jamendo.com/artists/t/talking.cure.jpg | http://cyrille.lips.club.fr/ | http://sws.geonames.org/2975517/ |
| "Avastar"^^xsd:string | http://img.jamendo.com/artists/a/avastar.png | http://myspace.com/avastarmusic | http://sws.geonames.org/2960313/ |
| "Razzmatazz"^^xsd:string | http://img.jamendo.com/artists/r/razzmatazz.jpg | http://lesrazzmatazz.skyblog.com | http://sws.geonames.org/2984986/ |
| "Elias Schwerdtfeger"^^xsd:string | http://img.jamendo.com/artists/e/elias.schwerdtfeger.png | http://www.tamagothi.de/ | http://sws.geonames.org/2930484/ |
| "Johannes Hopfner"^^xsd:string | http://img.jamendo.com/artists/j/johanneshopfner.gif | http://www.myspace.com/johanneshopfner | http://sws.geonames.org/3017382/ |
| "Avec elle"^^xsd:string | http://img.jamendo.com/artists/a/avecelle.jpg | http://www.avecelle.org | http://sws.geonames.org/2967196/ |
| "The Washing Machine"^^xsd:string | http://img.jamendo.com/artists/t/twm.jpg | http://www.thewashingmachine.tk | http://sws.geonames.org/2994111/ |
| "Bass"^^xsd:string | http://img.jamendo.com/artists/b/bass.jpg | http://osiris4.free.fr | http://sws.geonames.org/3038375/ |
| "Madame X"^^xsd:string | http://img.jamendo.com/artists/m/madame.x.jpg | http://www.myspace.com/littlecaniche | http://sws.geonames.org/2996663/ |
| "Les Ombres"^^xsd:string | http://img.jamendo.com/artists/l/les.ombres.jpg | http://www.lesombres.fr | http://sws.geonames.org/3019599/ |
| "Jimouze"^^xsd:string | http://img.jamendo.com/artists/j/jimouze.jpg | http://www.jimouze.com | http://sws.geonames.org/3038049/ |
| "DJ Farwest"^^xsd:string | http://img.jamendo.com/artists/d/dj.farwest.jpg | http://www.hiphop-farwest.at.tf | http://sws.geonames.org/2782113/ |
| "R.E.P - Repose En Paix"^^xsd:string | http://img.jamendo.com/artists/r/r.e.p.jpg | http://www.myspace.com/reposeenpaix | http://sws.geonames.org/3013767/ |
| "David Law n' The Arkitekts"^^xsd:string | http://img.jamendo.com/artists/d/david.law.n.the.arkitekts.jpg | http://mapage.noos.fr/davidlaw | http://sws.geonames.org/2968815/ |
| "Luca Deriu"^^xsd:string | http://img.jamendo.com/artists/l/luca.deriu.jpg | http://www.lucaderiu.com | http://sws.geonames.org/3173434/ |
| "ARAI"^^xsd:string | http://img.jamendo.com/artists/a/arai.jpg | http://araiweb.spaces.live.com/ | http://sws.geonames.org/3114471/ |
| "no feeling"^^xsd:string | http://img.jamendo.com/artists/n/no.feeling.jpg | http://nofeelingart.blogspot.com | http://sws.geonames.org/2997523/ |
| "F.GLAUSINGER"^^xsd:string | http://img.jamendo.com/artists/g/glausinger.jpg | http://glausinger.free.fr | http://sws.geonames.org/2968815/ |
| "Takattack"^^xsd:string | http://img.jamendo.com/artists/t/takattack.jpg | http://www.takattack.net | http://sws.geonames.org/6251999/ |
| "Les Petites Violettes"^^xsd:string | http://img.jamendo.com/artists/l/les.petites.violettes.jpg | http://les-petites-violettes.max.st/ | http://sws.geonames.org/2991627/ |
| "Sleeping Core"^^xsd:string | http://img.jamendo.com/artists/s/sleepingcore.gif | http://www.sleepingcore.com | http://sws.geonames.org/2659752/ |
| "Rouletabille"^^xsd:string | http://img.jamendo.com/artists/r/rouletabille.jpg | http://www.myspace.com/rouletabil | http://sws.geonames.org/3015948/ |
| "deskaya"^^xsd:string | http://img.jamendo.com/artists/d/deskayarockband.jpg | http://deskaya.new.fr/ | http://sws.geonames.org/2997870/ |
| "Angelb"^^xsd:string | http://img.jamendo.com/artists/a/angelb.jpg | http://angelibanez.free.fr | http://sws.geonames.org/3013663/ |
| "Buze Julien"^^xsd:string | http://img.jamendo.com/artists/b/buze.julien.jpg | http://www.lepianiste.be.cx | http://sws.geonames.org/2802361/ |
| "X4U"^^xsd:string | http://img.jamendo.com/artists/x/x4u.jpg | http://bluemiss.free.fr/Sextripcompilation/index.htm | http://sws.geonames.org/3017382/ |
| "AARON THE CUTTER"^^xsd:string | http://img.jamendo.com/artists/a/aaron.the.cutter.jpg | http://www.myspace.com/aaronthecutter | http://sws.geonames.org/2975246/ |
| "Drallibotrop"^^xsd:string | http://img.jamendo.com/artists/d/drallibotrop.jpg | http://drallibotrop.free.fr | http://sws.geonames.org/3013657/ |
| "CanBlaster"^^xsd:string | http://img.jamendo.com/artists/c/canblaster.jpg | http://www.myspace.com/canblaster | http://sws.geonames.org/2990129/ |
| "Eva Garcia"^^xsd:string | http://img.jamendo.com/artists/e/eva.garcia.jpg | http://www.evagarcia.fr | http://sws.geonames.org/2975246/ |
| "Fanny Engelhart"^^xsd:string | http://img.jamendo.com/artists/f/fanny.engelhart.jpg | http://pas encore de site web/ | http://sws.geonames.org/2997856/ |
| "SLICER"^^xsd:string | http://img.jamendo.com/artists/s/slicer.jpg | http://www.myspace.com/slicerconvoyeurdeson | http://sws.geonames.org/3026646/ |
| "FarraH Diod Of Antifogs"^^xsd:string | http://img.jamendo.com/artists/f/farrah.diod.of.antifogs.jpg | http://www.diod.org | http://sws.geonames.org/2968815/ |
| "Scoldt"^^xsd:string | http://img.jamendo.com/artists/s/scoldt.jpg | http://www.myspace.com/scoldt | http://sws.geonames.org/3016670/ |
| "pushing globe"^^xsd:string | http://img.jamendo.com/artists/p/pushing.globe.gif | http://www.myspace.com/pushingglobe | http://sws.geonames.org/3013500/ |
| "MORREY"^^xsd:string | http://img.jamendo.com/artists/t/tumorapa.jpg | http://morrey.free.fr | http://sws.geonames.org/2589581/ |
| "b-mor"^^xsd:string | http://img.jamendo.com/artists/b/b-mor.jpg | http://b-mor.over-blog.com/ | http://sws.geonames.org/2997857/ |
| "LOMMORE"^^xsd:string | http://img.jamendo.com/artists/l/lommore.jpg | http://www.lommore.com | http://sws.geonames.org/2988430/ |
| "Junk d.n.A"^^xsd:string | http://img.jamendo.com/artists/j/junk.d.n.a.jpg | http://www.junkdna.fr.st | http://sws.geonames.org/2991627/ |
| "JCRZ"^^xsd:string | http://img.jamendo.com/artists/j/jcrz.gif | http://www.jcrz.com | http://sws.geonames.org/3013767/ |
| "Skandalo Publico"^^xsd:string | http://img.jamendo.com/artists/s/skandalo.publico.jpg | http://skandalopublico.free.fr/ | http://sws.geonames.org/2987410/ |
| "Andrew Jimenez"^^xsd:string | http://img.jamendo.com/artists/a/andrewjimenez.jpg | http://www.myspace.com/andrewjimenez | http://sws.geonames.org/6252001/ |
| "Laocoon"^^xsd:string | http://img.jamendo.com/artists/l/laocoon.jpg | http://laocoon83 | http://sws.geonames.org/2970749/ |
| "Acoustic Affinités"^^xsd:string | http://img.jamendo.com/artists/a/acoustic.affinites.jpg | http://www.acoustic-affinites.com | http://sws.geonames.org/2991627/ |
| "Grace Valhalla"^^xsd:string | http://img.jamendo.com/artists/g/grace.valhalla.jpg | http://gracevalhalla.hautetfort.com | http://sws.geonames.org/2994111/ |
| "Les Oreilles en Ballades"^^xsd:string | http://img.jamendo.com/artists/l/les.oreilles.en.ballades.gif | http://christophe.kay.free.fr/les-oreilles-en-ballades/m.html | http://sws.geonames.org/3031359/ |
| "Stidiek"^^xsd:string | http://img.jamendo.com/artists/s/stidiek.jpg | http://www.myspace.com/stidiekmusic | http://sws.geonames.org/3114471/ |
| "Pol B & Binarymind"^^xsd:string | http://img.jamendo.com/artists/p/pol.b.binarymind.jpg | http://www.binarymind.org | http://sws.geonames.org/2968815/ |
| "Tedmiles"^^xsd:string | http://img.jamendo.com/artists/t/tedmiles.jpg | http://www.tedmiles.fr.st | http://sws.geonames.org/2990129/ |
| "Zampano"^^xsd:string | http://img.jamendo.com/artists/z/zampano.jpg | http://zampano.propagande.org | http://sws.geonames.org/2968815/ |
| "L'Onomatopeur"^^xsd:string | http://img.jamendo.com/artists/l/lonomatopeur.jpg | http://www.myspace.com/lonomatopeur | http://sws.geonames.org/2997861/ |
| "BROM"^^xsd:string | http://img.jamendo.com/artists/b/brom.jpg | http://www.brom.us | http://sws.geonames.org/6252001/ |
| "Armust Blegde"^^xsd:string | http://img.jamendo.com/artists/a/armust.blegde.jpg | http://www.violon-guitare.com | http://sws.geonames.org/3013736/ |
| "La Goutte au Nez"^^xsd:string | http://img.jamendo.com/artists/l/lagoutteaunez.jpg | http://www.lagoutteaunez.com | http://sws.geonames.org/3012804/ |
| "CraZyH et Djézinho"^^xsd:string | http://img.jamendo.com/artists/c/crazyh.et.djezinho.jpg | http://www.myspace.com/kallima1 | http://sws.geonames.org/2997857/ |
| "sound of jack"^^xsd:string | http://img.jamendo.com/artists/s/sound.of.jack.jpg | http://soundofjack.blogspot.com/ | http://sws.geonames.org/3016670/ |
| "Stoy"^^xsd:string | http://img.jamendo.com/artists/s/stoy.jpg | http://stoy.over-blog.com/ | http://sws.geonames.org/3013663/ |
| "HARRY KANE"^^xsd:string | http://img.jamendo.com/artists/h/harry.kane.jpg | http://www.harrykane.es | http://sws.geonames.org/6355240/ |
| "Les Ânes Animent"^^xsd:string | http://img.jamendo.com/artists/l/les.anes.animent.jpg | http://www.anesaniment.fr | http://sws.geonames.org/2997870/ |
| "hapax"^^xsd:string | http://img.jamendo.com/artists/h/hapax.jpg | http://www.soundclick.com/hapax | http://sws.geonames.org/3012804/ |
| "Ellenbogen"^^xsd:string | http://img.jamendo.com/artists/e/ellenbogen.jpg | http://www.videoart.net/home/Artists/ArtistPage.cfm?Artist_ID=855 | http://sws.geonames.org/2884161/ |
| "gasno prod"^^xsd:string | http://img.jamendo.com/artists/g/gasnoprod.jpg | http://musique-libre.org/static.php#?op=musiqueIndex.php&npds=-1&group=Gasno prod | http://sws.geonames.org/2984986/ |
| "Minus Clay"^^xsd:string | http://img.jamendo.com/artists/m/minus.clay.jpg | http://membres.lycos.fr/mercutiosdead | http://sws.geonames.org/3017382/ |
| "Revolution Void"^^xsd:string | http://img.jamendo.com/artists/r/revolutionvoid.jpg | http://www.revolutionvoid.com | http://sws.geonames.org/6252001/ |
| "savium"^^xsd:string | http://img.jamendo.com/artists/s/savium.jpg | http://www.saviumsaliva.com/ | http://sws.geonames.org/2623032/ |
| "Anathème"^^xsd:string | http://img.jamendo.com/artists/a/anatheme.jpg | http://www.anatheme.fr.st | http://sws.geonames.org/2994111/ |
| "Scape.Goat"^^xsd:string | http://img.jamendo.com/artists/s/scape.goat.jpg | http://www.myspace.com/goatscape | http://sws.geonames.org/2990129/ |
| "CHRYSALLIS"^^xsd:string | http://img.jamendo.com/artists/c/chrysallis.jpg | __jamendo-3.rdf#__Description1 | http://sws.geonames.org/2975248/ |
| "NUN"^^xsd:string | http://img.jamendo.com/artists/n/nun.jpg | http://www.nunsarean.com | http://sws.geonames.org/3104469/ |
| "stefan d"^^xsd:string | http://img.jamendo.com/artists/s/stefand.jpg | http://www.furaxe.qc.ca | http://sws.geonames.org/6251999/ |
| "Lady Renoir"^^xsd:string | http://img.jamendo.com/artists/l/lady.renoir.jpg | __jamendo-3.rdf#__Description2 | http://sws.geonames.org/2971071/ |
| "i am this"^^xsd:string | http://img.jamendo.com/artists/i/iamthis.jpg | http://www.1amthi5.piczo.com/ | http://sws.geonames.org/6252001/ |
| "Dr. Wanker"^^xsd:string | http://img.jamendo.com/artists/d/dr.wanker.jpg | http://www.jamendo.com/dr.wanker | http://sws.geonames.org/2990129/ |
| "GOR"^^xsd:string | http://img.jamendo.com/artists/g/gor.jpg | http://perso.orange.fr/religionnaire/relproductions.htm | http://sws.geonames.org/3013657/ |
| "La cinquième roue"^^xsd:string | http://img.jamendo.com/artists/l/lacinquiemeroue.jpg | http://www.lacinquiemeroue.free.fr | http://sws.geonames.org/2968815/ |
| "Gris"^^xsd:string | http://img.jamendo.com/artists/g/gris.jpg | http://www.grisrock.com.ar | http://sws.geonames.org/3865483/ |
| "Paper Plane Pilots"^^xsd:string | http://img.jamendo.com/artists/p/paper.plane.pilots.jpg | http://paperplanepilots.free.fr | http://sws.geonames.org/2967196/ |
| "Dwight Jack"^^xsd:string | http://img.jamendo.com/artists/d/dwight.jack.png | http://www.webalice.it/dwjack/ | http://sws.geonames.org/3175395/ |
| "blackwire"^^xsd:string | http://img.jamendo.com/artists/b/blackwire.jpg | http://blog.libero.it/blackwire/ | http://sws.geonames.org/3175395/ |
| "No Replay"^^xsd:string | http://img.jamendo.com/artists/n/noreplay.jpg | http://www.noreplay.net | http://sws.geonames.org/6355234/ |
| "Habuhiah-zen"^^xsd:string | http://img.jamendo.com/artists/h/habuhiah-zen.jpg | http://habuhiah-zen-paradise.spaces.msn.com/ | http://sws.geonames.org/3013663/ |
| "David Law"^^xsd:string | http://img.jamendo.com/artists/d/david.law.jpg | http://mapage.noos.fr/davidlaw | http://sws.geonames.org/2968815/ |
| "OMAÏNEN"^^xsd:string | http://img.jamendo.com/artists/o/omainen.png | http://www.omainen.com | http://sws.geonames.org/2968815/ |
| "Sevenless"^^xsd:string | http://img.jamendo.com/artists/s/sevenless.jpg | http://nicolas.manel.free.fr | http://sws.geonames.org/6252001/ |
| "Too Many I's"^^xsd:string | http://img.jamendo.com/artists/t/too.many.i.s.jpg | http://www.myspace.com/toomanyis | http://sws.geonames.org/6252001/ |
| "Whiskey Therapy"^^xsd:string | http://img.jamendo.com/artists/w/whiskey.therapy.jpg | http://www.whiskeytherapy.tk | http://sws.geonames.org/3108680/ |
| "OH"^^xsd:string | http://img.jamendo.com/artists/o/oh.jpg | http://www.myspace.com/ohmusicband | http://sws.geonames.org/2988430/ |
| "Georges Habitbol"^^xsd:string | http://img.jamendo.com/artists/g/georgeshabitbol.jpg | http://www.myspace.com/whiteobscurity | http://sws.geonames.org/3017382/ |
| "ADDICTION"^^xsd:string | http://img.jamendo.com/artists/a/addiction.jpg | http://www.myspace.com/4ddicti0n | http://sws.geonames.org/2997870/ |
| "Nayaree"^^xsd:string | http://img.jamendo.com/artists/n/nayaree.jpg | http://www.myspace.com/nayareemusic | http://sws.geonames.org/2987410/ |
| "The Mystery Artist"^^xsd:string | http://img.jamendo.com/artists/t/the.mystery.artist.jpg | http://www.myspace.com/themysteryartist | http://sws.geonames.org/2264397/ |
| "After Glow"^^xsd:string | http://img.jamendo.com/artists/a/after.glow.jpg | http://www.after-glow.ws | http://sws.geonames.org/2991627/ |
| "Chapter 9"^^xsd:string | http://img.jamendo.com/artists/c/chapter9.jpg | http://www.sellaband.com/chapter9 | http://sws.geonames.org/2968815/ |
| "TDm"^^xsd:string | http://img.jamendo.com/artists/t/tdm.jpg | http://www.myspace.com/julienbeau | http://sws.geonames.org/3015948/ |
| "Pivert"^^xsd:string | http://img.jamendo.com/artists/p/pivert.jpg | http://pivert.bslfd.net | http://sws.geonames.org/2991627/ |
| "DJ Black Red"^^xsd:string | http://img.jamendo.com/artists/d/dj.black.red.png | http://melotrope.com | http://sws.geonames.org/3012715/ |
| "fonetik"^^xsd:string | http://img.jamendo.com/artists/f/fonetik.jpg | http://music-open-source.com | http://sws.geonames.org/3012715/ |
| "Lémo"^^xsd:string | http://img.jamendo.com/artists/l/lemo.jpg | http://www.lemo-web.com | http://sws.geonames.org/3013663/ |
| "Staiff featuring Klub"^^xsd:string | http://img.jamendo.com/artists/s/staiff.featuring.klub.jpg | http://www.staiff.com | http://sws.geonames.org/2991879/ |
| "Activ-System"^^xsd:string | http://img.jamendo.com/artists/a/activ-system.jpg | http://www.boxson.net | http://sws.geonames.org/2987410/ |
| "altor dj"^^xsd:string | http://img.jamendo.com/artists/a/altor.dj.jpg | http://www.altordj.com | http://sws.geonames.org/2658182/ |
| "Artkane"^^xsd:string | http://img.jamendo.com/artists/a/artkane.jpg | http://www.artkane-rock.new.fr | http://sws.geonames.org/2997861/ |
| "pang pung"^^xsd:string | http://img.jamendo.com/artists/p/pangpung.jpg | http://pangpung.free.Fr | http://sws.geonames.org/3012804/ |
| "Fate Close Warning"^^xsd:string | http://img.jamendo.com/artists/f/fateclosewarning.jpg | http://www.myspace.com/fateclosewarning | http://sws.geonames.org/2510769/ |
| "Phalaenopsis"^^xsd:string | http://img.jamendo.com/artists/p/phalaenopsis.jpg | http://www.phalaenopsis.tk | http://sws.geonames.org/2991627/ |
| "M26.7"^^xsd:string | http://img.jamendo.com/artists/m/m26.7.gif | http://rocksyndicate.com/ | http://sws.geonames.org/2990129/ |
| "JT25"^^xsd:string | http://img.jamendo.com/artists/j/jt25.jpg | http://www.jt25.net | http://sws.geonames.org/2997857/ |
| "Dj Toxik Waste"^^xsd:string | http://img.jamendo.com/artists/d/dj.toxik.waste.gif | http://djtoxikwaste.centerblog.net/ | http://sws.geonames.org/2802361/ |
| "Lark Wiskey"^^xsd:string | http://img.jamendo.com/artists/l/larkwiskey.jpg | http://www.larkwiskey.com | http://sws.geonames.org/3469034/ |
| "BOSSIIBOSS"^^xsd:string | http://img.jamendo.com/artists/b/bossiiboss.jpg | http://bossiiboss.biz | http://sws.geonames.org/2984887/ |
| "Josh"^^xsd:string | http://img.jamendo.com/artists/j/josh.jpg | http://joshmusic.infogami.com/ | http://sws.geonames.org/3012715/ |
| "Barzaoui"^^xsd:string | http://img.jamendo.com/artists/b/barzaoui.jpg | http://www.barzaoui.fr | http://sws.geonames.org/2968815/ |
| "noise sound nation"^^xsd:string | http://img.jamendo.com/artists/n/noise.sound.nation.jpg | http://xoomer.alice.it/soundofnoise/ | http://sws.geonames.org/3176958/ |
| "CC4.project"^^xsd:string | http://img.jamendo.com/artists/c/cc4.project.jpg | http://www.myspace.com/cc4project | http://sws.geonames.org/2994111/ |
| "Drunk Yoghurt"^^xsd:string | http://img.jamendo.com/artists/d/drunk.yoghurt.jpg | http://drunkyoghurt.blogspot.com | http://sws.geonames.org/6252001/ |
| "i.care"^^xsd:string | http://img.jamendo.com/artists/i/i.care.jpg | http://i.care.music.perso.orange.fr/ | http://sws.geonames.org/2970749/ |
| "INTI"^^xsd:string | http://img.jamendo.com/artists/i/inti.png | http://www.inti-web.org | http://sws.geonames.org/2975249/ |
| "Kaeba"^^xsd:string | http://img.jamendo.com/artists/k/kaeba.jpg | http://www.kaeba.altervista.org | http://sws.geonames.org/3169069/ |
| "Methu"^^xsd:string | http://img.jamendo.com/artists/m/methu.png | http://methu.free.fr | http://sws.geonames.org/3012804/ |
| "Menfi"^^xsd:string | http://img.jamendo.com/artists/m/menfi.jpg | http://www.menfi-rock.fr.tc | http://sws.geonames.org/2991627/ |
| "MEATLES"^^xsd:string | http://img.jamendo.com/artists/m/meatles.jpg | http://meatles.blogspot.com/ | http://sws.geonames.org/2987410/ |
| "Descent Psychosis"^^xsd:string | http://img.jamendo.com/artists/d/descentpsychosis.jpg | http://web.mac.com/smurfgod23/iWeb/despsy/Introducing.html | http://sws.geonames.org/6252001/ |
| "LaBarcaDeSua"^^xsd:string | http://img.jamendo.com/artists/l/labarcadesua.jpg | http://www.labarcadesua.org | http://sws.geonames.org/2510769/ |
| "psystamp"^^xsd:string | http://img.jamendo.com/artists/p/psystamp.jpg | http://medlem.spray.se/psystamp/ | http://sws.geonames.org/2661886/ |
| "Superdefekt"^^xsd:string | http://img.jamendo.com/artists/s/superdefekt.jpg | http://www.superdefekt.com | http://sws.geonames.org/2911297/ |
| "Piergiorgio Lucidi"^^xsd:string | http://img.jamendo.com/artists/p/piergiorgio.lucidi.jpg | http://www.piergiorgiolucidi.com | http://sws.geonames.org/3169069/ |
| "Silence"^^xsd:string | http://img.jamendo.com/artists/s/silence.jpg | http://www.silence-world.tk/ | http://sws.geonames.org/2802361/ |
| "CALAME"^^xsd:string | http://img.jamendo.com/artists/c/calame.jpg | http://www.myspace.com/calameart | http://sws.geonames.org/2990129/ |
| "In Faded Glory"^^xsd:string | http://img.jamendo.com/artists/i/in.faded.glory.gif | http://www.infadedglory.com | http://sws.geonames.org/3013500/ |
| "MonSteReo"^^xsd:string | http://img.jamendo.com/artists/m/monstereo.jpg | http://www.monstereo.zik.mu | http://sws.geonames.org/3018471/ |
| "The White Nite"^^xsd:string | http://img.jamendo.com/artists/t/the.white.nite.jpg | http://www.thewhitenite.sup.fr | http://sws.geonames.org/2975926/ |
| "jose orraca"^^xsd:string | http://img.jamendo.com/artists/j/jose.orraca.jpg | http://www.joseorraca.com | http://sws.geonames.org/2510769/ |
| "Scoop"^^xsd:string | http://img.jamendo.com/artists/s/scoop.jpg | http://\\scoop05.skyblog.com | http://sws.geonames.org/3025480/ |
| "Madame Olga"^^xsd:string | http://img.jamendo.com/artists/m/madameolga.jpg | http://www.madameolga.com | http://sws.geonames.org/2987410/ |
| "SEBRIDER"^^xsd:string | http://img.jamendo.com/artists/s/sebrider.jpg | http://srmusic.free.fr/SEBRIDER/sebrider.html | http://sws.geonames.org/2996663/ |
| "Laurent Sarrote"^^xsd:string | http://img.jamendo.com/artists/l/laurent.sarrote.jpg | http://www.laurent-sarrote.new.fr | http://sws.geonames.org/3026644/ |
| "Am"^^xsd:string | http://img.jamendo.com/artists/a/am.jpg | http://www.am-offline.net | http://sws.geonames.org/3020781/ |
| "Maö"^^xsd:string | http://img.jamendo.com/artists/m/mao.jpg | http://mao.musicblog.fr | http://sws.geonames.org/3034720/ |
| "TubularTos"^^xsd:string | http://img.jamendo.com/artists/t/tubulartos.jpg | http://www.soundclick.com/tubulartos | http://sws.geonames.org/3037136/ |
| "Poulp"^^xsd:string | http://img.jamendo.com/artists/p/poulp.png | http://r.pelisse.Free.fr/poulp/ | http://sws.geonames.org/2968815/ |
| "Shearer"^^xsd:string | http://img.jamendo.com/artists/s/shearer.jpg | http://www.shearer.de | http://sws.geonames.org/2884161/ |
| "MAIS"^^xsd:string | http://img.jamendo.com/artists/m/mais.gif | http://mais.altervista.org/ | http://sws.geonames.org/3175395/ |
| "@Posteriori"^^xsd:string | http://img.jamendo.com/artists/a/aposteriori.png | http://www.ars-libra.org/@posteriori | http://sws.geonames.org/3038375/ |
| "Lovely Girls Are Blind"^^xsd:string | http://img.jamendo.com/artists/l/lgab.jpg | http://lgab.tk/ | http://sws.geonames.org/3013657/ |
| "Edouard Busa"^^xsd:string | http://img.jamendo.com/artists/e/edouard.busa.jpg | http://edouard-busa.monsite.wanadoo.fr/ | http://sws.geonames.org/3037136/ |
| "Clownage"^^xsd:string | http://img.jamendo.com/artists/c/clownage.jpg | http://www.clownage.fr | http://sws.geonames.org/2968815/ |
| "Ksyz"^^xsd:string | http://img.jamendo.com/artists/k/ksyz.jpg | http://enoz.free.fr | http://sws.geonames.org/3012849/ |
| "Nex2012 & DJ "H""^^xsd:string | http://img.jamendo.com/artists/n/nex2012.jpg | http://realitesecrete.chez-alice.fr | http://sws.geonames.org/3035691/ |
| "LOGAN"^^xsd:string | http://img.jamendo.com/artists/l/logan.jpg | http://www.myspace.com/loganbrkn | http://sws.geonames.org/2968815/ |
| "JellRoy"^^xsd:string | http://img.jamendo.com/artists/j/jellroy.jpg | http://www.jellroy.net | http://sws.geonames.org/2802361/ |
| "The Menciales"^^xsd:string | http://img.jamendo.com/artists/t/the.menciales.jpg | http://themenciales.blogspot.com | http://sws.geonames.org/3113208/ |
| "black era"^^xsd:string | http://img.jamendo.com/artists/b/blackera.jpg | http://www.blackera.com | http://sws.geonames.org/3172391/ |
| "The Badgers"^^xsd:string | http://img.jamendo.com/artists/t/the.badgers.jpg | http://perso.orange.fr/keep.out/cariboost3/index.html | http://sws.geonames.org/3026644/ |
| "Monsieur Koala"^^xsd:string | http://img.jamendo.com/artists/m/monsieur.koala.jpg | http://www.monsieurkoala.com | http://sws.geonames.org/3034720/ |
| "Real Rice"^^xsd:string | http://img.jamendo.com/artists/r/real.rice.jpg | http://realrice.free.fr/ | http://sws.geonames.org/3012849/ |
| "stlick"^^xsd:string | http://img.jamendo.com/artists/s/stlick.jpg | http://www.myspace.com/akoufenmissstlick | http://sws.geonames.org/2994111/ |
| "Mojo Project"^^xsd:string | http://img.jamendo.com/artists/m/mojo.project.jpg | http://www.french-metal.com/forum/viewforum.php?f=141 | http://sws.geonames.org/2967222/ |
| "adrugan"^^xsd:string | http://img.jamendo.com/artists/a/adrugan.jpg | http://adrugan.blogspot.com/ | http://sws.geonames.org/2989663/ |
| "Aderito CARAPITO"^^xsd:string | http://img.jamendo.com/artists/a/aderito.carapito.jpg | http://www.ade21.com | http://sws.geonames.org/3023423/ |
| "KALIUM"^^xsd:string | http://img.jamendo.com/artists/k/kalium.jpg | http://kaliummetal.free.fr | http://sws.geonames.org/2997861/ |
| "01zu"^^xsd:string | http://img.jamendo.com/artists/0/01zu.jpg | http://www.01zu.com | http://sws.geonames.org/2997861/ |
| "Glasklinge"^^xsd:string | http://img.jamendo.com/artists/g/glasklinge.jpg | http://sampler.glasklinge.com/ | http://sws.geonames.org/3213264/ |
| "pan"^^xsd:string | http://img.jamendo.com/artists/p/pan.jpg | http://pancore.de | http://sws.geonames.org/2841464/ |
| "Fellonie"^^xsd:string | http://img.jamendo.com/artists/f/fellonie.jpg | http://kaliummetal.free.fr | http://sws.geonames.org/2997861/ |
| "Omen-s-free"^^xsd:string | http://img.jamendo.com/artists/o/omen-s-free.gif | http://www.djomensfree.c.la | http://sws.geonames.org/3038422/ |
| "Sheena"^^xsd:string | http://img.jamendo.com/artists/s/sheena.jpg | http://www.sheenamusic.com | http://sws.geonames.org/2991627/ |
| "pan:core"^^xsd:string | http://img.jamendo.com/artists/p/pan.core.gif | http://pancore.de | http://sws.geonames.org/2841464/ |
| "yggdrazil"^^xsd:string | http://img.jamendo.com/artists/y/yggdrazil.png | http://yggdrazilhc.free.fr | http://sws.geonames.org/2997857/ |
| "Dadub's"^^xsd:string | http://img.jamendo.com/artists/d/dadubs.jpg | http://dadubs.hautetfort.com/ | http://sws.geonames.org/2970749/ |
| "Martyn Circus"^^xsd:string | http://img.jamendo.com/artists/m/martyn.circus.gif | http://www.martyn-circus.com | http://sws.geonames.org/3012715/ |
| "r.a.d.i.a.l"^^xsd:string | http://img.jamendo.com/artists/c/choc.jpg | http://www.myspace.com/radialcollective. | http://sws.geonames.org/3018471/ |
| "Magnum"^^xsd:string | http://img.jamendo.com/artists/m/magnum.jpg | http://magnum64.free.fr | http://sws.geonames.org/2984887/ |
| "Arthur Cravan"^^xsd:string | http://img.jamendo.com/artists/a/arthur.cravan.jpg | http://virb.com/arthurcravan | http://sws.geonames.org/3181553/ |
| "Barrelwash"^^xsd:string | http://img.jamendo.com/artists/b/barrelwash.gif | http://www3.telus.net/public/everett3/barrelwash.html | http://sws.geonames.org/6251999/ |
| "Projet.3"^^xsd:string | http://img.jamendo.com/artists/p/projet3.jpg | http://www.lucky3rd3ye.com/ | http://sws.geonames.org/2802361/ |
| "Chantonneur anonyme"^^xsd:string | http://img.jamendo.com/artists/c/chantonneur.anonyme.jpg | http://ritaline.podemus.com/ | http://sws.geonames.org/3012849/ |
| "Lopsided"^^xsd:string | http://img.jamendo.com/artists/l/lopsided.jpg | http://absynthetic.fr/lopsided | http://sws.geonames.org/2990129/ |
| "JigKorova"^^xsd:string | http://img.jamendo.com/artists/j/jigkorova.jpg | http://www.jigkorova.com | http://sws.geonames.org/2517115/ |
| "Djabb"^^xsd:string | http://img.jamendo.com/artists/d/djabb.jpg | http://www.djabb.net/ | http://sws.geonames.org/3012715/ |
| "Aureserva"^^xsd:string | http://img.jamendo.com/artists/a/aureserva.jpg | http://www.aureserva.com | http://sws.geonames.org/2996663/ |
| "Dr Luge"^^xsd:string | http://img.jamendo.com/artists/d/dr.luge.jpg | http://jadebreidi.spaces.live.com/?owner=1 | http://sws.geonames.org/3013657/ |
| "Stabela"^^xsd:string | http://img.jamendo.com/artists/s/stabela.jpg | http://www.stabela.ru | http://sws.geonames.org/2017370/ |
| "Dj X-Ray"^^xsd:string | http://img.jamendo.com/artists/s/sebx91.jpg | http://ltvfr.nitroxine.com/xray/index.htm | http://sws.geonames.org/3019599/ |
| "Karim Amari"^^xsd:string | http://img.jamendo.com/artists/k/karim.amari.jpg | http://madhyalaya.spaces.live.com/ | http://sws.geonames.org/2970749/ |
| "Alex' des Shookabah"^^xsd:string | http://img.jamendo.com/artists/a/alex.des.shookabah.jpg | http://alex.societeg.com | http://sws.geonames.org/2660207/ |
| "Meteorite"^^xsd:string | http://img.jamendo.com/artists/m/meteorite.jpg | http://gringo8800.free.fr | http://sws.geonames.org/2991627/ |
| "Biphenson"^^xsd:string | http://img.jamendo.com/artists/b/biphenson.jpg | http://biphenson.free.fr/index.html | http://sws.geonames.org/3033789/ |
| "Cowboy Zorro"^^xsd:string | http://img.jamendo.com/artists/c/cowboy.zorro.jpg | http://cowboy-zorro.blogspot.com/ | http://sws.geonames.org/6252001/ |
| "Stephan CArtier®"^^xsd:string | http://img.jamendo.com/artists/s/stephan.cartier.gif | http://www.stephancartier.cjb.net | http://sws.geonames.org/3175395/ |
| "Boris CAMPELLO"^^xsd:string | http://img.jamendo.com/artists/b/boris.campello.jpg | http://www.myspace.com/lidlbodybags | http://sws.geonames.org/3020989/ |
| "AS-POTIRONT!"^^xsd:string | http://img.jamendo.com/artists/a/as-potiront.jpg | http://as-potiront.com | http://sws.geonames.org/2997861/ |
| "POZAdéLICA"^^xsd:string | http://img.jamendo.com/artists/p/pozadelica.gif | http://www.poza.de/lica | http://sws.geonames.org/6557769/ |
| "Mon coté Manouche"^^xsd:string | http://img.jamendo.com/artists/m/mon.cote.manouche.jpg | http://www.myspace.com/cestmoncotemanouche | http://sws.geonames.org/2968815/ |
| "magnetic"^^xsd:string | http://img.jamendo.com/artists/m/magnetic.jpg | http://magneticmusic.blogspot.com/ | http://sws.geonames.org/6251999/ |
| "arnoldsrecords"^^xsd:string | http://img.jamendo.com/artists/a/arnoldsrecords.jpg | http://www.arnoldsrecords.com | http://sws.geonames.org/3017382/ |
| "Wallahi"^^xsd:string | http://img.jamendo.com/artists/w/wallahi.jpg | http://404.free.fr/ | http://sws.geonames.org/2361809/ |
| "Hellspawn"^^xsd:string | http://img.jamendo.com/artists/h/hellspawn.jpg | http://www.tunizik.com/hellspawn | http://sws.geonames.org/2464461/ |
| "Überland Deluxe"^^xsd:string | http://img.jamendo.com/artists/u/uberland.deluxe.jpg | http://www.uberland-deluxe.org | http://sws.geonames.org/2997861/ |
| "Elkapel"^^xsd:string | http://img.jamendo.com/artists/e/elkapel.jpg | http://elkapel.com | http://sws.geonames.org/2510769/ |
| "Mbata kongo"^^xsd:string | http://img.jamendo.com/artists/m/mbata.kongo.jpg | http://mouvementlibre.fr.nf | http://sws.geonames.org/2997856/ |
| "GMR"^^xsd:string | http://img.jamendo.com/artists/g/gmr.jpg | http://www.gmr.mu | http://sws.geonames.org/3019599/ |
| "promising crew"^^xsd:string | http://img.jamendo.com/artists/p/promising.jpg | http://www.promising-crew.com | http://sws.geonames.org/2991879/ |
| "Brain Damage"^^xsd:string | http://img.jamendo.com/artists/b/brain.damage.jpg | http://rcw.nerim.net/brain/brainac.html | http://sws.geonames.org/3026646/ |
| "Vardhlokr"^^xsd:string | http://img.jamendo.com/artists/v/vardhlokr.jpg | http://www.mperia.com/artists/vardhlokr | http://sws.geonames.org/2990129/ |
| "David Alexander McDonald"^^xsd:string | http://img.jamendo.com/artists/d/david.alexander.mcdonald.jpg | http://wyldemusick.livejournal.com | http://sws.geonames.org/6252001/ |
| "Ambient Frequencies"^^xsd:string | http://img.jamendo.com/artists/a/ambient.frequencies.png | http://www.jamendo.com/fr/artist/ambient.frequencies | http://sws.geonames.org/2971071/ |
| "Waterfalls"^^xsd:string | http://img.jamendo.com/artists/w/waterfalls.jpg | http://www.waterfalls.sup.fr | http://sws.geonames.org/2975926/ |
| "Mercurius FM"^^xsd:string | http://img.jamendo.com/artists/m/mercuriusfm.jpg | http://mercuriusfm.blogspot.com/ | http://sws.geonames.org/6252001/ |
| "Sousbock"^^xsd:string | http://img.jamendo.com/artists/s/sousbock.jpg | http://www.sousbock-fr.com | http://sws.geonames.org/3013500/ |
| "Camelia Ashbach"^^xsd:string | http://img.jamendo.com/artists/c/cameliaashbach.jpg | http://www.cameliaashbach.com | http://sws.geonames.org/2968815/ |
| "Jérôme lollo"^^xsd:string | http://img.jamendo.com/artists/l/lollo.jpg | http://jlollo.noosblog.fr/blollog/ | http://sws.geonames.org/2987410/ |
| "Franky Joe Texier"^^xsd:string | http://img.jamendo.com/artists/f/franky.joe.texier.jpg | http://franky-texier.blogspot.com/ | http://sws.geonames.org/3016670/ |
| "NatSpAcE"^^xsd:string | http://img.jamendo.com/artists/n/natspace.jpg | http://www.europamp3.org/groups/NatSpAcE/index | http://sws.geonames.org/2990129/ |
| "Perro Pelon"^^xsd:string | http://img.jamendo.com/artists/p/perropelon.jpg | http://perropelon.blogspot.com | http://sws.geonames.org/3996063/ |
| "Avel Glas"^^xsd:string | http://img.jamendo.com/artists/a/avel.glas.jpg | http://www.avel-glas.com | http://sws.geonames.org/2994932/ |
| "AUVERNIA"^^xsd:string | http://img.jamendo.com/artists/a/auvernia.jpg | http://www.auvernia.com | http://sws.geonames.org/3865483/ |
| "Simon Gris"^^xsd:string | http://img.jamendo.com/artists/s/simongris.jpg | http://www.simongris.com | http://sws.geonames.org/2967196/ |
| "rules"^^xsd:string | http://img.jamendo.com/artists/r/rules.gif | http://myspace.com/rul3s | http://sws.geonames.org/2984986/ |
| "Sango"^^xsd:string | http://img.jamendo.com/artists/s/sango.jpg | http://alsango.blogspot.com | http://sws.geonames.org/3127460/ |
| "matinmidietsoir"^^xsd:string | http://img.jamendo.com/artists/m/matinmidietsoir.jpg | http://matinmidietsoir.free.fr/ | http://sws.geonames.org/3013657/ |
| "Chupa Chuva"^^xsd:string | http://img.jamendo.com/artists/c/chupa.chuva.jpg | http://chupachuva.free.fr | http://sws.geonames.org/2989663/ |
| "MiCk"^^xsd:string | http://img.jamendo.com/artists/m/mick.jpg | http://mickmusic.free.fr | http://sws.geonames.org/3013767/ |
| "Kusinfilm"^^xsd:string | http://img.jamendo.com/artists/k/kusinfilm.png | http://www.kusinfilm.com | http://sws.geonames.org/2661886/ |
| "Bambara"^^xsd:string | http://img.jamendo.com/artists/b/bambara.jpg | http://www.myspace.com/rockbambara | http://sws.geonames.org/2510769/ |
| "Jampoet"^^xsd:string | http://img.jamendo.com/artists/j/jampoet.jpg | http://lapoliticalart.blogspot.com | http://sws.geonames.org/6252001/ |
| "blessing"^^xsd:string | http://img.jamendo.com/artists/b/blessing.jpg | http://myspace.com/blessingband | http://sws.geonames.org/3031359/ |
| "Lem0n IndiGo"^^xsd:string | http://img.jamendo.com/artists/l/lemonindigo.jpg | http://myspace.com/lemonindigo | http://sws.geonames.org/2968815/ |
| "Bebeto"^^xsd:string | http://img.jamendo.com/artists/b/bebeto.jpg | http://www.myspace.com/mbecks23 | http://sws.geonames.org/3213264/ |
| "Mindwatcher"^^xsd:string | http://img.jamendo.com/artists/m/mindwatcher.jpg | http://mindwatcher.blogspot.com/ | http://sws.geonames.org/3013500/ |
| "Celestial Aeon Project"^^xsd:string | http://img.jamendo.com/artists/c/celestial.aeon.project.jpg | http://www.mikseri.net/essence | http://sws.geonames.org/660013/ |
| "Project Divinity"^^xsd:string | http://img.jamendo.com/artists/p/project.divinity.jpg | http://www.mikseri.net/divinity/ | http://sws.geonames.org/660013/ |
| "MITYX"^^xsd:string | http://img.jamendo.com/artists/m/mityx.jpg | http://www.myspace.com/mityx | http://sws.geonames.org/2968815/ |
| "Matteo Cargnelutti"^^xsd:string | http://img.jamendo.com/artists/m/matteo.cargnelutti.png | http://site.voila.fr/noprob/noprob.html | http://sws.geonames.org/3023414/ |
| "MAGGA"^^xsd:string | http://img.jamendo.com/artists/m/manbasaa.jpg | http://magga.hauetfort.com | http://sws.geonames.org/2968815/ |
| "mob"^^xsd:string | http://img.jamendo.com/artists/m/mob.jpg | http://mobylette.canalblog.com | http://sws.geonames.org/2971071/ |
| "F.A.B"^^xsd:string | http://img.jamendo.com/artists/f/f.a.b.gif | http://www.studiopmrecords.com | http://sws.geonames.org/3015948/ |
| "NoSoda"^^xsd:string | http://img.jamendo.com/artists/n/nosoda.jpg | http://www.nosoda.com | http://sws.geonames.org/3034720/ |
| "Neotene"^^xsd:string | http://img.jamendo.com/artists/n/neotene.jpg | http://web.mac.com/cedricbch/iWeb/neotene | http://sws.geonames.org/2658182/ |
| "AdHoc"^^xsd:string | http://img.jamendo.com/artists/a/ad.hoc.png | http://www.adhocmusic.org | http://sws.geonames.org/3013736/ |
| "Ponpon"^^xsd:string | http://img.jamendo.com/artists/p/ponpon.jpg | http://www.ponpon.tuxfamily.org | http://sws.geonames.org/2802361/ |
| "ADB"^^xsd:string | http://img.jamendo.com/artists/a/adb.jpg | http://www.echo-on.org | http://sws.geonames.org/2968815/ |
| "Red Nebula"^^xsd:string | http://img.jamendo.com/artists/r/red.nebula.png | http://rednebula.hd.free.fr/ | http://sws.geonames.org/2968815/ |
| "DaveFilms Digital Media"^^xsd:string | http://img.jamendo.com/artists/d/davefilms.digital.media.jpg | http://www.davefilms.us | http://sws.geonames.org/6252001/ |
| "electro.choc"^^xsd:string | http://img.jamendo.com/artists/e/electrochoc.jpg | http://en construction/ | http://sws.geonames.org/2975249/ |
| "MATT PEPPER TRIO"^^xsd:string | http://img.jamendo.com/artists/m/mattpeppertrio.jpg | http://www.mattpeppertrio.com/ | http://sws.geonames.org/3031359/ |
| "Kuervos del Sur"^^xsd:string | http://img.jamendo.com/artists/k/kuervosdelsur.jpg | http://www.kuervosdelsur.cl | http://sws.geonames.org/3895114/ |
| "gecko"^^xsd:string | http://img.jamendo.com/artists/g/gecko.jpg | http://anarching.zeblog.com/74105-i-sans-titre-i/ | http://sws.geonames.org/3020781/ |
| "Sucrepop"^^xsd:string | http://img.jamendo.com/artists/s/sucrepop.jpg | http://www.sucrepop.com | http://sws.geonames.org/2975246/ |
| "-DEMO-"^^xsd:string | http://img.jamendo.com/artists/d/demo-legroupe.jpg | http://demo-legroupe.com | http://sws.geonames.org/2990129/ |
| "six"^^xsd:string | http://img.jamendo.com/artists/s/six.gif | http://si.kz/ | http://sws.geonames.org/3013657/ |
| "Wombat"^^xsd:string | http://img.jamendo.com/artists/w/wombat-legroupe.png | http://www.wombatlesite.com | http://sws.geonames.org/2990129/ |
| "Krepuskule"^^xsd:string | http://img.jamendo.com/artists/k/krepuskule.png | http://www.krepuskule.com | http://sws.geonames.org/2968815/ |
| "TURBULENCE"^^xsd:string | http://img.jamendo.com/artists/t/turbulence.jpg | http://www.turbulence-net.com | http://sws.geonames.org/2987410/ |
| "Heartbeat"^^xsd:string | http://img.jamendo.com/artists/h/heartbeat.gif | http://vamopalante.splinder.com | http://sws.geonames.org/3182649/ |
| "The Pierre Richard's Family"^^xsd:string | http://img.jamendo.com/artists/t/the.pierre.richard.s.family.png | http://www.thepierrerichardsfamily.com | http://sws.geonames.org/3019317/ |
| "Apocalyptik Vs Mantis"^^xsd:string | http://img.jamendo.com/artists/a/apocalyptik.vs.mantis.jpg | http://www.electroziq.com | http://sws.geonames.org/2997523/ |
| "REASON FRANCE"^^xsd:string | http://img.jamendo.com/artists/r/reason.france.jpg | http://reasonfrance.free.fr | http://sws.geonames.org/3029094/ |
| "krystian"^^xsd:string | http://img.jamendo.com/artists/k/krystian.jpg | http://krystal73.ifrance.com/musique/musique.html | http://sws.geonames.org/2975517/ |
| "AX11"^^xsd:string | http://img.jamendo.com/artists/a/ax11.gif | http://blog.ax11.de | http://sws.geonames.org/2884161/ |
| "milo fungus"^^xsd:string | http://img.jamendo.com/artists/m/milo.png | http://www.ourmedia.org/user/38299 | http://sws.geonames.org/6252001/ |
| "wade"^^xsd:string | http://img.jamendo.com/artists/w/wade.jpg | http://www.moonlabel.pl | http://sws.geonames.org/798544/ |
| "Insidejob"^^xsd:string | http://img.jamendo.com/artists/i/insidejob.jpg | http://www.myspace.com/insidejob4 | http://sws.geonames.org/3017382/ |
| "snowman lost his head"^^xsd:string | http://img.jamendo.com/artists/s/snowman.lost.his.head.jpg | http://www.snowmanlosthishead.blogspot.com | http://sws.geonames.org/6424360/ |
| "uncut music"^^xsd:string | http://img.jamendo.com/artists/u/uncut-music.jpg | http://www.uncut-music.com/ | http://sws.geonames.org/3019599/ |
| "alterlabel"^^xsd:string | http://img.jamendo.com/artists/a/alterlabel.jpg | http://www.alterlabel.com | http://sws.geonames.org/3016670/ |
| "Kààt"^^xsd:string | http://img.jamendo.com/artists/m/mikou.jpg | http://www.suprema-records.com | http://sws.geonames.org/3019317/ |
| "Réinsertion sociale"^^xsd:string | http://img.jamendo.com/artists/r/reinsertionsociale.jpg | http://reinsertionsociale.ca.cx | http://sws.geonames.org/2967196/ |
| "ioeo"^^xsd:string | http://img.jamendo.com/artists/i/ioeo.jpg | http://ioeomusic.ning.com/ | http://sws.geonames.org/2970749/ |
| "Denis RICHARD"^^xsd:string | http://img.jamendo.com/artists/d/denis.richard.jpg | http://www.drmusic.fr | http://sws.geonames.org/2991627/ |
| "Dého"^^xsd:string | http://img.jamendo.com/artists/d/deho.jpg | http://deho.wifeo.com | http://sws.geonames.org/2991879/ |
| "pharmacopia"^^xsd:string | http://img.jamendo.com/artists/p/pharmacopia.jpg | http://blog.myspace.com/pedr | http://sws.geonames.org/6252001/ |
| "raphael edelman"^^xsd:string | http://img.jamendo.com/artists/r/raphael.edelman.jpg | http://blog.myspace.com/index.cfm?fuseaction=blog.ListAll&friendID=105700286 | http://sws.geonames.org/3012849/ |
| "Licite Fondation"^^xsd:string | http://img.jamendo.com/artists/l/licite.fondation.jpg | http://www.licitefondation.net/ | http://sws.geonames.org/2971090/ |
| "Jack Sparow"^^xsd:string | http://img.jamendo.com/artists/j/jack-sparow.jpg | http://www.jack-sparow.com | http://sws.geonames.org/2997870/ |
| "Terra Blue"^^xsd:string | http://img.jamendo.com/artists/t/terra.blue.jpg | http://terra-blue.blogspot.com/ | http://sws.geonames.org/3213264/ |
| "November11"^^xsd:string | http://img.jamendo.com/artists/n/november11.gif | http://www.november11.de | http://sws.geonames.org/2921044/ |
| "Semper Fi"^^xsd:string | http://img.jamendo.com/artists/s/semper.fi.jpg | http://koen.supportware.nl | http://sws.geonames.org/2750405/ |
| "Schickers Mind"^^xsd:string | http://img.jamendo.com/artists/s/schickers.mind.jpg | http://www.bobblespace.de/ | http://sws.geonames.org/6556330/ |
| "AngoOneY"^^xsd:string | http://img.jamendo.com/artists/a/angooney.jpg | http://wOrld-foO.skyblog.com | http://sws.geonames.org/2975249/ |
| "Lou Zgain"^^xsd:string | http://img.jamendo.com/artists/l/louzgain.jpg | http://www.louzgain.com | http://sws.geonames.org/3031359/ |
| "Christophe Bosch"^^xsd:string | http://img.jamendo.com/artists/c/christophe.bosch.jpg | http://christophebosch.hautetfort.com | http://sws.geonames.org/2968815/ |
| "Holy Pain"^^xsd:string | http://img.jamendo.com/artists/h/holy.pain.jpg | http://myspace.com/holypain | http://sws.geonames.org/2987410/ |
| "Flatlink"^^xsd:string | http://img.jamendo.com/artists/f/flatlink.jpg | http://www.ftlkdesign.wb.st | http://sws.geonames.org/1699807/ |
| "Frank Thorstein"^^xsd:string | http://img.jamendo.com/artists/f/francois.toutain.jpg | http://ventilo35.free.fr | http://sws.geonames.org/3017382/ |
| "Javier Bacchetta"^^xsd:string | http://img.jamendo.com/artists/j/javier.bacchetta.jpg | http://jbacchetta.com.ar | http://sws.geonames.org/3865483/ |
| "RADIXDMP2005"^^xsd:string | http://img.jamendo.com/artists/r/radixdmp.jpg | http://radixdmp2005.com | http://sws.geonames.org/2782113/ |
| "Defnael"^^xsd:string | http://img.jamendo.com/artists/d/defnael.jpg | http://d.merlateau.free.fr | http://sws.geonames.org/3013657/ |
| "Dj Potter [Italy]"^^xsd:string | http://img.jamendo.com/artists/d/dj.potter.italy.jpg | http://dj-potter.blogspot.com/ | http://sws.geonames.org/3164600/ |
| "Ralph Buckley"^^xsd:string | http://img.jamendo.com/artists/r/ralph.buckley.jpg | http://www.ralphbuckley.com | http://sws.geonames.org/6252001/ |
| "Prøtebröd"^^xsd:string | http://img.jamendo.com/artists/p/pr.tebrod.jpg | http://koen.supportware.nl | http://sws.geonames.org/2750405/ |
| "neko"^^xsd:string | http://img.jamendo.com/artists/n/neko.gif | http://www.nekorama.net | http://sws.geonames.org/2990129/ |
| "Irreversíveis"^^xsd:string | http://img.jamendo.com/artists/i/irreversiveis.jpg | http://irreversiveis.wordpress.com | http://sws.geonames.org/3469034/ |
| "Slim Nevic"^^xsd:string | http://img.jamendo.com/artists/s/slim.nevic.jpg | http://www.infotechno.skyblog.com | http://sws.geonames.org/3013738/ |
| "Slim"^^xsd:string | http://img.jamendo.com/artists/s/slim.jpg | http://www.myspace.com/slim | http://sws.geonames.org/6252001/ |
| "Radio Nowhere"^^xsd:string | http://img.jamendo.com/artists/r/radionowhere.jpg | http://www.radionowhere.net | http://sws.geonames.org/6252001/ |
| "DPA RECORDS"^^xsd:string | http://img.jamendo.com/artists/d/dpa.records.jpg | http://www.geocities.com/dpa_records/ | http://sws.geonames.org/3013767/ |
| "Khaban'"^^xsd:string | http://img.jamendo.com/artists/k/khaban.jpg | http://www.khaban.com | http://sws.geonames.org/2987410/ |
| "Crick Zachary"^^xsd:string | http://img.jamendo.com/artists/c/crick.zachary.jpg | http://www.crickzachary.com | http://sws.geonames.org/2991627/ |
| "Dj Vraj"^^xsd:string | http://img.jamendo.com/artists/d/dj.vraj.jpg | http://djvraj.blogspot.com/ | http://sws.geonames.org/2077456/ |
| "Alex Maneval"^^xsd:string | http://img.jamendo.com/artists/a/alex.maneval.jpg | http://www.alexmaneval.com | http://sws.geonames.org/2987410/ |
| "conFusion"^^xsd:string | http://img.jamendo.com/artists/c/confusion.jpg | http://www.groupe-confusion.fr.tc/ | http://sws.geonames.org/2991627/ |
| "The NUNCHAKS"^^xsd:string | http://img.jamendo.com/artists/t/the-nunchaks.jpg | http://www.thenunchaks.ift.cx | http://sws.geonames.org/2991627/ |
| "Mothers Against Drugs"^^xsd:string | http://img.jamendo.com/artists/m/mothers.against.drugs.jpg | http://www.fotolog.com/losmothers | http://sws.geonames.org/2510769/ |
| "Christian DIDELOT"^^xsd:string | http://img.jamendo.com/artists/c/christian.didelot.jpg | http://unetrente.free.fr/ | http://sws.geonames.org/2991627/ |
| "VODOR ZECK"^^xsd:string | http://img.jamendo.com/artists/v/vodorzeck.jpg | http://in arbeit/ | http://sws.geonames.org/2884161/ |
| "#Zorglups#"^^xsd:string | http://img.jamendo.com/artists/z/zorglups.jpg | http://www.lesdubois.hd.free.fr | http://sws.geonames.org/3019599/ |
| "Hair"^^xsd:string | http://img.jamendo.com/artists/h/hair.jpg | http://www.rnavajas.blogspot.com | http://sws.geonames.org/2510769/ |
| "Bethlehem"^^xsd:string | http://img.jamendo.com/artists/b/bethlehem.jpg | http://www.rnavajas.blogspot.com | http://sws.geonames.org/2510769/ |
| "INVAIN"^^xsd:string | http://img.jamendo.com/artists/i/invain.jpg | http://www.invain.it | http://sws.geonames.org/3171727/ |
| "DJ Ryo9"^^xsd:string | http://img.jamendo.com/artists/r/ryo9.jpg | http://www.djryo9.com | http://sws.geonames.org/6252001/ |
| "lucas ck"^^xsd:string | http://img.jamendo.com/artists/l/lucas.ck.jpg | http://www.myspace.com/lucasck | http://sws.geonames.org/3013500/ |
| "KM"^^xsd:string | http://img.jamendo.com/artists/k/km.jpg | http://camille.sochon.free.fr/_V2 | http://sws.geonames.org/3012849/ |
| "kolslok"^^xsd:string | http://img.jamendo.com/artists/k/kolslok.jpg | http://kolslok.alkablog.com/ | http://sws.geonames.org/2802361/ |
| "Tedlap"^^xsd:string | http://img.jamendo.com/artists/t/tedlap.jpg | http://www.tedlap.de | http://sws.geonames.org/3213264/ |
| "dj saboum"^^xsd:string | http://img.jamendo.com/artists/d/dj.saboum.jpg | http://www.saboum.com/dj | http://sws.geonames.org/2987410/ |
| "mortenjohs"^^xsd:string | http://img.jamendo.com/artists/m/mortenjohs.jpg | http://www.mortenjohs.net | http://sws.geonames.org/2987410/ |
| "skt sekuentzia"^^xsd:string | http://img.jamendo.com/artists/s/skt.gif | http://www.mundurat.net/skt | http://sws.geonames.org/1527747/ |
| "Zeropage"^^xsd:string | http://img.jamendo.com/artists/z/zeropage.jpg | http://www.zeropage-media.com | http://sws.geonames.org/2661551/ |
| "DARWIN"^^xsd:string | http://img.jamendo.com/artists/d/darwin.jpg | http://www.myspace.com/darwin78 | http://sws.geonames.org/2967196/ |
| "La Mecanica Loca"^^xsd:string | http://img.jamendo.com/artists/l/la.mecanica.loca.gif | http://www.myspace.com/mecanicaloca | http://sws.geonames.org/3016194/ |
| "Echidna"^^xsd:string | http://img.jamendo.com/artists/e/echidna.jpg | http://echidna1.free.fr/ | http://sws.geonames.org/3023423/ |
| "Crystal Wall"^^xsd:string | http://img.jamendo.com/artists/c/crystal.wall.jpg | http://www.crystal-wall.com | http://sws.geonames.org/2975249/ |
| "JAC"^^xsd:string | http://img.jamendo.com/artists/j/jac.jpg | http://jacsesguitares.blogspot.com/ | http://sws.geonames.org/2802361/ |
| "Cafard Rose"^^xsd:string | http://img.jamendo.com/artists/c/cafard.rose.jpg | http://www.cafardrose.be | http://sws.geonames.org/2802361/ |
| "smile of cat"^^xsd:string | http://img.jamendo.com/artists/s/smile.of.cat.jpg | http://maxchabrol.blogspot.com/ | http://sws.geonames.org/2970554/ |
| "R. Winchester"^^xsd:string | http://img.jamendo.com/artists/r/r.winchester.jpg | http://21st-century.freeservers.com | http://sws.geonames.org/6252001/ |
| "Sir Oliver"^^xsd:string | http://img.jamendo.com/artists/s/sir.oliver.jpg | http://www.SirOliver.com | http://sws.geonames.org/2960313/ |
| "Alban Martin"^^xsd:string | http://img.jamendo.com/artists/a/alban.martin.jpg | http://www.cocreation.blogs.com | http://sws.geonames.org/2968815/ |
| "Realaze"^^xsd:string | http://img.jamendo.com/artists/r/realaze.jpg | http://www.realaze.com | http://sws.geonames.org/3013793/ |
| "Shapeshift"^^xsd:string | http://img.jamendo.com/artists/s/shapeshift.jpg | http://www.shapeshift-music.de | http://sws.geonames.org/6556330/ |
| "No Más"^^xsd:string | http://img.jamendo.com/artists/n/nomas.gif | http://www.nomas.fr | http://sws.geonames.org/2984986/ |
| "ZERO_1"^^xsd:string | http://img.jamendo.com/artists/z/zero.1.png | http://willgames84.googlepages.com | http://sws.geonames.org/2510769/ |
| "Duck"^^xsd:string | http://img.jamendo.com/artists/d/duck.jpg | http://www.duck.new.fr | http://sws.geonames.org/3038111/ |
| "VoX"^^xsd:string | http://img.jamendo.com/artists/v/vox.png | http://www.vox-band.net | http://sws.geonames.org/2997861/ |
| "ARTICA"^^xsd:string | http://img.jamendo.com/artists/a/artica.jpg | http://www.artica.km6.net | http://sws.geonames.org/6424360/ |
| "Lou and Stan"^^xsd:string | http://img.jamendo.com/artists/l/lou.and.stan.jpg | http://louandstan.blogspot.com | http://sws.geonames.org/2510769/ |
| "Robinson, Freitag And The Lonely Trumpet"^^xsd:string | http://img.jamendo.com/artists/r/robinson.freitag.and.the.lonely.trumpet.jpg | http://www.robinson-freitag-karol.de | http://sws.geonames.org/1547376/ |
| "Die Partysahnen"^^xsd:string | http://img.jamendo.com/artists/p/partysahnen.gif | http://www.partysahnen.de | http://sws.geonames.org/2884161/ |
| "NORDINE LE NORDEC"^^xsd:string | http://img.jamendo.com/artists/n/n0rdine.jpg | http://www.baboeup.com | http://sws.geonames.org/2994111/ |
| "Deafsound"^^xsd:string | http://img.jamendo.com/artists/d/deafsound.jpg | http://deafsound.blog.fr/ | http://sws.geonames.org/3013736/ |
| "DavidBowman"^^xsd:string | http://img.jamendo.com/artists/d/davidbowman.jpg | http://www.davidbowman.de | http://sws.geonames.org/6557769/ |
| "Boris & Maxime"^^xsd:string | http://img.jamendo.com/artists/b/boris.maxime.jpg | http://telecom.fr/jaroslawski | http://sws.geonames.org/2994932/ |
| "Louis Lingg and the Bombs"^^xsd:string | http://img.jamendo.com/artists/l/louis.lingg.and.the.bombs.jpg | http://www.myspace.com/louislinggandthebombs | http://sws.geonames.org/2968815/ |
| "FREEPIX"^^xsd:string | http://img.jamendo.com/artists/f/freepix1.gif | http://www.freepix.fr | http://sws.geonames.org/3012849/ |
| "Serphonic"^^xsd:string | http://img.jamendo.com/artists/s/serphonic.png | http://www.serphonic.de | http://sws.geonames.org/6556330/ |
| "eisenherzz ltd."^^xsd:string | http://img.jamendo.com/artists/e/eisenherzz.ltd.gif | http://www.eisenherzz.de | http://sws.geonames.org/3209442/ |
| "Fhilo"^^xsd:string | http://img.jamendo.com/artists/f/fhilo.jpg | http://www.fhilo.zoomshare.com | http://sws.geonames.org/6251999/ |
| "André Weet"^^xsd:string | http://img.jamendo.com/artists/a/andre.weet.jpg | http://andr__weet.myownmusic.de / | http://sws.geonames.org/3213264/ |
| "piach"^^xsd:string | http://img.jamendo.com/artists/p/piach.jpg | http://myspace.com/ppiachh | http://sws.geonames.org/798544/ |
| "Vatis Siwany"^^xsd:string | http://img.jamendo.com/artists/v/vatis.siwany.jpg | http://www.vatis-siwani.net | http://sws.geonames.org/2233387/ |
| "Yamy"^^xsd:string | http://img.jamendo.com/artists/y/yamy.jpg | http://www.yy-world.new.fr | http://sws.geonames.org/2968815/ |
| "Varasteleva Puutarhakääpiö"^^xsd:string | http://img.jamendo.com/artists/v/varasteleva.puutarhakaapio.gif | http://www.varastelevapuutarhakaapio.org | http://sws.geonames.org/660013/ |
| "Nokom electro"^^xsd:string | http://img.jamendo.com/artists/n/nokom.electro.png | http://nokom.free.fr | http://sws.geonames.org/2987410/ |
| "Hyperflip"^^xsd:string | http://img.jamendo.com/artists/h/hyperflip.jpg | http://hyperflip.g2gm.com/ | http://sws.geonames.org/458258/ |
| "gilles valli"^^xsd:string | http://img.jamendo.com/artists/g/gilles.valli.jpg | http://www.gillesvalli.com | http://sws.geonames.org/3031359/ |
| "djsunn"^^xsd:string | http://img.jamendo.com/artists/d/djsunn.gif | http://www.electrofloor.net | http://sws.geonames.org/3016670/ |
| "Mism"^^xsd:string | http://img.jamendo.com/artists/m/mism.jpg | http://lemouic.free.fr/Mismenmusik | http://sws.geonames.org/2987410/ |
| "Die Intellektronische Biparietal Projekt"^^xsd:string | http://img.jamendo.com/artists/d/dibp.gif | http://www.tomtipunkrecords.net | http://sws.geonames.org/2990129/ |
| "Mateo"^^xsd:string | http://img.jamendo.com/artists/m/mateo.jpg | http://lemouic.free.fr/Mismenmusik | http://sws.geonames.org/2987410/ |
| "Nieware"^^xsd:string | http://img.jamendo.com/artists/n/nieware.jpg | http://www.nieware.com | http://sws.geonames.org/453733/ |
| "kobline"^^xsd:string | http://img.jamendo.com/artists/k/kobline.jpg | http://www.kobline.org | http://sws.geonames.org/2968815/ |
| "Poison Fang"^^xsd:string | http://img.jamendo.com/artists/p/poison.fang.jpg | http://monsite.orange.fr/poisonfang/ | http://sws.geonames.org/3013719/ |
| "moebius brain"^^xsd:string | http://img.jamendo.com/artists/m/moebius.brain.jpg | http://www.moebiusbrain.com | http://sws.geonames.org/3169069/ |
| "Minnesanc"^^xsd:string | http://img.jamendo.com/artists/m/minnesanc.jpg | http://www.runtime-hq.com | http://sws.geonames.org/3213264/ |
| "M.Alexis.M"^^xsd:string | http://img.jamendo.com/artists/m/malexism.jpg | http://www.malexism.org | http://sws.geonames.org/3015948/ |
| "Gasher G.14"^^xsd:string | http://img.jamendo.com/artists/g/gasher.jpg | http://www.gasher.org | http://sws.geonames.org/2884161/ |
| "Melt"^^xsd:string | http://img.jamendo.com/artists/m/melt.gif | http://www.lemondedemelt.com | http://sws.geonames.org/2968815/ |
| "DECKER"^^xsd:string | http://img.jamendo.com/artists/d/decker.jpg | http://site.voila.fr/decker | http://sws.geonames.org/3018471/ |
| "Nino Nexo"^^xsd:string | http://img.jamendo.com/artists/n/nino.nexo.jpg | http://www.ninonexo.de | http://sws.geonames.org/2921044/ |
| "Sikaryan"^^xsd:string | http://img.jamendo.com/artists/s/sikaryan.png | http://sikaryan.free.fr | http://sws.geonames.org/2991627/ |
| "LosEnatschos"^^xsd:string | http://img.jamendo.com/artists/l/losenatschos.jpg | http://www.holzmusic.com | http://sws.geonames.org/6556330/ |
| "Manuzik"^^xsd:string | http://img.jamendo.com/artists/m/manuzik.png | http://www.manuzik.net | http://sws.geonames.org/1862047/ |
| "Rabastabarbar"^^xsd:string | http://img.jamendo.com/artists/r/rabastabarbar.jpg | http://www.rabastabarbar.pl | http://sws.geonames.org/798544/ |
| "RAOUL"^^xsd:string | http://img.jamendo.com/artists/l/leo.kano.jpg | file:///home/yves/jamendo/www.raoulmusique.tk | http://sws.geonames.org/6251999/ |
| "Nelman Music System"^^xsd:string | http://img.jamendo.com/artists/n/nelman.music.system.jpg | http://nelmanmusicsystem.blogspot.com/ | http://sws.geonames.org/2510769/ |
| "Ram Exponention"^^xsd:string | http://img.jamendo.com/artists/r/ram.exponention.jpg | http://cocoonrecords.free.fr | http://sws.geonames.org/2660645/ |
| "nino"^^xsd:string | http://img.jamendo.com/artists/n/ninojer.jpg | http://www.visiondenuit.com/ | http://sws.geonames.org/2968815/ |
| "Mesh m18"^^xsd:string | http://img.jamendo.com/artists/m/mesh.jpg | http://www.myspace.com/meshm18 | http://sws.geonames.org/2968815/ |
| "Lost In..."^^xsd:string | http://img.jamendo.com/artists/l/lost.in.png | http://lost.in.free.fr | http://sws.geonames.org/2997861/ |
| "Start Of The End"^^xsd:string | http://img.jamendo.com/artists/s/start.of.the.end.jpg | http://startoftheend.kicks-ass.org/ | http://sws.geonames.org/2990129/ |
| "Otis"^^xsd:string | http://img.jamendo.com/artists/o/otis.jpg | http://otis84.free.fr | http://sws.geonames.org/2970554/ |
| "Equals Conquest"^^xsd:string | http://img.jamendo.com/artists/e/equals.conquest.jpg | http://www.myspace.com/equalsconquest | http://sws.geonames.org/6252001/ |
| "Olga Scotland"^^xsd:string | http://img.jamendo.com/artists/o/olga.scotland.jpg | http://www.zenzenzen.ru | http://sws.geonames.org/2017370/ |
| "Perrocker"^^xsd:string | http://img.jamendo.com/artists/p/perrocker.jpg | http://www.perrocker.com | http://sws.geonames.org/2510769/ |
| "Toz"^^xsd:string | http://img.jamendo.com/artists/t/toz.jpg | http://toz.webhop.net | http://sws.geonames.org/2987410/ |
| "Electric Psycho"^^xsd:string | http://img.jamendo.com/artists/e/electric.psycho.jpg | http://electricpsycho.free.fr | http://sws.geonames.org/3023423/ |
| "Jailson Brito Jr."^^xsd:string | http://img.jamendo.com/artists/j/jailson.jpg | http://jailsonmatabarata.blogspot.com | http://sws.geonames.org/3469034/ |
| "Sköhl Offensrüh"^^xsd:string | http://img.jamendo.com/artists/s/skohl.offensruh.jpg | http://skohloffensruh.canalblog.com | http://sws.geonames.org/2991627/ |
| "Tune"^^xsd:string | http://img.jamendo.com/artists/t/tune.jpg | http://tune.magicstone.de | http://sws.geonames.org/2921044/ |
| "giovanni santese"^^xsd:string | http://img.jamendo.com/artists/g/giovanni.santese.jpg | http://www.myspace.com/giovannisantese | http://sws.geonames.org/3169069/ |
| "Red Lion"^^xsd:string | http://img.jamendo.com/artists/r/red.lion.jpg | http://myspace.com/redlions | http://sws.geonames.org/3013767/ |
| "Bugotak"^^xsd:string | http://img.jamendo.com/artists/b/bugotak.jpg | http://www.last.fm/music/Bugotak | http://sws.geonames.org/2017370/ |
| "Echoes of mine"^^xsd:string | http://img.jamendo.com/artists/e/echoes.of.mine.png | http://www.echoes-of-mine.net | http://sws.geonames.org/3012715/ |
| "San Benito"^^xsd:string | http://img.jamendo.com/artists/s/san.benito.jpg | http://humanet.free.fr/ | http://sws.geonames.org/2973362/ |
| "4444"^^xsd:string | http://img.jamendo.com/artists/4/4444.jpg | http://www.4444.es.vg | http://sws.geonames.org/2510769/ |
| "Eden's Garden"^^xsd:string | http://img.jamendo.com/artists/e/edensgarden.jpg | http://www.edensgarden.fr | http://sws.geonames.org/3036420/ |
| "CRISTAL"^^xsd:string | http://img.jamendo.com/artists/n/nadis.jpg | http://milaresolsimi.hautetfort.com | http://sws.geonames.org/3038050/ |
| "The KiK"^^xsd:string | http://img.jamendo.com/artists/t/thekik.jpg | http://thekik.over-blog.com/ | http://sws.geonames.org/3012849/ |
| "Autorun"^^xsd:string | http://img.jamendo.com/artists/a/autorun.jpg | http://www.myspace.com/aut0run | http://sws.geonames.org/2968815/ |
| "Pink Lady"^^xsd:string | http://img.jamendo.com/artists/p/pinklady.jpg | http://pinklady.fr.st | http://sws.geonames.org/2996663/ |
| "charry"^^xsd:string | http://img.jamendo.com/artists/c/charry.gif | http://www.charry.it | http://sws.geonames.org/3175395/ |
| "Goo Goo Cluster"^^xsd:string | http://img.jamendo.com/artists/g/googoocluster.jpg | http://GooGooCluster.free.fr | http://sws.geonames.org/2968815/ |
| "Labogalak"^^xsd:string | http://img.jamendo.com/artists/l/labogalak.png | http://www.luneprod.info/labogalak/ | http://sws.geonames.org/2968815/ |
| "No Fun"^^xsd:string | http://img.jamendo.com/artists/n/no.fun.jpg | http://www.nofun.fr | http://sws.geonames.org/3031359/ |
| "Les Maxitubes De Tate"^^xsd:string | http://img.jamendo.com/artists/m/maxitubes.jpg | http://myspace.com/maxitubes | http://sws.geonames.org/3013719/ |
| "La DeNt Noire"^^xsd:string | http://img.jamendo.com/artists/l/ladentnoire.jpg | http://ladentnoire.propagande.org/ | http://sws.geonames.org/3029094/ |
| "Greg Baumont"^^xsd:string | http://img.jamendo.com/artists/g/greg.baumont.jpg | http://www.greg-baumont.com | http://sws.geonames.org/3034720/ |
| "DeBoo"^^xsd:string | http://img.jamendo.com/artists/d/deboo.jpg | http://www.deboo.de | http://sws.geonames.org/3213264/ |
| "Pete Vyler"^^xsd:string | http://img.jamendo.com/artists/p/pete.vyler.jpg | http://petevyler.free.fr | http://sws.geonames.org/2973357/ |
| "Cardinal Colère"^^xsd:string | http://img.jamendo.com/artists/c/cardinal.colere.jpg | http://www.cardinal-colere.com | http://sws.geonames.org/2968815/ |
| "Sonny Munroe"^^xsd:string | http://img.jamendo.com/artists/s/sonny.munroe.jpg | http://home.earthlink.net/~fkrasicki | http://sws.geonames.org/6252001/ |
| "screamin'tubes"^^xsd:string | http://img.jamendo.com/artists/s/screamin.tubes.jpg | http://www.screamintubes.com | http://sws.geonames.org/3031359/ |
| "k4n"^^xsd:string | http://img.jamendo.com/artists/k/k4n.jpg | http://k4n.free.fr | http://sws.geonames.org/3012804/ |
| "Noisylab71"^^xsd:string | http://img.jamendo.com/artists/n/noisylab71.gif | http://www.noisylab71.com | http://sws.geonames.org/6556330/ |
| "Misantropía"^^xsd:string | http://img.jamendo.com/artists/m/misantropia.jpg | http://www.misantropiaonline.tk/ | http://sws.geonames.org/3996063/ |
| "AMarie.C"^^xsd:string | http://img.jamendo.com/artists/a/amarie.c.jpg | http://amariec.free.fr/marques-d-amour.htm | http://sws.geonames.org/3017382/ |
| "Kouki"^^xsd:string | http://img.jamendo.com/artists/k/kouki.jpg | http://www.youtube.com/profile?user=Odila | http://sws.geonames.org/3013657/ |
| "fab eichert"^^xsd:string | http://img.jamendo.com/artists/f/fab.eichert.jpg | http://www.soundclick.com/genres/a2z.cfm?genre=Pop&letter=F | http://sws.geonames.org/2991627/ |
| "zero lab station"^^xsd:string | http://img.jamendo.com/artists/z/zero.lab.station.jpg | http://www.ko-rec.org/catalogo_zls.html | http://sws.geonames.org/3172391/ |
| "Astreiness"^^xsd:string | http://img.jamendo.com/artists/a/astreiness.jpg | http://srmusic.free.fr/ASTREINESS/astreiness.html | http://sws.geonames.org/2996663/ |
| "Sherief"^^xsd:string | http://img.jamendo.com/artists/s/sherief.jpg | http://www.myspace.com/sheriefmusic | http://sws.geonames.org/6252001/ |
| "Dj Fab"^^xsd:string | http://img.jamendo.com/artists/d/dj.fab.jpg | http://www.dj-fab.net | http://sws.geonames.org/2970749/ |
| "accoutumance"^^xsd:string | http://img.jamendo.com/artists/a/accoutumance.jpg | http://accoutumance.free.fr | http://sws.geonames.org/2994111/ |
| "David Schombert"^^xsd:string | http://img.jamendo.com/artists/d/david.schombert.jpg | http://schombert.net | http://sws.geonames.org/3019599/ |
| "Ghord"^^xsd:string | http://img.jamendo.com/artists/g/ghord.jpg | http://www.ghord.net | http://sws.geonames.org/2994111/ |
| "SEVEN SEAS"^^xsd:string | http://img.jamendo.com/artists/s/seven.seas.jpg | http://www.sevenseas.fr | http://sws.geonames.org/2987410/ |
| "Bonhomme"^^xsd:string | http://img.jamendo.com/artists/b/bonhomme.jpg | http://www.bonhommeweb.com | http://sws.geonames.org/2968815/ |
| "Boulbar"^^xsd:string | http://img.jamendo.com/artists/b/boulbar.jpg | http://www.lamusiquenapasdeprix.com/?q=boulbar | http://sws.geonames.org/2968815/ |
| "Silencio apache"^^xsd:string | http://img.jamendo.com/artists/s/silencio.apache.jpg | http://www.fotolog.com/silencioapache | http://sws.geonames.org/3865483/ |
| "Mahatma"^^xsd:string | http://img.jamendo.com/artists/m/mahatma.png | http://adrenalinicsound.com/music/?ccm=/media/people/seven | http://sws.geonames.org/3181927/ |
| "L'Oeil du Ficus"^^xsd:string | http://img.jamendo.com/artists/l/loeilduficus.jpg | http://www.loeilduficus.fr | http://sws.geonames.org/2987410/ |
| "Paul Leide"^^xsd:string | http://img.jamendo.com/artists/p/paul.leide.jpg | http://www.myspace.com/paulleide | http://sws.geonames.org/2077456/ |
| "DjNasty"^^xsd:string | http://img.jamendo.com/artists/d/djnasty.jpg | http://djnasty1.skyblog.com | http://sws.geonames.org/3023423/ |
| "Freizeit"^^xsd:string | http://img.jamendo.com/artists/f/freizeit.jpg | http://www.frische-musik.de | http://sws.geonames.org/2930484/ |
| "Slap Stick"^^xsd:string | http://img.jamendo.com/artists/s/slap.stick.gif | http://www.slap-stick-band.de | http://sws.geonames.org/2921044/ |
| "deied"^^xsd:string | http://img.jamendo.com/artists/d/deied.png | http://deied.de | http://sws.geonames.org/2264397/ |
| "Quassia"^^xsd:string | http://img.jamendo.com/artists/q/quassia.jpg | http://quassi.free.fr | http://sws.geonames.org/2973357/ |
| "Alpha Omega"^^xsd:string | http://img.jamendo.com/artists/a/alpha.omega.jpg | http://www.ozspace.com.au/alphaomega | http://sws.geonames.org/2077456/ |
| "theblisters"^^xsd:string | http://img.jamendo.com/artists/t/theblisters.jpg | http://myspace.com/theblistersbandfr | http://sws.geonames.org/2975249/ |
| "Cold fire"^^xsd:string | http://img.jamendo.com/artists/c/coldfire.gif | http://coldfireband.interfree.it | http://sws.geonames.org/3164526/ |
| "A-Killa"^^xsd:string | http://img.jamendo.com/artists/A/A-Killa.png | http://a-killa.musique.com | http://sws.geonames.org/3020781/ |
| "Missancha"^^xsd:string | http://img.jamendo.com/artists/M/Missancha.jpg | http://piednez.free.fr/missancha/index.html | http://sws.geonames.org/3029094/ |
| "Kalliopi"^^xsd:string | http://img.jamendo.com/artists/K/Kalliopi.gif | http://www.kalliopi.at | http://sws.geonames.org/2782113/ |
| "Degenerate Idol"^^xsd:string | http://img.jamendo.com/artists/d/degenerate.idol.jpg | http://www.degenerate-idol.com | http://sws.geonames.org/2921044/ |
| "Alter-Ego"^^xsd:string | http://img.jamendo.com/artists/A/Alter_Ego_(5).jpg | http://alteregositeweb.site.voila.fr/ | http://sws.geonames.org/2990129/ |
| "Taxi Brouss'"^^xsd:string | http://img.jamendo.com/artists/t/taxi.brouss.jpg | http://www.myspace.com/taxibrouss | http://sws.geonames.org/3013767/ |
| "Prorock"^^xsd:string | http://img.jamendo.com/artists/p/prorock.jpg | http://prorock.cz | http://sws.geonames.org/2395170/ |
| "Thalyla"^^xsd:string | http://img.jamendo.com/artists/t/thalyla.jpg | http://\dementialcore.blogspot.com | http://sws.geonames.org/3182350/ |
| "Vincent Michel"^^xsd:string | http://img.jamendo.com/artists/v/vincent.michel.jpg | http://alkemiz.blogspot.com/ | http://sws.geonames.org/3038050/ |
| "C.J.ROGERS"^^xsd:string | http://img.jamendo.com/artists/c/c.j.rogers.jpg | http://cjrogersmusic.kilu.de/www/ | http://sws.geonames.org/2960313/ |
| "JaTaky"^^xsd:string | http://img.jamendo.com/artists/j/jataky.gif | http://jataky.wz.cz | http://sws.geonames.org/2395170/ |
| "CAYM"^^xsd:string | http://img.jamendo.com/artists/c/caym.jpg | file:///home/yves/jamendo/ww.mc-garden.ch | http://sws.geonames.org/2661603/ |
| "EcHo2K"^^xsd:string | http://img.jamendo.com/artists/E/EcHo2K.png | http://www.echo2k.com | http://sws.geonames.org/3166546/ |
| "Jennifer Avalon"^^xsd:string | http://img.jamendo.com/artists/j/jennifer.avalon.jpg | http://www.jenniferavalon.net | http://sws.geonames.org/6252001/ |
| "i-overdrive trio"^^xsd:string | http://img.jamendo.com/artists/i/i-overdrive.trio.jpg | http://p.gordiani.free.fr | http://sws.geonames.org/2987410/ |
| "Fury Tale"^^xsd:string | http://img.jamendo.com/artists/p/play.rock.jpg | http://www.myspace.com/yvalain31 | http://sws.geonames.org/3013767/ |
| "Jordanenko"^^xsd:string | http://img.jamendo.com/artists/J/Jordanenko.jpg | http://www.myspace.com/jordanenko | http://sws.geonames.org/2975246/ |
| "SITT"^^xsd:string | http://img.jamendo.com/artists/S/SITT.jpg | http://aucun | http://sws.geonames.org/3016670/ |
| "Buskate la vida"^^xsd:string | http://img.jamendo.com/artists/B/Buskate_la_vida.jpg | http://www.buskatelavida.com | http://sws.geonames.org/2510769/ |
| "The Pharaos"^^xsd:string | http://img.jamendo.com/artists/T/The_Pharaos.gif | http://www.kryptonit.org | http://sws.geonames.org/2661886/ |
| "Galère"^^xsd:string | http://img.jamendo.com/artists/G/Galere.jpg | http://groff.canalblog.com/ | http://sws.geonames.org/3013719/ |
| "Etherdust"^^xsd:string | http://img.jamendo.com/artists/E/Etherdust.jpg | http://www.etherdust.in | http://sws.geonames.org/1269750/ |
| "Yvalain"^^xsd:string | http://img.jamendo.com/artists/Y/Yvalain.jpg | http://www.myspace.com/yvalain31 | http://sws.geonames.org/3013767/ |
| "W. Elektro Projekt"^^xsd:string | http://img.jamendo.com/artists/W/W._Elektro_Projekt.jpg | http://welektroprojekt.blogspot.com/ | http://sws.geonames.org/3013500/ |
| "TRIBUMAN & Jammin' Orchestra"^^xsd:string | http://img.jamendo.com/artists/T/TRIBUMAN_Jammin'_Orchestra.jpg | http://www.patchworkproduction.fr/tribuman.html | http://sws.geonames.org/3034720/ |
| "Antonio Gervasoni"^^xsd:string | http://img.jamendo.com/artists/A/Antonio_Gervasoni.jpg | http://antoniogervasoni.tripod.com | http://sws.geonames.org/3932488/ |
| "Fabien Deville"^^xsd:string | http://img.jamendo.com/artists/F/Fabien_Deville.jpg | http://www.deville-lesite.com / | http://sws.geonames.org/2661886/ |
| "Feust"^^xsd:string | http://img.jamendo.com/artists/F/Feust.jpg | http://www.myspace.com/feust | http://sws.geonames.org/3012715/ |
| "Chernobyl Kid"^^xsd:string | http://img.jamendo.com/artists/C/Chernobyl_Kid.jpg | http://www.monkeyground.de | http://sws.geonames.org/2921044/ |
| "Mr_Smok"^^xsd:string | http://img.jamendo.com/artists/M/Mr_Smok.jpg | http://www.mr.smok.prv.pl | http://sws.geonames.org/798544/ |
| "open minds collective"^^xsd:string | http://img.jamendo.com/artists/o/open_minds_collective.jpg | http://www.myspace.com/openmindscollectivevariousartists | http://sws.geonames.org/2921044/ |
| "Tinook"^^xsd:string | http://img.jamendo.com/artists/T/Tinook.jpg | http://terra-tinook.blogspot.com/ | http://sws.geonames.org/2994111/ |
| "raoul steckrübe"^^xsd:string | http://img.jamendo.com/artists/r/raoul_steckrube.jpg | http://www.motobol.de | http://sws.geonames.org/6557769/ |
| "Aube L"^^xsd:string | http://img.jamendo.com/artists/A/Aube_L.jpg | http://www.myspace.com/aubelalvee | http://sws.geonames.org/2975246/ |
| "NiNeee"^^xsd:string | http://img.jamendo.com/artists/N/NiNeee.jpg | http://www.myspace.com/nineee | http://sws.geonames.org/2991879/ |
| "Syztem"^^xsd:string | http://img.jamendo.com/artists/S/Syztem.gif | http://www.syztem.de.vu/ | http://sws.geonames.org/6556330/ |
| "Crux"^^xsd:string | http://img.jamendo.com/artists/C/Crux_(3).jpg | http://crux.yaseck.com/ | http://sws.geonames.org/798544/ |
| "ORCKON"^^xsd:string | http://img.jamendo.com/artists/O/ORCKON.jpg | http://www.myspace.com/orckon | http://sws.geonames.org/2994111/ |
| "Bastien Balt"^^xsd:string | http://img.jamendo.com/artists/B/Bastien_Balt.jpg | http://www.bastienbalt.com | http://sws.geonames.org/2991627/ |
| "DMIS"^^xsd:string | http://img.jamendo.com/artists/D/DMIS.jpg | http://iplusplus-records.net | http://sws.geonames.org/2968815/ |
| "adamo"^^xsd:string | http://img.jamendo.com/artists/a/adamo_(7).jpg | file:///home/yves/jamendo/mradamo.blogspot.com | http://sws.geonames.org/3169069/ |
| "A.L.K. DJ"^^xsd:string | http://img.jamendo.com/artists/A/A.L.K._DJ.jpg | file:///home/yves/jamendo/www.wihi.it | http://sws.geonames.org/3173434/ |
| "1.0"^^xsd:string | http://img.jamendo.com/artists/1/1.0.jpg | http://www.myspace.com/onepointzerospace | http://sws.geonames.org/2968815/ |
| "Pablo Sciuto"^^xsd:string | http://img.jamendo.com/artists/P/Pablo_Sciuto.jpg | http://www.pablosciuto.com | http://sws.geonames.org/2510769/ |
| "CARLOS VARGAS"^^xsd:string | http://img.jamendo.com/artists/C/CARLOS_VARGAS.jpg | file:///home/yves/jamendo/www.carlosvargas.org | http://sws.geonames.org/2510769/ |
| "Oursvince"^^xsd:string | http://img.jamendo.com/artists/O/Oursvince.jpg | http://www.vincentbernay.info | http://sws.geonames.org/2996663/ |
| "Melange de Promenade"^^xsd:string | http://img.jamendo.com/artists/M/Melange_de_Promenade.jpg | http://www.myspace.com/melangepromenade | http://sws.geonames.org/6252001/ |
| "paradiz3"^^xsd:string | http://img.jamendo.com/artists/p/paradiz3.jpg | file:///home/yves/jamendo/www.myspace.com/paradiz3music | http://sws.geonames.org/2975246/ |
| "Luke & Stevo"^^xsd:string | http://img.jamendo.com/artists/L/Luke_Stevo.jpg | http://www.luke-stevo.de.vu/ | http://sws.geonames.org/6557769/ |
| "patrice chala"^^xsd:string | http://img.jamendo.com/artists/p/patrice_chala_(2).jpg | file:///home/yves/jamendo/www.erepa85.com | http://sws.geonames.org/2970140/ |
| "Lvq"^^xsd:string | http://img.jamendo.com/artists/L/Lvq.jpg | file:///home/yves/jamendo/www.myspace.com/lvqband | http://sws.geonames.org/3164526/ |
| "Willbe"^^xsd:string | http://img.jamendo.com/artists/W/Willbe_(2).jpg | http://www.williamlamy.com | http://sws.geonames.org/3034720/ |
| "Beejay"^^xsd:string | http://img.jamendo.com/artists/B/Beejay.jpg | http://www.beejay.it/ | http://sws.geonames.org/3175395/ |
| "Sinusoïde"^^xsd:string | http://img.jamendo.com/artists/S/Sinusoide.jpg | http://sinusoide.mp3.free.fr | http://sws.geonames.org/2968815/ |
| "K-R"^^xsd:string | http://img.jamendo.com/artists/K/K-R.jpg | http://www.myspace.com/dejamortcrew3 | http://sws.geonames.org/3013500/ |
| "extracto de lúpulo"^^xsd:string | http://img.jamendo.com/artists/e/extracto_de_lupulo.jpg | file:///home/yves/jamendo/www.extractodelupulo.net | http://sws.geonames.org/2510769/ |
| "aqmoolator"^^xsd:string | http://img.jamendo.com/artists/a/aqmoolator.jpg | http://aqmoolator.mp3.wp.pl/ | http://sws.geonames.org/798544/ |
| "PhaZer"^^xsd:string | http://img.jamendo.com/artists/P/PhaZer_(2).jpg | http://www.gophazer.com | http://sws.geonames.org/2738782/ |
| "philippe deschamps"^^xsd:string | http://img.jamendo.com/artists/P/PHILIPPE_DESCHAMPS.jpg | file:///home/yves/jamendo/www.myspace.com/chauking | http://sws.geonames.org/2975248/ |
| "ZULU"^^xsd:string | http://img.jamendo.com/artists/Z/ZULU_(2).jpg | http://www.zulumusic.hu | http://sws.geonames.org/719819/ |
| "Argotique"^^xsd:string | http://img.jamendo.com/artists/A/Argotique.jpg | http:/dementialcore.blogspot.com | http://sws.geonames.org/3182350/ |
| "G°°L Sampler"^^xsd:string | http://img.jamendo.com/artists/G/G_L_Sampler.jpg | file:///home/yves/jamendo/www.motobol.de | http://sws.geonames.org/2884161/ |
| "Naonem"^^xsd:string | http://img.jamendo.com/artists/N/Naonem.jpg | file:///home/yves/jamendo/www.myspace.com/naonem | http://sws.geonames.org/2987410/ |
| "La Malle"^^xsd:string | http://img.jamendo.com/artists/L/La_Malle.jpg | http://www.lamalle.fr/ | http://sws.geonames.org/3034720/ |
| "Paul CREA"^^xsd:string | http://img.jamendo.com/artists/P/Paul_CREA.jpg | http://www.myspace.com/paulcrea | http://sws.geonames.org/3013736/ |
| "Kontrollzé"^^xsd:string | http://img.jamendo.com/artists/K/Kontrollze.jpg | file:///home/yves/jamendo/www.kontrollze.hu | http://sws.geonames.org/719819/ |
| "animaux de la lune"^^xsd:string | http://img.jamendo.com/artists/a/animaux_de_la_lune.jpg | http://jluis.no.sapo.pt/ | http://sws.geonames.org/2264397/ |
| "INSIDE ÁGAPE"^^xsd:string | http://img.jamendo.com/artists/I/INSIDE_AGAPE.jpg | http://myspace.com/insideagape | http://sws.geonames.org/3865483/ |
| "Leonardo Doldan"^^xsd:string | http://img.jamendo.com/artists/L/Leonardo_Doldan.jpg | file:///home/yves/jamendo/www.leonardodoldan.com.ar | http://sws.geonames.org/3865483/ |
| "Paul D. Miller aka Dj Spooky"^^xsd:string | http://img.jamendo.com/artists/D/DJ_spooky_(2).jpg | http://www.djspooky.com/hype.html | http://sws.geonames.org/6252001/ |
| "Anonym Project"^^xsd:string | http://img.jamendo.com/artists/A/Anonym_Project.jpg | file:///home/yves/jamendo/www.anonymproject.uw.hu | http://sws.geonames.org/719819/ |
| "den makes music"^^xsd:string | http://img.jamendo.com/artists/d/den_makes_music.jpg | http://dqueffeulou.free.fr/musiques/ | http://sws.geonames.org/3012849/ |
| "Misfilter"^^xsd:string | http://img.jamendo.com/artists/M/Misfilter.jpg | http://misfilterband.com/ | http://sws.geonames.org/6252001/ |
| "DopeVox"^^xsd:string | http://img.jamendo.com/artists/D/DopeVox.jpg | http://www.zombiedepot.com | http://sws.geonames.org/6252001/ |
| "FLO LFO"^^xsd:string | http://img.jamendo.com/artists/F/FLO_LFO.jpg | http://www.myspace.com/flolfo | http://sws.geonames.org/3017382/ |
| "Hipospadia"^^xsd:string | http://img.jamendo.com/artists/H/Hipospadia.jpg | http://www.danielbautista.com | http://sws.geonames.org/2515271/ |
| "Daily Grind"^^xsd:string | http://img.jamendo.com/artists/D/Daily_Grind.jpg | http://www.dailygrindband.com | http://sws.geonames.org/6556330/ |
| "Pulse of insight"^^xsd:string | http://img.jamendo.com/artists/P/Pulse_of_insight.jpg | file:///home/yves/jamendo/www.myspace.com/pulseofinsight | http://sws.geonames.org/3165523/ |
| "JC+GK"^^xsd:string | http://img.jamendo.com/artists/J/JCGK.jpg | file:///home/yves/jamendo/www.myspace.com/JCGKmusic | http://sws.geonames.org/2963597/ |
| "Post-Godzenbuth"^^xsd:string | http://img.jamendo.com/artists/P/Post-Godzenbuth.jpg | http://blog.myspace.com/godzenbuthparhervgodement | http://sws.geonames.org/3013657/ |
| "Peter David Anderson"^^xsd:string | http://img.jamendo.com/artists/P/Peter_David_Anderson.jpg | http://www.musiker-on.de/bands/75/music.php | http://sws.geonames.org/3213264/ |
| "Michu"^^xsd:string | http://img.jamendo.com/artists/M/Michu.jpg | file:///home/yves/jamendo/www.michu.es | http://sws.geonames.org/2514254/ |
| "Blackberry"^^xsd:string | http://img.jamendo.com/artists/B/Blackberry_(2).jpg | http://www.blackberry-music.net | http://sws.geonames.org/2921044/ |
| "Zérocratie"^^xsd:string | http://img.jamendo.com/artists/Z/Zerocratie.jpg | http://zerocrate.free.fr | http://sws.geonames.org/2987410/ |
| "Arkady Michalik & MUSICOCOMPANY"^^xsd:string | http://img.jamendo.com/artists/A/Arkady_Michalik_MUSICOCOMPANY_(2).jpg | http://www.arkadymichalik.republika.pl | http://sws.geonames.org/798544/ |
| "Arkady Michalik & MUSICOCOMPANY"^^xsd:string | http://img.jamendo.com/artists/A/Arkady_Michalik_MUSICOCOMPANY_(3).jpg | http://arkadymichalik.republika.pl | http://sws.geonames.org/798544/ |
| "Brigitte Bop"^^xsd:string | http://img.jamendo.com/artists/B/Brigitte_Bop_(2).jpg | http://brigittebop.free.fr/ | http://sws.geonames.org/2997857/ |
| "Dom The Bear"^^xsd:string | http://img.jamendo.com/artists/D/Dom_The_Bear.jpg | http://dombear.musicblog.fr | http://sws.geonames.org/2970749/ |
| "blackjazzmaster"^^xsd:string | http://img.jamendo.com/artists/b/blackjazzmaster.jpg | http://blackjazzmaster.de | http://sws.geonames.org/2921044/ |
| "Cliff Kilpatrick"^^xsd:string | http://img.jamendo.com/artists/C/Cliff_Kilpatrick.jpg | http://www.myspace.com/ckilpatrick1 | http://sws.geonames.org/6252001/ |
| "Hickslayer"^^xsd:string | http://img.jamendo.com/artists/H/Hickslayer.jpg | file:///home/yves/jamendo/www.hickslayer.com | http://sws.geonames.org/6252001/ |
| "Psychedelic Sun"^^xsd:string | http://img.jamendo.com/artists/P/Psydom_Recordz.jpg | file:///home/yves/jamendo/www.psydomtrance.blogspot.com | http://sws.geonames.org/3469034/ |
| "Renich"^^xsd:string | http://img.jamendo.com/artists/R/Renich.jpg | http://www.woralelandia.com/ | http://sws.geonames.org/3996063/ |
| "Aublin"^^xsd:string | http://img.jamendo.com/artists/A/Aublin.jpg | file:///home/yves/jamendo/isidroaublin.blogspot.com | http://sws.geonames.org/2510769/ |
| "nuonu"^^xsd:string | http://img.jamendo.com/artists/n/nuonu.jpg | http://www.nuonu.com | http://sws.geonames.org/6556330/ |
| "Dario Júnior"^^xsd:string | http://img.jamendo.com/artists/D/Dario_Junior.jpg | http://dario_junior.sites.uol.com.br/ | http://sws.geonames.org/3469034/ |
| "Iben"^^xsd:string | http://img.jamendo.com/artists/I/Iben_(2).jpg | http://www.douchez.com | http://sws.geonames.org/2990129/ |
| "Daniel Laufer"^^xsd:string | http://img.jamendo.com/artists/D/Daniel_Laufer_(2).jpg | http://www.daniel-laufer.de | http://sws.geonames.org/3209442/ |
| "jocelyne dorian"^^xsd:string | http://img.jamendo.com/artists/j/jocelyne_dorian.jpg | file:///home/yves/jamendo/www.jocelynedorian.com | http://sws.geonames.org/2970140/ |
| "OPRACHINA"^^xsd:string | http://img.jamendo.com/artists/O/OPRACHINA.jpg | http://www.myspace.com/oprachina | http://sws.geonames.org/3169069/ |
| "Dj H.Seres"^^xsd:string | http://img.jamendo.com/artists/D/Dj_H.Seres_(5).jpg | file:///home/yves/jamendo/Comming Soon | http://sws.geonames.org/2750405/ |
| "Hk"^^xsd:string | http://img.jamendo.com/artists/H/Hk.jpg | http://www.biomicid.fr | http://sws.geonames.org/3017382/ |
| "N'OR"^^xsd:string | http://img.jamendo.com/artists/N/N'OR.jpg | http://www.myspace.com/nor137 | http://sws.geonames.org/3031359/ |
| "Lékol Maloya"^^xsd:string | http://img.jamendo.com/artists/L/Lekol_Maloya.jpg | http://lekolmaloya.skyrock.fr | http://sws.geonames.org/935317/ |
| "Zumbido"^^xsd:string | http://img.jamendo.com/artists/Z/Zumbido.jpg | file:///home/yves/jamendo/www.myspace.com/zzumbido | http://sws.geonames.org/2510769/ |
| "Mamut"^^xsd:string | http://img.jamendo.com/artists/M/Mamut.jpg | file:///home/yves/jamendo/www.michu.es | http://sws.geonames.org/2510769/ |
| "Stck&Stn"^^xsd:string | http://img.jamendo.com/artists/S/Stck_Stn.jpg | file:///home/yves/jamendo/www.motobol.de | http://sws.geonames.org/2659752/ |
| "ELLABI"^^xsd:string | http://img.jamendo.com/artists/E/ELLABI.jpg | http://www.ellabi.com | http://sws.geonames.org/719819/ |
| "Rein"^^xsd:string | http://img.jamendo.com/artists/R/Rein.jpg | file:///home/yves/jamendo/www.rein99.it | http://sws.geonames.org/3169069/ |
| "Christian GAUVRIT"^^xsd:string | http://img.jamendo.com/artists/C/Christian_GAUVRIT.jpg | http://www.erepa85.com/ http://cpproduction.spaces.live.com/ | http://sws.geonames.org/2970140/ |
| "THYL"^^xsd:string | http://img.jamendo.com/artists/T/THYL.jpg | http://www.myspace.com/groupethyl | http://sws.geonames.org/3013767/ |
| "MUERTE DULCE"^^xsd:string | http://img.jamendo.com/artists/M/MUERTE_DULCE.jpg | file:///home/yves/jamendo/www.myspace.com/muertedulce | http://sws.geonames.org/6355233/ |
| "Frithjof Brauer"^^xsd:string | http://img.jamendo.com/artists/F/Frithjof_Brauer.jpg | file:///home/yves/jamendo/www.mpia.de/homes/brauer/jazz.html | http://sws.geonames.org/3209442/ |
| "ATP"^^xsd:string | http://img.jamendo.com/artists/A/ATP.jpg | http://atp.zespol.w.interia.pl/ | http://sws.geonames.org/798544/ |
| "inconexia"^^xsd:string | http://img.jamendo.com/artists/i/inconexia_(2).jpg | http://inconexia.net | http://sws.geonames.org/3104469/ |
| "Nastyl Crooks"^^xsd:string | http://img.jamendo.com/artists/N/Nastyl_Crooks.jpg | http://nastyl-crooks.blogspot.com/ | http://sws.geonames.org/3029094/ |
| "Aegon"^^xsd:string | http://img.jamendo.com/artists/A/Aegon.jpg | file:///home/yves/jamendo/www.myspace.com/aegon | http://sws.geonames.org/3164526/ |
| "Spine"^^xsd:string | http://img.jamendo.com/artists/S/Spine_(3).jpg | http://spine.com.pl | http://sws.geonames.org/798544/ |
| "ovative"^^xsd:string | http://img.jamendo.com/artists/o/ovative.jpg | http://iplusplus-records.net | http://sws.geonames.org/2968815/ |
| "EternalFull"^^xsd:string | http://img.jamendo.com/artists/E/EternalFull.jpg | http://www.eternalfull.tk | http://sws.geonames.org/798544/ |
| "nest rouve"^^xsd:string | http://img.jamendo.com/artists/n/nest_rouve.jpg | http://iplusplus-records.net | http://sws.geonames.org/2968815/ |
| "LATEM"^^xsd:string | http://img.jamendo.com/artists/L/LATEM.jpg | file:///home/yves/jamendo/www.myspace.com/latemnet | http://sws.geonames.org/2524906/ |
| "Beedies Echo"^^xsd:string | http://img.jamendo.com/artists/B/Beedies_Echo.jpg | file:///home/yves/jamendo/www.beedies-echo.com | http://sws.geonames.org/3013500/ |
| "Wayl Sodwind"^^xsd:string | http://img.jamendo.com/artists/W/Wayl_Sodwind.jpg | http://wayl.wordpress.com | http://sws.geonames.org/2525471/ |
| "Chico Bala"^^xsd:string | http://img.jamendo.com/artists/C/Chico_Bala.jpg | http://www.chicobala.com | http://sws.geonames.org/2510769/ |
| "Ké"^^xsd:string | http://img.jamendo.com/artists/K/Ke_(2).jpg | http://elecmutec.com | http://sws.geonames.org/2970749/ |
| "Fusz"^^xsd:string | http://img.jamendo.com/artists/F/Fusz.jpg | file:///home/yves/jamendo/www.fusz.nl | http://sws.geonames.org/2750405/ |
| "SamFilm"^^xsd:string | http://img.jamendo.com/artists/S/SamFilm.jpg | http://www.sam-film.de/samfilm/ | http://sws.geonames.org/3209442/ |
| "DJ Amy Moon"^^xsd:string | http://img.jamendo.com/artists/D/DJ_Amy_Moon.jpg | http://www.myspace.com/djamymoon | http://sws.geonames.org/2750405/ |
| "Enden Wickers"^^xsd:string | http://img.jamendo.com/artists/E/Enden_Wickers.jpg | http://wayl.wordpress.com | http://sws.geonames.org/2525471/ |
| "Sweetch"^^xsd:string | http://img.jamendo.com/artists/S/Sweetch.jpg | http://www.sweetch.net | http://sws.geonames.org/3012849/ |
| "TAKEWON"^^xsd:string | http://img.jamendo.com/artists/T/TAKEWON.jpg | file:///home/yves/jamendo/www.myspace.com/Takewon | http://sws.geonames.org/2975517/ |
| "White Light Riot"^^xsd:string | http://img.jamendo.com/artists/W/White_Light_Riot.jpg | http://whitelightriot.com | http://sws.geonames.org/6252001/ |
| "Enrique Mateu"^^xsd:string | http://img.jamendo.com/artists/E/Enrique_Mateu.jpg | http://www.enriquemateu.com | http://sws.geonames.org/2515271/ |
| "The Wavers"^^xsd:string | http://img.jamendo.com/artists/T/The_Wavers.jpg | http://myspace.com/thewavers | http://sws.geonames.org/3178227/ |
| "DoubleMinds"^^xsd:string | http://img.jamendo.com/artists/D/DoubleMinds.jpg | http://www.doubleminds.com | http://sws.geonames.org/2984887/ |
| "arcaïde"^^xsd:string | http://img.jamendo.com/artists/a/arcaide.jpg | file:///home/yves/jamendo/www.myspace.com/arcaide | http://sws.geonames.org/3020781/ |
| "GeoSuPhat"^^xsd:string | http://img.jamendo.com/artists/G/GeoSuPhat.jpg | http://togeostudios.com/music/artists/geosuphat/ | http://sws.geonames.org/6556330/ |
| "Moonshiners"^^xsd:string | http://img.jamendo.com/artists/m/moonshiners.gif | http://www.moonshiners.ze.cx | http://sws.geonames.org/2975248/ |
| "mindthings"^^xsd:string | http://img.jamendo.com/artists/m/mindthings.jpg | http://www.myspace.com/mindthings | http://sws.geonames.org/3015948/ |
| "Les Ecorchés"^^xsd:string | http://img.jamendo.com/artists/L/Les_Ecorches.jpg | http://www.les-ecorches.com/ | http://sws.geonames.org/2988430/ |
| "DJLaser"^^xsd:string | http://img.jamendo.com/artists/D/DJLaser.jpg | http://www.reales.cc | http://sws.geonames.org/2520597/ |
| "djniko62"^^xsd:string | http://img.jamendo.com/artists/d/djniko62.jpg | http://djniko62.skyrock.com/profil/ | http://sws.geonames.org/2988430/ |
| "DJDB"^^xsd:string | http://img.jamendo.com/artists/D/DJDB.jpg | http://djdb.co.nr | http://sws.geonames.org/390903/ |
| "Doune"^^xsd:string | http://img.jamendo.com/artists/D/Doune.jpg | file:///home/yves/jamendo/www.myspace.com/dounetheband | http://sws.geonames.org/2968815/ |
| "The Diletanters"^^xsd:string | http://img.jamendo.com/artists/T/The_Diletanters.jpg | http://myspace.com/thediletanterslegroupe | http://sws.geonames.org/2970749/ |
| "Docteur Prépu"^^xsd:string | http://img.jamendo.com/artists/D/Docteur_Prepu_(2).jpg | http://www.docteurprepu.com | http://sws.geonames.org/3019599/ |
| "Mattia Giovanetti"^^xsd:string | http://img.jamendo.com/artists/M/Mattia_Giovanetti.jpg | http://xoomer.alice.it/naturaljazz/ | http://sws.geonames.org/3175395/ |
| "eliot ness"^^xsd:string | http://img.jamendo.com/artists/e/eliot_ness.jpg | http://www.eliotness.fr.tc | http://sws.geonames.org/3013767/ |
| "bert jerred"^^xsd:string | http://img.jamendo.com/artists/b/bert_jerred.jpg | file:///home/yves/jamendo/bertjerredmusic.googlepages.com | http://sws.geonames.org/6252001/ |
| "Jaufenpass"^^xsd:string | http://img.jamendo.com/artists/J/Jaufenpass.jpg | file:///home/yves/jamendo/www.jaufenpass.com | http://sws.geonames.org/3175395/ |
| "SMG"^^xsd:string | http://img.jamendo.com/artists/M/Mudit_Sood.jpg | http://www.smgtheartist.blogspot.com/ | http://sws.geonames.org/1269750/ |
| "TAVOLA RUSTICA"^^xsd:string | http://img.jamendo.com/artists/T/TAVOLA_RUSTICA.jpg | http://www.myspace.com/classikdream | http://sws.geonames.org/3013500/ |
| "zero"^^xsd:string | http://img.jamendo.com/artists/z/zero_(5).jpg | file:///home/yves/jamendo/www.myspace.com/zerotheband | http://sws.geonames.org/2884161/ |
| "This Broken Machine"^^xsd:string | http://img.jamendo.com/artists/T/This_Broken_Machine.jpg | file:///home/yves/jamendo/www.tbmband.com | http://sws.geonames.org/3173434/ |
| "o0o"^^xsd:string | http://img.jamendo.com/artists/o/o0o.jpg | http://o0o-radio.blogspot.com/ | http://sws.geonames.org/2750405/ |
| "REQUIEM"^^xsd:string | http://img.jamendo.com/artists/R/REQUIEM_(7).jpg | http://www.myspace.com/requiemgrungemusic | http://sws.geonames.org/798544/ |
| "The Shamrock Stars"^^xsd:string | http://img.jamendo.com/artists/T/The_Shamrock_Stars.jpg | http://the-shamrock-stars.skyrock.com | http://sws.geonames.org/2984986/ |
| "Courboulès David"^^xsd:string | http://img.jamendo.com/artists/C/Courboules_David.jpg | file:///home/yves/jamendo/www.artfloid.com | http://sws.geonames.org/3015948/ |
| "Peter Schaefer"^^xsd:string | http://img.jamendo.com/artists/P/Peter_Schaefer.jpg | file:///home/yves/jamendo/www.schaefer-music.com | http://sws.geonames.org/3209442/ |
| "Lohmé"^^xsd:string | http://img.jamendo.com/artists/L/Lohme.jpg | file:///home/yves/jamendo/www.myspace.com/lohme | http://sws.geonames.org/2968815/ |
| "Patrick Chergui"^^xsd:string | http://img.jamendo.com/artists/P/Patrick_Chergui.jpg | http://fr.myspace.com/patrickchergui | http://sws.geonames.org/2968815/ |
| "E.Th.Orkester"^^xsd:string | http://img.jamendo.com/artists/E/E.Th.Orkester.jpg | http://www.mp3.onlinemediaservice.de/ | http://sws.geonames.org/3213264/ |
| "VibraWave"^^xsd:string | http://img.jamendo.com/artists/V/VibraWave.jpg | http://www.myspace.com/vibrawave | http://sws.geonames.org/3337511/ |
| "Emorej"^^xsd:string | http://img.jamendo.com/artists/E/Emorej.jpg | http://www.myspace.com/emorej | http://sws.geonames.org/1694008/ |
| "Four Oceans"^^xsd:string | http://img.jamendo.com/artists/F/Four_Oceans.jpg | http://www.jamendo.com/en/artist/Four_Oceans/ | http://sws.geonames.org/2884161/ |
| "Feveria"^^xsd:string | http://img.jamendo.com/artists/F/Feveria.jpg | http://www.feveria.neostrada.pl | http://sws.geonames.org/798544/ |
| "Atlantis.Milos Pello"^^xsd:string | http://img.jamendo.com/artists/A/Atlantis.Milos_Pello.jpg | file:///home/yves/jamendo/www.atlantis-mp.blogspot.com | http://sws.geonames.org/3057568/ |
| "RD15k"^^xsd:string | http://img.jamendo.com/artists/R/RD15k.jpg | http://myspace.com/rd15k | http://sws.geonames.org/3017382/ |
| "Return Of Doctor Mabuse"^^xsd:string | http://img.jamendo.com/artists/R/Return_Of_Doctor_Mabuse.jpg | file:///home/yves/jamendo/www.myspace.com/returnofdrmabuse | http://sws.geonames.org/3175395/ |
| "Pieresis"^^xsd:string | http://img.jamendo.com/artists/P/Pieresis.jpg | http://www.youtube.com/Pieresis | http://sws.geonames.org/3182350/ |
| "ELOQUENZ"^^xsd:string | http://img.jamendo.com/artists/E/ELOQUENZ_(2).jpg | http://myspace.com/eloquenz | http://sws.geonames.org/3213264/ |
| "sonata electra"^^xsd:string | http://img.jamendo.com/artists/s/sonata_electra.jpg | http://sonata-electra.skyrock.com/ | http://sws.geonames.org/3038422/ |
| "Black Out"^^xsd:string | http://img.jamendo.com/artists/B/Black_Out_(2).jpg | file:///home/yves/jamendo/www.black-out.net | http://sws.geonames.org/2968815/ |
| "SIRUS Francky"^^xsd:string | http://img.jamendo.com/artists/S/SIRUS_Francky.jpg | http://arpege.musicblog.fr | http://sws.geonames.org/3016670/ |
| "Ściana Wschodnia"^^xsd:string | http://img.jamendo.com/artists/S/Sciana_Wschodnia.jpg | http://www.myspace.com/scianawschodnia | http://sws.geonames.org/798544/ |
| "Huete"^^xsd:string | http://img.jamendo.com/artists/H/Huete.jpg | file:///home/yves/jamendo/Huete | http://sws.geonames.org/2510769/ |
| "Lonely Planet Boy 1969"^^xsd:string | http://img.jamendo.com/artists/L/Lonely_Planet_Boy_1969.jpg | http://www.myspace.cn/1969lpb | http://sws.geonames.org/1794299/ |
| "First"^^xsd:string | http://img.jamendo.com/artists/F/First.jpg | http://firstband.altervista.org | http://sws.geonames.org/3175395/ |
| "SlogaN"^^xsd:string | http://img.jamendo.com/artists/S/SlogaN.jpg | file:///home/yves/jamendo/www.myspace.com/slogangroupe | http://sws.geonames.org/2997524/ |
| "Stellar Vector"^^xsd:string | http://img.jamendo.com/artists/S/Stellar_Vector.jpg | http://www.stellarvector.com | http://sws.geonames.org/6252001/ |
| "Degiheugi"^^xsd:string | http://img.jamendo.com/artists/D/Degiheugi.jpg | http://www.myspace.com/degiheugi | http://sws.geonames.org/2994932/ |
| "Mudit Sood"^^xsd:string | http://img.jamendo.com/artists/M/Mudit_Sood_(2).jpg | file:///home/yves/jamendo/www.smgtheband.blogspot.com | http://sws.geonames.org/1269750/ |
| "Delectable Mosquito and the radioactive dreams"^^xsd:string | http://img.jamendo.com/artists/D/Delectable_Mosquito_and_the_radioactive_dreams.jpg | http://www.myspace.com/delectablemosquitoandtheradioactivedreams | http://sws.geonames.org/3213264/ |
| "GOTARD"^^xsd:string | http://img.jamendo.com/artists/G/GOTARD.jpg | file:///home/yves/jamendo/www.streemo.pl/GOTARD | http://sws.geonames.org/798544/ |
| "horelles"^^xsd:string | http://img.jamendo.com/artists/h/horelles.jpg | http://horelles.free.fr/ | http://sws.geonames.org/3017382/ |
| "New world "^^xsd:string | http://img.jamendo.com/artists/N/New_world_(2).jpg | file:///home/yves/jamendo/www.dj-fab.net | http://sws.geonames.org/3017382/ |
| "The Poetize Code"^^xsd:string | http://img.jamendo.com/artists/T/The_Poetize_Code.jpg | http://www.myspace.com/poetizecode | http://sws.geonames.org/3469034/ |
| "ARTIK (From The Next Label)"^^xsd:string | http://img.jamendo.com/artists/A/ARTIK.jpg | file:///home/yves/jamendo/www.myspace.com/artikwhy | http://sws.geonames.org/3019599/ |
| "Evil Inside"^^xsd:string | http://img.jamendo.com/artists/E/Evil_Inside.jpg | http://www.danielbautista.com | http://sws.geonames.org/2515271/ |
| "# NUTSHELL #"^^xsd:string | http://img.jamendo.com/artists/N/NUTSHELL.jpg | file:///home/yves/jamendo/www.nutshell.cba.pl | http://sws.geonames.org/798544/ |
| "Philippe STANO"^^xsd:string | http://img.jamendo.com/artists/P/Philippe_STANO.jpg | http://www.graphical-dream.com | http://sws.geonames.org/3017382/ |
| "Breeding Sonic Waves"^^xsd:string | http://img.jamendo.com/artists/B/Breeding_Sonic_Waves_(2).jpg | http://myspace.com/breedingsonicwaves | http://sws.geonames.org/2264397/ |
| "Screw-Jay"^^xsd:string | http://img.jamendo.com/artists/S/Screw-Jay.jpg | http://www.screw-jay.com/ | http://sws.geonames.org/719819/ |
| "Homecoming Kings"^^xsd:string | http://img.jamendo.com/artists/H/Homecoming_Kings.jpg | http://www.homecomingkings.de | http://sws.geonames.org/2921044/ |
| "Mind Split Effect"^^xsd:string | http://img.jamendo.com/artists/M/Mind_Split_Effect.jpg | http://www.mindspliteffect.tk | http://sws.geonames.org/3019599/ |
| "linfa"^^xsd:string | http://img.jamendo.com/artists/l/linfa.jpg | file:///home/yves/jamendo/www.myspace.com/linfaweb | http://sws.geonames.org/3173330/ |
| "musik zum duschen"^^xsd:string | http://img.jamendo.com/artists/m/musik_zum_duschen.jpg | file:///home/yves/jamendo/www.motobol.de | http://sws.geonames.org/2782113/ |
| "hi.mo"^^xsd:string | http://img.jamendo.com/artists/h/hi.mo.jpg | file:///home/yves/jamendo/www.myspace.com/highmode | http://sws.geonames.org/3165071/ |
| "KARLO Kostic Lazar"^^xsd:string | http://img.jamendo.com/artists/K/KARLO_Kostic_Lazar.jpg | file:///home/yves/jamendo/www.freewebs.com/lazarkostic | http://sws.geonames.org/6251999/ |
| "Morphee Dereves"^^xsd:string | http://img.jamendo.com/artists/M/Morphee_Dereves.jpg | http://myspace.com/lescavistes | http://sws.geonames.org/2975249/ |
| "Francis Barault"^^xsd:string | http://img.jamendo.com/artists/f/francis.barault.jpg | http://pas de site web/ | http://sws.geonames.org/2971071/ |
| "Ellissi nel Cerchio"^^xsd:string | http://img.jamendo.com/artists/e/ellissinelcerchio.jpg | http://www.ellissinelcerchio.net | http://sws.geonames.org/3173434/ |
| "MaelStröM"^^xsd:string | http://img.jamendo.com/artists/m/maelstrom.jpg | http://msm63.free.fr | http://sws.geonames.org/2997861/ |
| "kosvocore"^^xsd:string | http://img.jamendo.com/artists/k/kosvocore.jpg | http://kosvocore.asso.in | http://sws.geonames.org/2995603/ |
| "El Deyma"^^xsd:string | http://img.jamendo.com/artists/e/eldeyma.jpg | http://www.eldeyma.com | http://sws.geonames.org/3034720/ |
| "Robert Izard"^^xsd:string | http://img.jamendo.com/artists/r/robert.izard.jpg | http://robertmusique.hautetfort.com | http://sws.geonames.org/2984885/ |
| "Raven Crown"^^xsd:string | http://img.jamendo.com/artists/r/raven.crown.gif | http://www.burnog.com/raven_crown/ | http://sws.geonames.org/3038111/ |
| "kaceo"^^xsd:string | http://img.jamendo.com/artists/k/kaceo.jpg | http://www.kaceo.fr/ | http://sws.geonames.org/2989663/ |
| "Eology"^^xsd:string | http://img.jamendo.com/artists/e/eology.jpg | http://eology.free.fr | http://sws.geonames.org/2990129/ |
| "mandragor"^^xsd:string | http://img.jamendo.com/artists/m/mandragor.jpg | http://mandragor.e.free.fr/ | http://sws.geonames.org/2997861/ |
| "Whiteyes"^^xsd:string | http://img.jamendo.com/artists/w/whiteyes.png | http://whiteyes.1s.fr | http://sws.geonames.org/2997861/ |
| "Simon & Simone"^^xsd:string | http://img.jamendo.com/artists/l/lport.jpg | http://www.simonetsimone.fr | http://sws.geonames.org/3013767/ |
| "Phonethnics"^^xsd:string | http://img.jamendo.com/artists/p/phonethnics.jpg | http://phonethnics.free.fr | http://sws.geonames.org/2971071/ |
| "Lukas Prest!"^^xsd:string | http://img.jamendo.com/artists/l/lukasprest.png | http://www.mundurat.net/lukasprest | http://sws.geonames.org/3371123/ |
| "Heres"^^xsd:string | http://img.jamendo.com/artists/h/heres.jpg | http://www.heres-music.com | http://sws.geonames.org/2968815/ |
| "narcoz"^^xsd:string | http://img.jamendo.com/artists/n/narcoz.jpg | http://narcoz.skyblog.com | http://sws.geonames.org/2973362/ |
| "Ludo Marteau"^^xsd:string | http://img.jamendo.com/artists/m/marteau.ludovic.jpg | http://aucun | http://sws.geonames.org/2969280/ |
| "HGJ13/7e"^^xsd:string | http://img.jamendo.com/artists/h/hgj13.7e.jpg | http://www.hgj13.net | http://sws.geonames.org/6556330/ |
| "Jules"^^xsd:string | http://img.jamendo.com/artists/j/jules.jpg | http://blog.myspace.com/lazik2ju | http://sws.geonames.org/3012715/ |
| "Elkysia"^^xsd:string | http://img.jamendo.com/artists/e/elkysia.jpg | http://www.elkysia.org/ | http://sws.geonames.org/2997861/ |
| "LeuRre"^^xsd:string | http://img.jamendo.com/artists/l/leurre.jpg | http://www.myspace.com/leurre95 | http://sws.geonames.org/2971071/ |
| "darkmoon project"^^xsd:string | http://img.jamendo.com/artists/d/darkmoon.project.png | http://darkmoonproject.free.fr/ | http://sws.geonames.org/2968815/ |
| "atohm"^^xsd:string | http://img.jamendo.com/artists/a/atohm.jpg | http://www.atohm.free.fr | http://sws.geonames.org/2975249/ |
| "mes chansons chaussent du 24"^^xsd:string | http://img.jamendo.com/artists/m/mes.chansons.chaussent.du.24.jpg | http://ichantent.free.fr | http://sws.geonames.org/2994111/ |
| "No Más - La Banda"^^xsd:string | http://img.jamendo.com/artists/n/nomas-labanda.gif | http://www.no-mas.fr | http://sws.geonames.org/3012715/ |
| "NoNoetJunKy"^^xsd:string | http://img.jamendo.com/artists/n/nonoetjunky.jpg | http://nonoetjunky.free.fr/ | http://sws.geonames.org/3015948/ |
| "a broken moment"^^xsd:string | http://img.jamendo.com/artists/a/a.broken.moment.jpg | http://www.abrokenmoment.tk | http://sws.geonames.org/2967222/ |
| "Mike Rix"^^xsd:string | http://img.jamendo.com/artists/t/tv.od.jpg | http://--- | http://sws.geonames.org/2750405/ |
| "jet"^^xsd:string | http://img.jamendo.com/artists/j/jet.png | http://home.arcor.de/herr.lang/index.html | http://sws.geonames.org/6556330/ |
| "Gros Con Banal"^^xsd:string | http://img.jamendo.com/artists/g/gros.con.banal.jpg | http://www.yuriversaal.ht.cx | http://sws.geonames.org/2968815/ |
| "Da Klönschnack"^^xsd:string | http://img.jamendo.com/artists/d/dakloenschnack.gif | http://knoppaz.de | http://sws.geonames.org/2921044/ |
| "Drugged Killer"^^xsd:string | http://img.jamendo.com/artists/d/drugged.killer.gif | http://www.justonefixrecords.com | http://sws.geonames.org/6252001/ |
| "Atriplex"^^xsd:string | http://img.jamendo.com/artists/a/atriplex.jpg | http://slumbertone.awardspace.com/ | http://sws.geonames.org/2077456/ |
| "Eric Raillard"^^xsd:string | http://img.jamendo.com/artists/e/eric.raillard.png | http://eric.raillard.free.fr/ | http://sws.geonames.org/1699807/ |
| "stefuck"^^xsd:string | http://img.jamendo.com/artists/s/stefuck.jpg | http://stefuck.free.fr | http://sws.geonames.org/2968815/ |
| "askeladd"^^xsd:string | http://img.jamendo.com/artists/a/askeladd.gif | http://membres.lycos.fr/askeladd/ | http://sws.geonames.org/2968815/ |
| "Mi Rara Coleccion"^^xsd:string | http://img.jamendo.com/artists/m/mrc.gif | http://www.miraracoleccion.com/ | http://sws.geonames.org/2510910/ |
| "Gregcoccetta"^^xsd:string | http://img.jamendo.com/artists/g/gregcoccetta.png | http://gregcoccetta.free.fr/ | http://sws.geonames.org/2975517/ |
| "KantIk"^^xsd:string | http://img.jamendo.com/artists/k/kantik.jpg | http://www.myspace.com/kantik | http://sws.geonames.org/2968815/ |
| "kaim"^^xsd:string | http://img.jamendo.com/artists/k/kaim.jpg | http://kaimh.blogspot.com | http://sws.geonames.org/2968815/ |
| "Lzn02"^^xsd:string | http://img.jamendo.com/artists/l/lzn02.jpg | http://myspace.com/Lzn02music | http://sws.geonames.org/3016670/ |
| "Kemiso"^^xsd:string | http://img.jamendo.com/artists/k/kemiso.png | http://www.kemiso.com | http://sws.geonames.org/3031359/ |
| "RAZCHILAF"^^xsd:string | http://img.jamendo.com/artists/r/razchilaf.jpg | http://www.razchilaf.com | http://sws.geonames.org/3895114/ |
| "nocreeps"^^xsd:string | http://img.jamendo.com/artists/n/nocreeps.jpg | http://www.nocreeps.de | http://sws.geonames.org/3209442/ |
| "djFRk"^^xsd:string | http://img.jamendo.com/artists/d/djfrk.jpg | http://www.myspace.com/djfrk42 | http://sws.geonames.org/2997870/ |
| "Electroconsept"^^xsd:string | http://img.jamendo.com/artists/e/electroconsept1.jpg | http://www.electroconsept.izihost.com/ | http://sws.geonames.org/2987410/ |
| "Black Venus"^^xsd:string | http://img.jamendo.com/artists/b/black.venus.gif | http://www.myspace.com/blackvenusmusic | http://sws.geonames.org/3021042/ |
| "eiohaki"^^xsd:string | http://img.jamendo.com/artists/e/eiohaki.jpg | http://www.eiohaki.blogspot.com | http://sws.geonames.org/3013657/ |
| "Minch in the From"^^xsd:string | http://img.jamendo.com/artists/m/minch.in.the.from.jpg | http://minchinthefrom.free.fr | http://sws.geonames.org/3015948/ |
| "Syd_Sax"^^xsd:string | http://img.jamendo.com/artists/s/syd.sax.jpg | http://www.sidneysacchi.net | http://sws.geonames.org/3172391/ |
| "thierry blanchard"^^xsd:string | http://img.jamendo.com/artists/t/thierry.blanchard.jpg | http://www.thierryblanchard.com | http://sws.geonames.org/2971090/ |
| "ELECTRONIC WORLD"^^xsd:string | http://img.jamendo.com/artists/e/electronic.world.jpg | http://electronicworld.hautetfort.com | http://sws.geonames.org/3013736/ |
| "CNNP"^^xsd:string | http://img.jamendo.com/artists/c/cnnp.png | http://marie-claire.choplair.org/?page=cnnp | http://sws.geonames.org/3013767/ |
| "Les Looz' Brothers"^^xsd:string | http://img.jamendo.com/artists/l/les.looz.brothers.jpg | http://inoxmetal.onlc.fr/ | http://sws.geonames.org/3007866/ |
| "La Partie du Cerveau"^^xsd:string | http://img.jamendo.com/artists/l/la.partie.du.cerveau.jpg | http://www.sycomor.net/cerveau | http://sws.geonames.org/3017382/ |
| "Josselin"^^xsd:string | http://img.jamendo.com/artists/j/josselincommeonestloin.jpg | http://josselin.hautetfort.com | http://sws.geonames.org/3023423/ |
| "Acid Skunp"^^xsd:string | http://img.jamendo.com/artists/a/acid.skunp.png | http://www.tomatoesattack.org | http://sws.geonames.org/2970749/ |
| "SmoKing AFter"^^xsd:string | http://img.jamendo.com/artists/s/smoking.after.gif | http://www.smoking-after.com | http://sws.geonames.org/2968815/ |
| "CAEROU"^^xsd:string | http://img.jamendo.com/artists/c/caerou.jpg | http://caerou.free.fr/ | http://sws.geonames.org/3019599/ |
| "Pobl"^^xsd:string | http://img.jamendo.com/artists/p/pobl.jpg | http://www.pobl.info | http://sws.geonames.org/2750405/ |
| "Chatougri"^^xsd:string | http://img.jamendo.com/artists/c/chatougri.jpg | http://www.chatougri.com | http://sws.geonames.org/3012849/ |
| "Kenneth"^^xsd:string | http://img.jamendo.com/artists/k/kenneth.jpg | http://www.walkyriesmusic.com | http://sws.geonames.org/3013736/ |
| "Laura LiiS"^^xsd:string | http://img.jamendo.com/artists/l/laura.liis.jpg | http://www.liis.biz | http://sws.geonames.org/2968815/ |
| "The Orientalist"^^xsd:string | http://img.jamendo.com/artists/t/the.orientalist.jpg | http://freshpoulp.net/artists/the-orientalist.htm | http://sws.geonames.org/3017382/ |
| "e:o:nity"^^xsd:string | http://img.jamendo.com/artists/e/eonity.jpg | http://www.eonity.info/ | http://sws.geonames.org/3213264/ |
| "mc@b"^^xsd:string | http://img.jamendo.com/artists/m/mc.b.jpg | http://componewmusic.hautetfort.com | http://sws.geonames.org/3026644/ |
| "Aeron - rudolphe.michau@gmail.com"^^xsd:string | http://img.jamendo.com/artists/a/aeron.jpg | http://rudolphe.michau@gmail.com | http://sws.geonames.org/2968815/ |
| "Soulelec"^^xsd:string | http://img.jamendo.com/artists/s/soulelec.jpg | http://www.soulaya.be/soulelec | http://sws.geonames.org/2802361/ |
| "Pascalb"^^xsd:string | http://img.jamendo.com/artists/p/pascalb.jpg | http://www.myspace.com/pascalbhome | http://sws.geonames.org/3036420/ |
| "Emma PSYCHE"^^xsd:string | http://img.jamendo.com/artists/e/emmapsyche.jpg | http://emmapsyche.com | http://sws.geonames.org/2968815/ |
| "Maneros productions"^^xsd:string | http://img.jamendo.com/artists/m/maneros.productions.gif | http://www.myspace.com/maneros | http://sws.geonames.org/2139685/ |
| "benjamin moreau"^^xsd:string | http://img.jamendo.com/artists/b/benjaminmoreau.jpg | http://www.benjaminmoreau.com | http://sws.geonames.org/3012804/ |
| "cyborgjeff"^^xsd:string | http://img.jamendo.com/artists/c/cyborgjeff.jpg | http://www.cyborgjeff.com | http://sws.geonames.org/2802361/ |
| "Warforge"^^xsd:string | http://img.jamendo.com/artists/w/warforge.jpg | http://www.Warforge.net | http://sws.geonames.org/3213264/ |
| "kapadnoms"^^xsd:string | http://img.jamendo.com/artists/k/kapadnoms.jpg | http://pas encore dispo pour le moment/ | http://sws.geonames.org/2975246/ |
| "4Midges"^^xsd:string | http://img.jamendo.com/artists/4/4midges.jpg | http://www.4midges.net | http://sws.geonames.org/2990129/ |
| "Eveil"^^xsd:string | http://img.jamendo.com/artists/e/eveil.jpg | http://jeanphilippe.chataux.free.fr/ | http://sws.geonames.org/3019599/ |
| "Richard Z"^^xsd:string | http://img.jamendo.com/artists/r/richard.z.jpg | http://perso.wanadoo.fr/richard.serene/richard_z.htm | http://sws.geonames.org/2996663/ |
| "SouthSide"^^xsd:string | http://img.jamendo.com/artists/s/southside.jpg | http://www.myspace.com/southsidespace | http://sws.geonames.org/2984887/ |
| "kaapad"^^xsd:string | http://img.jamendo.com/artists/k/kaapad.png | http://www.myspace.com/kaapad | http://sws.geonames.org/2975248/ |
| "LarG Productions"^^xsd:string | http://img.jamendo.com/artists/l/larg.productions.jpg | http://www.largproductions.com | http://sws.geonames.org/6251999/ |
| "After Infinity (FRLacoustics)"^^xsd:string | http://img.jamendo.com/artists/a/afterinfinity.jpg | http://www.afterinfinitysessions.com | http://sws.geonames.org/3023532/ |
| "mikalabre06"^^xsd:string | http://img.jamendo.com/artists/m/mikalabre06.jpg | http://www.mikeul.com | http://sws.geonames.org/3038049/ |
| "Pompougnac Daniel"^^xsd:string | http://img.jamendo.com/artists/p/pompougnac.daniel.jpg | http://www.pompougnac-daniel.com | http://sws.geonames.org/3015948/ |
| "natlyea"^^xsd:string | http://img.jamendo.com/artists/n/natlyea.jpg | http://www.natlyea.tk | http://sws.geonames.org/3213264/ |
| "Die drei Lenöre"^^xsd:string | http://img.jamendo.com/artists/d/die.drei.lenoere.jpg | http://www.lenoere.de | http://sws.geonames.org/3209442/ |
| "AL MA"^^xsd:string | http://img.jamendo.com/artists/a/al.ma.jpg | http://mamusique.hautetfort.com | http://sws.geonames.org/3012849/ |
| "Michele Wylen"^^xsd:string | http://img.jamendo.com/artists/m/michele.wylen.jpg | http://www.michelewylen.com | http://sws.geonames.org/6252001/ |
| "nkoemcee"^^xsd:string | http://img.jamendo.com/artists/n/nkoemcee.jpg | http://www.sindominio.net/adolflow/retales/nko_souchi_bboycoleando/ | http://sws.geonames.org/6355233/ |
| "Eftos"^^xsd:string | http://img.jamendo.com/artists/e/eftos.jpg | http://www.eftos.de | http://sws.geonames.org/6556330/ |
| "The incrediBle BuBBle Band"^^xsd:string | http://img.jamendo.com/artists/t/theibb.jpg | http://incrediblebubbleband.free.fr | http://sws.geonames.org/2976082/ |
| "Greater Boston Visionary Outpost"^^xsd:string | http://img.jamendo.com/artists/g/greater.boston.visionary.outpost.jpg | http://gbvo.iwarp.com/index_1.html | http://sws.geonames.org/6252001/ |
| "THE ATHLETES"^^xsd:string | http://img.jamendo.com/artists/t/the.athletes.jpg | http://HTTP://WWW.MYSPACE.COM/WORLDFAMOUSENT | http://sws.geonames.org/6252001/ |
| "sunset blvd"^^xsd:string | http://img.jamendo.com/artists/s/sunsetblvd.jpg | http://www.myspace.com/yeahsunsetblvd | http://sws.geonames.org/3164526/ |
| "Sara Lisa"^^xsd:string | http://img.jamendo.com/artists/s/sara.lisa.jpg | http://En construction.../ | http://sws.geonames.org/3038049/ |
| "aliencrime"^^xsd:string | http://img.jamendo.com/artists/a/aliencrime.jpg | http://www.aliencrime.blogspot.com | http://sws.geonames.org/3169069/ |
| "rozbit"^^xsd:string | http://img.jamendo.com/artists/r/rozbit.jpg | http://rozbit.com | http://sws.geonames.org/798544/ |
| "Guillaume"^^xsd:string | http://img.jamendo.com/artists/g/guillaume.jpg | http://perso.orange.fr/momo-compo/ | http://sws.geonames.org/2975248/ |
| "Oscar Fynn Rove"^^xsd:string | http://img.jamendo.com/artists/o/oscar.fynn.rove.gif | http://oscarfynnrove.hautetfort.com/ | http://sws.geonames.org/2968815/ |
| "pamela pril"^^xsd:string | http://img.jamendo.com/artists/p/pamela.pril.jpg | http://pamelapril.over-blog.com/ | http://sws.geonames.org/3034720/ |
| "ARMED"^^xsd:string | http://img.jamendo.com/artists/a/armed.jpg | http://armed.free.bg | http://sws.geonames.org/6459159/ |
| "Giac & Juan"^^xsd:string | http://img.jamendo.com/artists/g/giac.juan.jpg | http://giacjuan.blogspot.com/ | http://sws.geonames.org/2991627/ |
| "acrobat live"^^xsd:string | http://img.jamendo.com/artists/a/acrobat.gif | http://www.lecoinsono.com | http://sws.geonames.org/2991879/ |
| "Anamnesia"^^xsd:string | http://img.jamendo.com/artists/a/anamnesia1.jpg | http://anamnesia.free.fr | http://sws.geonames.org/2994111/ |
| "MontesProject"^^xsd:string | http://img.jamendo.com/artists/m/montesproject.jpg | http://montesproject.iespana.es | http://sws.geonames.org/2515271/ |
| "ECTOPIC"^^xsd:string | http://img.jamendo.com/artists/e/ectopic.png | http://www.myspace.com/ectopicmusic | http://sws.geonames.org/3012849/ |
| "Eclectronic"^^xsd:string | http://img.jamendo.com/artists/e/eclectronic.jpg | http://billyx.blogspot.com | http://sws.geonames.org/2968815/ |
| "Acrotek"^^xsd:string | http://img.jamendo.com/artists/a/acrotek.jpg | http://www.acrotek.org/ | http://sws.geonames.org/2984986/ |
| "The Helldorados"^^xsd:string | http://img.jamendo.com/artists/h/helldorados.jpg | http://www.helldorados.de | http://sws.geonames.org/2921044/ |
| "YAM"^^xsd:string | http://img.jamendo.com/artists/y/yam.jpg | http://yamstaff.nuxit.net | http://sws.geonames.org/3015948/ |
| "Zywiolak"^^xsd:string | http://img.jamendo.com/artists/z/zywiolak.jpg | http://www.zywiolak.pl | http://sws.geonames.org/798544/ |
| "Whiteshoulders"^^xsd:string | http://img.jamendo.com/artists/w/white-shoulders.jpg | http://blackshoulders.hautetfort.com/ | http://sws.geonames.org/3019599/ |
| "Bruce H. McCosar"^^xsd:string | http://img.jamendo.com/artists/b/bruce.h.mccosar.png | http://bmccosar.wordpress.com/ | http://sws.geonames.org/6252001/ |
| "[...]"^^xsd:string | http://img.jamendo.com/artists/p/pointpointpoint.gif | http://pointpointpoint.free.fr | http://sws.geonames.org/2996663/ |
| "Bolchoï"^^xsd:string | http://img.jamendo.com/artists/b/bolchoi.jpg | http://bolchoi.propagande.org | http://sws.geonames.org/3013767/ |
| "Electro-Smog"^^xsd:string | http://img.jamendo.com/artists/e/electro-smog.jamendo.net.jpg | http://www.electro-smog.elf88.de | http://sws.geonames.org/2884161/ |
| "Turno de tarde"^^xsd:string | http://img.jamendo.com/artists/t/turnodetarde.jpg | http://turnodetarde.weboficial.com | http://sws.geonames.org/3104469/ |
| "O.S.A. & DJ cOŚtAm Project"^^xsd:string | http://img.jamendo.com/artists/d/djcostam.jpg | http://myspace.com/djcostam | http://sws.geonames.org/798544/ |
| "scal.g"^^xsd:string | http://img.jamendo.com/artists/s/scal.g.jpg | http://wahscal.blogspot.com/ | http://sws.geonames.org/2997523/ |
| "BENDUB"^^xsd:string | http://img.jamendo.com/artists/b/bendub.jpg | http://www.myspace.com/bendubs | http://sws.geonames.org/2968815/ |
| "Yoas Project"^^xsd:string | http://img.jamendo.com/artists/y/yoas.project.png | http://www.labuenanoticia.com/?q=node/639 | http://sws.geonames.org/2510769/ |
| "MOONDARK PROJECT"^^xsd:string | http://img.jamendo.com/artists/m/moondark.project.jpg | http://www.jamendo.com/fr/artist/moondark.project/admin/?edit=artist_infos | http://sws.geonames.org/3037147/ |
| "Monsieur Madame"^^xsd:string | http://img.jamendo.com/artists/m/monsieurmadame.jpg | http://monsieurmadame.reshape-music.com | http://sws.geonames.org/2968815/ |
| "CIACIA"^^xsd:string | http://img.jamendo.com/artists/c/ciacia.jpg | http://www.ciacialand.com | http://sws.geonames.org/2997861/ |
| "Kangaroo MusiQue"^^xsd:string | http://img.jamendo.com/artists/k/kangaroo.musique.gif | http://www.kangaroo.cmo.de | http://sws.geonames.org/3209442/ |
| "malorie"^^xsd:string | http://img.jamendo.com/artists/m/malorie.jpg | http://www.myspace.com/maloriefr | http://sws.geonames.org/2967196/ |
| "MAGWAMAN RIDDIM SECTION"^^xsd:string | http://img.jamendo.com/artists/m/magwaman.riddim.section.jpg | http://myspace.com/magwaman | http://sws.geonames.org/2984986/ |
| "Oui, Phi"^^xsd:string | http://img.jamendo.com/artists/o/oui.phi.jpg | http://ouiphi.club.fr | http://sws.geonames.org/3012715/ |
| "Frozen Silence"^^xsd:string | http://img.jamendo.com/artists/f/frozen.silence.jpg | http://www.mikseri.net/frozensilence | http://sws.geonames.org/660013/ |
| "Le Collectif Unifié de la Crécelle"^^xsd:string | http://img.jamendo.com/artists/l/le.collectif.unifie.de.la.crecelle.jpg | http://lacrecelle.free.fr | http://sws.geonames.org/2971090/ |
| "Robson, Sax, Garritt & Goodheart"^^xsd:string | http://img.jamendo.com/artists/r/robson.sax.garritt.goodheart.jpg | http://rsgginblog.wordpress.com | http://sws.geonames.org/3172391/ |
| "AJ"^^xsd:string | http://img.jamendo.com/artists/a/aj.jpg | http://jeffalain.blogspot.com | http://sws.geonames.org/2968815/ |
| "Artemisia"^^xsd:string | http://img.jamendo.com/artists/a/artemisia.png | http://artemisia.tuxfamily.org | http://sws.geonames.org/3012715/ |
| "StrangeZero"^^xsd:string | http://img.jamendo.com/artists/s/strangezero.jpg | http://www.strangezero.gr | http://sws.geonames.org/390903/ |
| "Micheal O'Finn & Bloody Popes"^^xsd:string | http://img.jamendo.com/artists/m/micheal.o.finn.jpg | http://www.myspace.com/michealofinn | http://sws.geonames.org/660013/ |
| "Historia"^^xsd:string | http://img.jamendo.com/artists/h/historia.jpg | http://www.historiametal.com | http://sws.geonames.org/3174004/ |
| "franckmoon"^^xsd:string | http://img.jamendo.com/artists/f/franckmoon.jpg | http://www.jamendo.com/fr/artist/franckmoon/admin/?edit=artist_infos | http://sws.geonames.org/3012715/ |
| "L'AXE LOURD"^^xsd:string | http://img.jamendo.com/artists/l/l.axe.lourd.jpg | http://www.myspace.com/axelourd | http://sws.geonames.org/3017382/ |
| "Noodles"^^xsd:string | http://img.jamendo.com/artists/n/noodles1.jpg | http://the.noodles.free.fr | http://sws.geonames.org/3026644/ |
| "Eau Forte"^^xsd:string | http://img.jamendo.com/artists/e/eau.forte.jpg | http://eauforte2.blogspot.com/ | http://sws.geonames.org/2991627/ |
| "fixia"^^xsd:string | http://img.jamendo.com/artists/f/fixia.jpg | __jamendo-3.rdf#__Description5 | http://sws.geonames.org/2510769/ |
| "Etyën+A"^^xsd:string | http://img.jamendo.com/artists/e/etyen-plus-a.jpg | http://www.etyen-plus-a.com | http://sws.geonames.org/2968815/ |
| "Essiar"^^xsd:string | http://img.jamendo.com/artists/e/essiar.gif | http://cyrille.fraisse.9online.fr/Essiar.html | http://sws.geonames.org/3013500/ |
| "wollam"^^xsd:string | http://img.jamendo.com/artists/w/wollam.jpg | http://www.wollam.org | http://sws.geonames.org/3013657/ |
| "Gars Trans"^^xsd:string | http://img.jamendo.com/artists/g/gars.trans.png | http://les-blogues.com/GarsTrans | http://sws.geonames.org/6251999/ |
| "Brigade Neurale"^^xsd:string | http://img.jamendo.com/artists/b/brigade.neurale.jpg | http://www.brigadeneurale.org | http://sws.geonames.org/3017382/ |
| "OCNOTES"^^xsd:string | http://img.jamendo.com/artists/o/ocnotes.jpg | http://www.myspace.com/ocnotes | http://sws.geonames.org/6252001/ |
| "muybuenolabonita"^^xsd:string | http://img.jamendo.com/artists/m/muybuenolabonita.jpg | http://membres.lycos.fr/heu/ | http://sws.geonames.org/2996663/ |
| "Besos Robados"^^xsd:string | http://img.jamendo.com/artists/b/besos.robados.gif | http://\\besosrobados.iespana.es | http://sws.geonames.org/2510910/ |
| "Ojos de Lobo"^^xsd:string | http://img.jamendo.com/artists/o/ojos.de.lobo.jpg | http://joansola.blogspot.com | http://sws.geonames.org/2510769/ |
| "Café Nadar"^^xsd:string | http://img.jamendo.com/artists/c/cafenadar.jpg | http://cafenadar.com | http://sws.geonames.org/2994111/ |
| "FONKADELIK"^^xsd:string | http://img.jamendo.com/artists/f/funkadelik.jpg | http://createursnes.blogspot.com/ | http://sws.geonames.org/2997857/ |
| "Sortie15"^^xsd:string | http://img.jamendo.com/artists/s/sortie15.jpg | http://www.myspace.com/sortie15 | http://sws.geonames.org/3013767/ |
| "LARGO02"^^xsd:string | http://img.jamendo.com/artists/l/largo02.jpg | http://larg02.over-blog.com | http://sws.geonames.org/3012715/ |
| "Insula Dulcamara"^^xsd:string | http://img.jamendo.com/artists/i/insula.dulcamara.gif | http://www.insuladulcamara.it | http://sws.geonames.org/3172391/ |
| "Nonsense"^^xsd:string | http://img.jamendo.com/artists/n/nonsense.jpg | http://www.nonsensehardcore.com | http://sws.geonames.org/3034720/ |
| "Jampy"^^xsd:string | http://img.jamendo.com/artists/j/jampy.jpg | http://jampy.wordpress.com | http://sws.geonames.org/3172391/ |
| "forp"^^xsd:string | http://img.jamendo.com/artists/f/forp1.jpg | http://www.forp-mustang.com | http://sws.geonames.org/2884161/ |
| "Petit Homme"^^xsd:string | http://img.jamendo.com/artists/p/petit.homme.gif | http://www.petithomme.org | http://sws.geonames.org/3019599/ |
| "NeLaS"^^xsd:string | http://img.jamendo.com/artists/n/nelas.png | http://www.organelas.com/ | http://sws.geonames.org/3469034/ |
| "dolores"^^xsd:string | http://img.jamendo.com/artists/d/dolores.jpg | http://www.myspace.com/dolorestheband | http://sws.geonames.org/2989663/ |
| "saru"^^xsd:string | http://img.jamendo.com/artists/s/saru.jpg | http://www.saru-art.com | http://sws.geonames.org/2990129/ |
| "Euterpe Archipelago"^^xsd:string | http://img.jamendo.com/artists/e/euterpe.archipelago.jpg | http://www.myspace.com/euterpearchipelago | http://sws.geonames.org/6252001/ |
| "Sharp"^^xsd:string | http://img.jamendo.com/artists/s/sharp.jpg | http://sharph.net/ | http://sws.geonames.org/6252001/ |
| "jacky.daniel"^^xsd:string | http://img.jamendo.com/artists/j/jackydaniel.jpg | http://www.jackydaniel.be | http://sws.geonames.org/2802361/ |
| "Par d'ssus la jambe"^^xsd:string | http://img.jamendo.com/artists/p/pardssuslajambe.jpg | http://www.pardssuslajambe.com | http://sws.geonames.org/2987410/ |
| "Remote Controlled"^^xsd:string | http://img.jamendo.com/artists/r/remote.controlled.jpg | http://www.remote-controlled.org/ | http://sws.geonames.org/2911297/ |
| "Rund Funk"^^xsd:string | http://img.jamendo.com/artists/r/rundfunk.jpg | http://rogiervandenbrink.typepad.com/rogier_van_den_brink/ | http://sws.geonames.org/2750405/ |
| "les troglodytes of alabama"^^xsd:string | http://img.jamendo.com/artists/l/les.troglodytes.jpg | http://troglodytes.blog.com/ | http://sws.geonames.org/2991879/ |
| "raindog"^^xsd:string | http://img.jamendo.com/artists/r/raindog.jpg | http://www.raindog.de | http://sws.geonames.org/2921044/ |
| "Luis Rueda"^^xsd:string | http://img.jamendo.com/artists/l/luisrueda.jpg | http://www.myspace.com/luisruedaelferoztrenexpreso | http://sws.geonames.org/3658394/ |
| "Futuria"^^xsd:string | http://img.jamendo.com/artists/f/futuria.jpg | http://www.myspace.com/0futuria0 | http://sws.geonames.org/3013736/ |
| "les chiens noirs du mexique"^^xsd:string | http://img.jamendo.com/artists/l/leschiensnoirsdumexique.gif | http://www.leschiensnoirsdumexique.com | http://sws.geonames.org/3013500/ |
| "Matti Paalanen"^^xsd:string | http://img.jamendo.com/artists/m/matti.paalanen.jpg | http://www.mikseri.net/users/?id=61143 | http://sws.geonames.org/660013/ |
| "Morad Stars"^^xsd:string | http://img.jamendo.com/artists/m/moradstars.jpg | http://www.myspace.com/moradstars | http://sws.geonames.org/2990129/ |
| "L'âge d'or"^^xsd:string | http://img.jamendo.com/artists/l/l.age.d.or.jpg | http://www.lagedor.splinder.com | http://sws.geonames.org/3173434/ |
| "Plasman"^^xsd:string | http://img.jamendo.com/artists/p/plasman.jpg | http://www.plasman.fr.st | http://sws.geonames.org/2988430/ |
| "Improject"^^xsd:string | http://img.jamendo.com/artists/i/improject.jpg | http://labuenanoticia.com/improject | http://sws.geonames.org/2510769/ |
| "Richard Bee"^^xsd:string | http://img.jamendo.com/artists/r/richard.bee.jpg | http://www.bleu-creation.com/richardbee.htm | http://sws.geonames.org/2968815/ |
| "Sirup"^^xsd:string | http://img.jamendo.com/artists/s/sirup.jpg | http://www.sirup.info | http://sws.geonames.org/2884161/ |
| "kavekanum"^^xsd:string | http://img.jamendo.com/artists/k/kavekanum.jpg | http://www.kavekanum.zik.mu | http://sws.geonames.org/2975249/ |
| "#2 Orchestra"^^xsd:string | http://img.jamendo.com/artists/2/2orchestra.jpg | http://www.myspace.com/2orchestra | http://sws.geonames.org/3017382/ |
| "Ikebana"^^xsd:string | http://img.jamendo.com/artists/i/ikebana.gif | http://www.ikebana.in | http://sws.geonames.org/2994111/ |
| "crumblewane"^^xsd:string | http://img.jamendo.com/artists/c/crumblewane.jpg | http://www.crumblewane.net/ | http://sws.geonames.org/2970554/ |
| "KINGARSUS"^^xsd:string | http://img.jamendo.com/artists/k/kingarsus.jpg | http://www.kingarsus.net | http://sws.geonames.org/3017382/ |
| "J-M Dauphy"^^xsd:string | http://img.jamendo.com/artists/j/j-m.dauphy.jpg | http://www.auteur-compositeur.fr/ | http://sws.geonames.org/2967196/ |
| "Narcolepsy"^^xsd:string | http://img.jamendo.com/artists/n/narcolepsy.jpg | http://www.paultakahashi.com | http://sws.geonames.org/2987410/ |
| "MATT"^^xsd:string | http://img.jamendo.com/artists/m/matt.jpg | http://www.myspace.com/brknmus | http://sws.geonames.org/2968815/ |
| "Atma Bhajan Band"^^xsd:string | http://img.jamendo.com/artists/a/atma.bhajan.band.jpg | http://www.atmayoga.com.au | http://sws.geonames.org/2077456/ |
| "Rom1"^^xsd:string | http://img.jamendo.com/artists/r/rom1.jpg | http://romain.compositions.free.fr/ | http://sws.geonames.org/2996663/ |
| "Guido Segni"^^xsd:string | http://img.jamendo.com/artists/g/guido.segni.jpg | http://www.alterazione.net/n/?page_id=26 | http://sws.geonames.org/6539668/ |
| "Big-mikE"^^xsd:string | http://img.jamendo.com/artists/b/big-mike.jpg | http://www.myspace.com/bigmikealone | http://sws.geonames.org/2994111/ |
| "polter"^^xsd:string | http://img.jamendo.com/artists/p/polter.jpg | http://www.polter.fr.cx | http://sws.geonames.org/3038050/ |
| "tabako trio"^^xsd:string | http://img.jamendo.com/artists/t/tabako.trio.jpg | http://www.tabakomusic.com | http://sws.geonames.org/390903/ |
| "Sol Carlus"^^xsd:string | http://img.jamendo.com/artists/s/solcarlus.jpg | http://www.solcarlus.com | http://sws.geonames.org/2971071/ |
| "Jean-David"^^xsd:string | http://img.jamendo.com/artists/j/jean-david.jpg | http://www.idfolles.com | http://sws.geonames.org/2976082/ |
| "Camelot"^^xsd:string | http://img.jamendo.com/artists/c/camelot.jpg | http://www.camelot-rock.de | http://sws.geonames.org/2930484/ |
| "Rafael Villegas"^^xsd:string | http://img.jamendo.com/artists/r/rafael.villegas.tenor.jpg | http://www.rafaelvillegastenor.com | http://sws.geonames.org/3865483/ |
| "Soy Bomb"^^xsd:string | http://img.jamendo.com/artists/s/soybomb.jpg | http://www.purevolume.com/soybombtampa | http://sws.geonames.org/6252001/ |
| "My Poor Ida"^^xsd:string | http://img.jamendo.com/artists/m/mypoorida.jpg | http://\\www.mypoorida.com | http://sws.geonames.org/2884161/ |
| "Illusionary World"^^xsd:string | http://img.jamendo.com/artists/i/iw.gif | http://www.myspace.com/illusionaryworld | http://sws.geonames.org/798544/ |
| "Comandante-em-Chefe"^^xsd:string | http://img.jamendo.com/artists/c/comandante.jpg | http://www.comandante-em-chefe.info | http://sws.geonames.org/2593105/ |
| "SharashkA"^^xsd:string | http://img.jamendo.com/artists/s/sharashka.jpg | http://www.myspace.com/sharashkamusic | http://sws.geonames.org/6252001/ |
| "KraftiM"^^xsd:string | http://img.jamendo.com/artists/k/kraftim.jpg | http://www.myspace.com/kraftim | http://sws.geonames.org/2750405/ |
| "Sam Santana"^^xsd:string | http://img.jamendo.com/artists/b/bobcedmaniac.gif | http://bobmusik.sup.fr | http://sws.geonames.org/2984986/ |
| "Omkara"^^xsd:string | http://img.jamendo.com/artists/o/omkara.jpg | http://www.omkara.pl | http://sws.geonames.org/798544/ |
| "Plastic Alibi"^^xsd:string | http://img.jamendo.com/artists/t/thomsenb.png | http://thomsenb.googlepages.com | http://sws.geonames.org/6252001/ |
| "Dj's Team Project"^^xsd:string | http://img.jamendo.com/artists/d/djsteamproject.jpg | http://artistes.autoproduction.net/Djs_Team_project | http://sws.geonames.org/2975248/ |
| "Sound-Ra"^^xsd:string | http://img.jamendo.com/artists/s/sound-ra.gif | http://www.myspace.com/soundra | http://sws.geonames.org/2991627/ |
| "Dodge city outlaws"^^xsd:string | http://img.jamendo.com/artists/d/dodge.city.outlaws.jpg | http://www.dodgecityoutlaws.com | http://sws.geonames.org/3020989/ |
| "Mister Electric Demon"^^xsd:string | http://img.jamendo.com/artists/m/med.jpg | http://medcg.free.fr | http://sws.geonames.org/2975246/ |
| "Scarcity"^^xsd:string | http://img.jamendo.com/artists/s/scarcity.jpg | http://www.myspace.com/4scarcity | http://sws.geonames.org/3023532/ |
| "Charles Fenollosa "^^xsd:string | http://img.jamendo.com/artists/c/charles.f.orenga.jpg | http://www.myspace.com/charlesfenollosa | http://sws.geonames.org/6355240/ |
| "Efrain Inclan"^^xsd:string | http://img.jamendo.com/artists/e/efraininclan.jpg | http://www.efraininclan.com | http://sws.geonames.org/3996063/ |
| "DBIT"^^xsd:string | http://img.jamendo.com/artists/d/dbit.jpg | http://www.dbit.es | http://sws.geonames.org/2510769/ |
| "Gnark Sombre"^^xsd:string | http://img.jamendo.com/artists/g/gnarksombre.jpg | http://www.gnarksombre.siteperso.net | http://sws.geonames.org/2997857/ |
| "Say It Again Lucas"^^xsd:string | http://img.jamendo.com/artists/s/sayitagainlucas.jpg | http://www.purevolume.com/sayitagainlucas | http://sws.geonames.org/6252001/ |
| "Smoke Fish"^^xsd:string | http://img.jamendo.com/artists/s/smokefish.jpg | http://www.myspace.com/smokefish | http://sws.geonames.org/3018471/ |
| "Lake"^^xsd:string | http://img.jamendo.com/artists/l/lake.jpg | http://www.myspace.com/musiclake2 | http://sws.geonames.org/2987410/ |
| "SGX"^^xsd:string | http://img.jamendo.com/artists/s/sgx.jpg | http://www.sgxmusic.com | http://sws.geonames.org/6252001/ |
| "PropheXy"^^xsd:string | http://img.jamendo.com/artists/p/prophexy.jpg | http://www.prophexy.com | http://sws.geonames.org/3181927/ |
| "Meguiddo"^^xsd:string | http://img.jamendo.com/artists/m/meguiddo.png | http://www.meguiddo.be | http://sws.geonames.org/2802361/ |
| "ED3-STUDIO"^^xsd:string | http://img.jamendo.com/artists/e/ede-studio.png | http://www.ede-studio.com | http://sws.geonames.org/2984887/ |
| "Bep"^^xsd:string | http://img.jamendo.com/artists/b/bep.jpg | http://perso.wanadoo.fr/bepo | http://sws.geonames.org/3016194/ |
| "Alunas"^^xsd:string | http://img.jamendo.com/artists/a/alunas.jpg | http://bordeauxmassages.hautetfort.com/ | http://sws.geonames.org/3015948/ |
| "S."^^xsd:string | http://img.jamendo.com/artists/s/scommesuper.jpg | http://www.myspace.com/poucevert | http://sws.geonames.org/2987410/ |
| "AkerUi"^^xsd:string | http://img.jamendo.com/artists/a/akerui.jpg | http://yafsug.itiopi.com/mediaz.php | http://sws.geonames.org/6252001/ |
| "Macroform"^^xsd:string | http://img.jamendo.com/artists/m/macroform.jpg | http://macroform.co.nr | http://sws.geonames.org/6252001/ |
| "Ernesto Fracaso"^^xsd:string | http://img.jamendo.com/artists/e/ernestofracaso.jpg | http://ernestofracaso.blogspot.com | http://sws.geonames.org/3104469/ |
| "SUR"^^xsd:string | http://img.jamendo.com/artists/s/sur.jpg | http://www.sur.si | http://sws.geonames.org/3239110/ |
| "Powder French"^^xsd:string | http://img.jamendo.com/artists/p/powder.french.jpg | http://home.earthlink.net/~gjp/id3.html | http://sws.geonames.org/6252001/ |
| "Boco"^^xsd:string | http://img.jamendo.com/artists/b/boco.jpg | http://bogdaboco.blogspot.com/ | http://sws.geonames.org/2968815/ |
| "Truculent"^^xsd:string | http://img.jamendo.com/artists/t/truculent.jpg | http://www.truculent.fr | http://sws.geonames.org/2971090/ |
| "DJ Sooflet"^^xsd:string | http://img.jamendo.com/artists/d/dj-sooflet.gif | http://www.djsooflet.com | http://sws.geonames.org/798544/ |
| "AngelisD"^^xsd:string | http://img.jamendo.com/artists/a/angelisd.jpg | http://www.angelisdigitalstudio.com/music/ | http://sws.geonames.org/6252001/ |
| "Epoxia"^^xsd:string | http://img.jamendo.com/artists/e/epoxia.jpg | http://epoxia.vate.com.mx | http://sws.geonames.org/3996063/ |
| "Sulatus"^^xsd:string | http://img.jamendo.com/artists/s/sulatus.jpg | http://www.sulatus.cba.pl | http://sws.geonames.org/798544/ |
| "Eternal Tango"^^xsd:string | http://img.jamendo.com/artists/e/eternaltango.jpg | http://www.eternaltango.net | http://sws.geonames.org/2960313/ |
| "Embryonica"^^xsd:string | http://img.jamendo.com/artists/e/embryonica.jpg | http://www.embryonica.com | http://sws.geonames.org/6252001/ |
| "TUD"^^xsd:string | http://img.jamendo.com/artists/t/tud.jpg | http://www.tud.me.uk | http://sws.geonames.org/3182163/ |
| "Ananta"^^xsd:string | http://img.jamendo.com/artists/a/ananta.jpg | http://www.anantamusic.yoyo.pl | http://sws.geonames.org/798544/ |
| "Dan'S"^^xsd:string | http://img.jamendo.com/artists/d/dan.s.jpg | http://dan-s.hautetfort.com/ | http://sws.geonames.org/2994111/ |
| "umbriel rising"^^xsd:string | http://img.jamendo.com/artists/u/umbriel.rising.jpg | http://www.distinguishedrecordings.com | http://sws.geonames.org/6251999/ |
| "Caminos del Sonido"^^xsd:string | http://img.jamendo.com/artists/w/willyamwarner.jpg | http://caminosdelsonido.blogspot.com/ | http://sws.geonames.org/3104469/ |
| "Distimia"^^xsd:string | http://img.jamendo.com/artists/d/distimia.jpg | http://distimiamusical.blogspot.com/ | http://sws.geonames.org/3104469/ |
| "Harry Field"^^xsd:string | http://img.jamendo.com/artists/h/harry.field.jpg | http://harryfield.blogspot.com | http://sws.geonames.org/2802361/ |
| "Quantica"^^xsd:string | http://img.jamendo.com/artists/q/quantica.jpg | http://www.quantica.eu | http://sws.geonames.org/6424360/ |
| "Per Boysen"^^xsd:string | http://img.jamendo.com/artists/p/per.boysen.jpg | http://www.looproom.com | http://sws.geonames.org/2661886/ |
| "etZetera"^^xsd:string | http://img.jamendo.com/artists/e/etzetera.jpg | http://www.myspace.com/etzeteragrupo | http://sws.geonames.org/2517115/ |
| "Esoterik Eskort"^^xsd:string | http://img.jamendo.com/artists/e/esoterik.eskort.jpg | http://www.esoterikeskort.com | http://sws.geonames.org/2991627/ |
| "SATIS"^^xsd:string | http://img.jamendo.com/artists/s/satis.gif | http://www.apim.wordpress.com | http://sws.geonames.org/798544/ |
| "LONDON SOFA"^^xsd:string | http://img.jamendo.com/artists/s/sofa.jpg | http://www.myspace.com/sofapopmusic | http://sws.geonames.org/2991627/ |
| "Adam Certamen Bownik"^^xsd:string | http://img.jamendo.com/artists/a/adam.certamen.bownik.jpg | http://bownik.w.interia.pl | http://sws.geonames.org/798544/ |
| "fex"^^xsd:string | http://img.jamendo.com/artists/f/fex.jpg | http://fexko.blogspot.com | http://sws.geonames.org/2782113/ |
| "Anthony"^^xsd:string | http://img.jamendo.com/artists/a/anthony.jpg | http://anthony.over-blog.net | http://sws.geonames.org/2991627/ |
| "musetta"^^xsd:string | http://img.jamendo.com/artists/m/musetta.jpg | http://musetta.co.uk | http://sws.geonames.org/3173434/ |
| "Toj 36"^^xsd:string | http://img.jamendo.com/artists/t/toj36.jpg | http://tojmusic.free.fr/toj36/ | http://sws.geonames.org/2991627/ |
| "Lordz"^^xsd:string | http://img.jamendo.com/artists/l/lordz.jpg | http://www.eternalwaves.com/ | http://sws.geonames.org/3013657/ |
| "Le Zaarth"^^xsd:string | http://img.jamendo.com/artists/l/le.zaarth.jpg | http://www.myspace.com/lezaarth | http://sws.geonames.org/3209442/ |
| "ISKRY"^^xsd:string | http://img.jamendo.com/artists/i/iskry.gif | http://www.iskry.net | http://sws.geonames.org/798544/ |
| "DEF1"^^xsd:string | http://img.jamendo.com/artists/d/def1.jpg | http://www.def1.c.la | http://sws.geonames.org/3021501/ |
| "School in Parapsichico"^^xsd:string | http://img.jamendo.com/artists/s/school.in.parapsichico.jpg | http://sipband.wordpress.com | http://sws.geonames.org/3172391/ |
| "Nathanaël"^^xsd:string | http://img.jamendo.com/artists/n/nathanael.jpg | http://xxsighxx.free.fr | http://sws.geonames.org/3034720/ |
| "Satellite Splinter"^^xsd:string | http://img.jamendo.com/artists/s/satellite.splinter.jpg | http://www.duhproject.com/SatelliteSplinter.html | http://sws.geonames.org/6252001/ |
| "Blunt"^^xsd:string | http://img.jamendo.com/artists/b/blunt.jpg | http://perso.orange.fr/punkblunt/ | http://sws.geonames.org/1699807/ |
| "FaZE"^^xsd:string | http://img.jamendo.com/artists/f/faze.jpg | http://www.myspace.com/fazecircus | http://sws.geonames.org/2510769/ |
| "[dK]"^^xsd:string | http://img.jamendo.com/artists/d/dk.jpg | http://www.endk.com | http://sws.geonames.org/3165523/ |
| "Ghostown"^^xsd:string | http://img.jamendo.com/artists/g/ghostown.jpg | http://www.myspace.com/raelsghostown | http://sws.geonames.org/3013500/ |
| "KAMDER"^^xsd:string | http://img.jamendo.com/artists/k/kamder.jpg | http://kamdermusicstory.blogspot.com/ | http://sws.geonames.org/2987410/ |
| "The Vegetarians"^^xsd:string | http://img.jamendo.com/artists/t/the.vegetarians.jpg | http://www.annellssongs.com | http://sws.geonames.org/2661886/ |
| "Astral Quest"^^xsd:string | http://img.jamendo.com/artists/a/astralquest.jpg | http://www.myspace.com/astralquestgroup | http://sws.geonames.org/3012051/ |
| "Ben Johnson"^^xsd:string | http://img.jamendo.com/artists/b/benjohnsonmusic.jpg | http://www.myspace.com/benjohnsonsteeldog | http://sws.geonames.org/6252001/ |
| "Erik y Shally"^^xsd:string | http://img.jamendo.com/artists/e/erikyshally.jpg | http://www.erikyshally.com | http://sws.geonames.org/3113208/ |
| "KillaNation"^^xsd:string | http://img.jamendo.com/artists/k/killanation.jpg | http://www.myspace.com/killanation | http://sws.geonames.org/3173434/ |
| "Julipan"^^xsd:string | http://img.jamendo.com/artists/j/julipan.png | http://www.julipan.org | http://sws.geonames.org/3137400/ |
| "DR LOVE"^^xsd:string | http://img.jamendo.com/artists/d/dr.love.jamendo.net.jpg | http://drlove.hautetfort.com/archive/2007/01/31/dr-love.html | http://sws.geonames.org/3012849/ |
| "Inesperado"^^xsd:string | http://img.jamendo.com/artists/i/inesperado.jpg | http://www.inesperado.es | http://sws.geonames.org/2510769/ |
| "Dyvan le Terrible"^^xsd:string | http://img.jamendo.com/artists/d/dyvanleterrible.jpg | http://www.dyvanleterrible.fr | http://sws.geonames.org/3023414/ |
| "Cesta"^^xsd:string | http://img.jamendo.com/artists/c/cesta.jpg | http://caracprod.fr.nf | http://sws.geonames.org/2975246/ |
| "Jeff Hentschel"^^xsd:string | http://img.jamendo.com/artists/j/jeffaudio.gif | http://jeffaudio.com | http://sws.geonames.org/6252001/ |
| "Kostas Vomvolos"^^xsd:string | http://img.jamendo.com/artists/k/kostas.vomvolos.jpg | http://www.kostasvomvolos.com | http://sws.geonames.org/390903/ |
| "patada con giro"^^xsd:string | http://img.jamendo.com/artists/p/patada.con.giro.jpg | http://patadacongiro.blogspot.com/ | http://sws.geonames.org/2522257/ |
| "Jamick"^^xsd:string | http://img.jamendo.com/artists/j/jamick.jpg | http://jamick.a-fw.net/ | http://sws.geonames.org/798544/ |
| "SCHUTZ LOIC"^^xsd:string | http://img.jamendo.com/artists/s/schutz.loic.jpg | http://makemeelektro.skyblog.com/ | http://sws.geonames.org/3013736/ |
| "The Bloody Mary's"^^xsd:string | http://img.jamendo.com/artists/t/the.bloody.mary.s.jpg | http://www.micko.blogspot.com | http://sws.geonames.org/2510769/ |
| "zoop"^^xsd:string | http://img.jamendo.com/artists/z/zoop.jpg | http://www.zoop.ru | http://sws.geonames.org/2017370/ |
| "Psilodump"^^xsd:string | http://img.jamendo.com/artists/p/psilodump.jpg | http://www.psilodump.com | http://sws.geonames.org/2661886/ |
| "yannick f"^^xsd:string | http://img.jamendo.com/artists/y/yannick.f.gif | http://www.gabyan.net/ | http://sws.geonames.org/2970749/ |
| "AS 777"^^xsd:string | http://img.jamendo.com/artists/a/as777.jpg | http://as777.hitmuse.com | http://sws.geonames.org/2995603/ |
| "Fenêtres Ouvertes"^^xsd:string | http://img.jamendo.com/artists/f/fen.tres.ouvertes.jpg | http://fenetresouvertes.fr | http://sws.geonames.org/2994106/ |
| "D."^^xsd:string | http://img.jamendo.com/artists/d/d-music.jpg | http://www.d-music.de | http://sws.geonames.org/6557769/ |
| "Sur Non"^^xsd:string | http://img.jamendo.com/artists/s/sur.non.jpg | http://surnon.blox.pl | http://sws.geonames.org/798544/ |
| "Exkrément"^^xsd:string | http://img.jamendo.com/artists/e/exkrement.gif | http://www.exkrement.fr.fm | http://sws.geonames.org/2994111/ |
| "Markus Macht Musik"^^xsd:string | http://img.jamendo.com/artists/m/markus.1744.jpg | http://www.hab.keine.de | http://sws.geonames.org/6557769/ |
| "Les Résidus Plasmiques"^^xsd:string | http://img.jamendo.com/artists/l/les.residus.plasmiques.jpg | http://www.famillecg.com | http://sws.geonames.org/6251999/ |
| "Definitiv Fett"^^xsd:string | http://img.jamendo.com/artists/d/definitiv.fett.jpg | http://www.dfett.de | http://sws.geonames.org/3209442/ |
| "Ghost Notes"^^xsd:string | http://img.jamendo.com/artists/g/ghostnotes.jpg | http://ghostnotesproduxion.blogspot.com/ | http://sws.geonames.org/734075/ |
| "Clayton Derricks"^^xsd:string | http://img.jamendo.com/artists/c/clayton.derricks.jpg | http://clayton.derricks.free.fr/ | http://sws.geonames.org/2990129/ |
| "Alquimia"^^xsd:string | http://img.jamendo.com/artists/a/alquimia.jpg | http://www.alquimiarock.com | http://sws.geonames.org/2510769/ |
| "Your Spoken Horoscope"^^xsd:string | http://img.jamendo.com/artists/l/lucille21.jpg | http://www.myspace.com/yourspokenhoroscope | http://sws.geonames.org/3017382/ |
| "Luminous Flesh Giants (LFG)"^^xsd:string | http://img.jamendo.com/artists/l/lfg.png | http://lfg.republika.pl | http://sws.geonames.org/798544/ |
| "Dealmantis"^^xsd:string | http://img.jamendo.com/artists/d/dealmantis.jpg | http://www.myspace.com/dealmantis | http://sws.geonames.org/2967681/ |
| "Bluebox Sampler"^^xsd:string | http://img.jamendo.com/artists/b/bluebox.sampler.jpg | http://www.bluebox-sampler.de | http://sws.geonames.org/3209442/ |
| "Jawl Keed"^^xsd:string | http://img.jamendo.com/artists/j/jawl.keed.png | http://www.jawlkeed.com | http://sws.geonames.org/2991627/ |
| "Les Ailes du Gazon"^^xsd:string | http://img.jamendo.com/artists/l/les.ailes.du.gazon.jpg | http://ailesdugazon.free.fr | http://sws.geonames.org/3038422/ |
| "radmusic"^^xsd:string | http://img.jamendo.com/artists/r/radmusic.jpg | http://www.radmusic.com.pl | http://sws.geonames.org/798544/ |
| "Musiciens de Surface"^^xsd:string | http://img.jamendo.com/artists/m/musiciensdesurface.jpg | http://www.musiciensdesurface.be | http://sws.geonames.org/2802361/ |
| "The 462nd Zinnias"^^xsd:string | http://img.jamendo.com/artists/t/the.462nd.zinnias.jpg | http://besace.free.fr | http://sws.geonames.org/2991879/ |
| "Dj Saryon feat Sory"^^xsd:string | http://img.jamendo.com/artists/d/dj.saryon.jpg | http://djsaryon.blogspot.com | http://sws.geonames.org/2510769/ |
| "Alaze"^^xsd:string | http://img.jamendo.com/artists/a/alaze.jpg | http://alaze.us | http://sws.geonames.org/6252001/ |
| "Root"^^xsd:string | http://img.jamendo.com/artists/r/root.jpg | http://www.rootband.com/ | http://sws.geonames.org/798544/ |
| "Chevreuils Psychédéliques"^^xsd:string | http://img.jamendo.com/artists/c/chevreuils.psychedeliques.gif | http://chevreuils.psy.free.fr | http://sws.geonames.org/3017382/ |
| "Elektrubadur"^^xsd:string | http://img.jamendo.com/artists/e/elektrubadur.png | http://elektrubadur.se/ | http://sws.geonames.org/2661886/ |
| "Organic Despair"^^xsd:string | http://img.jamendo.com/artists/o/organic.despair.jpg | http://dissonancemaster.free.fr/ | http://sws.geonames.org/3013500/ |
| "Arkyne"^^xsd:string | http://img.jamendo.com/artists/a/arkyne.png | http://arkyne.metal3d.org | http://sws.geonames.org/3012715/ |
| "Eugénie"^^xsd:string | http://img.jamendo.com/artists/e/eugenie.jpg | http://www.myspace.com/eugenieband | http://sws.geonames.org/3181912/ |
| "Habitación Zero"^^xsd:string | http://img.jamendo.com/artists/h/habitacionzero.jpg | http://www.habitacionzero.com | http://sws.geonames.org/2510769/ |
| "LES CORPS SANS ORGANES"^^xsd:string | http://img.jamendo.com/artists/l/les-corps-sans-organes.jpg | http://www.les-corps-sans-organes.org | http://sws.geonames.org/3175395/ |
| "jcw"^^xsd:string | http://img.jamendo.com/artists/j/jcw.jpg | http://www.myspace.com/jcwofficialpage | http://sws.geonames.org/3013657/ |
| "Lost-Minded"^^xsd:string | http://img.jamendo.com/artists/l/lostminded.jpg | http://www.myspace.com/thelostmindedband | http://sws.geonames.org/3017382/ |
| "Saceda"^^xsd:string | http://img.jamendo.com/artists/s/saceda.jpg | http://lasbalsicas.info | http://sws.geonames.org/3104469/ |
| "Kray Van Kirk"^^xsd:string | http://img.jamendo.com/artists/k/krayvankirk.jpg | http://www.krayvankirk.com | http://sws.geonames.org/6252001/ |
| "Daniele Torelli"^^xsd:string | http://img.jamendo.com/artists/d/daniele.torelli.jpg | http://www.danieletorelli.net | http://sws.geonames.org/3175395/ |
| "dsy"^^xsd:string | http://img.jamendo.com/artists/d/dsy.jpg | http://dsy.online.fr | http://sws.geonames.org/2967196/ |
| "Sans Nom"^^xsd:string | http://img.jamendo.com/artists/s/sans.nom.jpg | http://leblogdesansnom.blogspot.com/ | http://sws.geonames.org/3026644/ |
| "Secret Side"^^xsd:string | http://img.jamendo.com/artists/s/secret.side.jpg | http://secretside.free.fr | http://sws.geonames.org/2971090/ |
| "julienpop"^^xsd:string | http://img.jamendo.com/artists/j/julienpop.jpg | http://www.myspace.com/julienbrandwijk | http://sws.geonames.org/3013767/ |
| "Circus Marcus"^^xsd:string | http://img.jamendo.com/artists/c/circus.marcus.jpg | http://circusmarcus.googlepages.com | http://sws.geonames.org/2802361/ |
| "Baler"^^xsd:string | http://img.jamendo.com/artists/b/baler.jpg | file:///home/yves/jamendo/www.PORfamilia.streemo.pl/Baler | http://sws.geonames.org/798544/ |
| "Bit Crusher"^^xsd:string | http://img.jamendo.com/artists/b/bitcrusher.png | http://bitcrusher.free.fr | http://sws.geonames.org/2884161/ |
| "Outsider"^^xsd:string | http://img.jamendo.com/artists/o/outsider.jpg | http://outstacja.cba.pl | http://sws.geonames.org/798544/ |
| "XeMa"^^xsd:string | http://img.jamendo.com/artists/x/xema.jpg | http://www.chez-xema.com | http://sws.geonames.org/2991627/ |
| "Incroyable"^^xsd:string | http://img.jamendo.com/artists/i/incroyable.jpg | http://zikamefu.free.fr/incroyable | http://sws.geonames.org/3013500/ |
| "SheeHad"^^xsd:string | http://img.jamendo.com/artists/s/sheehad.jpg | http://www.myspace.com/dechia | http://sws.geonames.org/2968815/ |
| "1 Ohm Facile"^^xsd:string | http://img.jamendo.com/artists/1/1ohmfacile.jpg | http://1ohmfacile.free.fr/ | http://sws.geonames.org/2968815/ |
| "Mahalab"^^xsd:string | http://img.jamendo.com/artists/m/mahalab.jpg | http://mahalab.blogspot.com | http://sws.geonames.org/3469034/ |
| "Afterglow"^^xsd:string | http://img.jamendo.com/artists/a/afterglow.jpg | http://www.afterglow.prv.pl | http://sws.geonames.org/798544/ |
| "nsa"^^xsd:string | http://img.jamendo.com/artists/n/nsa38.jpg | http://axiomusik.free.fr/ | http://sws.geonames.org/3012715/ |
| "stasis101"^^xsd:string | http://img.jamendo.com/artists/s/stasis101.jpg | http://www.myspace.com/stasis101music | http://sws.geonames.org/2750405/ |
| "Marauders"^^xsd:string | http://img.jamendo.com/artists/m/marauders.png | http://marauders.online.fr | http://sws.geonames.org/3034720/ |
| "Samplastik"^^xsd:string | http://img.jamendo.com/artists/s/samplastik.jpg | http://www.samplastik.ovh.org | http://sws.geonames.org/798544/ |
| "Audiogram"^^xsd:string | http://img.jamendo.com/artists/a/audiogram.jpg | http://www.audiogram.ovh.org | http://sws.geonames.org/798544/ |
| "MisTerB"^^xsd:string | http://img.jamendo.com/artists/m/misterb.jpg | http://www.myspace.com/misterbdj | http://sws.geonames.org/3012849/ |
| "seiurte"^^xsd:string | http://img.jamendo.com/artists/s/seiurte.jpg | http://www.seiurte.com | http://sws.geonames.org/2510769/ |
| "Can"^^xsd:string | http://img.jamendo.com/artists/c/can.jpg | http://www.can-frk.de.tl | http://sws.geonames.org/3209442/ |
| "les cavistes"^^xsd:string | http://img.jamendo.com/artists/l/les.cavistes.jpg | http://www.zecavistes.com | http://sws.geonames.org/3013738/ |
| "ümlaut"^^xsd:string | http://img.jamendo.com/artists/u/umlaut.jpg | http://www.myspace.com/umlauturec | http://sws.geonames.org/2970749/ |
| "Kernem"^^xsd:string | http://img.jamendo.com/artists/k/kernem.jpg | http://fr.myspace.com/kernem | http://sws.geonames.org/3017382/ |
| "Tergal"^^xsd:string | http://img.jamendo.com/artists/t/tergal.jpg | http://tergal.zik.mu | http://sws.geonames.org/2997861/ |
| "SOAN.B"^^xsd:string | http://img.jamendo.com/artists/s/soan.b.jpg | http://www.myspace.com/soanb | http://sws.geonames.org/3038049/ |
| "Franck J"^^xsd:string | http://img.jamendo.com/artists/f/franck.j.jpg | http://jamendo.com | http://sws.geonames.org/3028791/ |
| "Delacrem"^^xsd:string | http://img.jamendo.com/artists/d/delacrem1.jpg | http://www.delacrem.com | http://sws.geonames.org/2802361/ |
| "Apatride?"^^xsd:string | http://img.jamendo.com/artists/a/apatrides.jpg | http://amniotik.blogspot.com | http://sws.geonames.org/3015948/ |
| "Millou"^^xsd:string | http://img.jamendo.com/artists/m/millou.jpg | http://millou-millou.blogspot.com | http://sws.geonames.org/2984986/ |
| "Gilou"^^xsd:string | http://img.jamendo.com/artists/g/gilou.png | http://gil.69.free.fr | http://sws.geonames.org/3012849/ |
| "K-nalo"^^xsd:string | http://img.jamendo.com/artists/k/k-nalo.jpg | http://giacjuan.blogspot.com/ | http://sws.geonames.org/2991627/ |
| "LES PÊCHEURS DE LUNE"^^xsd:string | http://img.jamendo.com/artists/l/lespecheursdelune.jpg | http://www.lespecheursdelune.fr | http://sws.geonames.org/2997524/ |
| "DJ Davidouille"^^xsd:string | http://img.jamendo.com/artists/d/dj.davidouille.jpg | http://djdavidouille.over-blog.com/article-5340018-6.html#anchorComment | http://sws.geonames.org/3038111/ |
| "Benjamin Liefeld"^^xsd:string | http://img.jamendo.com/artists/b/bliefeld.gif | http://www.myspace.com/bliefeld | http://sws.geonames.org/3015948/ |
| "Sekula Wieslaw"^^xsd:string | http://img.jamendo.com/artists/s/sekula.wieslaw.jpg | http://chomikuj.pl/wiesio2701 | http://sws.geonames.org/798544/ |
| "Los Muflos"^^xsd:string | http://img.jamendo.com/artists/l/los.muflos.jpg | http://perso.numerivable.fr/~losmuflos | http://sws.geonames.org/3017382/ |
| "PHOS4"^^xsd:string | http://img.jamendo.com/artists/p/phos4.jpg | http://www.beepworld.de/members/phos4music | http://sws.geonames.org/6557769/ |
| "javagore"^^xsd:string | http://img.jamendo.com/artists/j/javagore.jpg | http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendID=177061504 | http://sws.geonames.org/2971090/ |
| "soundamantium"^^xsd:string | http://img.jamendo.com/artists/s/soundamantium.jpg | http://www.myspace.com/phonethnics ou http://phonethnics.free.fr | http://sws.geonames.org/2967196/ |
| "LA PETITE MORT"^^xsd:string | http://img.jamendo.com/artists/l/lapetitemort.jpg | http://www.lapetitemort.fr | http://sws.geonames.org/2991879/ |
| "Fragile New Virus"^^xsd:string | http://img.jamendo.com/artists/f/fragilenewvirus.jpg | http://www.fnv-sucks.de | http://sws.geonames.org/2930484/ |
| "HEAVYWEIGHT"^^xsd:string | http://img.jamendo.com/artists/h/heavyweight.jpg | http://www.heavyweight.art.pl | http://sws.geonames.org/798544/ |
| "Stephan Kulla"^^xsd:string | http://img.jamendo.com/artists/s/stephan.kulla.jpg | http://www.kullafrance.net | http://sws.geonames.org/3015948/ |
| "Y21"^^xsd:string | http://img.jamendo.com/artists/y/y21.jpg | http://www.y21.fr.st | http://sws.geonames.org/2994111/ |
| "KPHB"^^xsd:string | http://img.jamendo.com/artists/k/kphb.jpg | http://katarakt.free.fr | http://sws.geonames.org/3012849/ |
| "bmd prod."^^xsd:string | http://img.jamendo.com/artists/b/bmd.jpg | __jamendo-3.rdf#__Description6 | http://sws.geonames.org/2994111/ |
| "ZEN-ZEN-ZEN"^^xsd:string | http://img.jamendo.com/artists/z/zen-zen-zen.jpg | http://www.zenzenzen.ru/ | http://sws.geonames.org/2017370/ |
| "Aor Agni"^^xsd:string | http://img.jamendo.com/artists/a/aor.agni.jpg | http://www.myspace.com/aoragni | http://sws.geonames.org/2991627/ |
| "i"^^xsd:string | http://img.jamendo.com/artists/d/dj-6-tem.jpg | http://www.Theisound.com | http://sws.geonames.org/3013663/ |
| "VOLDENBERG"^^xsd:string | http://img.jamendo.com/artists/v/voldenberg.jpg | http://www.voldenberg.art.pl | http://sws.geonames.org/798544/ |
| "Romain B."^^xsd:string | http://img.jamendo.com/artists/r/romain.bodineau.jpg | http://romain-bodineau.magix.net/website | http://sws.geonames.org/2996268/ |
| "Surko"^^xsd:string | http://img.jamendo.com/artists/s/surko.jpg | http://www.surko.com | http://sws.geonames.org/2510769/ |
| "schéol"^^xsd:string | http://img.jamendo.com/artists/s/scheol.jpg | http://www.scheol.com | http://sws.geonames.org/2984885/ |
| "Do Ut Des"^^xsd:string | http://img.jamendo.com/artists/d/do.ut.des.jpg | http://www.doutdesrock.it | http://sws.geonames.org/3169069/ |
| "1984"^^xsd:string | http://img.jamendo.com/artists/1/1984.jpg | http://www.myspace.com/band1984 | http://sws.geonames.org/3034720/ |
| "Tante Adèle et la Famille"^^xsd:string | http://img.jamendo.com/artists/t/taf.jpg | http://www.tante-adele.com | http://sws.geonames.org/1699807/ |
| "Cipri"^^xsd:string | http://img.jamendo.com/artists/c/cipri.jpg | http://ciprimusica.iespana.es | http://sws.geonames.org/2510769/ |
| "Laura Helde"^^xsd:string | http://img.jamendo.com/artists/l/laurahelde.jpg | http://www.myspace.com/laurahelde | http://sws.geonames.org/6252001/ |
| "Losteen"^^xsd:string | http://img.jamendo.com/artists/l/losteen.jpg | http://www.losteen.com | http://sws.geonames.org/3013737/ |
| "sachandgo"^^xsd:string | http://img.jamendo.com/artists/s/sachandgo.jpg | http://www.sachandgo.com | http://sws.geonames.org/3013657/ |
| "SOFAROJO"^^xsd:string | http://img.jamendo.com/artists/s/sofarojo.jpg | http://www.sofarojo.com | http://sws.geonames.org/2517115/ |
| "Atozio"^^xsd:string | http://img.jamendo.com/artists/a/atozio.jpg | http://www.tonioworld.com | http://sws.geonames.org/2997857/ |
| "WANNAbe"^^xsd:string | http://img.jamendo.com/artists/w/wannabe.jpg | http://www.wannabe-band.yi.org | http://sws.geonames.org/2968815/ |
| "Mike Link/Harvey Taylor"^^xsd:string | http://img.jamendo.com/artists/m/mike.link.harvey.taylor.jpg | http://www.cdbaby.com/cd/linktaylor | http://sws.geonames.org/6252001/ |
| "Jean-Louis Le Breton"^^xsd:string | http://img.jamendo.com/artists/j/jean-louis.le.breton.jpg | http://rocbo.net/lebreton/ | http://sws.geonames.org/3037147/ |
| "Terremoto"^^xsd:string | http://img.jamendo.com/artists/t/terremoto.png | http://www.angelfire.com/rebellion2/terremoto/tioli.html | http://sws.geonames.org/6252001/ |
| "Vulcan Mindmeld"^^xsd:string | http://img.jamendo.com/artists/v/vulcanmindmeld.jpg | http://www.myspace.com/vulcanmindmeld | http://sws.geonames.org/6252001/ |
| "Reno"^^xsd:string | http://img.jamendo.com/artists/r/reno.jpg | http://in costruzione/ | http://sws.geonames.org/3172391/ |
| "Flex Blur"^^xsd:string | http://img.jamendo.com/artists/f/flex.blur.jpg | http://www.freewebs.com/flexblur | http://sws.geonames.org/2976082/ |
| "Dédales"^^xsd:string | http://img.jamendo.com/artists/d/dedales.jpg | http://perso.orange.fr/dedales-projet/ | http://sws.geonames.org/3029094/ |
| "Havok"^^xsd:string | http://img.jamendo.com/artists/h/havok.jpg | http://www.havok.se | http://sws.geonames.org/2661886/ |
| "Sehene"^^xsd:string | http://img.jamendo.com/artists/s/sehene.jpg | http://www.myspace.com/sehene | http://sws.geonames.org/2987410/ |
| "Crapman Sacramento"^^xsd:string | http://img.jamendo.com/artists/c/crapman.jpg | http://www.crapman.net | http://sws.geonames.org/6251999/ |
| "Marker Beacon"^^xsd:string | http://img.jamendo.com/artists/m/marker.beacon.jpg | http://marker.beacon.free.fr | http://sws.geonames.org/3013657/ |
| "DJ Ghozt"^^xsd:string | http://img.jamendo.com/artists/d/djghozt.jpg | http://djghozt.blogspot.com/ | http://sws.geonames.org/2930484/ |
| "Röntgenschall"^^xsd:string | http://img.jamendo.com/artists/r/rontgenschall.jpg | http://www.rontgenschall.com | http://sws.geonames.org/2921044/ |
| "Traffic In My Head"^^xsd:string | http://img.jamendo.com/artists/t/traffic.in.my.head.jpg | http://www.traffic.zgora.pl | http://sws.geonames.org/798544/ |
| "Les Asskronotes"^^xsd:string | http://img.jamendo.com/artists/a/asskronotes.jpg | http://asskros.free.fr/ | http://sws.geonames.org/3013767/ |
| "Ttable Why"^^xsd:string | http://img.jamendo.com/artists/t/ttable.why.jpg | http://www.myspace.com/ttablewhy | http://sws.geonames.org/2963597/ |
| "sunken"^^xsd:string | http://img.jamendo.com/artists/s/sunken.jpg | http://www.sunken-music.com | http://sws.geonames.org/3017382/ |
| "Direct Raption"^^xsd:string | http://img.jamendo.com/artists/d/directraption.png | http://directraption.ch | http://sws.geonames.org/2658434/ |
| "walkyries"^^xsd:string | http://img.jamendo.com/artists/w/walkyries.jpg | http://www.walkyriesmusic.com | http://sws.geonames.org/3013736/ |
| "Esperanza"^^xsd:string | http://img.jamendo.com/artists/e/esperanza.jpg | http://myspace.com/esperanzaproyect | http://sws.geonames.org/3865483/ |
| "Topology"^^xsd:string | http://img.jamendo.com/artists/t/topology.jpg | http://www.topologymusic.com/ | http://sws.geonames.org/2077456/ |
| "The Hollow"^^xsd:string | http://img.jamendo.com/artists/t/thehollow.jpg | http://www.thehollowxixon.com | http://sws.geonames.org/2510769/ |
| "Darkened Escape"^^xsd:string | http://img.jamendo.com/artists/d/darkened.escape.jpg | http://www.myspace.com/darkenedescape | http://sws.geonames.org/2989663/ |
| "kaodenuit"^^xsd:string | http://img.jamendo.com/artists/k/kaodenuit.jpg | http://kaodenuit.free.fr/kao/?page_id=21 | http://sws.geonames.org/2987410/ |
| "François Ville/Missives"^^xsd:string | http://img.jamendo.com/artists/m/missives.jpg | http://www.wat.tv/francoisville | http://sws.geonames.org/2976082/ |
| "Whispering Johnson"^^xsd:string | http://img.jamendo.com/artists/w/whispering.johnson.jpg | http://www.whisperingj.addr.com | http://sws.geonames.org/6252001/ |
| "Moondogs Blues Party"^^xsd:string | http://img.jamendo.com/artists/m/moondogs.blues.party.jpg | http://moondogsbluesparty.blogspot.com | http://sws.geonames.org/2510769/ |
| "V Traversa"^^xsd:string | http://img.jamendo.com/artists/v/v.traversa.jpg | http://www.vtraversa.blogspot.com | http://sws.geonames.org/3169560/ |
| "CIRC"^^xsd:string | http://img.jamendo.com/artists/c/circ.jpg | http://www.myspace.com/c1rc | http://sws.geonames.org/2996663/ |
| "Predator"^^xsd:string | http://img.jamendo.com/artists/p/predator.jpg | http://predatorsvenskpunk.dinstudio.se/text1_1.html | http://sws.geonames.org/2661886/ |
| "DJ NoS-K"^^xsd:string | http://img.jamendo.com/artists/n/nosk.jpg | http://www.myspace.com/djnosk | http://sws.geonames.org/3019599/ |
| "Viam"^^xsd:string | http://img.jamendo.com/artists/v/viam.jpg | http://www.musimpros.canalblog.com | http://sws.geonames.org/3013719/ |
| "Music is Love"^^xsd:string | http://img.jamendo.com/artists/d/devajoshua.jpg | http://www.music-is-love.com | http://sws.geonames.org/3172391/ |
| "DIXIT"^^xsd:string | http://img.jamendo.com/artists/d/dixit.jpg | http://dixit2008.blogspot.com/ | http://sws.geonames.org/3031359/ |
| "COELHO DE MORAES"^^xsd:string | http://img.jamendo.com/artists/c/coelho.de.moraes.jpg | http://www.produtoresindependentes.zip.net | http://sws.geonames.org/3469034/ |
| "DJ Didi"^^xsd:string | http://img.jamendo.com/artists/d/dj.didi.jpg | http://dj.didi.over-blog.com | http://sws.geonames.org/2967196/ |
| "Myriades"^^xsd:string | http://img.jamendo.com/artists/m/myriades.jpg | http://www.myriades.net | http://sws.geonames.org/2970749/ |
| "Maxa"^^xsd:string | http://img.jamendo.com/artists/m/maxa.jpg | http://www.music-is-love.com | http://sws.geonames.org/3172391/ |
| "JEM"^^xsd:string | http://img.jamendo.com/artists/j/jem.jpg | http://www.eternal-blaze.org/jem/jem.html | http://sws.geonames.org/2971090/ |
| "Nepenthes"^^xsd:string | http://img.jamendo.com/artists/n/nepenthes.jpg | http://nepenthes-rock.com | http://sws.geonames.org/3013663/ |
| "SIZ'L"^^xsd:string | http://img.jamendo.com/artists/s/siz-l.jpg | http://www.myspace.com/sizl7215 | http://sws.geonames.org/3012849/ |
| "Re-Birth"^^xsd:string | http://img.jamendo.com/artists/r/re-birth.jpg | http://www.Re-Birth.fr/ | http://sws.geonames.org/3013500/ |
| "T.F.M"^^xsd:string | http://img.jamendo.com/artists/t/t.f.m.jpg | http://www.tfm.de.gg | http://sws.geonames.org/2921044/ |
| "Freedom's children"^^xsd:string | http://img.jamendo.com/artists/f/freedomchildren.jpg | http://lederniervagabond.free.fr | http://sws.geonames.org/3013767/ |
| "Hangar18"^^xsd:string | http://img.jamendo.com/artists/h/hangar18.jpg | http://www.hangar18.fr | http://sws.geonames.org/2973357/ |
| "Diskorde"^^xsd:string | http://img.jamendo.com/artists/d/diskorde.jpg | http://www.diskorde.com | http://sws.geonames.org/2995603/ |
| "smokingband"^^xsd:string | http://img.jamendo.com/artists/s/smokingband.jpg | http://www.dracart.com/smokingband | http://sws.geonames.org/2510769/ |
| "AlcorMusic"^^xsd:string | http://img.jamendo.com/artists/a/alcormusic.jpg | http://alcormusic.com | http://sws.geonames.org/2968815/ |
| "LENIZION"^^xsd:string | http://img.jamendo.com/artists/l/lenizion.jpg | http://www.myspace.com/lenizion | http://sws.geonames.org/2510769/ |
| "The Holy Nut's Sons"^^xsd:string | http://img.jamendo.com/artists/t/the.holy.nutsons.jpg | http://theholynutsons.free.fr/ | http://sws.geonames.org/3023532/ |
| "Lubalyne"^^xsd:string | http://img.jamendo.com/artists/l/lubalyne.jpg | http://www.myspace.com/lubalyne | http://sws.geonames.org/3013736/ |
| "THE NEXT LEVeL..."^^xsd:string | http://img.jamendo.com/artists/t/the.next.level.jpg | http://www.thenextlevel.fr.nf | http://sws.geonames.org/2996663/ |
| "STEEP"^^xsd:string | http://img.jamendo.com/artists/s/steep.jpg | http://www.steep-music.de | http://sws.geonames.org/6556330/ |
| "7BZH"^^xsd:string | http://img.jamendo.com/artists/7/7bzh.jpg | http://www.7bzh.com | http://sws.geonames.org/3017382/ |
| "Durch Dick und Dünn"^^xsd:string | http://img.jamendo.com/artists/d/durch.dick.und.duenn.jpg | http://www.ddd-musik.de/ | http://sws.geonames.org/2884161/ |
| "Nazwa Zespoła"^^xsd:string | http://img.jamendo.com/artists/n/nazwazespola.jpg | http://student.twp.olsztyn.pl/~stabbb/NZ/strona.html | http://sws.geonames.org/798544/ |
| "ninomilone.tk"^^xsd:string | http://img.jamendo.com/artists/n/ninomilone.tk.jpg | http://www.ninomilone.tk | http://sws.geonames.org/2510769/ |
| "Zenkman"^^xsd:string | http://img.jamendo.com/artists/z/zenkman.jpg | http://b.zenker@yahoo.de | http://sws.geonames.org/3213264/ |
| "MoiJe"^^xsd:string | http://img.jamendo.com/artists/m/moije.jpg | http://www.moije.net | http://sws.geonames.org/3013657/ |
| "JEAN LUC VALERIO"^^xsd:string | http://img.jamendo.com/artists/j/jean.luc.valerio.jpg | http://jlvalerio.blogspot.com | http://sws.geonames.org/3036420/ |
| "Aeternam"^^xsd:string | http://img.jamendo.com/artists/m/mc.pechot.jpg | http://aeternam-aeternam.blogspot.com/ | http://sws.geonames.org/3020989/ |
| "Boeko"^^xsd:string | http://img.jamendo.com/artists/b/boeko.jpg | http://www.subtlerecordings.com/ | http://sws.geonames.org/6251999/ |
| "The Scientist Monkeys"^^xsd:string | http://img.jamendo.com/artists/t/the.scientist.monkey.jpg | http://www.scientistmonkey.com/ | http://sws.geonames.org/3023423/ |
| "Poing Comme"^^xsd:string | http://img.jamendo.com/artists/p/poing.comme.jpg | http://terra-tinook.blogspot.com/ | http://sws.geonames.org/2994111/ |
| "Spaug"^^xsd:string | http://img.jamendo.com/artists/s/spaug.jpg | http://www.spaug.nl | http://sws.geonames.org/2750405/ |
| "SoulNap"^^xsd:string | http://img.jamendo.com/artists/s/soulnap.jpg | http://www.myspace.com/soulnap | http://sws.geonames.org/390903/ |
| "Boom Boom Beckett"^^xsd:string | http://img.jamendo.com/artists/b/boomboombeckett.jpg | http://boomboombeckett.blogspot.com | http://sws.geonames.org/3165523/ |
| "SAKTO"^^xsd:string | http://img.jamendo.com/artists/s/sakto-nin.jpg | http://www.patrick-aknin.book.fr | http://sws.geonames.org/3013500/ |
| "Andrea Barone"^^xsd:string | http://img.jamendo.com/artists/a/andrea.barone.jpg | http://www.myspace.com/andreabarone | http://sws.geonames.org/3177088/ |
| "JanLik"^^xsd:string | http://img.jamendo.com/artists/j/janlik.jpg | http://blogodo-blog.blogspot.com/ | http://sws.geonames.org/2975249/ |
| "Alteranti"^^xsd:string | http://img.jamendo.com/artists/a/alteranti.jpg | http://blog.myspace.com/alteranti | http://sws.geonames.org/3017382/ |
| "POLYCHROME"^^xsd:string | http://img.jamendo.com/artists/p/polychrome.jpg | http://polychrome-lautrepays.blogspot.com/ | http://sws.geonames.org/2975246/ |
| "bigmo"^^xsd:string | http://img.jamendo.com/artists/b/bigmo.jpg | http://membres.lycos.fr/mohamedessabri/ | http://sws.geonames.org/2989663/ |
| "TEMPUS FUGIT"^^xsd:string | http://img.jamendo.com/artists/t/tempus.fugit.jpg | http://tempfu.free.fr | http://sws.geonames.org/2984986/ |
| "WhiteRoom"^^xsd:string | http://img.jamendo.com/artists/o/officialwhiteroom.jpg | http://www.whiteroom.ca | http://sws.geonames.org/6251999/ |
| "Vamp In A Box"^^xsd:string | http://img.jamendo.com/artists/v/vamp.in.a.box.jpg | http://scaryprincess.bravehost.com/ | http://sws.geonames.org/390903/ |
| "FRK"^^xsd:string | http://img.jamendo.com/artists/f/frk.jpg | http://goodtek.free.fr | http://sws.geonames.org/3031359/ |
| "X3mpt"^^xsd:string | http://img.jamendo.com/artists/x/x3mpt.jpg | http://x3mptmusic.blogspot.com/ | http://sws.geonames.org/3177088/ |
| "Dark Dew"^^xsd:string | http://img.jamendo.com/artists/d/darkdew.jpg | http://www.darkdew.it | http://sws.geonames.org/3173434/ |
| "Moodstarrr Productions"^^xsd:string | http://img.jamendo.com/artists/m/moodstarrr.jpg | http://www.moodstarrr.com | http://sws.geonames.org/6557769/ |
| "Laïxa"^^xsd:string | http://img.jamendo.com/artists/l/laixa.jpg | http://www.myspace.com/musiquelaixa | http://sws.geonames.org/3013719/ |
| "djblaster"^^xsd:string | http://img.jamendo.com/artists/d/djblaster.jpg | http://www.djbla.com | http://sws.geonames.org/3175395/ |
| "Francesco"^^xsd:string | http://img.jamendo.com/artists/f/francesco.jpg | http://com1ami.blogspot.com/ | http://sws.geonames.org/3019599/ |
| "Célibatfighters"^^xsd:string | http://img.jamendo.com/artists/c/celibatfighters.jpg | http://www.celibatfighters.com | http://sws.geonames.org/3037147/ |
| "VZero"^^xsd:string | http://img.jamendo.com/artists/v/vzero.jpg | http://uvezero.blogspot.com/ | http://sws.geonames.org/3113208/ |
| "Sunchase"^^xsd:string | http://img.jamendo.com/artists/s/sunchase.jpg | http://www.sunchase.new.fr | http://sws.geonames.org/2968815/ |
| "henri.petterson"^^xsd:string | http://img.jamendo.com/artists/h/henri.petterson.jpg | http://www.digitalvibes.org | http://sws.geonames.org/2921044/ |
| "Will Liam"^^xsd:string | http://img.jamendo.com/artists/w/will.liam.jpg | http://riffhifi.skyblog.com/ | http://sws.geonames.org/2970749/ |
| "Arnau Vilardebò"^^xsd:string | http://img.jamendo.com/artists/a/arnau.vilardebo.gif | http://arnaumarato.blogspot.com/ | http://sws.geonames.org/2510769/ |
| "La Diarrhée Verbale"^^xsd:string | http://img.jamendo.com/artists/d/didier.et.vivien.jpg | http://voa1.free.fr/didiervivien | http://sws.geonames.org/3020989/ |
| "softwhitebreasts"^^xsd:string | http://img.jamendo.com/artists/s/softwhitebreasts.jpg | http://www.myspace.com/edelweiss777swb | http://sws.geonames.org/3013663/ |
| "Shades of dream"^^xsd:string | http://img.jamendo.com/artists/s/shadesofdream.jpg | http://www.shadesofdream.com | http://sws.geonames.org/3012715/ |
| "cüül"^^xsd:string | http://img.jamendo.com/artists/c/cuul.jpg | http://www.cuul.ch | http://sws.geonames.org/2657895/ |
| "dRagin"^^xsd:string | http://img.jamendo.com/artists/d/dragin.jpg | http://dragin-music.bloog.pl/?q=1 | http://sws.geonames.org/798544/ |
| "outsounds"^^xsd:string | http://img.jamendo.com/artists/o/outsounds.jpg | http://outer-impressions.blogspot.com/ | http://sws.geonames.org/3169069/ |
| "drs+"^^xsd:string | http://img.jamendo.com/artists/u/unreleazed.gif | http://nokaut.cult.bg | http://sws.geonames.org/6459163/ |
| "crossingate"^^xsd:string | http://img.jamendo.com/artists/c/crossingate.jpg | http://www.crossingate.fr | http://sws.geonames.org/3020989/ |
| "SuperNova"^^xsd:string | http://img.jamendo.com/artists/s/supernova.gif | http://www.supernova-music.eu | http://sws.geonames.org/3182350/ |
| "amélie"^^xsd:string | http://img.jamendo.com/artists/a/amelie.jpg | http://www.amelieweb.com | http://sws.geonames.org/3173330/ |
| "Ades Vapor"^^xsd:string | http://img.jamendo.com/artists/a/ades.vapor.jpg | http://adesvapor.fr.nf | http://sws.geonames.org/2989663/ |
| "elanbase"^^xsd:string | http://img.jamendo.com/artists/e/elanbase.gif | http://monokom.org | http://sws.geonames.org/6459163/ |
| "aquavitae"^^xsd:string | http://img.jamendo.com/artists/a/aquavitae.jpg | http://www.myspace.com/aquavitaeband | http://sws.geonames.org/2990129/ |
| "Cirilo Adriazola Salas"^^xsd:string | http://img.jamendo.com/artists/c/cirilo.adriazola.salas.jpg | http://www.corazon-musica.de | http://sws.geonames.org/2884161/ |
| "DDA"^^xsd:string | http://img.jamendo.com/artists/d/dda.jpg | __jamendo-3.rdf#__Description7 | http://sws.geonames.org/2973357/ |
| "nokaut"^^xsd:string | http://img.jamendo.com/artists/n/nokaut.jpg | http://nokaut.cult.bg | http://sws.geonames.org/6459163/ |
| "Joe Valentino"^^xsd:string | http://img.jamendo.com/artists/j/joe.valentino.jpg | http://www.joevalentino blogspot.com/ | http://sws.geonames.org/3023423/ |
| "euforia"^^xsd:string | http://img.jamendo.com/artists/e/euforia.jpg | http://www.micuadrillica.com/blog/02/07/euforia/ | http://sws.geonames.org/3114471/ |
| "The Ease Down"^^xsd:string | http://img.jamendo.com/artists/t/theeasedown.jpg | http://www.theeasedown.com | http://sws.geonames.org/6251999/ |
| "Antonio M. Navas"^^xsd:string | http://img.jamendo.com/artists/a/antoniomnavas.jpg | http://tpnavas.blogspot.com/ | http://sws.geonames.org/2510769/ |
| "LessCupid"^^xsd:string | http://img.jamendo.com/artists/l/lesscupid.jpg | http://www.myspace.com/lesscupid | http://sws.geonames.org/2921044/ |
| "tty0"^^xsd:string | http://img.jamendo.com/artists/t/tty0.jpg | http://www.tty0.com.ar | http://sws.geonames.org/3865483/ |
| "Raphaël Badawi"^^xsd:string | http://img.jamendo.com/artists/r/raphael.badawi.jpg | http://raphaelbadawi.hautetfort.com | http://sws.geonames.org/2969280/ |
| "ASPHALT"^^xsd:string | http://img.jamendo.com/artists/a/asphalt.jpg | http://asphalt-91.skyblog.com/ | http://sws.geonames.org/3019599/ |
| "White Owl"^^xsd:string | http://img.jamendo.com/artists/w/white.owl.jpg | http://www.myspace.com/whiteowlru | http://sws.geonames.org/2017370/ |
| "NDNM"^^xsd:string | http://img.jamendo.com/artists/n/ndnm.jpg | http://www.myspace.com/mineurdemots | http://sws.geonames.org/3026644/ |
| "dope reach squad"^^xsd:string | http://img.jamendo.com/artists/d/dope.reach.squad.jpg | http://nokaut.cult.bg | http://sws.geonames.org/6459163/ |
| "Shaëna"^^xsd:string | http://img.jamendo.com/artists/s/shaena.jpg | http://www.shaena.fr.nf | http://sws.geonames.org/3013500/ |
| "X-in"^^xsd:string | http://img.jamendo.com/artists/x/x-in.gif | http://www.myspace.com/xinmy | http://sws.geonames.org/3172391/ |
| "GroNaZz"^^xsd:string | http://img.jamendo.com/artists/g/gronazz.jpg | http://djgronazz.free.fr | http://sws.geonames.org/3013767/ |
| "BoX"^^xsd:string | http://img.jamendo.com/artists/b/box.jpg | http://www.box-music.net | http://sws.geonames.org/2968815/ |
| "BsnKs"^^xsd:string | http://img.jamendo.com/artists/b/bsnks.gif | http://pages.videotron.com/bsnks/ | http://sws.geonames.org/6251999/ |
| "Sébastien Damery"^^xsd:string | http://img.jamendo.com/artists/s/sebastien.damery.jpg | http://sebastien.damery.com | http://sws.geonames.org/3031359/ |
| "Both"^^xsd:string | http://img.jamendo.com/artists/b/both.jpg | http://www.both-world.com | http://sws.geonames.org/2991627/ |
| "Beppu Nights by AWAKEN"^^xsd:string | http://img.jamendo.com/artists/b/beppu.nights.by.awaken.jpg | http://www.awaken.be | http://sws.geonames.org/2802361/ |
| "PhiNx"^^xsd:string | http://img.jamendo.com/artists/p/phinx.jpg | http://www.myspace.com/thephinx | http://sws.geonames.org/3164418/ |
| "Old bear"^^xsd:string | http://img.jamendo.com/artists/o/oldbear.jpg | http://www.oldbear.fr.fm | http://sws.geonames.org/2968815/ |
| "Bad Punchline"^^xsd:string | http://img.jamendo.com/artists/b/bad.punchline.jpg | http://www.bad-punchline.de | http://sws.geonames.org/6550508/ |
| "Victor Khaze"^^xsd:string | http://img.jamendo.com/artists/v/victor.khaze.jpg | http://www.victorkhaze.com | http://sws.geonames.org/6252001/ |
| "Le Capharnaüm"^^xsd:string | http://img.jamendo.com/artists/l/lecapharnaum.png | http://www.lecapharnaum.org | http://sws.geonames.org/3017382/ |
| "Ashley"^^xsd:string | http://img.jamendo.com/artists/a/ashley.jpg | http://alonewithashley.free.fr/ | http://sws.geonames.org/3031359/ |
| "Emergency Bloodshed"^^xsd:string | http://img.jamendo.com/artists/e/emergencybloodshed.jpg | http://www.myspace.com/emergencybloodshed | http://sws.geonames.org/2990129/ |
| "Christophe Lecoq"^^xsd:string | http://img.jamendo.com/artists/c/christophe.lecoq.jpg | http://www.myspace.com/clecoq | http://sws.geonames.org/2968815/ |
| "Fanny Denni"^^xsd:string | http://img.jamendo.com/artists/c/cc.jpg | http:// | http://sws.geonames.org/2994111/ |
| "Melanculia"^^xsd:string | http://img.jamendo.com/artists/m/melanculia.gif | http://www.melanculia.de | http://sws.geonames.org/3213264/ |
| "Flip Her Babies"^^xsd:string | http://img.jamendo.com/artists/f/flipherbabies.png | http://www.flipherbabies.org | http://sws.geonames.org/3019599/ |
| "Andrés Puppo"^^xsd:string | http://img.jamendo.com/artists/a/andrespuppo.jpg | http://andrespuppo.wordpress.com | http://sws.geonames.org/3439705/ |
| "placid"^^xsd:string | http://img.jamendo.com/artists/p/placid.jpg | http://placid-music.blogspot.com/ | http://sws.geonames.org/6557769/ |
| "SLÄYD"^^xsd:string | http://img.jamendo.com/artists/s/slayd.jpg | http://www.1slayd.com | http://sws.geonames.org/2984986/ |
| "PARADOX!"^^xsd:string | http://img.jamendo.com/artists/p/paradox.jpg | http://www.paradox.net.pl | http://sws.geonames.org/798544/ |
| "Bunker Sessions"^^xsd:string | http://img.jamendo.com/artists/b/bunkersessions.jpg | http://www.myspace.com/bunkersessions | http://sws.geonames.org/2802361/ |
| "Sub Sin"^^xsd:string | http://img.jamendo.com/artists/s/subsin.png | http://www.subsin.be | http://sws.geonames.org/2802361/ |
| "Rafiralfiro"^^xsd:string | http://img.jamendo.com/artists/r/rafiralfiro.jpg | http://rafiralfiro.free.fr/ | http://sws.geonames.org/2971071/ |
| "Retrigger"^^xsd:string | http://img.jamendo.com/artists/r/retrigger.gif | http://www.retrigger.net | http://sws.geonames.org/3469034/ |
| "Project System 12"^^xsd:string | http://img.jamendo.com/artists/p/project.system.12.jpg | http://home.comcast.net/~projectsystem12/Project-System-12.htm | http://sws.geonames.org/6252001/ |
| "Magic Tong Family"^^xsd:string | http://img.jamendo.com/artists/m/magic.tong.family.jpg | http://www.magictongfamily.com | http://sws.geonames.org/3013767/ |
| "to-m"^^xsd:string | http://img.jamendo.com/artists/t/to-m.jpg | http://hautetfort.com | http://sws.geonames.org/3013736/ |
| "andré le charcutier"^^xsd:string | http://img.jamendo.com/artists/a/andre.le.charcutier.jpg | http://andrelecharcutier.musique.com/ | http://sws.geonames.org/3013767/ |
| "Cyanure"^^xsd:string | http://img.jamendo.com/artists/c/cyanure.jpg | http://www.cyanure.fr | http://sws.geonames.org/2994111/ |
| "Juanjo Pacheco"^^xsd:string | http://img.jamendo.com/artists/j/juanjo.pacheco.jpg | http://www.lasbalsicas.blogcindario.com | http://sws.geonames.org/2510769/ |
| "HYPE"^^xsd:string | http://img.jamendo.com/artists/h/hype.jpg | http://www.myspace.com/hypemusic | http://sws.geonames.org/2968815/ |
| "mXsProject"^^xsd:string | http://img.jamendo.com/artists/m/mxsproject.jpg | http://mxsProject.blogspot.com | http://sws.geonames.org/3175395/ |
| "DaCapo"^^xsd:string | http://img.jamendo.com/artists/d/dacapo.jpg | http://. | http://sws.geonames.org/3025480/ |
| "Mark.Nine"^^xsd:string | http://img.jamendo.com/artists/m/mark.nine.jpg | http://www.marknine.com | http://sws.geonames.org/6252001/ |
| "Fish Man"^^xsd:string | http://img.jamendo.com/artists/f/fish.man.gif | http://fishman5487.blogspot.com/ | http://sws.geonames.org/6252001/ |
| "Rebolt"^^xsd:string | http://img.jamendo.com/artists/r/rebolt.jpg | http://www.myspace.com/reboltrock | http://sws.geonames.org/3144096/ |
| "Wire Moves"^^xsd:string | http://img.jamendo.com/artists/w/wiremoves.jpg | http://www.wiremoves.com | http://sws.geonames.org/2661886/ |
| "Sirio"^^xsd:string | http://img.jamendo.com/artists/s/sirio.jpg | http://www.jamendo.com/es/artist/sirio | http://sws.geonames.org/2514254/ |
| "Cruz Kers"^^xsd:string | http://img.jamendo.com/artists/c/cruz.kers.jpg | http://cruzkers.blogspot.com/ | http://sws.geonames.org/2971071/ |
| "Hunt Club"^^xsd:string | http://img.jamendo.com/artists/h/huntclub.jpg | http://www.myspace.com/huntclubmusic | http://sws.geonames.org/6252001/ |
| "eNoz"^^xsd:string | http://img.jamendo.com/artists/e/enoz.jpg | http://enoz.free.fr | http://sws.geonames.org/3012849/ |
| "LES2VAINS"^^xsd:string | http://img.jamendo.com/artists/l/les2vains.jpg | http://www.les2vains.com | http://sws.geonames.org/2990129/ |
| "DJRollo"^^xsd:string | http://img.jamendo.com/artists/d/djrollo.jpg | http://www.djrollo.de | http://sws.geonames.org/2930484/ |
| "-mystery-"^^xsd:string | http://img.jamendo.com/artists/m/mystery.jpg | http://www.theartofmystery.com | http://sws.geonames.org/2987410/ |
| "EndZeit-Effekt"^^xsd:string | http://img.jamendo.com/artists/e/endzeit-effekt.jpg | http://www.endzeit-effekt.de | http://sws.geonames.org/2921044/ |
| "Wortschatz"^^xsd:string | http://img.jamendo.com/artists/w/wortschatz-music.de.jpg | http://www.wortschatz-music.de | http://sws.geonames.org/6557769/ |
| "Staraya Derevnya"^^xsd:string | http://img.jamendo.com/artists/s/starder.jpg | http://www.starayaderevnya.co.uk | http://sws.geonames.org/294640/ |
| "Delên"^^xsd:string | http://img.jamendo.com/artists/d/delen.jpg | http://www.delenmusic.blogspot.com | http://sws.geonames.org/6424360/ |
| "lupus"^^xsd:string | http://img.jamendo.com/artists/l/lupus.jpg | http://www.myspace.com/lupusprod | http://sws.geonames.org/3013657/ |
| "Anorquidia"^^xsd:string | http://img.jamendo.com/artists/a/anorquidia.jpg | http://www.lasbalsicas.blogcindario.com | http://sws.geonames.org/3104469/ |
| "The Pencil-Case"^^xsd:string | http://img.jamendo.com/artists/t/the.pencil-case.gif | http://www.thepencilcase.net | http://sws.geonames.org/3012849/ |
| "groupefugitif"^^xsd:string | http://img.jamendo.com/artists/g/groupefugitif.gif | http://www.groupefugitif.com | http://sws.geonames.org/2994111/ |
| "Saevio"^^xsd:string | http://img.jamendo.com/artists/s/saevio.jpg | http://saevio.info | http://sws.geonames.org/3012804/ |
| "[package radio]"^^xsd:string | http://img.jamendo.com/artists/p/package.radio.jpg | http://www.packageradio.com | http://sws.geonames.org/3209442/ |
| "Adam Brożyński"^^xsd:string | http://img.jamendo.com/artists/d/dunder.jpg | http://dunder.pl | http://sws.geonames.org/798544/ |
| "gjjo"^^xsd:string | http://img.jamendo.com/artists/g/gjjo.jpg | http://gjjo.blogspot.com/ | http://sws.geonames.org/3019599/ |
| "HYPNOIDsound"^^xsd:string | http://img.jamendo.com/artists/h/hypnoidsound.jpg | http://www.myspace.com/hypnoidsound63 | http://sws.geonames.org/2994111/ |
| "Yann Reversat"^^xsd:string | http://img.jamendo.com/artists/y/yann.reversat.gif | http://www.yannreversat.fr | http://sws.geonames.org/2968815/ |
| "Mel's"^^xsd:string | http://img.jamendo.com/artists/m/mel.s.jpg | http://mels.hautetfort.com | http://sws.geonames.org/2970749/ |
| "drunken butterfly"^^xsd:string | http://img.jamendo.com/artists/d/drunken.butterfly.jpg | http://myspace.com/thedrunkenbutterfly | http://sws.geonames.org/2991879/ |
| "Jazin"^^xsd:string | http://img.jamendo.com/artists/j/jazin.jpg | http://www.wortschatz-music.de | http://sws.geonames.org/6557769/ |
| "Frenchy Bob"^^xsd:string | http://img.jamendo.com/artists/f/frenchy.bob.jpg | http://www.music-of-the-month.com | http://sws.geonames.org/2970554/ |
| "ghostfog"^^xsd:string | http://img.jamendo.com/artists/g/ghostfog.jpg | http://www.ghostfog.de | http://sws.geonames.org/3213264/ |
| "Thufir_Hawat"^^xsd:string | http://img.jamendo.com/artists/t/titusthefox.jpg | http://musicamusicaemusicamanonsolo.blogspot.com/ | http://sws.geonames.org/3173434/ |
| "75 Clan"^^xsd:string | http://img.jamendo.com/artists/f/family.did.png | http://www.75clan.com | http://sws.geonames.org/2968815/ |
| "Phonophobia 70"^^xsd:string | http://img.jamendo.com/artists/p/phonophobia70.jpg | http://phonophobia70.blogspot.com | http://sws.geonames.org/2884161/ |
| "Jarhead"^^xsd:string | http://img.jamendo.com/artists/j/jarhead.jpg | http://jarhead.over-blog.net/ | http://sws.geonames.org/2968815/ |
| "Simon Hartcher - Audiophile"^^xsd:string | http://img.jamendo.com/artists/a/audiophile.jpg | http://www.myspace.com/simonhartcher | http://sws.geonames.org/2077456/ |
| "alvarsovy"^^xsd:string | http://img.jamendo.com/artists/a/alvarsovy.jpg | http://alvarsovy.ifrance.com | http://sws.geonames.org/3017382/ |
| "Dj-G0liATh"^^xsd:string | http://img.jamendo.com/artists/d/dj-g0liath.gif | http://leparadisxx.spaces.live.com/ | http://sws.geonames.org/2802361/ |
| "SicknessOfMind"^^xsd:string | http://img.jamendo.com/artists/s/som.jpg | http://www.myspace.com/sicknessofmind01 | http://sws.geonames.org/6251999/ |
| "June Curtsey"^^xsd:string | http://img.jamendo.com/artists/j/june.curtsey.jpg | http://www.myspace.com/officialjunecurtsey | http://sws.geonames.org/2997861/ |
| "DJ FTC"^^xsd:string | http://img.jamendo.com/artists/d/djftc.gif | http://www.djftc.com | http://sws.geonames.org/3013736/ |
| "Melophon"^^xsd:string | http://img.jamendo.com/artists/m/melophon.jpg | http://www.gebert-hh.de/melophon/index.htm | http://sws.geonames.org/2911297/ |
| "jazzcomputer.org"^^xsd:string | http://img.jamendo.com/artists/j/jazzcomputer.org.jpg | http://www.jazzcomputer.org/ | http://sws.geonames.org/2968815/ |
| "The Vector Approach"^^xsd:string | http://img.jamendo.com/artists/t/thevectorapproach.png | http://thevectorapproach.110mb.com/ | http://sws.geonames.org/6252001/ |
| "Dreamer"^^xsd:string | http://img.jamendo.com/artists/d/dreamer.jpg | http://spaces.msn.com/dreamerisalive/ | http://sws.geonames.org/2970140/ |
| "Quai-G"^^xsd:string | http://img.jamendo.com/artists/q/quai-g.jpg | http://www.myspace.com/quaigmusic | http://sws.geonames.org/3023423/ |
| "Tha Silent Partner"^^xsd:string | http://img.jamendo.com/artists/t/tha.silent.partner.jpg | http://www.thasilentpartner.net | http://sws.geonames.org/6252001/ |
| "Les 3 Singes"^^xsd:string | http://img.jamendo.com/artists/l/les3singes.jpg | http://www.les3singes.net | http://sws.geonames.org/2968815/ |
| "NICOCO"^^xsd:string | http://img.jamendo.com/artists/n/nicoco.jpg | http://nicoco007.free.fr | http://sws.geonames.org/2968815/ |
| "FLYING SAUCERS INDUSTRY"^^xsd:string | http://img.jamendo.com/artists/f/fsimusic.jpg | http://www.fsimusic.net | http://sws.geonames.org/2990129/ |
| "Thierry de Massia"^^xsd:string | http://img.jamendo.com/artists/t/tdemassia.jpg | http://www.t3dm.fr | http://sws.geonames.org/3038049/ |
| "The Chameleon Orchestra"^^xsd:string | http://img.jamendo.com/artists/t/the.chameleon.orchestra.jpg | http://synlabor.depublications/chameleonorchestra | http://sws.geonames.org/2921044/ |
| "rika"^^xsd:string | http://img.jamendo.com/artists/r/rika.jpg | http://rika.at.tt | http://sws.geonames.org/2782113/ |
| "WpHoMe"^^xsd:string | http://img.jamendo.com/artists/w/wphome.jpg | http://wphome.site.voila.fr/ | http://sws.geonames.org/2969280/ |
| "Juanitos"^^xsd:string | http://img.jamendo.com/artists/j/juanitos.png | http://www.juanitos.net | http://sws.geonames.org/2975517/ |
| "LaJawz"^^xsd:string | http://img.jamendo.com/artists/l/lajawz.jpg | http://lajawz.blogspot.com/ | http://sws.geonames.org/3013500/ |
| "Jon Wayne"^^xsd:string | http://img.jamendo.com/artists/j/jon.wayne.jpg | http://captaincookie.blogspot.com/ | http://sws.geonames.org/6252001/ |
| "Last Sunday"^^xsd:string | http://img.jamendo.com/artists/l/lastsunday.jpg | http://www.asb-entertainment.de | http://sws.geonames.org/2884161/ |
| "Aitor Burgos"^^xsd:string | http://img.jamendo.com/artists/a/aitor.burgos.jpg | http://aitorburgos.blogspot.com/ | http://sws.geonames.org/3104469/ |
| "3tronik"^^xsd:string | http://img.jamendo.com/artists/3/3tronik.gif | http://www.3tronik.net | http://sws.geonames.org/2990129/ |
| "Marieva's Project"^^xsd:string | http://img.jamendo.com/artists/m/marieva.project.jpg | http://www.e-monsite.com/marieva-project | http://sws.geonames.org/2997861/ |
| "K-wah"^^xsd:string | http://img.jamendo.com/artists/k/k-wah.jpg | http://kwah.free.fr/ | http://sws.geonames.org/3029094/ |
| "deathstar"^^xsd:string | http://img.jamendo.com/artists/d/deathstar.jpg | http://www.myspace.com/adventureinnewlowfi | http://sws.geonames.org/3012715/ |
| "Contreband"^^xsd:string | http://img.jamendo.com/artists/c/contreband.jpg | http://www.contreband.cjb.net | http://sws.geonames.org/2968815/ |
| "Dr Pombo"^^xsd:string | http://img.jamendo.com/artists/d/drpombo.jpg | http://doctorpombo.blogia.com | http://sws.geonames.org/2510769/ |
| "Kasbah"^^xsd:string | http://img.jamendo.com/artists/k/kasbah.jpg | http://www.lasbalsicas.info | http://sws.geonames.org/3129138/ |
| "Negative Trip"^^xsd:string | http://img.jamendo.com/artists/n/negative.trip.jpg | http://www.negativetrip.com | http://sws.geonames.org/2657895/ |
| "Luzinda Warrior"^^xsd:string | http://img.jamendo.com/artists/l/luzinda.warrior.jpg | http://lasbalsicas.info | http://sws.geonames.org/3129138/ |
| "humeka"^^xsd:string | http://img.jamendo.com/artists/h/humeka.jpg | http://www.myspace.com/humeka | http://sws.geonames.org/2968815/ |
| "Amnesie"^^xsd:string | http://img.jamendo.com/artists/a/amnesie.gif | http://www.mygrindcore.de | http://sws.geonames.org/2921044/ |
| "Kleï"^^xsd:string | http://img.jamendo.com/artists/k/klei.jpg | http://www.klei-online.com/ | http://sws.geonames.org/2968815/ |
| "paolo di sabatino"^^xsd:string | http://img.jamendo.com/artists/p/paolo.di.sabatino.jpg | http://www.paolodisabatino.it | http://sws.geonames.org/3165802/ |
| "&ND"^^xsd:string | http://img.jamendo.com/artists/8/8nd.jpg | http://www.myspace.com/8nd | http://sws.geonames.org/2968815/ |
| "Limbo deluxe"^^xsd:string | http://img.jamendo.com/artists/l/limbo.deluxe.jpg | http://www.limbo-deluxe.com | http://sws.geonames.org/2975517/ |
| "100 Sens Sur"^^xsd:string | http://img.jamendo.com/artists/1/100.sens.sur.jpg | http://100.Le-GA.com | http://sws.geonames.org/6251999/ |
| "Shakâlakah"^^xsd:string | http://img.jamendo.com/artists/s/shakalakah.gif | http://shakalakah.free.fr | http://sws.geonames.org/3015948/ |
| "Franck Mouzon"^^xsd:string | http://img.jamendo.com/artists/f/franck.mouzon.jpg | http://untourchezfranck.blogspot.com/ | http://sws.geonames.org/2970554/ |
| "COUCOU"^^xsd:string | http://img.jamendo.com/artists/c/coucou.jpg | http://gjandot.free.fr/musique.html | http://sws.geonames.org/2967196/ |
| "John Holden"^^xsd:string | http://img.jamendo.com/artists/j/john.holden.jpg | http://www.detrimentalinformation.com | http://sws.geonames.org/6252001/ |
| "Benshmark"^^xsd:string | http://img.jamendo.com/artists/b/benshmark.jpg | http://benshmark.blogspot.com/2007/03/benshmark.html | http://sws.geonames.org/6556330/ |
| "Moving sand"^^xsd:string | http://img.jamendo.com/artists/m/moving.sand.jpg | http://movingsand.unblog.fr/ | http://sws.geonames.org/2802361/ |
| "Samuel"^^xsd:string | http://img.jamendo.com/artists/s/samuel.jpg | http://www.myspace.com/uponeternity | http://sws.geonames.org/2971090/ |
| "Die with Dignity"^^xsd:string | http://img.jamendo.com/artists/d/die.with.dignity.jpg | http://www.die-with-dignity.de | http://sws.geonames.org/3213264/ |
| "cometa"^^xsd:string | http://img.jamendo.com/artists/c/cometa_(Jamendo).jpg | __jamendo-3.rdf#__Description8 | http://sws.geonames.org/3175395/ |
| "Miss Emma"^^xsd:string | http://img.jamendo.com/artists/m/miss.emma.jpg | http://profile.myspace.com/emmanaveira | http://sws.geonames.org/2975517/ |
| "DjPac"^^xsd:string | http://img.jamendo.com/artists/d/djpac.png | http://www.agolhon.com | http://sws.geonames.org/742865/ |
| "#NarNaoud#"^^xsd:string | http://img.jamendo.com/artists/n/narnaoud1.jpg | http://www.boxson.net/telechargement.php?id=924 | http://sws.geonames.org/3015948/ |
| "do-up"^^xsd:string | http://img.jamendo.com/artists/d/do-up.png | http://do-up.ru/ | http://sws.geonames.org/2017370/ |
| "Giorgio Campagnano"^^xsd:string | http://img.jamendo.com/artists/g/giorgio.campagnano.jpg | http://www.myspace.com/giorgiocampagnano | http://sws.geonames.org/3169069/ |
| "Habemus Punk"^^xsd:string | http://img.jamendo.com/artists/h/habemus.punk.jpg | http://www.myspace.com/habemuspunk | http://sws.geonames.org/3173434/ |
| "Nicolas Kern"^^xsd:string | http://img.jamendo.com/artists/n/nicolas.kern.jpg | http://www.nicolaskern.free.fr | http://sws.geonames.org/3031359/ |
| "GOLDEN BOY (FOSPASSIN)"^^xsd:string | http://img.jamendo.com/artists/g/golden.boy.fospassin.jpg | http://isound.com/golden_boy_fospassin | http://sws.geonames.org/6252001/ |
| "Pedro Novoa"^^xsd:string | http://img.jamendo.com/artists/p/pedro.novoa.jpg | http://pedronovoa.septimacuerda.com/ | http://sws.geonames.org/3932488/ |
| "ISItheDreaMakeR"^^xsd:string | http://img.jamendo.com/artists/i/isithedreamaker.jpg | http://isithedreamaker.altervista.org | http://sws.geonames.org/3175531/ |
| "Xera"^^xsd:string | http://img.jamendo.com/artists/x/xera.png | http://xera.com.es | http://sws.geonames.org/2510769/ |
| "daniel roca"^^xsd:string | http://img.jamendo.com/artists/d/daniel.roca.jpg | http://danroca.blog4ever.com | http://sws.geonames.org/2967196/ |
| "A.n.K.h"^^xsd:string | http://img.jamendo.com/artists/a/a.n.k.h.jpg | http://www.myspace.com/ankhelectro | http://sws.geonames.org/3013500/ |
| "Kolektyw Etopiryna"^^xsd:string | http://img.jamendo.com/artists/k/kolektyw.etopiryna.jpg | http://etopiryna.altpro.net | http://sws.geonames.org/798544/ |
| "J.Blasco"^^xsd:string | http://img.jamendo.com/artists/j/j.blasco.jpg | http://jaopticamusic.blogspot.com/ | http://sws.geonames.org/2511173/ |
| "Elias Damian"^^xsd:string | http://img.jamendo.com/artists/e/eliasdamian.jpg | http://www.myspace.com/eliasdamian | http://sws.geonames.org/3213264/ |
| "Los Intokables del reggaeton"^^xsd:string | http://img.jamendo.com/artists/l/los.intokables.del.reggaeton.jpg | http://www.myspace.com/losintokablesdelreggaeton | http://sws.geonames.org/2395170/ |
| "Ptub"^^xsd:string | http://img.jamendo.com/artists/p/ptub.jpg | http://myspace.com/ptub | http://sws.geonames.org/798544/ |
| "Proun"^^xsd:string | http://img.jamendo.com/artists/p/proun.jpg | http://www.myspace.com/proyectoproun | http://sws.geonames.org/3117813/ |
| "Kapela na Dobry Dzień"^^xsd:string | http://img.jamendo.com/artists/k/k.n.d.d.jpg | http://kapelanadobrydzien.blogspot.com/ | http://sws.geonames.org/798544/ |
| "DOLLSEX"^^xsd:string | http://img.jamendo.com/artists/p/psik6.jpg | http://www.dollsex.be | http://sws.geonames.org/2802361/ |
| "FRED FERRACCI"^^xsd:string | http://img.jamendo.com/artists/f/fred.ferracci.jpg | http://NEANT | http://sws.geonames.org/3031359/ |
| "FAHORO MEI"^^xsd:string | http://img.jamendo.com/artists/f/fahoromei.jpg | http://www.myspace.com/fahoromei | http://sws.geonames.org/2975246/ |
| "Low Cost Music"^^xsd:string | http://img.jamendo.com/artists/l/lowcostmusic.jpg | http://www.myspace.com/lowcostmusic | http://sws.geonames.org/2990129/ |
| "Radio Latinos"^^xsd:string | http://img.jamendo.com/artists/r/radio.latinos.jpg | http://radiolatinos.blogspot.com | http://sws.geonames.org/3996063/ |
| "le 31 février..."^^xsd:string | http://img.jamendo.com/artists/l/le.31.fevrier.jpg | http://bientôt/ | http://sws.geonames.org/2264397/ |
| "Pedritito"^^xsd:string | http://img.jamendo.com/artists/p/pedritito.jpg | http://www.pedritito.com/ | http://sws.geonames.org/1699807/ |
| "sergio capretti"^^xsd:string | http://img.jamendo.com/artists/s/sergio.capretti.jpg | http://capretti-sergio.blogspot.com/ | http://sws.geonames.org/3037136/ |
| "Lull"^^xsd:string | http://img.jamendo.com/artists/l/lull.jpg | http://www.myspace.com/lull4 | http://sws.geonames.org/2968815/ |
| "Androide Paranoiaque"^^xsd:string | http://img.jamendo.com/artists/a/androide.paranoiaque.jpg | http://www.thenationalanthem.net/ap/ | http://sws.geonames.org/2802361/ |
| "Feld"^^xsd:string | http://img.jamendo.com/artists/f/feld.gif | http://www.feldall.de | http://sws.geonames.org/6557769/ |
| "LéYàK"^^xsd:string | http://img.jamendo.com/artists/t/tom.leyak.gif | http://leyak.blogspot.com/index.html | http://sws.geonames.org/2968815/ |
| "nenad romic za novyi byte"^^xsd:string | http://img.jamendo.com/artists/n/nenad.romic.za.novyi.byte.jpg | http://ki.ber.kom.uni.st/novyibyte | http://sws.geonames.org/3337511/ |
| "XXX"^^xsd:string | http://img.jamendo.com/artists/x/xxx.jpg | http://www.xxx-music.de/ | http://sws.geonames.org/3213264/ |
| "Ysé"^^xsd:string | http://img.jamendo.com/artists/y/yse.jpg | http://www.yseweb.net | http://sws.geonames.org/2968815/ |
| "MISERY"^^xsd:string | http://img.jamendo.com/artists/m/misery.jpg | http://www.myspace.com/hananmisery | http://sws.geonames.org/2510769/ |
| "Carlos Rives"^^xsd:string | http://img.jamendo.com/artists/c/carlos.rives.jpg | http://interludere.blogspot.com/ | http://sws.geonames.org/6424360/ |
| "FOSPASSIN"^^xsd:string | http://img.jamendo.com/artists/f/fospassin.jpg | http://myspace.com/goldenboyf | http://sws.geonames.org/6252001/ |
| "Alex Cyan"^^xsd:string | http://img.jamendo.com/artists/a/alex.cyan.jpg | http://www.cyanure.fr | http://sws.geonames.org/2994111/ |
| "Juan Shamán"^^xsd:string | http://img.jamendo.com/artists/j/juanshaman.jpg | http://www.juanshaman.com | http://sws.geonames.org/3624060/ |
| "Keemiyo"^^xsd:string | http://img.jamendo.com/artists/k/keemiyo.jpg | http://musica.aiamproject.com/index.php?option=com_content&task=view&id=17&Itemid=42 | http://sws.geonames.org/2510769/ |
| "da Noise Maker"^^xsd:string | http://img.jamendo.com/artists/d/da.noise.maker.jpg | http://www.myspace.com/makedanoise | http://sws.geonames.org/3013657/ |
| "DJ Blackwidow"^^xsd:string | http://img.jamendo.com/artists/d/dj.blackwidow.jpg | http://www.myspace.com/djblackwidow8000 | http://sws.geonames.org/6252001/ |
| "Ray Grant"^^xsd:string | http://img.jamendo.com/artists/r/raygrant.jpg | http://www.raygrant.com | http://sws.geonames.org/2750405/ |
| "Focolitus"^^xsd:string | http://img.jamendo.com/artists/f/focolitus.jpg | http://focolitus.no.sapo.pt | http://sws.geonames.org/2738782/ |
| "FRONTSIDE"^^xsd:string | http://img.jamendo.com/artists/f/frontside.jpg | http://frontsidemetal.free.fr/ | http://sws.geonames.org/3013663/ |
| "SognoLucido"^^xsd:string | http://img.jamendo.com/artists/s/sognolucido.jpg | http://sognolucido-poprock.blogspot.com | http://sws.geonames.org/2523918/ |
| "Peri Mental"^^xsd:string | http://img.jamendo.com/artists/d/dance.jpg | http://www.myspace.com/dancecoreunited | http://sws.geonames.org/2017370/ |
| "...with sad adieus"^^xsd:string | http://img.jamendo.com/artists/w/with.sad.adieus.jpg | http://withsadadieus.blogspot.com/ | http://sws.geonames.org/798544/ |
| "Delko"^^xsd:string | http://img.jamendo.com/artists/d/delko.jpg | http://www.delko.org | http://sws.geonames.org/3013760/ |
| "Sentido Inverso"^^xsd:string | http://img.jamendo.com/artists/s/sentidoinverso.jpg | http://www.sentidoinverso.com.br | http://sws.geonames.org/3469034/ |
| "Tchaï Bom"^^xsd:string | http://img.jamendo.com/artists/t/tchai.bom.jpg | http://www.tchaibom.com | http://sws.geonames.org/3038050/ |
| "kwhyos"^^xsd:string | http://img.jamendo.com/artists/k/kwhyos.jpg | http://www.myspace.com/kwhyOS | http://sws.geonames.org/1269750/ |
| "iool"^^xsd:string | http://img.jamendo.com/artists/i/iool.jpg | http://xilecitta.tumblr.com | http://sws.geonames.org/2510769/ |
| "Talco"^^xsd:string | http://img.jamendo.com/artists/t/talco.jpg | http://www.talcoska.it | http://sws.geonames.org/3164600/ |
| "MONOLITHE"^^xsd:string | http://img.jamendo.com/artists/m/monolithe.jpg | http://www.monolithe.free.fr | http://sws.geonames.org/2968815/ |
| "Guy Courtine"^^xsd:string | http://img.jamendo.com/artists/g/guy.courtine.jpg | http://www.guycourtine.ch | http://sws.geonames.org/2659752/ |
| "Chrysalide"^^xsd:string | http://img.jamendo.com/artists/c/chrysalide.jpg | http://www.apreslachute.com | http://sws.geonames.org/3015948/ |
| "masss"^^xsd:string | http://img.jamendo.com/artists/m/masss.jpg | http://mpxplayer.pl | http://sws.geonames.org/798544/ |
| "Kyhogina"^^xsd:string | http://img.jamendo.com/artists/k/kyhogina.jpg | http://www.myspace.com/kyhogina | http://sws.geonames.org/2782113/ |
| "LES CULS IVRES"^^xsd:string | http://img.jamendo.com/artists/l/les.culs.ivres.jpg | http://www.lesculsivres.com | http://sws.geonames.org/2976082/ |
| "RIDDIMPERIALISM"^^xsd:string | http://img.jamendo.com/artists/r/riddimperialism.jpg | http://www.myspace.com/riddimperialism | http://sws.geonames.org/2994111/ |
| "Anima"^^xsd:string | http://img.jamendo.com/artists/a/anima.jpg | http://www.myspace.com/animaontheweb | http://sws.geonames.org/2975249/ |
| "dust|box"^^xsd:string | http://img.jamendo.com/artists/d/dustbox.jpg | http://www.dustbox.org | http://sws.geonames.org/798544/ |
| "mr nico"^^xsd:string | http://img.jamendo.com/artists/m/mr.nico.jpg | http://www.mr-nico.com | http://sws.geonames.org/3031359/ |
| "Gazebo Penguins"^^xsd:string | http://img.jamendo.com/artists/g/gazebo.penguins.gif | http://www.gazebopenguins.com | http://sws.geonames.org/6540088/ |
| "Szpital"^^xsd:string | http://img.jamendo.com/artists/s/szpital.png | http://www.szpital.witryna.info/ | http://sws.geonames.org/858791/ |
| "BlackStripes"^^xsd:string | http://img.jamendo.com/artists/b/blackstripes.gif | http://www.blackstripes.de | http://sws.geonames.org/2921044/ |
| "Rody Sousa"^^xsd:string | http://img.jamendo.com/artists/r/rodysousa.jpg | http://www.soundclick.com/rodysousa | http://sws.geonames.org/2510910/ |
| "Area 51"^^xsd:string | http://img.jamendo.com/artists/a/area51.jpg | http://www.jamendo.com/es/artist/area51 | http://sws.geonames.org/2287781/ |
| "Goiko"^^xsd:string | http://img.jamendo.com/artists/g/goiko.jpg | http://www.myspace.com/goikomusic | http://sws.geonames.org/2510769/ |
| "PATTI"^^xsd:string | http://img.jamendo.com/artists/p/patti.jpg | http://J AI PAS DE SITE/ | http://sws.geonames.org/3031359/ |
| "Sevenfire PhoeniX"^^xsd:string | http://img.jamendo.com/artists/s/sevenfire.phoenix.jpg | http://www.sevenfaya.com | http://sws.geonames.org/3570311/ |
| "Outta Limits"^^xsd:string | http://img.jamendo.com/artists/o/outtalimits.gif | http://www.outtalimits.de | http://sws.geonames.org/3213264/ |
| "Motocontínuo"^^xsd:string | http://img.jamendo.com/artists/m/motocontinuo.png | http://www.motocontinuo.net | http://sws.geonames.org/3469034/ |
| "Koji"^^xsd:string | http://img.jamendo.com/artists/k/koji.jpg | http://www.myspace.com/kojisound | http://sws.geonames.org/2970749/ |
| "Miscere"^^xsd:string | http://img.jamendo.com/artists/m/miscere.jpg | http://yothcatharsis.free.fr | http://sws.geonames.org/3017382/ |
| "Liscus"^^xsd:string | http://img.jamendo.com/artists/l/liscus.jpg | http://www.myspace.com/liscus | http://sws.geonames.org/3169069/ |
| "Andreas Hammer"^^xsd:string | http://img.jamendo.com/artists/a/andreas.hammer.jpg | http://www.myspace.com/jem777guitarist | http://sws.geonames.org/6556330/ |
| "Fiddle"^^xsd:string | http://img.jamendo.com/artists/f/fiddle.jpg | http://suprema.fr | http://sws.geonames.org/3019317/ |
| "Sir Hunger"^^xsd:string | http://img.jamendo.com/artists/s/sir.hunger.jpg | http://keine | http://sws.geonames.org/2657895/ |
| "The Flykicks"^^xsd:string | http://img.jamendo.com/artists/t/the.flykicks.jpg | http://flykicks.mosebok.org/ | http://sws.geonames.org/2661886/ |
| "Il Silenzio di Ghisa"^^xsd:string | http://img.jamendo.com/artists/i/ilsilenziodighisa.gif | http://www.myspace.com/ilsilenziodighisa | http://sws.geonames.org/3169069/ |
| "Marko"^^xsd:string | http://img.jamendo.com/artists/m/marko57.jpg | http://www.marko-musique.new.fr | http://sws.geonames.org/2991627/ |
| "Trick Seventeen"^^xsd:string | http://img.jamendo.com/artists/t/trick.seventeen.png | http://www.myspace.com/trickseventeen | http://sws.geonames.org/2930484/ |
| "Distemper"^^xsd:string | http://img.jamendo.com/artists/d/distemper.jpg | http://myspace.com/distempermoscow | http://sws.geonames.org/2017370/ |
| "Rehearsal Jazz"^^xsd:string | http://img.jamendo.com/artists/r/rejazz.jpg | http://www.rejazz.pl | http://sws.geonames.org/798544/ |
| "Focolitz"^^xsd:string | http://img.jamendo.com/artists/f/focolitz.jpg | http://focolitz.no.sapo.pt | http://sws.geonames.org/2738782/ |
| "shytek"^^xsd:string | http://img.jamendo.com/artists/s/shytek.jpg | http://benjaminbarthelemy.com/shytek.html | http://sws.geonames.org/2968815/ |
| "Death 777"^^xsd:string | http://img.jamendo.com/artists/d/death.777.jpg | http://death777.free.fr/v2/ | http://sws.geonames.org/2971090/ |
| "Otaké"^^xsd:string | http://img.jamendo.com/artists/o/otake.gif | http://www.myspace.com/otake | http://sws.geonames.org/3013500/ |
| "JiME"^^xsd:string | http://img.jamendo.com/artists/j/jime.jpg | http://www.tomatoesattack.org | http://sws.geonames.org/2970749/ |
| "Johane Alexie"^^xsd:string | http://img.jamendo.com/artists/j/johane.alexie.jpg | http://www.zouk-love.net | http://sws.geonames.org/3019599/ |
| "Nerious"^^xsd:string | http://img.jamendo.com/artists/n/nerious.png | http://www.nerious.webpark.pl | http://sws.geonames.org/798544/ |
| "lithium"^^xsd:string | http://img.jamendo.com/artists/l/lithium.jpg | http://distortions.skyblog.com | http://sws.geonames.org/2991627/ |
| "Yann "Syks " S "^^xsd:string | http://img.jamendo.com/artists/y/yann.syks.s.jpg | http://www.wat.TV/syks | http://sws.geonames.org/3023532/ |
| "Hobby Horse"^^xsd:string | http://img.jamendo.com/artists/h/hobby.horse.jpg | http://www.myspace.com/hobbyhorseband | http://sws.geonames.org/2967196/ |
| "Windpearl"^^xsd:string | http://img.jamendo.com/artists/w/windpearl.jpg | http://gabriel.hautclocq.free.fr/index.php#windpearl-accueil?page=windpearl-accueil | http://sws.geonames.org/3021501/ |
| "Cui Bono"^^xsd:string | http://img.jamendo.com/artists/c/cui.bono.jpg | http://old-hardrock.blogspot.com/ | http://sws.geonames.org/2661886/ |
| "BUREAU DES FLUIDES"^^xsd:string | http://img.jamendo.com/artists/b/bureau.des.fluides.jpg | http://bdf.ersatz.fr | http://sws.geonames.org/3017382/ |
| "Rock Against Sarko"^^xsd:string | http://img.jamendo.com/artists/r/rock.against.sarko.jpg | http://rockagainstsarko.breizhzion.com | http://sws.geonames.org/2968815/ |
| "Carton"^^xsd:string | http://img.jamendo.com/artists/c/carton.jpg | http://cartonpate.com | http://sws.geonames.org/2802361/ |
| "Michael Moore"^^xsd:string | http://img.jamendo.com/artists/m/michael.gif | http://www.Vewgle.com | http://sws.geonames.org/6252001/ |
| "FoxpHire"^^xsd:string | http://img.jamendo.com/artists/f/foxphire.jpg | http://www.myspace.com/fargoband1 | http://sws.geonames.org/6252001/ |
| "Magnetar"^^xsd:string | http://img.jamendo.com/artists/m/magnetar.jpg | http://www.myspace.com/lagrange4 | http://sws.geonames.org/6252001/ |
| "Rezydent S & Garaż Bogiego"^^xsd:string | http://img.jamendo.com/artists/t/toller.jpg | http://toller-rsgb.blogspot.com/ | http://sws.geonames.org/798544/ |
| "Paragraff"^^xsd:string | http://img.jamendo.com/artists/p/paragraff.jpg | http://www.paragraff.net | http://sws.geonames.org/2995603/ |
| "Sonocore Records"^^xsd:string | http://img.jamendo.com/artists/s/sonocore.records.jpg | http://sonocore.records.xooit.com | http://sws.geonames.org/2802361/ |
| "Connor O'Brien"^^xsd:string | http://img.jamendo.com/artists/c/connorobrien.jpg | http://www.connorobrien.com | http://sws.geonames.org/6252001/ |
| "Oksid"^^xsd:string | http://img.jamendo.com/artists/o/oksid.jpg | http://oksidmusic.blogspot.com | http://sws.geonames.org/3031359/ |
| "Delldongo"^^xsd:string | http://img.jamendo.com/artists/d/delldongo.jpg | http://delldongo.free.fr | http://sws.geonames.org/3023423/ |
| "INDOO"^^xsd:string | http://img.jamendo.com/artists/i/indoo.jpg | http://www.indoo.be | http://sws.geonames.org/2802361/ |
| "Escape"^^xsd:string | http://img.jamendo.com/artists/e/escape.jpg | http://www.escape-officiel.com | http://sws.geonames.org/3015948/ |
| "Meat Machine"^^xsd:string | http://img.jamendo.com/artists/m/meat.machine.jpg | http://meatmachine.blogspot.com | http://sws.geonames.org/6252001/ |
| "poste.break"^^xsd:string | http://img.jamendo.com/artists/p/poste.break.jpg | http://poste.break.free.fr | http://sws.geonames.org/2968815/ |
| "Julien PETITJEAN"^^xsd:string | http://img.jamendo.com/artists/j/julien.petitjean.jpg | http://petitjean.julien.free.fr | http://sws.geonames.org/2991627/ |
| "Gruppo Crudo"^^xsd:string | http://img.jamendo.com/artists/g/gruppocrudo.jpg | http://www.myspace.com/gruppocrudo | http://sws.geonames.org/3167021/ |
| "The League"^^xsd:string | http://img.jamendo.com/artists/t/theleague.jpg | http://www.theleaguemusic.net | http://sws.geonames.org/2968815/ |
| "reza"^^xsd:string | http://img.jamendo.com/artists/r/reza.jpg | http://www.reza-music.com | http://sws.geonames.org/2968815/ |
| "K.Os Rhymes"^^xsd:string | http://img.jamendo.com/artists/k/k.os.rhymes.jpg | http://www.myspace.com/kosrhymes | http://sws.geonames.org/2884161/ |
| "Les Gotik Anarchystes De Satan"^^xsd:string | http://img.jamendo.com/artists/l/lgads.gif | http://lgads.free.fr | http://sws.geonames.org/2997857/ |
| "2Inventions"^^xsd:string | http://img.jamendo.com/artists/2/2invention.jpg | http://mnc.ugu.pl | http://sws.geonames.org/798544/ |
| "BlackJaq"^^xsd:string | http://img.jamendo.com/artists/b/blackjaq.gif | http://www.myspace.com/blackjaq | http://sws.geonames.org/6252001/ |
| "thelinks"^^xsd:string | http://img.jamendo.com/artists/t/thelinks.jpg | http://maleoman.blogspot.com | http://sws.geonames.org/2660717/ |
| "Fredo Begnon"^^xsd:string | http://img.jamendo.com/artists/f/fredo.begnon.jpg | http://fredolechanteur.blogspot.com/ | http://sws.geonames.org/2970140/ |
| "Nehoryn"^^xsd:string | http://img.jamendo.com/artists/n/nehoryn.jpg | http://www.nehoryn.com | http://sws.geonames.org/2997861/ |
| "Spirograph"^^xsd:string | http://img.jamendo.com/artists/s/spirograph.png | http://www.spirographonline.com | http://sws.geonames.org/6252001/ |
| "Funkyproject"^^xsd:string | http://img.jamendo.com/artists/f/funkyproject.jpg | http://www.funkyproject.fr | http://sws.geonames.org/2990129/ |
| "Blaize"^^xsd:string | http://img.jamendo.com/artists/3/33629.jpg | http://www.myspace.com/blaizearea | http://sws.geonames.org/3019599/ |
| "Staircase Wisp"^^xsd:string | http://img.jamendo.com/artists/s/staircase.wisp.jpg | http://www.staircasewisp.com | http://sws.geonames.org/2968815/ |
| "statuslab"^^xsd:string | http://img.jamendo.com/artists/s/statuslab.jpg | http://statuslab.msk.ru | http://sws.geonames.org/2017370/ |
| "Looping Staff"^^xsd:string | http://img.jamendo.com/artists/l/looping.staff.jpg | http://oksidmusic.blogspot.com/ | http://sws.geonames.org/3031359/ |
| "Enneri Blaka"^^xsd:string | http://img.jamendo.com/artists/e/enneriblaka.gif | http://www.enneriblaka.com | http://sws.geonames.org/3034720/ |
| "Philippe Axel"^^xsd:string | http://img.jamendo.com/artists/p/philaxel.jpg | http://www.philaxel.com | http://sws.geonames.org/3013500/ |
| "The G&M Project"^^xsd:string | http://img.jamendo.com/artists/t/the.g.m.project.jpg | http://www.thegmproject.blog.cz | http://sws.geonames.org/2395170/ |
| "FLUNKY"^^xsd:string | http://img.jamendo.com/artists/f/flunky.jpg | http://www.flunky-web.com | http://sws.geonames.org/2991627/ |
| "16% of happiness"^^xsd:string | http://img.jamendo.com/artists/1/16.of.happiness.jpg | http://www.myspace.com/16percentofhappiness | http://sws.geonames.org/2017370/ |
| "Robert Stafford"^^xsd:string | http://img.jamendo.com/artists/r/robert.stafford.jpg | http://www.myspace.com/moogboyres | http://sws.geonames.org/6251999/ |
| "Drawn From The Past"^^xsd:string | http://img.jamendo.com/artists/d/drawnfromthepast.jpg | http://www.drawnfromthepast.com | http://sws.geonames.org/3029094/ |
| "It-Alien"^^xsd:string | http://img.jamendo.com/artists/i/it-alien.jpg | http://napodano.com | http://sws.geonames.org/3182649/ |
| "STYGMATE"^^xsd:string | http://img.jamendo.com/artists/s/stygmate.jpg | http://stygmate.propagande.org | http://sws.geonames.org/2968815/ |
| "sherpa"^^xsd:string | http://img.jamendo.com/artists/s/sherpa.jpg | http://www.myspace.com/pierpalosherpa | http://sws.geonames.org/3175395/ |
| "La Mula"^^xsd:string | http://img.jamendo.com/artists/l/lamula.png | http://www.lamula.com | http://sws.geonames.org/3932488/ |
| "Jaime Heras"^^xsd:string | http://img.jamendo.com/artists/j/jaime.heras.jpg | http://jaime-heras.blogspot.com/ | http://sws.geonames.org/6355234/ |
| "U.N.O. - Unidentified Noisy Object"^^xsd:string | http://img.jamendo.com/artists/u/u.n.o.-.unidentified.noisy.object.jpg | http://www.unopertutti.net | http://sws.geonames.org/3169069/ |
| "layra"^^xsd:string | http://img.jamendo.com/artists/l/layra.gif | http://www.layra.it | http://sws.geonames.org/3169069/ |
| "mickylords"^^xsd:string | http://img.jamendo.com/artists/m/mickylords.jpg | http://mickylords.tripod.com | http://sws.geonames.org/2802361/ |
| "DJ Authush"^^xsd:string | http://img.jamendo.com/artists/d/dj.authush.jpg | http://www.free-blog.in/authush/ | http://sws.geonames.org/2782113/ |
| "sousX"^^xsd:string | http://img.jamendo.com/artists/s/sousx.gif | http://sousxlegroupe.free.fr | http://sws.geonames.org/3015948/ |
| "EVA MARIA"^^xsd:string | http://img.jamendo.com/artists/e/eva.maria.jpg | http://rasecominter.blogdpot.com | http://sws.geonames.org/3996063/ |
| "EVA MARIA (COUNTRY)"^^xsd:string | http://img.jamendo.com/artists/e/eva.maria1.jpg | http://rasecominter.blogdpot.com | http://sws.geonames.org/3996063/ |
| "EVA MARIA (BALADA RANCHERA)"^^xsd:string | http://img.jamendo.com/artists/e/eva.maria2.jpg | http://rasecominter19.blogspot.com/ | http://sws.geonames.org/3996063/ |
| "dite G swaf"^^xsd:string | http://img.jamendo.com/artists/d/dite.g.swaf.gif | http://ditegswaf.blog.fr | http://sws.geonames.org/2991879/ |
| "untied"^^xsd:string | http://img.jamendo.com/artists/u/untied.png | http://untied.dk | http://sws.geonames.org/2623032/ |
| "Zabaniet"^^xsd:string | http://img.jamendo.com/artists/z/zabaniet.jpg | http://www.zabaniet.com | http://sws.geonames.org/2984986/ |
| "Symon€"^^xsd:string | http://img.jamendo.com/artists/s/simon.hanot.jpg | http://symonemusic.blogspot.com/2007/04/jamendo.html | http://sws.geonames.org/3013736/ |
| "Moroko"^^xsd:string | http://img.jamendo.com/artists/m/moroko.jpg | http://morokodjrach.skyblog.com | http://sws.geonames.org/3036264/ |
| "Vincent JOST"^^xsd:string | http://img.jamendo.com/artists/v/vincent.jost.jpg | http://www.inlibroveritas.net/auteur911.html | http://sws.geonames.org/2991627/ |
| "DJ Silberwald"^^xsd:string | http://img.jamendo.com/artists/d/dj.silberwald.jpg | http://djsilberwald.blogspot.com/ | http://sws.geonames.org/2782113/ |
| "(own+line)"^^xsd:string | http://img.jamendo.com/artists/o/ownline.jpg | http://www.myspace.com/ownlinemusic | http://sws.geonames.org/3017382/ |
| "ADC LEVEL"^^xsd:string | http://img.jamendo.com/artists/a/adc.level.jpg | http://adclevel.hautetfort.com/ | http://sws.geonames.org/2971090/ |
| "DJMG marlon"^^xsd:string | http://img.jamendo.com/artists/d/djmg.marlon.gif | http://compositeurmg.blogspot.com | http://sws.geonames.org/2802361/ |
| "Even no fear"^^xsd:string | http://img.jamendo.com/artists/e/evennofear.jpg | http://www.myspace.com/evennofear | http://sws.geonames.org/3013767/ |
| "Ironlung"^^xsd:string | http://img.jamendo.com/artists/i/ironlung.jpg | http://myspace.com/ironlungnoise | http://sws.geonames.org/798544/ |
| "mathias"^^xsd:string | http://img.jamendo.com/artists/m/mathiasbros.jpg | http://mathiasbros.co.nr/ | http://sws.geonames.org/3175395/ |
| "Little (K)"^^xsd:string | http://img.jamendo.com/artists/l/little.k.jpg | http://www.myspace.com/electrolittlek | http://sws.geonames.org/2968815/ |
| "NOME7"^^xsd:string | http://img.jamendo.com/artists/n/nome7.jpg | http://blog.myspace.com/index.cfm?fuseaction=blog&pop=1&ping=1&indicate=1 | http://sws.geonames.org/2990129/ |
| "Dubmoket"^^xsd:string | http://img.jamendo.com/artists/d/dubmoket.jpg | http://gpnouest.supersite.fr | http://sws.geonames.org/2997861/ |
| "Futurabanda Punk Rock"^^xsd:string | http://img.jamendo.com/artists/f/futurabanda.jpg | http://www.futurabanda.com.ar | http://sws.geonames.org/3865483/ |
| "Bronco"^^xsd:string | http://img.jamendo.com/artists/b/bronco.gif | http://www.broncosound.de | http://sws.geonames.org/3213264/ |
| "MackaRonny Iceberg"^^xsd:string | http://img.jamendo.com/artists/i/iceberg.jpg | http://omicron.leftist.net/?q=blog/19 | http://sws.geonames.org/3137400/ |
| "P.O.BOX"^^xsd:string | http://img.jamendo.com/artists/p/p.o.box.jpg | http://www.pobox-band.com | http://sws.geonames.org/2994111/ |
| "kiosque"^^xsd:string | http://img.jamendo.com/artists/k/kiosque.jpg | http://kiosque.skyblog.com | http://sws.geonames.org/3013736/ |
| "solcarlus"^^xsd:string | http://img.jamendo.com/artists/s/solcarlus1.jpg | http://solcarlusweb.free.fr/ | http://sws.geonames.org/3019599/ |
| "orchid"^^xsd:string | http://img.jamendo.com/artists/o/orchid.jpg | http://www.orchid.end.pl | http://sws.geonames.org/798544/ |
| "Coarse Coding"^^xsd:string | http://img.jamendo.com/artists/c/coarse.coding.jpg | http://www.coarsecoding.de | http://sws.geonames.org/2930484/ |
| "538"^^xsd:string | http://img.jamendo.com/artists/5/538.jpg | http://myspace.com/the538worlds | http://sws.geonames.org/2987410/ |
| "Les Connards Boiteux"^^xsd:string | http://img.jamendo.com/artists/l/les.connards.boiteux.gif | http://www.lesconnardsboiteux.fr | http://sws.geonames.org/2971090/ |
| "Action Faust"^^xsd:string | http://img.jamendo.com/artists/a/action.faust.jpg | http://www.myspace.com/actionfaust | http://sws.geonames.org/3029094/ |
| "Just' in Space"^^xsd:string | http://img.jamendo.com/artists/j/just.in.space.jpg | http://just-in-space.blogspot.com | http://sws.geonames.org/3037136/ |
| "El Manu"^^xsd:string | http://img.jamendo.com/artists/e/elmanu.jpg | http://www.elmanu.com | http://sws.geonames.org/3031359/ |
| "MoeJay"^^xsd:string | http://img.jamendo.com/artists/m/moejay.jpg | http://moejay.20six.de/ | http://sws.geonames.org/2921044/ |
| "Alien Speesh"^^xsd:string | http://img.jamendo.com/artists/a/alien.speesh.jpg | http://Upcoming | http://sws.geonames.org/2661886/ |
| "Hot Load"^^xsd:string | http://img.jamendo.com/artists/h/hotload.gif | http://hotload.fr | http://sws.geonames.org/3026644/ |
| "Adalbertus Gabriel"^^xsd:string | http://img.jamendo.com/artists/a/adalbertus.gabriel.jpg | http://wyobraznia.wordpress.com | http://sws.geonames.org/798544/ |
| "QJon"^^xsd:string | http://img.jamendo.com/artists/q/qjon.jpg | http://labqt.blogspot.com | http://sws.geonames.org/798544/ |
| "Gerador Zero"^^xsd:string | http://img.jamendo.com/artists/g/geradorzero.png | http://www.geradorzero.com | http://sws.geonames.org/3469034/ |
| "Paracetamol"^^xsd:string | http://img.jamendo.com/artists/p/paracetamol.gif | http://bitcrusher.free.fr/index.php?page=paracetamol | http://sws.geonames.org/2884161/ |
| "The circuits breaker"^^xsd:string | http://img.jamendo.com/artists/t/the.circuits.breaker.jpg | http://bitcrusher.free.fr | http://sws.geonames.org/2884161/ |
| "Konstruktor.K"^^xsd:string | http://img.jamendo.com/artists/k/konstruktor.k.jpg | http://www.last.fm/music/Konstruktor+aka.+Christoffer | http://sws.geonames.org/2661886/ |
| "Thrown"^^xsd:string | http://img.jamendo.com/artists/t/thrown2.jpg | http://www.myspace.com/konstruktor2 | http://sws.geonames.org/2661886/ |
| "Whise"^^xsd:string | http://img.jamendo.com/artists/w/whise.jpg | http://whisemusic.blogspot.com/ | http://sws.geonames.org/2017370/ |
| "traummaschine"^^xsd:string | http://img.jamendo.com/artists/t/traummaschine.jpg | http://es.geocities.com/traummaschine0/ | http://sws.geonames.org/2510769/ |
| "Scarecrows"^^xsd:string | http://img.jamendo.com/artists/s/scarecrows.jpg | http://scarecrows64.skyblog.com | http://sws.geonames.org/2984887/ |
| "ENCHANTMENT"^^xsd:string | http://img.jamendo.com/artists/e/enchantment.jpg | http://www.enchantmentband.com | http://sws.geonames.org/6355234/ |
| "proyectopoint"^^xsd:string | http://img.jamendo.com/artists/p/proyectopoint.jpg | http://www.myspace.com/pr0yect0point | http://sws.geonames.org/3865483/ |
| "Cosmic Cat"^^xsd:string | http://img.jamendo.com/artists/c/cosmic.cat.jpg | http://www.myspace.com/nicholasdamico | http://sws.geonames.org/6252001/ |
| "Charles Sommer"^^xsd:string | http://img.jamendo.com/artists/c/charles.sommer.jpg | http://csbaalbek.blogspot.com/ | http://sws.geonames.org/3209442/ |
| "cold evocation"^^xsd:string | http://img.jamendo.com/artists/c/cold.evocation.jpg | http://coldevocationmetal.blogspot.com | http://sws.geonames.org/3686110/ |
| "Pete-B"^^xsd:string | http://img.jamendo.com/artists/p/pete-b.jpg | http://www.djpeteb.net | http://sws.geonames.org/2782113/ |
| "soulriddim"^^xsd:string | http://img.jamendo.com/artists/s/soulriddim.jpg | http://www.soulriddim.com | http://sws.geonames.org/3012715/ |
| "Ecart LeSon"^^xsd:string | http://img.jamendo.com/artists/e/ecart.le.son.jpg | http://ecartleson.blogspot.com | http://sws.geonames.org/2884161/ |
| "St Adam"^^xsd:string | http://img.jamendo.com/artists/s/stadam.jpg | http://marc.extra.hu/papmesz.html | http://sws.geonames.org/719819/ |
| "NanowaR"^^xsd:string | http://img.jamendo.com/artists/n/nanowar.jpg | http://www.nanowar.it | http://sws.geonames.org/3169069/ |
| "Noize-R"^^xsd:string | http://img.jamendo.com/artists/n/noize-r.gif | http://perso.orange.fr/noize-r/ | http://sws.geonames.org/2989663/ |
| "SouPeX"^^xsd:string | http://img.jamendo.com/artists/s/soupex.gif | http://www.soupex.c.la | http://sws.geonames.org/3013767/ |
| "Alfonso Tregua"^^xsd:string | http://img.jamendo.com/artists/a/alfonso.tregua.jpg | http://www.myspace.com/alfonsotregua | http://sws.geonames.org/3172391/ |
| "Biluè"^^xsd:string | http://img.jamendo.com/artists/b/bilue.jpg | http://www.bilue.it | http://sws.geonames.org/3182882/ |
| "musicforcap"^^xsd:string | http://img.jamendo.com/artists/m/musicforcap.png | http://musicforcap.free.fr | http://sws.geonames.org/3017382/ |
| "Govannon"^^xsd:string | http://img.jamendo.com/artists/g/govannon.jpg | http://www.govannon.es | http://sws.geonames.org/6355240/ |
| "projet vertigo"^^xsd:string | http://img.jamendo.com/artists/p/projet.vertigo.jpg | http://www.myspace.com/leprojetvertigo | http://sws.geonames.org/3023423/ |
| "Other View"^^xsd:string | http://img.jamendo.com/artists/o/otherview.jpg | http://www.otherviewband.com | http://sws.geonames.org/3173434/ |
| "crashconverter"^^xsd:string | http://img.jamendo.com/artists/c/crashconverter.gif | http://www.crashconverter.com | http://sws.geonames.org/3023423/ |
| "Behind The Screen"^^xsd:string | http://img.jamendo.com/artists/b/behind.the.screen.jpg | http://www.behindthescreen.it/ | http://sws.geonames.org/3182996/ |
| "L.T.D.M.S."^^xsd:string | http://img.jamendo.com/artists/l/l.t.d.m.s.jpg | http://www.ltdms.be | http://sws.geonames.org/2802361/ |
| "Cynical Sense"^^xsd:string | http://img.jamendo.com/artists/c/cynicalsense.jpg | http://www.myspace.com/thelostmindedband | http://sws.geonames.org/2968815/ |
| "alienazione"^^xsd:string | http://img.jamendo.com/artists/a/alienazione.jpg | http://www.myspace.com/alienazione | http://sws.geonames.org/3165241/ |
| "JeF"^^xsd:string | http://img.jamendo.com/artists/j/jef.jpg | http://www.lemondedejef.com | http://sws.geonames.org/3013657/ |
| "jerome sevestre"^^xsd:string | http://img.jamendo.com/artists/j/jerome.sevestre.png | http://jerome.sevestre.free.fr | http://sws.geonames.org/2975246/ |
| "likantropika"^^xsd:string | http://img.jamendo.com/artists/l/likantropika.jpg | http://www.myspace.com/likantropika1 | http://sws.geonames.org/3041565/ |
| "totosh-n-ko"^^xsd:string | http://img.jamendo.com/artists/t/totosh-n-ko.jpg | http://blogs.blogator.net/totosh-n-ko/ | http://sws.geonames.org/2975926/ |
| "Kinédeudé"^^xsd:string | http://img.jamendo.com/artists/k/kinedeude.jpg | http://www.kinedeude.fr.st | http://sws.geonames.org/2968815/ |
| "Allison Crowe"^^xsd:string | http://img.jamendo.com/artists/a/allison.crowe.jpg | http://www.allisoncrowe.com | http://sws.geonames.org/6251999/ |
| "Lo Fi Lazer"^^xsd:string | http://img.jamendo.com/artists/l/lo.fi.lazer.jpg | http://www.looproom.com/lofilazer | http://sws.geonames.org/2661886/ |
| "JAFA"^^xsd:string | http://img.jamendo.com/artists/j/jafa.jpg | http://jafamusic.free.fr | http://sws.geonames.org/3017382/ |
| "Maf"^^xsd:string | http://img.jamendo.com/artists/m/maf.jpg | http://maf464.free.fr | http://sws.geonames.org/3020989/ |
| "Scott Alexander"^^xsd:string | http://img.jamendo.com/artists/s/scott.alexander.jpg | http://scottalexandermusic.com | http://sws.geonames.org/6252001/ |
| "Starlight"^^xsd:string | http://img.jamendo.com/artists/s/starlight.jpg | http://sun-rain-sky-moon-star.blogspot.com/ | http://sws.geonames.org/2967196/ |
| "KEMI"^^xsd:string | http://img.jamendo.com/artists/k/kemi.jpg | http://kemilive.hautetfort.com/ | http://sws.geonames.org/3038111/ |
| "flo"^^xsd:string | http://img.jamendo.com/artists/f/flo.jpg | http://www.myspace.com/flormidable | http://sws.geonames.org/3031359/ |
| "Croxing"^^xsd:string | http://img.jamendo.com/artists/c/croxing.jpg | http://www.croxing.org | http://sws.geonames.org/3164418/ |
| "Sauce"^^xsd:string | http://img.jamendo.com/artists/s/sauce.png | http://www.saucast.net | http://sws.geonames.org/3895114/ |
| "ACH_SO_JA"^^xsd:string | http://img.jamendo.com/artists/a/achsoja.jpg | http://www.oui-oui.org/gaspard/ | http://sws.geonames.org/2984887/ |
| "hOly"^^xsd:string | http://img.jamendo.com/artists/h/holy.png | http://www.andreasbohland.info | http://sws.geonames.org/3209442/ |
| "A.K.1974"^^xsd:string | http://img.jamendo.com/artists/a/a.k.1974.jpg | http://ak1974.blogspot.com/ | http://sws.geonames.org/2510769/ |
| "les papy tabayo"^^xsd:string | http://img.jamendo.com/artists/l/les.papy.tabayo.jpg | http://papytabayo.skyblog.com | http://sws.geonames.org/2997861/ |
| "Gråsuggorna"^^xsd:string | http://img.jamendo.com/artists/g/grasuggorna.jpg | http://grasuggorna.page.tl/ | http://sws.geonames.org/2661886/ |
| "Ren van Hirk"^^xsd:string | http://img.jamendo.com/artists/r/ren.van.hirk.jpg | http://www.kruehner.de | http://sws.geonames.org/2921044/ |
| "H.A.N.D."^^xsd:string | http://img.jamendo.com/artists/h/h.a.n.d.jpg | http://www.myspace.com/handpower | http://sws.geonames.org/3171179/ |
| "Psychocean"^^xsd:string | http://img.jamendo.com/artists/p/psychocean.jpg | file:///home/yves/jamendo/www.psychocean.org | http://sws.geonames.org/2525065/ |
| "Throw panda bat"^^xsd:string | http://img.jamendo.com/artists/t/throwpandabat.jpg | http://throwpandabat.free.fr | http://sws.geonames.org/3019599/ |
| "prinCE niCE"^^xsd:string | http://img.jamendo.com/artists/p/princenice.png | http://myspace.com/princenice | http://sws.geonames.org/2884161/ |
| "Rémi Brassié"^^xsd:string | http://img.jamendo.com/artists/r/remi.brassie.gif | http://sonograf.free.fr | http://sws.geonames.org/2973362/ |
| "TitiMoby"^^xsd:string | http://img.jamendo.com/artists/t/titimoby.jpg | http://www.myspace.com/titimoby | http://sws.geonames.org/2987410/ |
| "Ben Akusto"^^xsd:string | http://img.jamendo.com/artists/b/ben.akusto.png | http://www.confuture.net/akusto | http://sws.geonames.org/660013/ |
| "Sirko Steinhäuser"^^xsd:string | http://img.jamendo.com/artists/s/sirko.steinhauser.png | http://www.kzom.tk | http://sws.geonames.org/2884161/ |
| "Anderson Chokolate"^^xsd:string | http://img.jamendo.com/artists/a/anderson.chokolate.jpg | http://www.chokolate.com.br | http://sws.geonames.org/3469034/ |
| "PJ Skyman"^^xsd:string | http://img.jamendo.com/artists/p/pjskyman.jpg | http://www.pjskyman.fr | http://sws.geonames.org/2997857/ |
| "Doc"^^xsd:string | http://img.jamendo.com/artists/d/doc.jpg | http://www.musictrade.info | http://sws.geonames.org/660013/ |
| "SeMeS"^^xsd:string | http://img.jamendo.com/artists/s/semes.png | http://semes.acoustique.free.fr | http://sws.geonames.org/3034720/ |
| "Life.Renegade."^^xsd:string | http://img.jamendo.com/artists/l/life.renegade.jpg | http://nksinternational.free.fr/Life.Renegadetxt.htm | http://sws.geonames.org/2975246/ |
| "Lil Bro"^^xsd:string | http://img.jamendo.com/artists/l/lil.bro.jpg | http://myspace.com/lil39bro | http://sws.geonames.org/3209442/ |
| "Agent Mortalus"^^xsd:string | http://img.jamendo.com/artists/a/agent.mortalus.jpg | http://www.Delta-Agency.c.la | http://sws.geonames.org/3019599/ |
| "Skampis"^^xsd:string | http://img.jamendo.com/artists/s/skampis.png | http://www.skampis.de | http://sws.geonames.org/3213264/ |
| "Paza Rahm"^^xsd:string | http://img.jamendo.com/artists/p/paza.rahm.gif | http://www.pazarahm.com | http://sws.geonames.org/2661886/ |
| "Arne Pahlke"^^xsd:string | http://img.jamendo.com/artists/a/arne.pahlke.jpg | http://www.windzug.de | http://sws.geonames.org/2911297/ |
| "Godzenbuth"^^xsd:string | http://img.jamendo.com/artists/g/godzenbuth.jpg | http://blog.myspace.com/godzenbuthparhervgodement | http://sws.geonames.org/3013657/ |
| "P.U.T.A."^^xsd:string | http://img.jamendo.com/artists/p/p.u.t.a.jpg | http://eugostodeputa.blogspot.com | http://sws.geonames.org/3469034/ |
| "Sweet Ohm"^^xsd:string | http://img.jamendo.com/artists/s/sweetohm.jpg | http://www.sweetohm.info/ | http://sws.geonames.org/2987410/ |
| "jibHaine"^^xsd:string | http://img.jamendo.com/artists/j/jibhaine.jpg | http://www.jibhaine.fr | http://sws.geonames.org/3012849/ |
| "Jammin-Inc"^^xsd:string | http://img.jamendo.com/artists/j/jammin-inc.jpg | http://www.jammin-inc.de | http://sws.geonames.org/2930484/ |
| "Spiriti Stanchi"^^xsd:string | http://img.jamendo.com/artists/s/spiritistanchi.jpg | http://www.myspace.com/spiritistanchi | http://sws.geonames.org/3173434/ |
| "ECLECTEK"^^xsd:string | http://img.jamendo.com/artists/e/eclectek.jpg | http://www.myspace.com/eghttpmyspacecomeclectek | http://sws.geonames.org/2990129/ |
| "Skating Teenagers"^^xsd:string | http://img.jamendo.com/artists/s/skating.teenagers.jpg | http://www.skatingteenagers.be | http://sws.geonames.org/2802361/ |
| "Plug and play"^^xsd:string | http://img.jamendo.com/artists/p/plugandplay.jpg | http://www.myspace.com/plugandplayband | http://sws.geonames.org/798544/ |
| "Throng"^^xsd:string | http://img.jamendo.com/artists/t/throng.jpg | http://www.throngmusic.com/ | http://sws.geonames.org/6252001/ |
| "Strangers know more"^^xsd:string | http://img.jamendo.com/artists/s/strangers.know.more.jpg | http://www.strangersknowmore.fr | http://sws.geonames.org/2976082/ |
| "Stromble Fix"^^xsd:string | http://img.jamendo.com/artists/s/stromble.fix.jpg | http://www.stromblefix.de | http://sws.geonames.org/3213264/ |
| "oscestra"^^xsd:string | http://img.jamendo.com/artists/o/oscestra.jpg | http://oscestra.net | http://sws.geonames.org/2921044/ |
| "Mister M"^^xsd:string | http://img.jamendo.com/artists/m/mister.m.jpg | http://www.myspace.com/morphoghost | http://sws.geonames.org/2971071/ |
| "Alma Livre "^^xsd:string | http://img.jamendo.com/artists/a/alma.livre.jpg | http://www.bandalmalivre.com.br | http://sws.geonames.org/3469034/ |
| "DevonMiles"^^xsd:string | http://img.jamendo.com/artists/d/devonmiles.jpg | http://www.devonmiles.com | http://sws.geonames.org/2997857/ |
| "halluciphile"^^xsd:string | http://img.jamendo.com/artists/h/halluciphile.gif | http://www.psi-isp.com/spectralucinari | http://sws.geonames.org/6252001/ |
| "Buddy Barabas"^^xsd:string | http://img.jamendo.com/artists/b/buddy.barabas.jpg | http://loudnoise-buddybarabas.blogspot.com/ | http://sws.geonames.org/3209442/ |
| "Bronson Norris"^^xsd:string | http://img.jamendo.com/artists/b/bronson.norris.jpg | http://www.bronson-norris.de | http://sws.geonames.org/2921044/ |
| "tief hinein"^^xsd:string | http://img.jamendo.com/artists/t/tief.hinein.jpg | http://rateaudegazon.skyblog.com | http://sws.geonames.org/3013767/ |
| "Fluydo"^^xsd:string | http://img.jamendo.com/artists/f/fluydo.gif | http://www.fluydo.com | http://sws.geonames.org/3169069/ |
| "cupix"^^xsd:string | http://img.jamendo.com/artists/c/cupix.jpg | http://www.cupix.ch | http://sws.geonames.org/2657895/ |
| "DementialCore"^^xsd:string | http://img.jamendo.com/artists/d/dementialcore.jpg | http://dementialcore.blogspot.com/ | http://sws.geonames.org/3182350/ |
| "SostanzaSicula"^^xsd:string | http://img.jamendo.com/artists/s/sostanzasicula.jpg | http://www.myspace.com/sostanzasicula | http://sws.geonames.org/2523649/ |
| "dj Vortex"^^xsd:string | http://img.jamendo.com/artists/d/dj.vortex.jpg | http://dj-vortex.skyrock.com | http://sws.geonames.org/2802361/ |
| "Art Rose"^^xsd:string | http://img.jamendo.com/artists/a/artrose.jpg | http://www.myspace.com/artrose37 | http://sws.geonames.org/3012804/ |
| "La Vérue"^^xsd:string | http://img.jamendo.com/artists/l/laverue.jpg | http://laverue.free.fr | http://sws.geonames.org/3012715/ |
| "Epsylon"^^xsd:string | http://img.jamendo.com/artists/e/epsylon.jpg | http://www.myspace.com/epsylonfrance | http://sws.geonames.org/3021042/ |
| "DeadSheep"^^xsd:string | http://img.jamendo.com/artists/d/deadsheep.jpg | file:///home/yves/jamendo/www.deadsheep.org | http://sws.geonames.org/3013738/ |
| "Corogopi"^^xsd:string | http://img.jamendo.com/artists/c/corogopi.jpg | http://www.myspace.com/corogopi | http://sws.geonames.org/2968815/ |
| "Max Hilaire"^^xsd:string | http://img.jamendo.com/artists/m/max.hilaire.jpg | http://www.myspace.com/maxhilaire | http://sws.geonames.org/3012804/ |
| "Dark Shrimp"^^xsd:string | http://img.jamendo.com/artists/d/dark.shrimp.jpg | http://www.darkshrimp.com | http://sws.geonames.org/2968815/ |
| "Hevius"^^xsd:string | http://img.jamendo.com/artists/h/hevius.jpg | http://www.myspace.com/hevius | http://sws.geonames.org/2968815/ |
| "Fanfan l'éléphant"^^xsd:string | http://img.jamendo.com/artists/f/fanfan.l.elephant.gif | http://fanfanlelephant.blogspot.com | http://sws.geonames.org/3026644/ |
| "Lemur Concept"^^xsd:string | http://img.jamendo.com/artists/l/lemur.concept.jpg | http://crocmain.info | http://sws.geonames.org/2802361/ |
| "Snetbudy"^^xsd:string | http://img.jamendo.com/artists/s/snetbudy.jpg | http://www.goodyl.com | http://sws.geonames.org/3020989/ |
| "Kaptain Bigg"^^xsd:string | http://img.jamendo.com/artists/k/kaptain.bigg.jpg | http://kaptain.bigg.free.fr | http://sws.geonames.org/3013767/ |
| "karhu"^^xsd:string | http://img.jamendo.com/artists/k/karhu.png | http://karhumusic.org | http://sws.geonames.org/6556330/ |
| "Hubbub Hum"^^xsd:string | http://img.jamendo.com/artists/h/hubbubhum.gif | http://hubbubhum.free.fr | http://sws.geonames.org/3029094/ |
| "Schellingen"^^xsd:string | http://img.jamendo.com/artists/s/schellingen.jpg | http://secrets.hautetfort.com/ | http://sws.geonames.org/2971090/ |
| "Pato Deskontrol"^^xsd:string | http://img.jamendo.com/artists/p/patodeskontrol.jpg | http://www.patodeskontrol.do.nu | http://sws.geonames.org/2510769/ |
| "www.softbuster.de"^^xsd:string | http://img.jamendo.com/artists/w/www.softbuster.de.gif | http://www.softbuster.de | http://sws.geonames.org/2884161/ |
| "Kageybox"^^xsd:string | http://img.jamendo.com/artists/k/kageybox.jpg | http://www.myspace.com/kageybox | http://sws.geonames.org/2995603/ |
| "lucien-jean cannibal"^^xsd:string | http://img.jamendo.com/artists/l/lucienjeancannibal.jpg | http://lookatmekid.org | http://sws.geonames.org/2802361/ |
| "Revolutzzer"^^xsd:string | http://img.jamendo.com/artists/r/revolutzzer.jpg | http://www.myspace.com/revolutzzer | http://sws.geonames.org/2841464/ |
| "Stevo González"^^xsd:string | http://img.jamendo.com/artists/s/stevo.gonzalez.jpg | http://www.bash-productions.de.vu/ | http://sws.geonames.org/6557769/ |
| "THE DUO"^^xsd:string | http://img.jamendo.com/artists/t/theduo.jpg | http://perso.orange.fr/theduo | http://sws.geonames.org/2968815/ |
| "SkirtsUp"^^xsd:string | http://img.jamendo.com/artists/s/skirtsup.png | http://www.skirtsup.de | http://sws.geonames.org/3213264/ |
| "Daniel Cohen"^^xsd:string | http://img.jamendo.com/artists/d/danielcohen.jpg | http://danielcohen.110mb.com | http://sws.geonames.org/3895114/ |
| "Albert B"^^xsd:string | http://img.jamendo.com/artists/a/albert.b.jpg | http://www.myspace.com/asmodeusk | http://sws.geonames.org/3041565/ |
| "convidat"^^xsd:string | http://img.jamendo.com/artists/c/convidat.jpg | http://www.convidat.net | http://sws.geonames.org/2510769/ |
| "MANHE"^^xsd:string | http://img.jamendo.com/artists/m/manhe.jpg | http://www.emauxderoscoff.com | http://sws.geonames.org/3018471/ |
| "Idea Sospesa"^^xsd:string | http://img.jamendo.com/artists/i/idea.sospesa.jpg | http://www.myspace.com/ideasospesa | http://sws.geonames.org/6539668/ |
| "Livio A.Cech"^^xsd:string | http://img.jamendo.com/artists/l/livio.a.cech.jpg | http://ahmad469972.splinder.com | http://sws.geonames.org/3164526/ |
| "Mapi Molina"^^xsd:string | http://img.jamendo.com/artists/m/mapi.molina.jpg | http://www.myspace.com/mapimolinamusic | http://sws.geonames.org/2514254/ |
| "Quik-Dark"^^xsd:string | http://img.jamendo.com/artists/q/quik-dark.jpg | http://www.rarburning.net | http://sws.geonames.org/3020781/ |
| "Philibert Ier"^^xsd:string | http://img.jamendo.com/artists/p/philibert.ier.jpg | http://bracagazus.free.fr/philibertier/ | http://sws.geonames.org/2967196/ |
| "zircon"^^xsd:string | http://img.jamendo.com/artists/z/zircon.jpg | http://www.zirconstudios.com | http://sws.geonames.org/6252001/ |
| "DIY-note"^^xsd:string | http://img.jamendo.com/artists/d/diy-note.jpg | http://diynote.free.fr/ | http://sws.geonames.org/2994111/ |
| "Crido"^^xsd:string | http://img.jamendo.com/artists/c/crido.jpg | http://www.myspace.com/crido | http://sws.geonames.org/3895114/ |
| "Antonio Sacco"^^xsd:string | http://img.jamendo.com/artists/a/antonio.sacco.jpg | http://www.antoniosacco.com | http://sws.geonames.org/3169411/ |
| "rob divide"^^xsd:string | http://img.jamendo.com/artists/r/robdivide.jpg | http://www.myspace.com/robdivide | http://sws.geonames.org/2884161/ |
| "Innvivo"^^xsd:string | http://img.jamendo.com/artists/i/innvivo.jpg | http://bigserver.homedns.org/innvivo | http://sws.geonames.org/3015948/ |
| "Brunette Models"^^xsd:string | http://img.jamendo.com/artists/b/brunette.models.jpg | http://www.anadyomene-records.com | http://sws.geonames.org/146411/ |
| "ARTSomerville"^^xsd:string | http://img.jamendo.com/artists/a/artsomerville.gif | http://www.artsomerville.org/ | http://sws.geonames.org/6252001/ |
| "Mr Muffin"^^xsd:string | http://img.jamendo.com/artists/m/mr.muffin.jpg | http://www.muffin.be | http://sws.geonames.org/2802361/ |
| "Die promovierten Praktikanten"^^xsd:string | http://img.jamendo.com/artists/p/praktikanten.jpg | http://wiki.luftschiff.org/index.php?title=Die_Promovierten_Praktikanten | http://sws.geonames.org/3213264/ |
| "Die blonden Burschen"^^xsd:string | http://img.jamendo.com/artists/b/burschen.jpg | http://wiki.luftschiff.org/index.php?title=Die_Blonden_Burschen | http://sws.geonames.org/3213264/ |
| "Piège à Rêves"^^xsd:string | http://img.jamendo.com/artists/p/piegeareves.jpg | http://www.piegeareves.fr | http://sws.geonames.org/3013736/ |
| "3°2+"^^xsd:string | http://img.jamendo.com/artists/t/trois.degrees.de.plus.jpg | http://3degres2plus.blogspot.com/ | http://sws.geonames.org/3013767/ |
| "Plafagh"^^xsd:string | http://img.jamendo.com/artists/p/plafagh.gif | http://www.myspace.com/plafagh | http://sws.geonames.org/6556330/ |
| "chichabass"^^xsd:string | http://img.jamendo.com/artists/c/chichabass.jpg | http://www.muffin.be | http://sws.geonames.org/2802361/ |
| "Les Tongues Roses"^^xsd:string | http://img.jamendo.com/artists/l/les.tongues.roses.jpg | http://www.lestonguesroses.fr.st | http://sws.geonames.org/3033789/ |
| "Fangbaby"^^xsd:string | http://img.jamendo.com/artists/f/fangbaby.jpg | http://fangbaby.com | http://sws.geonames.org/6252001/ |
| "DOGMA"^^xsd:string | http://img.jamendo.com/artists/d/dogma.jpg | http://www.myspace.com/spaziodogma | http://sws.geonames.org/3164418/ |
| ":tiziano:milani:"^^xsd:string | http://img.jamendo.com/artists/t/tiziano.milani.jpg | http://www.setoladimaiale.net / | http://sws.geonames.org/6458616/ |
| "Born of Sin"^^xsd:string | http://img.jamendo.com/artists/b/bornofsin.jpg | http://www.bornofsin.net | http://sws.geonames.org/2661886/ |
| "Ini"^^xsd:string | http://img.jamendo.com/artists/i/ini.jpg | http://www.orkut.com/Community.aspx?cmm=875755 | http://sws.geonames.org/3469034/ |
| "shirkers"^^xsd:string | http://img.jamendo.com/artists/s/shirkers.jpg | http://www.shirkers.fr | http://sws.geonames.org/2967196/ |
| "m2X"^^xsd:string | http://img.jamendo.com/artists/m/m2x.jpg | http://www.m2x.clan.pro | http://sws.geonames.org/2921044/ |
| "GdP"^^xsd:string | http://img.jamendo.com/artists/g/gdp.jpg | http://www.giulianodipaolo.com | http://sws.geonames.org/3173434/ |
| "Aleph"^^xsd:string | http://img.jamendo.com/artists/a/aleph.jpg | http://labelaubois.free.fr | http://sws.geonames.org/3013657/ |
| "Chrys Fair Light"^^xsd:string | http://img.jamendo.com/artists/c/chrysfairlight.jpg | http://www.chrysfairlight.com | http://sws.geonames.org/3023414/ |
| "Foutrio"^^xsd:string | http://img.jamendo.com/artists/f/foutrio.jpg | http://foutrio.online.fr/ | http://sws.geonames.org/3038049/ |
| "Anti melodic Assault"^^xsd:string | http://img.jamendo.com/artists/a/antimelodicassault.jpg | http://antimelodicassault.blogg.se/ | http://sws.geonames.org/2661886/ |
| "Polo"^^xsd:string | http://img.jamendo.com/artists/p/pol.jpg | http://www.palawet.com | http://sws.geonames.org/3020989/ |
| "BONTEMPS"^^xsd:string | http://img.jamendo.com/artists/b/bontemps.jpg | http://www.meublessurmesure.fr | http://sws.geonames.org/2991879/ |
| "haroldo torrecilha"^^xsd:string | http://img.jamendo.com/artists/h/haroldo.torrecilha.jpg | http://www.haroldotorrecilha.com | http://sws.geonames.org/3469034/ |
| "brokenkites"^^xsd:string | http://img.jamendo.com/artists/b/brokenkites.jpg | http://brokenkites.com | http://sws.geonames.org/3371123/ |
| "starfirefive"^^xsd:string | http://img.jamendo.com/artists/s/starfirefive.jpg | http://starfirefive.com | http://sws.geonames.org/6252001/ |
| "Trent"^^xsd:string | http://img.jamendo.com/artists/t/trent.jpg | http://trent.propagande.org | http://sws.geonames.org/2996663/ |
| "Radiant"^^xsd:string | http://img.jamendo.com/artists/r/radiant.jpg | http://www.radiant-music.de | http://sws.geonames.org/2930484/ |
| "lo"^^xsd:string | http://img.jamendo.com/artists/l/loest.jpg | http://jamendo-lo.blogspot.com/ | http://sws.geonames.org/2984885/ |
| "DJ iPep's"^^xsd:string | http://img.jamendo.com/artists/d/djipeps.jpg | http://ipeps.skyblog.com | http://sws.geonames.org/3019317/ |
| "yabuti"^^xsd:string | http://img.jamendo.com/artists/y/yabuti.jpg | http://www.yabuti.de | http://sws.geonames.org/6556330/ |
| "ZERKA"^^xsd:string | http://img.jamendo.com/artists/m/michael.zerka.jpg | http://www.zerka.net | http://sws.geonames.org/2968815/ |
| "The Snoops"^^xsd:string | http://img.jamendo.com/artists/t/thesnoops.jpg | http://myspace.com/thesnoopslegroupe | http://sws.geonames.org/2997861/ |
| "Andy Blurry"^^xsd:string | http://img.jamendo.com/artists/a/andy.blurry.jpg | http://www.purevolume.com/andyblurry | http://sws.geonames.org/2968815/ |
| "Accomplished Acoustic Alchemy"^^xsd:string | http://img.jamendo.com/artists/a/accomplished.acoustic.alchemy.jpg | http://accomplishedacousticalchemy.free.bg | http://sws.geonames.org/732800/ |
| "Apeface and Crumplezone"^^xsd:string | http://img.jamendo.com/artists/a/apefaceandcrumplezone.jpg | http://www.myspace.com/apefaceandcrumplezone | http://sws.geonames.org/6252001/ |
| "Alternitro"^^xsd:string | http://img.jamendo.com/artists/a/alternitro1.jpg | http://www.myspace.com/alternitro, www.alternitro.new.fr | http://sws.geonames.org/2990129/ |
| "Siegfried Gautier"^^xsd:string | http://img.jamendo.com/artists/s/siegfried.gautier.jpg | http://incaudavenenum.label.free.fr/artistes/siegfriedgautier/ | http://sws.geonames.org/2975246/ |
| "benjamin lalalala"^^xsd:string | http://img.jamendo.com/artists/b/benjamin.lalalala.jpg | http://benjamin.lalalala.ifrance.com/ | http://sws.geonames.org/3017382/ |
| "Jose Mesa Y Los Presentes"^^xsd:string | http://img.jamendo.com/artists/j/jose.mesa.y.los.presentes.jpg | http://www.myspace.com/josemesaylospresentes | http://sws.geonames.org/2511173/ |
| "Turkish Delight The Opera"^^xsd:string | http://img.jamendo.com/artists/t/turkish.delight.the.opera.jpg | http://www.myspace.com/turkishdelighttheopera | http://sws.geonames.org/2661886/ |
| "Desombres"^^xsd:string | http://img.jamendo.com/artists/d/desombres.jpg | http://www.myspace.com/desombres | http://sws.geonames.org/3019316/ |
| "Sweet Cayman"^^xsd:string | http://img.jamendo.com/artists/s/sweet.cayman.jpg | http://sweetcayman.blogspot.com/ | http://sws.geonames.org/6355234/ |
| "The Verandas"^^xsd:string | http://img.jamendo.com/artists/t/the.verandas.jpg | __jamendo-3.rdf#__Description9 | http://sws.geonames.org/3213264/ |
| "BENITO QUINTANA"^^xsd:string | http://img.jamendo.com/artists/b/benito.quintana.jpg | file:///home/yves/jamendo/http;//www.myspace.com/benitotana | http://sws.geonames.org/2510769/ |
| "PIMP"^^xsd:string | http://img.jamendo.com/artists/p/pimp.jpg | http://www.pimp.be.cx | http://sws.geonames.org/2802361/ |
| "Jérémie Petit"^^xsd:string | http://img.jamendo.com/artists/j/jeremie.petit.png | http://myspace.com/jeremiepetit | http://sws.geonames.org/2968815/ |
| "Psydom Recordz"^^xsd:string | http://img.jamendo.com/artists/p/psydom.jpg | file:///home/yves/jamendo/www.psydomtrance.blogspot.com | http://sws.geonames.org/3469034/ |
| "il maniscalco maldestro"^^xsd:string | http://img.jamendo.com/artists/i/ilmaniscalcomaldestro.png | http://www.ilmaniscalcomaldestro.com | http://sws.geonames.org/3170646/ |
| "Brush the Doll"^^xsd:string | http://img.jamendo.com/artists/b/brush.the.doll.jpg | http://www.grupocore.cl/brushthedoll | http://sws.geonames.org/3895114/ |
| "Momentary Prophets"^^xsd:string | http://img.jamendo.com/artists/m/momentary.prophets.gif | http://www.myspace.com/momentaryprophets | http://sws.geonames.org/6252001/ |
| "Bertrand Ollé, Carillonneur de Toulouse"^^xsd:string | http://img.jamendo.com/artists/n/nip.jpg | http://carillon.avenue-du.net | http://sws.geonames.org/3013767/ |
| "SeTh"^^xsd:string | http://img.jamendo.com/artists/s/seth.jpg | http://rageofseth.hautetfort.com | http://sws.geonames.org/3013767/ |
| "JUST A FAKE"^^xsd:string | http://img.jamendo.com/artists/j/just.a.fake.jpg | http://justafake.free.fr | http://sws.geonames.org/2991627/ |
| "Gottschalk"^^xsd:string | http://img.jamendo.com/artists/g/gottschalk.gif | http://nksinternational.free.fr/Gottschalk.html | http://sws.geonames.org/3013767/ |
| "Big Fat Lukum"^^xsd:string | http://img.jamendo.com/artists/b/bigfatlukum.jpg | http://www.big-fat-lukum.be | http://sws.geonames.org/2802361/ |
| "sChens Sampler"^^xsd:string | http://img.jamendo.com/artists/s/schens.sampler.jpg | http://www.bobblespace.de/sampler | http://sws.geonames.org/6556330/ |
| "Icarus Wings"^^xsd:string | http://img.jamendo.com/artists/i/icaruswings.jpg | http://www.myspace.com/theicaruswings | http://sws.geonames.org/3171364/ |
| "Tycho Brahé"^^xsd:string | http://img.jamendo.com/artists/t/tycho.brahe.jpg | http://tycho.brahe.music.free.fr/ | http://sws.geonames.org/2994111/ |
| "The James Quintet"^^xsd:string | http://img.jamendo.com/artists/t/the.james.quintet.jpg | http://www.jamendo.com/en/artist/the.james.quintet | http://sws.geonames.org/6252001/ |
| "LSP"^^xsd:string | http://img.jamendo.com/artists/l/lsp.jpg | http://www.lesiffletpublic.it | http://sws.geonames.org/3164526/ |
| "GenteStranaPosse"^^xsd:string | http://img.jamendo.com/artists/g/gentestranaposse.gif | http://www.gentestranaposse.net | http://sws.geonames.org/2523918/ |
| "Sascha Mersch"^^xsd:string | http://img.jamendo.com/artists/s/sascha.mersch.jpg | http://www.sascha-mersch.de | http://sws.geonames.org/2884161/ |
| "Blue Haired Girl"^^xsd:string | http://img.jamendo.com/artists/b/blue.haired.girl.jpg | http://blue.haired.girl.free.fr/ | http://sws.geonames.org/2994111/ |
| "Jai Colore Ma Tristesse"^^xsd:string | http://img.jamendo.com/artists/j/jai.colore.ma.tristesse.jpg | http://www.myspace.com/jaicolormatristesse | http://sws.geonames.org/3996063/ |
| "Teilzeitdenker"^^xsd:string | http://img.jamendo.com/artists/t/teilzeitdenker.jpg | http://www.teilzeitdenker.de | http://sws.geonames.org/6556330/ |
| "DIENLOX VEIN"^^xsd:string | http://img.jamendo.com/artists/d/dog.soldiers.gif | http://dienloxvein.free.fr | http://sws.geonames.org/2968815/ |
| "el_vis"^^xsd:string | http://img.jamendo.com/artists/e/el.vis.jpg | http://www.elmania.prv.pl | http://sws.geonames.org/798544/ |
| "Gryfonheart"^^xsd:string | http://img.jamendo.com/artists/g/gryfonheart.jpg | http://gryfonhearock.blogspot.com | http://sws.geonames.org/6537067/ |
| "Orhand"^^xsd:string | http://img.jamendo.com/artists/o/orhand.jpg | http://www.myspace.com/orhand | http://sws.geonames.org/2969280/ |
| "Night Talers"^^xsd:string | http://img.jamendo.com/artists/n/night.talers.jpg | http://nighttalers.ifrance.com | http://sws.geonames.org/2975249/ |
| "Guilherme Primata"^^xsd:string | http://img.jamendo.com/artists/p/primata.jpg | http://www.myspace.com/projetoprimata | http://sws.geonames.org/3469034/ |
| "lucabombatomica"^^xsd:string | http://img.jamendo.com/artists/l/lucabombatomica.jpg | http://lucabombatomica.blogspot.com | http://sws.geonames.org/3171456/ |
| "PUCH"^^xsd:string | http://img.jamendo.com/artists/p/puch1.jpg | http://www.puch.net.pl | http://sws.geonames.org/798544/ |
| "Plaster Caster"^^xsd:string | http://img.jamendo.com/artists/p/plastercaster.jpg | http://www.theplastercastershow.com | http://sws.geonames.org/3181927/ |
| "ALEXANDRE CHALON"^^xsd:string | http://img.jamendo.com/artists/a/alexandre.chalon.jpg | http://web.mac.com/alexandre.chalon | http://sws.geonames.org/3012715/ |
| "Cool Cavemen"^^xsd:string | http://img.jamendo.com/artists/c/cool.cavemen.jpg | http://www.coolcavemen.com | http://sws.geonames.org/2990129/ |
| "mid from pils"^^xsd:string | http://img.jamendo.com/artists/m/mid.from.pils.jpg | http://www.myspace.com/midfrompils | http://sws.geonames.org/3012804/ |
| "no ease"^^xsd:string | http://img.jamendo.com/artists/n/no.ease.jpg | http://aucun | http://sws.geonames.org/2988430/ |
| "FACE MY RAGE"^^xsd:string | http://img.jamendo.com/artists/f/face.my.rage.jpg | http://industries.trexsound.com/facemyrage.php | http://sws.geonames.org/3017382/ |
| "mkbf"^^xsd:string | http://img.jamendo.com/artists/m/mkbf.gif | http://makumba.neuf.fr/ | http://sws.geonames.org/3031359/ |
| "AMON"^^xsd:string | http://img.jamendo.com/artists/a/amon.jpg | http://www.myspace.com/amon001 | http://sws.geonames.org/2968815/ |
| "french collective"^^xsd:string | http://img.jamendo.com/artists/f/french.collective.jpg | http://collective.moonove.com/ | http://sws.geonames.org/2968815/ |
| "Piso"^^xsd:string | http://img.jamendo.com/artists/p/piso.jpg | http://www.myspace.com/mypiso | http://sws.geonames.org/3182163/ |
| "(((Niko)))"^^xsd:string | http://img.jamendo.com/artists/i/ilniko.jpg | http://rivistabbcc.blogspot.com | http://sws.geonames.org/3172391/ |
| "0x17"^^xsd:string | http://img.jamendo.com/artists/0/0x17.jpg | http://myspace.com/0x17 | http://sws.geonames.org/2930484/ |
| "Iur Snitram"^^xsd:string | http://img.jamendo.com/artists/i/iursnitram.jpg | http://is.no.sapo.pt/ | http://sws.geonames.org/2738782/ |
| "Gen-X"^^xsd:string | http://img.jamendo.com/artists/g/genx.gif | http://www.onemix.de | http://sws.geonames.org/3213264/ |
| "Bruno de Pasquale"^^xsd:string | http://img.jamendo.com/artists/b/bruno.de.pasquale.jpg | http://www.laboutiqueauxchansons.blogspot.com | http://sws.geonames.org/3038049/ |
| "Dariusz Makowski"^^xsd:string | http://img.jamendo.com/artists/d/dariusz.makowski.jpg | http://smok-osx.jogger.pl | http://sws.geonames.org/798544/ |
| "Pedro Collares"^^xsd:string | http://img.jamendo.com/artists/p/pedro.collares.gif | http://www.healingsound.multiply.com | http://sws.geonames.org/3469034/ |
| "Sikior"^^xsd:string | http://img.jamendo.com/artists/s/sikior.jpg | http://sikior.atspace.com | http://sws.geonames.org/3932488/ |
| "Louis Tanguay"^^xsd:string | http://img.jamendo.com/artists/l/louis.tanguay.jpg | http://marsey.org/louis/ | http://sws.geonames.org/6251999/ |
| "PIT"^^xsd:string | http://img.jamendo.com/artists/p/pit.jpg | http://auloinlesoleil.free.fr | http://sws.geonames.org/3023423/ |
| "V E R R O N"^^xsd:string | http://img.jamendo.com/artists/v/verron.jpg | http://www.verron-musique.fr | http://sws.geonames.org/2968815/ |
| "Appleseed"^^xsd:string | http://img.jamendo.com/artists/a/appleseed.jpg | http://www.appleseed.pl / | http://sws.geonames.org/798544/ |
| "Psychonada"^^xsd:string | http://img.jamendo.com/artists/p/psychonada.jpg | http://incaudavenenum.label.free.fr/artistes/psychonada | http://sws.geonames.org/2975246/ |
| "Ivan Suardi"^^xsd:string | http://img.jamendo.com/artists/t/trendaudio.gif | http://www.trendaudio.com | http://sws.geonames.org/3182163/ |
| "marcoski"^^xsd:string | http://img.jamendo.com/artists/m/marcoski.jpg | http://marcoski.sottosuono.info/blog | http://sws.geonames.org/3181927/ |
| "Liquid Frame"^^xsd:string | http://img.jamendo.com/artists/l/liquid.frame.jpg | http://www.liquidworld.net | http://sws.geonames.org/3177837/ |
| "Guardiani Dell'Albero"^^xsd:string | http://img.jamendo.com/artists/g/guardiani.dell.albero.jpg | http://www.guardianidellalbero.it | http://sws.geonames.org/3164600/ |
| "Rafael Lenz"^^xsd:string | http://img.jamendo.com/artists/r/rafael.lenz.jpg | http://www.myspace.com/rafaellenz | http://sws.geonames.org/3169069/ |
| "BINETTI"^^xsd:string | http://img.jamendo.com/artists/b/binetti.jpg | http://www.myspace.com/jcbinetti | http://sws.geonames.org/2884161/ |
| "Crème Brûlée"^^xsd:string | http://img.jamendo.com/artists/c/cremebrulee.jpg | http://incaudavenenum.label.free.fr/artistes/cremebrulee/ | http://sws.geonames.org/2968815/ |
| "Conjugate Metamorphosis"^^xsd:string | http://img.jamendo.com/artists/c/conjugatemetamorphosis.jpg | http://www.myspace.com/conjugatemetamorphosis | http://sws.geonames.org/2963597/ |
| "nEUROLAND™"^^xsd:string | http://img.jamendo.com/artists/n/neuroland.jpg | http://agenceneuroland.lalibreblogs.be/ | http://sws.geonames.org/2802361/ |
| "the cousins"^^xsd:string | http://img.jamendo.com/artists/t/the.cousins.jpg | http://www.myspace.com/thecousinstapesounds | http://sws.geonames.org/2997861/ |
| "Nilo"^^xsd:string | http://img.jamendo.com/artists/n/nilo.sciarrone.jpg | http://www.nilowebsite.it | http://sws.geonames.org/3172391/ |
| "magiKwave"^^xsd:string | http://img.jamendo.com/artists/m/magikwave.jpg | http://magikwave.blogspot.com/ | http://sws.geonames.org/3031359/ |
| "Gawin"^^xsd:string | http://img.jamendo.com/artists/g/gawin.jpg | http://www.gawinmusic.com | http://sws.geonames.org/2997861/ |
| "General Purpose"^^xsd:string | http://img.jamendo.com/artists/g/general-purpose.jpg | http://www.wat.tv/generalpurpose | http://sws.geonames.org/2968815/ |
| "expresso 411"^^xsd:string | http://img.jamendo.com/artists/e/expresso4.11.jpg | http://www.myspace.com/expresso411 | http://sws.geonames.org/3469034/ |
| "Prodak"^^xsd:string | http://img.jamendo.com/artists/p/prodak.jpg | http://www.e-djs.gr/ws/bands/15/index.php | http://sws.geonames.org/390903/ |
| "Svald"^^xsd:string | http://img.jamendo.com/artists/s/svald.jpg | http://www.svald.fr | http://sws.geonames.org/2990129/ |
| "2MaTao"^^xsd:string | http://img.jamendo.com/artists/2/2matao.jpg | http://www.2MaTao.za.pl | http://sws.geonames.org/798544/ |
| "ketamas"^^xsd:string | http://img.jamendo.com/artists/k/ketamas.jpg | http://www.myspace.com/ketamas | http://sws.geonames.org/3173434/ |
| "Paolo e chiarO"^^xsd:string | http://img.jamendo.com/artists/p/paoloechiaro.png | http://www.paoloechiaro.net | http://sws.geonames.org/3175395/ |
| "Ardecan"^^xsd:string | http://img.jamendo.com/artists/a/ardecan.jpg | file:///home/yves/jamendo/ardecan.magicrpm.com | http://sws.geonames.org/2984986/ |
| "eL yUyO"^^xsd:string | http://img.jamendo.com/artists/e/el.yuyo.jpg | http://www.yuyo.tk | http://sws.geonames.org/2510769/ |
| "cyberdread"^^xsd:string | http://img.jamendo.com/artists/c/cyberdread.png | http://www.cyberdread.it | http://sws.geonames.org/3165523/ |
| "Cyril Pereira"^^xsd:string | http://img.jamendo.com/artists/c/cyril.pereira.jpg | http://medcg.free.fr | http://sws.geonames.org/2975246/ |
| "Lava303"^^xsd:string | http://img.jamendo.com/artists/l/lava303.gif | http://www.acidrocknroll.org | http://sws.geonames.org/6557769/ |
| "Stryknine"^^xsd:string | http://img.jamendo.com/artists/s/stryknine.jpg | http://stryknine.blogspot.com/ | http://sws.geonames.org/3015948/ |
| "SRX"^^xsd:string | http://img.jamendo.com/artists/s/srx.jpg | http://srx-srx.blogspot.com | http://sws.geonames.org/2510769/ |
| "otepsia"^^xsd:string | http://img.jamendo.com/artists/o/otepsia.jpg | http://otepsia.free.fr | http://sws.geonames.org/1699807/ |
| "Natural Sheen"^^xsd:string | http://img.jamendo.com/artists/n/naturalsheen.jpg | http://naturalsheen.free.fr | http://sws.geonames.org/2990129/ |
| "The Gay Romeos"^^xsd:string | http://img.jamendo.com/artists/t/the.gay.romeos.png | http://www.windzug.de | http://sws.geonames.org/2911297/ |
| "Chris@lpha"^^xsd:string | http://img.jamendo.com/artists/c/chris.lpha.jpg | http://aczland.spaces.live.com/ | http://sws.geonames.org/3013757/ |
| "Fabio Basile"^^xsd:string | http://img.jamendo.com/artists/f/fabio.basile.jpg | http://myspace.com/fabiobasile | http://sws.geonames.org/3175395/ |
| "Lover303"^^xsd:string | http://img.jamendo.com/artists/l/lover303.jpg | http://www.acidrocknroll.org | http://sws.geonames.org/6557769/ |
| "Francesco Lettera"^^xsd:string | http://img.jamendo.com/artists/f/francesco.lettera.jpg | http://www.cacofonie.it | http://sws.geonames.org/3175395/ |
| "George Mileson"^^xsd:string | http://img.jamendo.com/artists/g/georgemileson.jpg | http://www.georgemileson.com | http://sws.geonames.org/2510769/ |
| "FKPLUS2CLASSE"^^xsd:string | http://img.jamendo.com/artists/f/fkplus2classe.jpg | http://www.myspace.com/fkplus2classe | http://sws.geonames.org/3019599/ |
| "Heridas de K"^^xsd:string | http://img.jamendo.com/artists/h/heridas.de.k.jpg | http://www.bajo-cero.org | http://sws.geonames.org/2510769/ |
| "Asamblea"^^xsd:string | http://img.jamendo.com/artists/a/asamblea.jpg | http://www.bajo-cero.org | http://sws.geonames.org/2510769/ |
| "Hikikomori"^^xsd:string | http://img.jamendo.com/artists/h/hikikomori.jpg | http://myspace.com/hikiko | http://sws.geonames.org/2510769/ |
| "Reflector (Madrid)"^^xsd:string | http://img.jamendo.com/artists/r/reflector.madrid.png | http://www.bajo-cero.org | http://sws.geonames.org/2510769/ |
| "Apisonadora (grind)"^^xsd:string | http://img.jamendo.com/artists/a/apisonadora.grind.jpg | http://www.bajo-cero.org | http://sws.geonames.org/2510769/ |
| "Lágrimas en la Lluvia"^^xsd:string | http://img.jamendo.com/artists/l/lagrimas.en.la.lluvia1.jpg | http://www.bajo-cero.org | http://sws.geonames.org/2510769/ |
| "LoltH"^^xsd:string | http://img.jamendo.com/artists/l/lolth.jpg | http://www.myspace.com/lolth2 | http://sws.geonames.org/3175395/ |
| "Le Collectif Slappytoyable"^^xsd:string | http://img.jamendo.com/artists/c/collectif.slappytoyable.jpg | http://tabula.r.free.fr/instant%20experimental/instantExperimental.htm | http://sws.geonames.org/2990129/ |
| "Cap'tain Phil"^^xsd:string | http://img.jamendo.com/artists/c/captain.phil.jpg | http://captainphil.blogspot.com/ | http://sws.geonames.org/3016670/ |
| "YinD"^^xsd:string | http://img.jamendo.com/artists/y/yind.jpg | http://www.myspace.com/yomisnotdead | http://sws.geonames.org/3012715/ |
| "fine before you came"^^xsd:string | http://img.jamendo.com/artists/f/finebeforeyoucame.jpg | http://www.myspace.com/finebeforeyoucamerock | http://sws.geonames.org/3173434/ |
| "Pacoalvarez"^^xsd:string | http://img.jamendo.com/artists/p/pacoalvarez.jpg | http://www.dharmasound.com/biography.asp?id=14 | http://sws.geonames.org/3175395/ |
| "Meridiano Zero"^^xsd:string | http://img.jamendo.com/artists/m/meridianozero.jpg | http://www.dharmasound.com/biography.asp?id=8 | http://sws.geonames.org/3175395/ |
| "DJ SPHINX"^^xsd:string | http://img.jamendo.com/artists/d/dj-sphinx.jpg | http://www.djsphinx.skyblog.com | http://sws.geonames.org/2997288/ |
| "Silent Rebels"^^xsd:string | http://img.jamendo.com/artists/s/silent.rebels.png | http://www.silentrebels.com | http://sws.geonames.org/2997861/ |
| "dona boar"^^xsd:string | http://img.jamendo.com/artists/d/dona.boar.jpg | http://www.davidtmx.com | http://sws.geonames.org/2991627/ |
| "Convey"^^xsd:string | http://img.jamendo.com/artists/c/convey.jpg | http://conveymusic.com | http://sws.geonames.org/6252001/ |
| "Killing Jazz"^^xsd:string | http://img.jamendo.com/artists/k/killing.jazz.jpg | http://www.killingjazz.com | http://sws.geonames.org/2510769/ |
| "Brain Control"^^xsd:string | http://img.jamendo.com/artists/b/brain.control.jpg | http://www.enrico-carmenia.de | http://sws.geonames.org/2921044/ |
| "SPLaTeH'"^^xsd:string | http://img.jamendo.com/artists/s/splateh.jpg | http://splateh.free.fr/zik/ | http://sws.geonames.org/3019317/ |
| "grain:gnome"^^xsd:string | http://img.jamendo.com/artists/g/graingnome.jpg | http://www.dharmasound.com/biography.asp?id=35 | http://sws.geonames.org/3169069/ |
| "Kursed"^^xsd:string | http://img.jamendo.com/artists/k/kursed.jpg | http://kursed3.free.fr | http://sws.geonames.org/3013500/ |
| "TriFace"^^xsd:string | http://img.jamendo.com/artists/t/triface.jpg | http://www.triface.net/ | http://sws.geonames.org/2991627/ |
| "Nosphares"^^xsd:string | http://img.jamendo.com/artists/n/nosphares.jpg | http://nosphares.chez.tiscali.fr | http://sws.geonames.org/2991627/ |
| "ENDORPHINE"^^xsd:string | http://img.jamendo.com/artists/e/endorphine_(Jamendo).gif | http://www.endorphine.prv.pl | http://sws.geonames.org/798544/ |
| "COLECTRO"^^xsd:string | http://img.jamendo.com/artists/c/colectro.jpg | http://www.colectro.blogspot.com | http://sws.geonames.org/3686110/ |
| "Freshhh a.k.a. Padre P-Yo"^^xsd:string | http://img.jamendo.com/artists/p/padrepyo.jpg | http://www.myspace.com/padrepyamelo | http://sws.geonames.org/3175057/ |
| "Tedjosya Fila Kazi"^^xsd:string | http://img.jamendo.com/artists/t/tedjosya.fila.kazi.jpg | http://tedjosya.com | http://sws.geonames.org/2975248/ |
| "Kawa Ijen"^^xsd:string | http://img.jamendo.com/artists/k/kawa.ijen.jpg | http://www.termites-music.com/prod/kawaijen.html | http://sws.geonames.org/2968815/ |
| "TreeMouth"^^xsd:string | http://img.jamendo.com/artists/t/treemouth.png | http://www.treemouth.com | http://sws.geonames.org/2975249/ |
| "Zozzoni De Noantri"^^xsd:string | http://img.jamendo.com/artists/z/zozzoni.jpg | http://www.myspace.com/zozzoni | http://sws.geonames.org/3175057/ |
| "dj malackk"^^xsd:string | http://img.jamendo.com/artists/d/dj.malackk.jpg | http://www.dj-malackk.com | http://sws.geonames.org/3031359/ |
| "mortad hell"^^xsd:string | http://img.jamendo.com/artists/m/mortad.hell.jpg | http://www.davidtmx.com | http://sws.geonames.org/2994111/ |
| "NISULA"^^xsd:string | http://img.jamendo.com/artists/n/nisula.jpg | http://www.myspace.com/nisula75 | http://sws.geonames.org/3013657/ |
| "Gruenanlage.com"^^xsd:string | http://img.jamendo.com/artists/g/gruenanlage.jpg | http://www.gruenanlage.com | http://sws.geonames.org/2884161/ |
| "Lord Henry Wotton"^^xsd:string | http://img.jamendo.com/artists/l/lord.henry.wotton.jpg | http://wottonhenrylord.blogspot.com | http://sws.geonames.org/3209442/ |
| "DANIEL DUROY"^^xsd:string | http://img.jamendo.com/artists/d/daniel.duroy1.jpg | http://daniel.duroy@hotmail.fr | http://sws.geonames.org/3018471/ |
| "Annie"^^xsd:string | http://img.jamendo.com/artists/a/annie.jpg | http://polentarecords.blogspot.com | http://sws.geonames.org/3034720/ |
| "MAD73751"^^xsd:string | http://img.jamendo.com/artists/m/mad73751.jpg | http://mad73751.blogspot.com/ | http://sws.geonames.org/2968815/ |
| "Circuit Noir"^^xsd:string | http://img.jamendo.com/artists/c/circuit.noir.png | http://www.virb.com/circuitnoir | http://sws.geonames.org/2884161/ |
| "Michele Nucciotti"^^xsd:string | http://img.jamendo.com/artists/m/michele.nucciotti.jpg | http://www.myspace.com/michelenucciotti | http://sws.geonames.org/3169069/ |
| "AirBorne"^^xsd:string | http://img.jamendo.com/artists/a/airborne.gif | http://www.myspace.com/rborne | http://sws.geonames.org/3015948/ |
| "STaN le colporteur"^^xsd:string | http://img.jamendo.com/artists/s/stan.le.colporteur.gif | http://www.artenberg.info | http://sws.geonames.org/2997523/ |
| "ALAIN GAUDIN"^^xsd:string | http://img.jamendo.com/artists/a/alain.gaudin.jpg | http://agliu61prty45bt.blog.fr/ | http://sws.geonames.org/2969280/ |
| "ARONDEALE 2"^^xsd:string | http://img.jamendo.com/artists/a/arondeale.jpg | http://www.wat.tv/arondeale | http://sws.geonames.org/2987410/ |
| "dj rush"^^xsd:string | http://img.jamendo.com/artists/d/dj.rush.jpg | http://www.myspace.com/djrushoreillesdependantes | http://sws.geonames.org/3012849/ |
| "Les Vieilles Salopes"^^xsd:string | http://img.jamendo.com/artists/l/les.vieilles.salopes.jpg | http://lachips.free.fr/ | http://sws.geonames.org/2968815/ |
| "mixher"^^xsd:string | http://img.jamendo.com/artists/m/mixher.jpg | http://www.mixher.fr | http://sws.geonames.org/2968815/ |
| "fresh body shop"^^xsd:string | http://img.jamendo.com/artists/f/freshbodyshop.jpg | http://www.myspace.com/133439871 | http://sws.geonames.org/2997861/ |
| "jpfmband"^^xsd:string | http://img.jamendo.com/artists/j/jpfmband.jpg | http://www.jpfmband.com | http://sws.geonames.org/3013657/ |
| "GIANT SQUID MARCH ON WASHINGTON"^^xsd:string | http://img.jamendo.com/artists/g/giantsquidmarchonwashington.jpg | http://www.myspace.com/giantsquidmarchonwashington | http://sws.geonames.org/6251999/ |
| "mr.twiggles"^^xsd:string | http://img.jamendo.com/artists/m/mr.twiggles.jpg | http://www.mrtwiggles.de | http://sws.geonames.org/6556330/ |
| "Der tollwütige Kasper"^^xsd:string | http://img.jamendo.com/artists/d/der.tollwuetige.kasper.jpg | http://www.windzug.de | http://sws.geonames.org/2911297/ |
| "el cantaitor"^^xsd:string | http://img.jamendo.com/artists/e/elcantaitor.jpg | http://elcantaitor.blogspot.com | http://sws.geonames.org/3127460/ |
| "Aide Auditive"^^xsd:string | http://img.jamendo.com/artists/a/aideauditive.png | http://aide.auditive.free.fr | http://sws.geonames.org/3031359/ |
| "One Night Band"^^xsd:string | http://img.jamendo.com/artists/o/onenightband.png | http://www.onenightweb.com | http://sws.geonames.org/3171057/ |
| "general fuzz"^^xsd:string | http://img.jamendo.com/artists/g/generalfuzz.jpg | http://www.generalfuzz.net | http://sws.geonames.org/6252001/ |
| "smoo"^^xsd:string | http://img.jamendo.com/artists/s/smoo.jpg | http://smoo-music.blogspot.com/ | http://sws.geonames.org/719819/ |
| "Mad in H"^^xsd:string | http://img.jamendo.com/artists/m/madinh.jpg | http://www.madinh.com | http://sws.geonames.org/2994111/ |
| "Tyr"^^xsd:string | http://img.jamendo.com/artists/t/tyr1.jpg | http://tyr-zic.blogspot.com/ | http://sws.geonames.org/2975246/ |
| "Dirty Fondation"^^xsd:string | http://img.jamendo.com/artists/d/dirty.fondation.jpg | http://polentarecords.blogspot.com/ | http://sws.geonames.org/3034720/ |
| "haïku"^^xsd:string | http://img.jamendo.com/artists/h/haiku.jpg | http://virb.com/greenriver | http://sws.geonames.org/3013500/ |
| "keus"^^xsd:string | http://img.jamendo.com/artists/k/keus.jpg | http://keus.musicblog.fr | http://sws.geonames.org/2968815/ |
| "Rams"^^xsd:string | http://img.jamendo.com/artists/r/rams.jpg | http://en construction/ | http://sws.geonames.org/3016670/ |
| "gilx p"^^xsd:string | http://img.jamendo.com/artists/g/gilx.p.jpg | http://gilxp.musique.com/home/ | http://sws.geonames.org/2997861/ |
| "Ramp"^^xsd:string | http://img.jamendo.com/artists/r/ramp.jpg | http://www.ramp-music.net | http://sws.geonames.org/6251999/ |
| "DjFastmove"^^xsd:string | http://img.jamendo.com/artists/d/djfastmove.jpg | http://www.djfastmove.com | http://sws.geonames.org/2270984/ |
| "Babiroussa"^^xsd:string | http://img.jamendo.com/artists/b/babiroussa.jpg | http://www.babiroussa.net | http://sws.geonames.org/2997861/ |
| "HOTEL 7"^^xsd:string | http://img.jamendo.com/artists/h/hotel-7.jpg | http://www.myspace.com/hotelseven | http://sws.geonames.org/3173434/ |
| "zmoc"^^xsd:string | http://img.jamendo.com/artists/z/zmoc.jpg | http://zmoc.blogspot.com/ | http://sws.geonames.org/3038049/ |
| "delgarma"^^xsd:string | http://img.jamendo.com/artists/d/delgarma.jpg | http://delgarma.free.fr | http://sws.geonames.org/2987410/ |
| "DJ GregDP"^^xsd:string | http://img.jamendo.com/artists/d/djgregdp.jpg | http://djgregdp.hostarea.org | http://sws.geonames.org/2802361/ |
| "Dj Tubi"^^xsd:string | http://img.jamendo.com/artists/d/dj.tubi.jpg | http://www.xdjtubix.yoyo.pl | http://sws.geonames.org/798544/ |
| "Voiker Fullcarp"^^xsd:string | http://img.jamendo.com/artists/v/voiker.fullcarp.jpg | http://www.wiwilbaryu.blogspot.com | http://sws.geonames.org/2990129/ |
| "John Lee Jones"^^xsd:string | http://img.jamendo.com/artists/j/john-lee-jones.jpg | http://www.myspace.com/dbmanb | http://sws.geonames.org/2967196/ |
| "PATROUILLE"^^xsd:string | http://img.jamendo.com/artists/p/patrouille.jpg | http://www.patrouille.de | http://sws.geonames.org/2884161/ |
| "nicozik"^^xsd:string | http://img.jamendo.com/artists/n/nicozik.jpg | http://nicozik.hautetfort.com/ | http://sws.geonames.org/3012849/ |
| "Dan Masquelier"^^xsd:string | http://img.jamendo.com/artists/d/dan.masquelier.jpg | http://dmasq.blogspot.com | http://sws.geonames.org/6252001/ |
| "PieRreF"^^xsd:string | http://img.jamendo.com/artists/p/pierref.jpg | http://www.last.fm/music/pierref | http://sws.geonames.org/3169069/ |
| "Rudmain"^^xsd:string | http://img.jamendo.com/artists/r/rudmain.jpg | http://www.rudmain.org | http://sws.geonames.org/798544/ |
| "Ward Bones"^^xsd:string | http://img.jamendo.com/artists/w/ward.bones.jpg | http://members.cox.net/betamax | http://sws.geonames.org/6252001/ |
| "Space Child 7th"^^xsd:string | http://img.jamendo.com/artists/s/space.child.7th.jpg | http://no site at this time!/ | http://sws.geonames.org/3031359/ |
| "Moabi"^^xsd:string | http://img.jamendo.com/artists/m/moabi.jpg | http://www.myspace.com/moabi | http://sws.geonames.org/3013767/ |
| "Turmoil"^^xsd:string | http://img.jamendo.com/artists/t/turmoil.jpg | http://turmoil.4t.com | http://sws.geonames.org/6252001/ |
| "Rose Red"^^xsd:string | http://img.jamendo.com/artists/r/rose.red.jpg | http://amdusciasrecords.4t.com | http://sws.geonames.org/6252001/ |
| "Terry Way & Désespérément optimiste"^^xsd:string | http://img.jamendo.com/artists/t/terry.way.desesperement.optimiste.jpg | http://www.terryway.be | http://sws.geonames.org/2802361/ |
| "Professor TooMuch"^^xsd:string | http://img.jamendo.com/artists/p/professor.toomuch.jpg | http://www.webalice.it/antolo66 | http://sws.geonames.org/2523918/ |
| "C¤L¤U¤S¤T¤E¤R"^^xsd:string | http://img.jamendo.com/artists/c/c.l.u.s.t.e.r.jpg | http://www.jamendo.com/fr/artist/c.l.u.s.t.e.r/ | http://sws.geonames.org/2994111/ |
| "The Home Phonema"^^xsd:string | http://img.jamendo.com/artists/t/the.home.phonema.jpg | http://www.thehomephonema.tk | http://sws.geonames.org/2510769/ |
| "Dzynek"^^xsd:string | http://img.jamendo.com/artists/d/dzynek.jpg | http://www.e-success.pl/dj_dzynek | http://sws.geonames.org/798544/ |
| "XTN"^^xsd:string | http://img.jamendo.com/artists/x/xtn.jpg | http://pastisset.blogspot.com/ | http://sws.geonames.org/2510769/ |
| "FAST4WARD"^^xsd:string | http://img.jamendo.com/artists/f/fast4ward.jpg | http://pastisset.blogspot.com/ | http://sws.geonames.org/2510769/ |
| "Psi Active"^^xsd:string | http://img.jamendo.com/artists/p/psi-active.jpg | http://twistedsessions.com/psi_active | http://sws.geonames.org/2017370/ |
| "EMP"^^xsd:string | http://img.jamendo.com/artists/e/emp.png | http://emp.buzzworks.com | http://sws.geonames.org/2268404/ |
| "* Q u i r y *"^^xsd:string | http://img.jamendo.com/artists/q/quiry.jpg | http://quirymusic.canalblog.com/ | http://sws.geonames.org/2968815/ |
| "Kelly Allyn"^^xsd:string | http://img.jamendo.com/artists/k/kelly.allyn.jpg | http://www.KellyAllyn.com | http://sws.geonames.org/6252001/ |
| "Igon Strane"^^xsd:string | http://img.jamendo.com/artists/i/igonstrane.jpg | http://igonstrane.free.fr | http://sws.geonames.org/2997870/ |
| "AWAKEN"^^xsd:string | http://img.jamendo.com/artists/a/awaken.jpg | http://www.awaken.be | http://sws.geonames.org/2802361/ |
| "DROP ALIVE"^^xsd:string | http://img.jamendo.com/artists/d/dropalive.jpg | http://www.dropalive.com | http://sws.geonames.org/3175395/ |
| "NEBEL"^^xsd:string | http://img.jamendo.com/artists/n/nebel1.jpg | http://www.myspace.com/nebelindus | http://sws.geonames.org/2984986/ |
| "moop"^^xsd:string | http://img.jamendo.com/artists/m/moop.jpg | http://www.myspace.com/moopalors | http://sws.geonames.org/2987410/ |
| "Nikita"^^xsd:string | http://img.jamendo.com/artists/n/nikita.jpg | http://www.myspace.com/nikitalegroupe | http://sws.geonames.org/2975246/ |
| "docweaselband"^^xsd:string | http://img.jamendo.com/artists/d/docweaselband.png | http://docweaselband.com | http://sws.geonames.org/6252001/ |
| "Moe2Smoke"^^xsd:string | http://img.jamendo.com/artists/m/moe2smoke.jpg | http://www.myspace.com/Moe2Smoke | http://sws.geonames.org/6252001/ |
| "Dj Ma3x"^^xsd:string | http://img.jamendo.com/artists/d/dj.ma3x.gif | http://www.myspace.com/ma3xhunter | http://sws.geonames.org/2975248/ |
| "Tony HW"^^xsd:string | http://img.jamendo.com/artists/t/tonyhw.jpg | http://www.myspace.com/sampleuretsansreproche | http://sws.geonames.org/2994932/ |
| "Andrej B."^^xsd:string | http://img.jamendo.com/artists/a/andrejb.jpg | http://www.myspace.com/andrejb | http://sws.geonames.org/2921044/ |
| "TRENT"^^xsd:string | http://img.jamendo.com/artists/t/trent-rock.jpg | http://www.trent-rock.com | http://sws.geonames.org/2995603/ |
| "Danforth"^^xsd:string | http://img.jamendo.com/artists/d/danforth.jpg | http://www.myspace.com/hxcdanforth | http://sws.geonames.org/2968815/ |
| "LN et Léa"^^xsd:string | http://img.jamendo.com/artists/l/lnlea.jpg | http://lnlea.wifeo.com | http://sws.geonames.org/3023414/ |
| "Fanny Farts"^^xsd:string | http://img.jamendo.com/artists/f/fanny.farts.jpg | http://www.myspace.com/fannyfarts3 | http://sws.geonames.org/3171456/ |
| "tabaches"^^xsd:string | http://img.jamendo.com/artists/t/tabache.jpg | http://www.tabache.altervista.org | http://sws.geonames.org/3169560/ |
| "los joplin"^^xsd:string | http://img.jamendo.com/artists/l/losjoplin.jpg | http://www.myspace.com/losjoplin | http://sws.geonames.org/3686110/ |
| "QLHEAD"^^xsd:string | http://img.jamendo.com/artists/q/qlhead.jpg | http://QLHEAD.BLOGSPOT.COM | http://sws.geonames.org/798544/ |
| "Natural Mystik"^^xsd:string | http://img.jamendo.com/artists/n/naturalmystik.jpg | file:///home/yves/jamendo/naturalmystik.free.fr | http://sws.geonames.org/2975246/ |
| "Fake Plastic Heads"^^xsd:string | http://img.jamendo.com/artists/f/fakeplasticheads.jpg | http://www.fakeplasticheads.net | http://sws.geonames.org/3213264/ |
| "azhyria"^^xsd:string | http://img.jamendo.com/artists/a/azhyria.jpg | http://www.azhyria.com | http://sws.geonames.org/3034720/ |
| "Project Radar"^^xsd:string | http://img.jamendo.com/artists/w/williamsradar.jpg | http://www.myspace.com/projectradar | http://sws.geonames.org/3213264/ |
| "KazH"^^xsd:string | http://img.jamendo.com/artists/k/kazh.jpg | http://catsoustudio.chez-alice.fr | http://sws.geonames.org/2967196/ |
| "FunkyFlo"^^xsd:string | http://img.jamendo.com/artists/f/funkyflo.jpg | http://www.funkyflo.at | http://sws.geonames.org/2782113/ |
| "Unama"^^xsd:string | http://img.jamendo.com/artists/u/unama.jpg | http://www.unama.net | http://sws.geonames.org/2984887/ |
| "fuck Jesus! ta(gl) conor"^^xsd:string | http://img.jamendo.com/artists/f/fjtc.jpg | http://www.ourpunkrock.org | http://sws.geonames.org/3174050/ |
| "Bosques de mi Mente"^^xsd:string | http://img.jamendo.com/artists/b/bosquesdemimente.jpg | http://www.myspace.com/bosquesdemimente | http://sws.geonames.org/2510769/ |
| "Mad Creudo"^^xsd:string | http://img.jamendo.com/artists/m/madcreudo.jpg | http://www.myspace.com/madcreudo | http://sws.geonames.org/3181553/ |
| "Laurent ST JAC"^^xsd:string | http://img.jamendo.com/artists/l/laurentstjac.jpg | http://www.laurentstjac.com | http://sws.geonames.org/2976082/ |
| "PH.CAINE"^^xsd:string | http://img.jamendo.com/artists/p/ph.caine.jpg | http://caineland.blogspot.com | http://sws.geonames.org/3012715/ |
| "MSK"^^xsd:string | http://img.jamendo.com/artists/m/msk.jpg | http://www.msk.fm | http://sws.geonames.org/3169069/ |
| "Les Minouch' Naouak"^^xsd:string | http://img.jamendo.com/artists/l/les.minouch.naouak.jpg | http://minouchnaouak.free.fr | http://sws.geonames.org/2996663/ |
| "Fabrice Collette"^^xsd:string | http://img.jamendo.com/artists/f/fabrice.collette.jpg | http://www.fabricecollette.com | http://sws.geonames.org/2968815/ |
| "host beg suffer!"^^xsd:string | http://img.jamendo.com/artists/h/hostbegsuffer.jpg | http://www.myspace.com/hostbegsuffer | http://sws.geonames.org/3213264/ |
| "Mestica Artigianale"^^xsd:string | http://img.jamendo.com/artists/m/mestica.artigianale.jpg | http://renzovovia.blogspot.com/ | http://sws.geonames.org/2658370/ |
| "ShadowDancer"^^xsd:string | http://img.jamendo.com/artists/s/shadowdancer.jpg | http://www.myspace.com/shadowdancerband | http://sws.geonames.org/3165523/ |
| "Unfinished Business"^^xsd:string | http://img.jamendo.com/artists/u/unfinished.business.jpg | http://www.unfinished-business.co.uk | http://sws.geonames.org/2510769/ |
| "BLOUTSOS ILIAS"^^xsd:string | http://img.jamendo.com/artists/m/mploytsos.hlias.jpg | http://bloutsosilias.blogspot.com/ | http://sws.geonames.org/254353/ |
| "Cabaret Sauvage"^^xsd:string | http://img.jamendo.com/artists/c/cabaretsauvage.jpg | http://www.myspace.com/cabaretsauvage06 | http://sws.geonames.org/3165523/ |
| "lem0nade"^^xsd:string | http://img.jamendo.com/artists/l/lem0nade.jpg | http://linux-nerd.com/music | http://sws.geonames.org/2968815/ |
| "butumbaba"^^xsd:string | http://img.jamendo.com/artists/b/butumbaba.jpg | http://www.butumbaba.com.ar | http://sws.geonames.org/3865483/ |
| "Burdello"^^xsd:string | http://img.jamendo.com/artists/b/burdello.gif | http://www.burdello.com | http://sws.geonames.org/3164526/ |
| "pierecall"^^xsd:string | http://img.jamendo.com/artists/p/pierecall.jpg | http://myspace.com/pierecal | http://sws.geonames.org/3172391/ |
| "XP-43"^^xsd:string | http://img.jamendo.com/artists/x/xp-43.jpg | http://www.myspace.com/xp43 | http://sws.geonames.org/2802361/ |
| "Cartel"^^xsd:string | http://img.jamendo.com/artists/c/cartel.jpg | http://www.hoodgrownrecords.com | http://sws.geonames.org/6252001/ |
| "The Sunflowers"^^xsd:string | http://img.jamendo.com/artists/t/the.sunflowers.jpg | http://www.the-sunflowers.com | http://sws.geonames.org/2968815/ |
| "The Neo Tabou Project"^^xsd:string | http://img.jamendo.com/artists/n/neo.tabou.project.jpg | http://www.myspace.com/theneotabouproject | http://sws.geonames.org/3015948/ |
| "Nationale2"^^xsd:string | http://img.jamendo.com/artists/n/nationale2.jpg | http://franck.ntwo.chez-alice.fr/ | http://sws.geonames.org/3038375/ |
| "Sick Dogs"^^xsd:string | http://img.jamendo.com/artists/s/sick.dogs.jpg | http://sickdogs.noblogs.org | http://sws.geonames.org/3171364/ |
| "Picari"^^xsd:string | http://img.jamendo.com/artists/p/picari.jpg | http://utenti.lycos.it/ipicari/ | http://sws.geonames.org/3181927/ |
| "Hektor Thillet"^^xsd:string | http://img.jamendo.com/artists/h/hektor.thillet.jpg | http://www.myspace | http://sws.geonames.org/6252001/ |
| "Methiss Killah"^^xsd:string | http://img.jamendo.com/artists/m/methiss.killah.png | http://www.mk76.com | http://sws.geonames.org/2975248/ |
| "Eric M."^^xsd:string | http://img.jamendo.com/artists/e/eric.m.jpg | http://www.myspace.com/mericoi | http://sws.geonames.org/3013767/ |
| "Jeff Fermon"^^xsd:string | http://img.jamendo.com/artists/j/jeff.fermon.jpg | http://zuben3.blogspot.com/ | http://sws.geonames.org/6252001/ |
| "Silvia O"^^xsd:string | http://img.jamendo.com/artists/s/silvia.o.jpg | http://silviao.com/ | http://sws.geonames.org/3686110/ |
| "DJFALTRON"^^xsd:string | http://img.jamendo.com/artists/f/faltron.jpg | http://djfaltron.wordpress.com/ | http://sws.geonames.org/2510769/ |
| "d1sh1tu"^^xsd:string | http://img.jamendo.com/artists/d/d1sh1tu.jpg | http://home.arcor.de/dish/index.html | http://sws.geonames.org/2921044/ |
| "HYNNNER Vs HANT1S3"^^xsd:string | http://img.jamendo.com/artists/h/hynnnervshant1s3.jpg | http://www.HvsH.net | http://sws.geonames.org/1699807/ |
| ".·´´¯`··.Otoshi·´´¯`··."^^xsd:string | http://img.jamendo.com/artists/o/otoshi.jpg | http://otoshiii.spaces.live.com/ | http://sws.geonames.org/2802361/ |
| "Jaunt"^^xsd:string | http://img.jamendo.com/artists/j/jaunt.jpg | http://jaunt.free.fr/ | http://sws.geonames.org/3012849/ |
| "Vladivostok"^^xsd:string | http://img.jamendo.com/artists/v/vladivostoknantes.jpg | http://vladivoscope.free.fr | http://sws.geonames.org/2997861/ |
| "PowerPulsomatic"^^xsd:string | http://img.jamendo.com/artists/p/powerpulsomatic.jpg | http://www.myspace.com/powerpulso | http://sws.geonames.org/2991879/ |
| "Jesus first christ"^^xsd:string | http://img.jamendo.com/artists/j/jesus.first.christ.jpg | http://www.myspace.com/organic_despair | http://sws.geonames.org/3013500/ |
| "derf00.com"^^xsd:string | http://img.jamendo.com/artists/d/derf00.com.jpg | http://www.derf00.com/mp3 | http://sws.geonames.org/6251999/ |
| "Contraptions"^^xsd:string | http://img.jamendo.com/artists/c/compilneurologik.jpg | http://www.myspace.com/eycontraptions | http://sws.geonames.org/3015948/ |
| "The Love Dictators"^^xsd:string | http://img.jamendo.com/artists/t/thelovedictators.jpg | http://www.thelovedictators.com | http://sws.geonames.org/706482/ |
| "Miss Hélium"^^xsd:string | http://img.jamendo.com/artists/m/miss.helium.jpg | http://diogene.ch | http://sws.geonames.org/2968815/ |
| "Bobolink"^^xsd:string | http://img.jamendo.com/artists/b/bobolink.jpg | http://www.geocities.com/bpinto3 | http://sws.geonames.org/6252001/ |
| "Joakim YAMA"^^xsd:string | http://img.jamendo.com/artists/j/joakimyama.jpg | http://www.bioxyd.com | http://sws.geonames.org/2987410/ |
| "DomSlave"^^xsd:string | http://img.jamendo.com/artists/d/domslave.jpg | http://rdpsoft.free.fr/lacaveadom.htm | http://sws.geonames.org/2990129/ |
| "Cheerleader"^^xsd:string | http://img.jamendo.com/artists/c/cheerleader.jpg | http://cheerleader.free.fr/ | http://sws.geonames.org/2968815/ |
| "People Eye"^^xsd:string | http://img.jamendo.com/artists/p/peopleeye.jpg | http://warman06.online.fr/viewforum.php?id=5 | http://sws.geonames.org/2987410/ |
| "Harem"^^xsd:string | http://img.jamendo.com/artists/h/harem.jpg | http://www.harem.ra.it | http://sws.geonames.org/3169560/ |
| "Blood Ruby"^^xsd:string | http://img.jamendo.com/artists/b/blood.ruby.jpg | http://www.bloodruby.com | http://sws.geonames.org/6252001/ |
| "Vidde (Johanna Julén)"^^xsd:string | http://img.jamendo.com/artists/v/vidde.jpg | http://vidde.org | http://sws.geonames.org/2661886/ |
| "DJAY KHY"^^xsd:string | http://img.jamendo.com/artists/d/djay.khy.jpg | http://khy.musique.com/ | http://sws.geonames.org/2990129/ |
| "Titee"^^xsd:string | http://img.jamendo.com/artists/t/titee.jpg | http://tonytokyo0.tripod.com/ | http://sws.geonames.org/2077456/ |
| "-=Kwada=-"^^xsd:string | http://img.jamendo.com/artists/k/kwada.jpg | http://www.kwada-groupe.com | http://sws.geonames.org/3013767/ |
| "The Melchiades Estrada Band"^^xsd:string | http://img.jamendo.com/artists/t/the.melchiades.estrada.band.jpg | http://www.myspace.com/themelchiadesestradaband | http://sws.geonames.org/2802361/ |
| "Eletrocactus"^^xsd:string | http://img.jamendo.com/artists/e/eletrocactus.jpg | http://eletrocactus.blogueisso.com | http://sws.geonames.org/3469034/ |
| "4n1s (MARCO FORNONI)"^^xsd:string | http://img.jamendo.com/artists/4/4n1s.png | http://www.makeinstall.it | http://sws.geonames.org/3173434/ |
| "Voltage"^^xsd:string | http://img.jamendo.com/artists/v/voltage.png | http://www.moonbreak.net/voltage/ | http://sws.geonames.org/3012849/ |
| "Still Nameless"^^xsd:string | http://img.jamendo.com/artists/s/still.nameless.jpg | http://www.stillweb.it | http://sws.geonames.org/2522875/ |
| "Wobinidan"^^xsd:string | http://img.jamendo.com/artists/w/wobinidan.jpg | http://www.wobinidan.com | http://sws.geonames.org/2750405/ |
| "RedChili"^^xsd:string | http://img.jamendo.com/artists/r/redchili.jpg | http://www.dobrzyniecki.one.pl | http://sws.geonames.org/798544/ |
| "Liryc"^^xsd:string | http://img.jamendo.com/artists/l/liryc.jpg | http://www.liryc.club-blog.fr | http://sws.geonames.org/3015948/ |
| "the keko jones band"^^xsd:string | http://img.jamendo.com/artists/t/the.keko.jones.band.jpg | http://thekekojonesband.googlepages.com | http://sws.geonames.org/2510769/ |
| "Sans Bagage"^^xsd:string | http://img.jamendo.com/artists/s/sansbagage.jpg | http://www.sansbagage.com | http://sws.geonames.org/3019599/ |
| "BASTIEN VILLON"^^xsd:string | http://img.jamendo.com/artists/b/bastien.villon.jpg | http://www.bastienvillon@blogspot.com | http://sws.geonames.org/3012715/ |
| "Marc ANDRÉ"^^xsd:string | http://img.jamendo.com/artists/m/marc.andre.jpg | http://marcandreauteurcompositeur.hautetfort.com/ | http://sws.geonames.org/2996663/ |
| "cdrikcroll"^^xsd:string | http://img.jamendo.com/artists/c/cdrikcroll.jpg | http://myspace.com/cdrikcroll | http://sws.geonames.org/2976082/ |
| "vIrTuAl ImAgE"^^xsd:string | http://img.jamendo.com/artists/v/virtual.image.jpg | http://fiberonline.uol.com.br/virtual_image | http://sws.geonames.org/3469034/ |
| "The Zoorganize"^^xsd:string | http://img.jamendo.com/artists/t/the.zoorganize.jpg | http://www.thezoorganize.blogspot.com | http://sws.geonames.org/2264397/ |
| "Patient 99"^^xsd:string | http://img.jamendo.com/artists/p/patient99.gif | http://www.myspace.com/patient99 | http://sws.geonames.org/6252001/ |
| "Madjester"^^xsd:string | http://img.jamendo.com/artists/m/madjester.jpg | http://www.madjester.org | http://sws.geonames.org/2997870/ |
| "Loon Attic"^^xsd:string | http://img.jamendo.com/artists/l/loonattic.png | http://www.portalatino.com/loonattic | http://sws.geonames.org/2514254/ |
| "sapiens fx"^^xsd:string | http://img.jamendo.com/artists/s/sapiens.fx.jpg | http://www.myspace.com/29111972 | http://sws.geonames.org/3209442/ |
| "Sins n Bliss"^^xsd:string | http://img.jamendo.com/artists/s/sinsnbliss.jpg | http://www.myspace.com/sinsnbliss | http://sws.geonames.org/2968815/ |
| "Pinks in the Garden"^^xsd:string | http://img.jamendo.com/artists/p/pinks.in.the.garden.jpg | http://www.myspace.com/pinksinthegarden | http://sws.geonames.org/2510769/ |
| "rachel baz"^^xsd:string | http://img.jamendo.com/artists/r/rachelbaz.jpg | http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendID=182234480 | http://sws.geonames.org/3013767/ |
| "Xavier DESSANE"^^xsd:string | http://img.jamendo.com/artists/x/xavier.dessane.jpg | http://quentincg.free.fr/musique.gratuite.xavier.php | http://sws.geonames.org/2971071/ |
| "Sonotone Impérial"^^xsd:string | http://img.jamendo.com/artists/s/sonotone.imperial.jpg | http://sonotoneimperial.free.fr | http://sws.geonames.org/3017382/ |
| "RUSTY NAILS"^^xsd:string | http://img.jamendo.com/artists/r/rusty.nails.gif | http://www.myspace.com-rustynailsfr | http://sws.geonames.org/3012849/ |
| "AlFa"^^xsd:string | http://img.jamendo.com/artists/a/alfa.jpg | http://www.myspace.com/alinfini | http://sws.geonames.org/3034720/ |
| "DJ CONCUEROR"^^xsd:string | http://img.jamendo.com/artists/d/dj.concueror.jpg | http://www.djconcueror.yoyo.pl/ | http://sws.geonames.org/798544/ |
| "KRACH40"^^xsd:string | http://img.jamendo.com/artists/k/krach40.jpg | http://www.krach40.net | http://sws.geonames.org/2987410/ |
| "Adam Lwo"^^xsd:string | http://img.jamendo.com/artists/a/adam.lwo.jpg | http://adamlwo.free.fr | http://sws.geonames.org/3017382/ |
| "papa dada"^^xsd:string | http://img.jamendo.com/artists/p/papadada.gif | http://www.papadadamusic.com | http://sws.geonames.org/2802361/ |
| "Nyls"^^xsd:string | http://img.jamendo.com/artists/n/nyls.jpg | http://lemondeestaeux.superforum.fr | http://sws.geonames.org/2991627/ |
| "Bern Li"^^xsd:string | http://img.jamendo.com/artists/b/bern.li.jpg | http://www.bernli.be | http://sws.geonames.org/2802361/ |
| "Outselling of Lies"^^xsd:string | http://img.jamendo.com/artists/o/outselling.of.lies.jpg | http://www.bandzone.cz/outsellingoflies | http://sws.geonames.org/3057568/ |
| "Julian Eriksun"^^xsd:string | http://img.jamendo.com/artists/j/julian.eriksun.jpg | http://myspace.com/julianeriksun | http://sws.geonames.org/6252001/ |
| "Dementia 99"^^xsd:string | http://img.jamendo.com/artists/d/dementia.99.jpg | http://www.myspace.com/dementia99 | http://sws.geonames.org/2510769/ |
| "Psypherium"^^xsd:string | http://img.jamendo.com/artists/p/psypherium.jpg | http://psypherium.googlepages.com/ | http://sws.geonames.org/2077456/ |
| "Pierre de La Galite"^^xsd:string | http://img.jamendo.com/artists/p/pierredelagalite.jpg | http://www.chansons-pour-enfants.com/ | http://sws.geonames.org/2968815/ |
| "Dj Thony"^^xsd:string | http://img.jamendo.com/artists/d/dj.thony.jpg | http://djdesmont44.skyblog.com | http://sws.geonames.org/2997861/ |
| "Serakina"^^xsd:string | http://img.jamendo.com/artists/s/serakina.jpg | http://www.serakina.com | http://sws.geonames.org/2661602/ |
| "Lafusa"^^xsd:string | http://img.jamendo.com/artists/l/lafusa.jpg | http://www.lafusa.net | http://sws.geonames.org/3469034/ |
| "Nosebone inc."^^xsd:string | http://img.jamendo.com/artists/n/nosebone.jpg | http://www.myspace.com/noseboneinc | http://sws.geonames.org/2971090/ |
| "free little king"^^xsd:string | http://img.jamendo.com/artists/f/free.little.king.jpg | http://freelittleking.free.fr | http://sws.geonames.org/3013657/ |
| "Ferentino by Night"^^xsd:string | http://img.jamendo.com/artists/f/ferentino.by.night.jpg | http://www.ferentino.tk | http://sws.geonames.org/3176513/ |
| "Phaser"^^xsd:string | http://img.jamendo.com/artists/p/phaser.png | http://dont have any/ | http://sws.geonames.org/2661886/ |
| "Ruined Machines"^^xsd:string | http://img.jamendo.com/artists/r/ruinedmachines.jpg | http://www.ruinedmachines.com | http://sws.geonames.org/6252001/ |
| "mmb digidesigns"^^xsd:string | http://img.jamendo.com/artists/m/mmb.digidesigns.jpg | http://marc-bosche.pros.orange.fr/ | http://sws.geonames.org/2984986/ |
| "Malmonde"^^xsd:string | http://img.jamendo.com/artists/m/malmonde.jpg | http://www.malmonde.fr | http://sws.geonames.org/2968815/ |
| "EsprieM"^^xsd:string | http://img.jamendo.com/artists/e/espriem.jpg | http://espriem.free.fr | http://sws.geonames.org/3013767/ |
| "The Gildas Experience"^^xsd:string | http://img.jamendo.com/artists/t/thegildasexperience.jpg | http://www.myspace.com/thegildasexperience | http://sws.geonames.org/3036420/ |
| "Alex B"^^xsd:string | http://img.jamendo.com/artists/a/alex.bailey.jpg | http://www.last.fm/music/Alex+Bailey | http://sws.geonames.org/6252001/ |
| "Juan Galié"^^xsd:string | http://img.jamendo.com/artists/j/juan.galie.jpg | http://www.myspace.com/juangalie | http://sws.geonames.org/3865483/ |
| "Monsieur Z"^^xsd:string | http://img.jamendo.com/artists/m/monsieurz.jpg | http://www.monsieurz.org/ | http://sws.geonames.org/3020989/ |
| "Decadence Death"^^xsd:string | http://img.jamendo.com/artists/d/decadencedeath.jpg | http://www.decadencedeath.com | http://sws.geonames.org/3165523/ |
| "ESS"^^xsd:string | http://img.jamendo.com/artists/e/ess.jpg | http://www.myspace.com/essnofun | http://sws.geonames.org/3031359/ |
| "Phyloxera / PHST Prod."^^xsd:string | http://img.jamendo.com/artists/p/phyloxera.phst.prod.jpg | http://phyloxera1982.spaces.live.com | http://sws.geonames.org/2995603/ |
| "Baster"^^xsd:string | http://img.jamendo.com/artists/b/baster.jpg | http://www.ciphra.net/baster | http://sws.geonames.org/6355234/ |
| "steve.e!"^^xsd:string | http://img.jamendo.com/artists/s/steve.e.jpg | http://www.myspace.com/stevee1dr | http://sws.geonames.org/2921044/ |
| "Legend at Home"^^xsd:string | http://img.jamendo.com/artists/l/legend.at.home.jpg | http://www.myspace.com/legendathome | http://sws.geonames.org/6252001/ |
| "Tafkam"^^xsd:string | http://img.jamendo.com/artists/t/tafkam.jpg | http://www.tafkam.ch.vu | http://sws.geonames.org/2661602/ |
| "Stéphane Prince"^^xsd:string | http://img.jamendo.com/artists/s/stephane.prince.jpg | http://incaudavenenum.label.free.fr/artistes/stephaneprince/ | http://sws.geonames.org/2975246/ |
| "Nkrypto"^^xsd:string | http://img.jamendo.com/artists/n/nkrypto.jpg | http://www.myspace.com/nkrypto | http://sws.geonames.org/390903/ |
| "NaBob"^^xsd:string | http://img.jamendo.com/artists/n/nabob.jpg | https://home.hccnet.nl/ | http://sws.geonames.org/2750405/ |
| "22,5 Octobres Dissous"^^xsd:string | http://img.jamendo.com/artists/2/225octobresdissous.jpg | http://www.myspace.com/225octobresdissous | http://sws.geonames.org/2976082/ |
| "catanius"^^xsd:string | http://img.jamendo.com/artists/c/catanius.jpg | http://www.myspace.com/catanius | http://sws.geonames.org/2395170/ |
| "lerio"^^xsd:string | http://img.jamendo.com/artists/l/lerio.jpg | http://www.myspace.com/lerio | http://sws.geonames.org/3175395/ |
| "day one a porno"^^xsd:string | http://img.jamendo.com/artists/d/doap.jpg | http://www.dayoneaporno.com | http://sws.geonames.org/2990129/ |
| "76 Mróz"^^xsd:string | http://img.jamendo.com/artists/7/76mroz.jpg | http://www.myspace.com/76mroz | http://sws.geonames.org/798544/ |
| "Vincent Bernay"^^xsd:string | http://img.jamendo.com/artists/v/vincent.bernay.jpg | http://www.vincentbernay.info | http://sws.geonames.org/2996663/ |
| "ANTROPIK"^^xsd:string | http://img.jamendo.com/artists/a/antropik.jpg | http://www.telemakfilms.info | http://sws.geonames.org/2987410/ |
| "Les Sabaticains"^^xsd:string | http://img.jamendo.com/artists/l/lessabaticains.jpg | http://membres.lycos.fr/kalyoken/ | http://sws.geonames.org/2984986/ |
| "Sol Niger"^^xsd:string | http://img.jamendo.com/artists/s/solniger.jpg | http://www.solniger.fr.cx | http://sws.geonames.org/2984887/ |
| "引き篭り"^^xsd:string | http://img.jamendo.com/artists/h/hikikomorimetal.jpg | http://www.hikikomori.com.ar | http://sws.geonames.org/3865483/ |
| "Matthijs Vos"^^xsd:string | http://img.jamendo.com/artists/m/matthijs.vos.gif | http://www.matthijsvos.org | http://sws.geonames.org/2750405/ |
| "Reisegruppe Z"^^xsd:string | http://img.jamendo.com/artists/r/reisegruppe-z.jpg | http://rgz.nowhereman.de | http://sws.geonames.org/6550508/ |
| "danska [désormais : "DARIO"]"^^xsd:string | http://img.jamendo.com/artists/d/danska.jpg | http://www.myspace.com/darioespace | http://sws.geonames.org/3029094/ |
| "Mikirurka"^^xsd:string | http://img.jamendo.com/artists/m/mikirurka.jpg | http://www.mikirurka.com | http://sws.geonames.org/798544/ |
| "Sebastian"^^xsd:string | http://img.jamendo.com/artists/s/sebastian.png | http://www.segil.at | http://sws.geonames.org/2782113/ |
| "ALONE IN THE CHAOS"^^xsd:string | http://img.jamendo.com/artists/a/alone.in.the.chaos.jpg | http://www.dogmazic.net/ALONE_IN_THE_CHAOS | http://sws.geonames.org/2802361/ |
| "bluegirl-Tina"^^xsd:string | http://img.jamendo.com/artists/b/bluegirl-tina.jpg | http://bluegirl-tina.mypafnet.de | http://sws.geonames.org/6556330/ |
| "fiffdimension"^^xsd:string | http://img.jamendo.com/artists/f/fiffdimension.jpg | http://www.fiffdimension.co.nz | http://sws.geonames.org/1835841/ |
| "Josemaki Grind Orchestra"^^xsd:string | http://img.jamendo.com/artists/j/josemaki.grind.orchestra.jpg | http://www.myspace.com/josemaki | http://sws.geonames.org/2510769/ |
| "elbrujo"^^xsd:string | http://img.jamendo.com/artists/e/elbrujo.jpg | http://elbrujo185.skyrock.com | http://sws.geonames.org/2510769/ |
| "programyst"^^xsd:string | http://img.jamendo.com/artists/p/programyst.png | http://www.archive.org/details/PROGRAMYST | http://sws.geonames.org/3996063/ |
| "aoriste"^^xsd:string | http://img.jamendo.com/artists/a/aoriste.jpg | http://aoriste.free.fr/ | http://sws.geonames.org/2987410/ |
| "T.A.S"^^xsd:string | http://img.jamendo.com/artists/t/t.a.s.jpg | http://www.tasrock.net | http://sws.geonames.org/6355234/ |
| "Josant"^^xsd:string | http://img.jamendo.com/artists/j/josant.jpg | http://www.myspace.com/mcjosant | http://sws.geonames.org/2510910/ |
| "Luminares"^^xsd:string | http://img.jamendo.com/artists/l/luminares.jpg | http://www.alegreluminar.blogspot.com/ | http://sws.geonames.org/3865483/ |
| "Take The Bus Project"^^xsd:string | http://img.jamendo.com/artists/t/take.the.bus.project.jpg | http://www.philippechavaroche.com/ttbp/ | http://sws.geonames.org/3017382/ |
| "atlantis"^^xsd:string | http://img.jamendo.com/artists/a/atlantis.jpg | http://www.atlantis-mp.blogspot.com | http://sws.geonames.org/3057568/ |
| "AL-FAMI"^^xsd:string | http://img.jamendo.com/artists/a/al-fami.jpg | http://www.oddsource.fr | http://sws.geonames.org/2971090/ |
| "Bazooka"^^xsd:string | http://img.jamendo.com/artists/b/bazooka.jpg | http://www.frenchyrecords.com | http://sws.geonames.org/2984885/ |
| "TimeVibes"^^xsd:string | http://img.jamendo.com/artists/t/timevibes.jpg | http://www.myspace.com/timevibes | http://sws.geonames.org/2750405/ |
| "Karash"^^xsd:string | http://img.jamendo.com/artists/k/karash.jpg | http://www.myspace.com/karash4u | http://sws.geonames.org/3209442/ |
| "GONZO GONZALES"^^xsd:string | http://img.jamendo.com/artists/g/gonzo.gonzales.jpg | http://www.myspace.com/gonzogonzalestheband | http://sws.geonames.org/3209442/ |
| "Nearpoint"^^xsd:string | http://img.jamendo.com/artists/n/nearpoint.jpg | http://www.nearpointmusic.com | http://sws.geonames.org/6252001/ |
| "Regard du Nord"^^xsd:string | http://img.jamendo.com/artists/r/regarddunord.jpg | http://www.regarddunord.com | http://sws.geonames.org/2660717/ |
| "Carmina"^^xsd:string | http://img.jamendo.com/artists/c/carmina.jpg | http://myspace.com/carminagrind | http://sws.geonames.org/2967196/ |
| "MdG Dj"^^xsd:string | http://img.jamendo.com/artists/m/mdg.dj.jpg | http://www.myspace.com/mdgdj | http://sws.geonames.org/3173434/ |
| "Audio_Out"^^xsd:string | http://img.jamendo.com/artists/a/audio.out.jpg | http://www.myspace.com/audioout23 | http://sws.geonames.org/3013726/ |
| "Trixy"^^xsd:string | http://img.jamendo.com/artists/t/trixy.jpg | http://trixy.hautetfort.com/ | http://sws.geonames.org/3025480/ |
| "El Klan de los DeDeTe"^^xsd:string | http://img.jamendo.com/artists/d/dedete.jpg | http://www.dedete.es | http://sws.geonames.org/6355234/ |
| "Le fils a Monique orchestra"^^xsd:string | http://img.jamendo.com/artists/l/le.fils.a.monique.orchestra1.jpg | http://www.myspace.com/lefilsamoniqueorchestra | http://sws.geonames.org/2975248/ |
| "WaK"^^xsd:string | http://img.jamendo.com/artists/l/leswak.jpg | http://wak.propagande.org | http://sws.geonames.org/2975248/ |
| "Sconce"^^xsd:string | http://img.jamendo.com/artists/s/sconce.jpg | http://metallarissa.multiply.com | http://sws.geonames.org/6252001/ |
| "Silence Abstrait"^^xsd:string | http://img.jamendo.com/artists/s/silence.abstrait.jpg | http://saelynh.hautetfort.com/silence_abstrait/ | http://sws.geonames.org/3013657/ |
| "Sta a Sente"^^xsd:string | http://img.jamendo.com/artists/s/sta.a.sente.jpg | http://sta.a.sente.free.fr | http://sws.geonames.org/3031359/ |
| "Venediam"^^xsd:string | http://img.jamendo.com/artists/v/venediam.jpg | http://www.myspace.com/venediam | http://sws.geonames.org/3182649/ |
| "Daniel Král"^^xsd:string | http://img.jamendo.com/artists/d/danielkral.jpg | http://blizsipruzkum.sblog.cz | http://sws.geonames.org/2395170/ |
| "The Framitts"^^xsd:string | http://img.jamendo.com/artists/t/the.framitts.png | http://www.theframitts.com/wp | http://sws.geonames.org/2510769/ |
| "Dr Mush"^^xsd:string | http://img.jamendo.com/artists/d/dr.mush.jpg | http://art-kor.blogspot.com/ | http://sws.geonames.org/935317/ |
| "VANDA."^^xsd:string | http://img.jamendo.com/artists/v/vanda.jpg | http://www.vanda-music.de | http://sws.geonames.org/2921044/ |
| "ethiopians"^^xsd:string | http://img.jamendo.com/artists/e/ethiopians.jpg | http://ethiopians.free.fr/ | http://sws.geonames.org/2975246/ |
| "fa:b"^^xsd:string | http://img.jamendo.com/artists/f/fabimusic.jpg | http://www.fa-b.net/music/renaissance | http://sws.geonames.org/3037147/ |
| "SIRIUS"^^xsd:string | http://img.jamendo.com/artists/s/sirius.jpg | http://Aucun | http://sws.geonames.org/2989663/ |
| "Tchoi"^^xsd:string | http://img.jamendo.com/artists/t/tchoi.jpg | http://www.tchoimusic.fr | http://sws.geonames.org/3031359/ |
| "Schizyfos"^^xsd:string | http://img.jamendo.com/artists/s/schizyfos.jpg | http://www.baltay.blog.sme.sk | http://sws.geonames.org/3057568/ |
| "Michael David Crawford"^^xsd:string | http://img.jamendo.com/artists/m/michael.david.crawford.png | http://www.geometricvisions.com/ | http://sws.geonames.org/6252001/ |
| "elfes"^^xsd:string | http://img.jamendo.com/artists/e/elfes.jpg | http://elfes.tv | http://sws.geonames.org/3013500/ |
| "Julien"^^xsd:string | http://img.jamendo.com/artists/j/julien13.jpg | http://www.myspace.com/julienrsolo | http://sws.geonames.org/3031359/ |
| "Rod"^^xsd:string | http://img.jamendo.com/artists/r/rod.jpg | http://rod-noises.info | http://sws.geonames.org/2997857/ |
| "t davis"^^xsd:string | http://img.jamendo.com/artists/t/t.davis.png | http://www.terrydavis.org/lost.html | http://sws.geonames.org/6252001/ |
| "david"^^xsd:string | http://img.jamendo.com/artists/d/david.jpg | http://www.myspace.com/davidchapel | http://sws.geonames.org/2968815/ |
| "832"^^xsd:string | http://img.jamendo.com/artists/8/832.jpg | http://832.musicblog.fr | http://sws.geonames.org/2988430/ |
| "Alasèv"^^xsd:string | http://img.jamendo.com/artists/a/alasev.jpg | http://alaseve.free.fr | http://sws.geonames.org/2990129/ |
| "Projekt Furche"^^xsd:string | http://img.jamendo.com/artists/p/projekt.furche.jpg | http://www.projekt-furche.at.tt | http://sws.geonames.org/2782113/ |
| "Miguel Prod"^^xsd:string | http://img.jamendo.com/artists/m/miguel.prod.jpg | http://www.myspace.com/miguelprod | http://sws.geonames.org/3169069/ |
| "nutra nuggets"^^xsd:string | http://img.jamendo.com/artists/n/nutra.nuggets.jpg | http://www.myspace.com/nutranuggets | http://sws.geonames.org/3174050/ |
| "verte couverture"^^xsd:string | http://img.jamendo.com/artists/v/verte.couverture.jpg | http://www.myspace.com/vertecouverture | http://sws.geonames.org/3017382/ |
| "Ananda"^^xsd:string | http://img.jamendo.com/artists/a/ananda.jpg | http://myspace.com/Ananda | http://sws.geonames.org/2967196/ |
| "babal"^^xsd:string | http://img.jamendo.com/artists/b/babal.jpg | http://djbabal.ifrance.com | http://sws.geonames.org/3018471/ |
| "Icaro"^^xsd:string | http://img.jamendo.com/artists/i/icaro.jpg | http://www.myspace.com/maximortal | http://sws.geonames.org/3165071/ |
| "Out of Tune"^^xsd:string | http://img.jamendo.com/artists/o/out.of.tune.png | http://www.out-of-tune.net | http://sws.geonames.org/660013/ |
| "Zentriert ins Antlitz"^^xsd:string | http://img.jamendo.com/artists/z/zentriert.ins.antlitz.gif | http://www.zentriertinsantlitz.de | http://sws.geonames.org/3213264/ |
| "Arktos"^^xsd:string | http://img.jamendo.com/artists/a/arktos.jpg | http://taptemedlem.blogspot.com/ | http://sws.geonames.org/3163480/ |
| "Jazz'fixie"^^xsd:string | http://img.jamendo.com/artists/j/jazzfixie.jpg | http://jazzfixie.com | http://sws.geonames.org/2658182/ |
| "Osira"^^xsd:string | http://img.jamendo.com/artists/o/osira.jpg | http://osira.fr | http://sws.geonames.org/2987410/ |
| "Jordan's Folk"^^xsd:string | http://img.jamendo.com/artists/p/purpleapple.jpg | http://www.purpleapple.skyblog.com | http://sws.geonames.org/2997861/ |
| "Aesthetic Evidence"^^xsd:string | http://img.jamendo.com/artists/a/aevidence.jpg | http://www.aevidence.com/wav.html | http://sws.geonames.org/6252001/ |
| "Enemies of Enormity"^^xsd:string | http://img.jamendo.com/artists/e/eoe.jpg | http://www.enemiesofenormity.com | http://sws.geonames.org/6252001/ |
| "Afghan Banana Stand"^^xsd:string | http://img.jamendo.com/artists/a/afghan.banana.stand.jpg | http://www.myspace.com/afghanbananastand | http://sws.geonames.org/6252001/ |
| "Chaman"^^xsd:string | http://img.jamendo.com/artists/c/chaman.jpg | http://www.chaman-music.com/ | http://sws.geonames.org/3019599/ |
| "Futuro"^^xsd:string | http://img.jamendo.com/artists/f/futuro.jpg | http://www.zespolfuturo.kutno.pl | http://sws.geonames.org/798544/ |
| "BUG"^^xsd:string | http://img.jamendo.com/artists/b/bug.jpg | http://www.myspace.com/groupebug | http://sws.geonames.org/2975248/ |
| "The Rodeo Five"^^xsd:string | http://img.jamendo.com/artists/r/rodeo5.jpg | http://www.therodeofive.com | http://sws.geonames.org/2911297/ |
| "Systylé"^^xsd:string | http://img.jamendo.com/artists/s/systyle.gif | http://www.systyle.org | http://sws.geonames.org/3012715/ |
| "Alik Project"^^xsd:string | http://img.jamendo.com/artists/a/alik.project.jpg | http://www.myspace.com/alikblog | http://sws.geonames.org/3013737/ |
| "Over All Brothers"^^xsd:string | http://img.jamendo.com/artists/o/overallbrothers.jpg | http://perso.orange.fr/overallbrothers/ | http://sws.geonames.org/2967196/ |
| "Josh Woodward"^^xsd:string | http://img.jamendo.com/artists/j/joshwoodward.jpg | http://www.joshwoodward.com/ | http://sws.geonames.org/6252001/ |
| "dj koyen"^^xsd:string | http://img.jamendo.com/artists/d/dj.koyen.jpg | http://www.dj-koyen.tk | http://sws.geonames.org/2802361/ |
| "Juco"^^xsd:string | http://img.jamendo.com/artists/j/juco.jpg | http://www.Juco.fr | http://sws.geonames.org/2968815/ |
| "Jobscène"^^xsd:string | http://img.jamendo.com/artists/j/jobscene.jpg | http://www.jobscenes.net | http://sws.geonames.org/3020989/ |
| "Matix"^^xsd:string | http://img.jamendo.com/artists/m/matix.jpg | http://www.matixextra.fotka.pl | http://sws.geonames.org/798544/ |
| "El niño del parking"^^xsd:string | http://img.jamendo.com/artists/e/el.nino.del.parking.jpg | http://www.myspace.com/el_nino_del_parking | http://sws.geonames.org/2520597/ |
| "MARC SEHN"^^xsd:string | http://img.jamendo.com/artists/m/marc.sehn.jpg | http://garageband.com | http://sws.geonames.org/3020781/ |
| "High Hopes"^^xsd:string | http://img.jamendo.com/artists/h/highhopes.jpg | http://www.myspace.com/highhopestheband | http://sws.geonames.org/2968815/ |
| "The Day After"^^xsd:string | http://img.jamendo.com/artists/t/the.day.after.gif | http://www.thedayafter.zik.mu | http://sws.geonames.org/2994111/ |
| "Cauztion"^^xsd:string | http://img.jamendo.com/artists/c/cauztion.gif | http://www17.brinkster.com/zacharychaffee | http://sws.geonames.org/6252001/ |
| "The Windupdeads"^^xsd:string | http://img.jamendo.com/artists/t/the.windupdeads.jpg | http://www.thewindupdeads.com | http://sws.geonames.org/2661886/ |
| "Phil de Guip"^^xsd:string | http://img.jamendo.com/artists/p/phil.de.guip.jpg | http://www.phil-de-guip.com | http://sws.geonames.org/3018471/ |
| "PeerGynt Lobogris"^^xsd:string | http://img.jamendo.com/artists/p/peergynt.lobogris.jpg | http://www.myspace.com/peergyntlobogris | http://sws.geonames.org/3996063/ |
| "The Evenings"^^xsd:string | http://img.jamendo.com/artists/t/theevenings.jpg | http://www.theevenings.de | http://sws.geonames.org/2930484/ |
| "puercoespines"^^xsd:string | http://img.jamendo.com/artists/p/puercoespines.jpg | http://puercoespines.iespana.es | http://sws.geonames.org/2510910/ |
| "Signal to Noise Ratio"^^xsd:string | http://img.jamendo.com/artists/s/snr.jpg | http://snr.rockmetal.pl | http://sws.geonames.org/798544/ |
| "MarcelVincent"^^xsd:string | http://img.jamendo.com/artists/m/marcelvincent.gif | http://www.myspace.com/marcelvincent47 | http://sws.geonames.org/2997523/ |
| "Vulsor"^^xsd:string | http://img.jamendo.com/artists/v/vulsor.jpg | http://satyres.over-blog.com/categorie-714024.html | http://sws.geonames.org/3023414/ |
| "The Octave Band"^^xsd:string | http://img.jamendo.com/artists/t/the.octave.band.jpg | http://octaveband.hitmuse.com/ | http://sws.geonames.org/3015948/ |
| "G8"^^xsd:string | http://img.jamendo.com/artists/g/g8.jpg | http://www.auptitg8.com | http://sws.geonames.org/2971090/ |
| "Supreme Ciung"^^xsd:string | http://img.jamendo.com/artists/s/supreme.ciung.jpg | http://supremeciung.googlepages.com | http://sws.geonames.org/2802361/ |
| "Pangenianos"^^xsd:string | http://img.jamendo.com/artists/p/pangenianos.gif | http://www.pangenianos.com | http://sws.geonames.org/3469034/ |
| "UnforgiveN"^^xsd:string | http://img.jamendo.com/artists/u/unforgiven.png | http://unforgivengr.wordpress.com/ | http://sws.geonames.org/390903/ |
| "michelle"^^xsd:string | http://img.jamendo.com/artists/m/michelle.gif | http://www.myspace.com/michellerockband | http://sws.geonames.org/2510769/ |
| "LoCut"^^xsd:string | http://img.jamendo.com/artists/l/locut.png | http://www.myspace.com/locut07 | http://sws.geonames.org/2510910/ |
| "ZAMALA"^^xsd:string | http://img.jamendo.com/artists/z/zamala.jpg | http://www.zamala.tk | http://sws.geonames.org/2991627/ |
| "MoShang & Various Artists"^^xsd:string | http://img.jamendo.com/artists/m/moshang.various.artists.gif | http://asianvariations.com | http://sws.geonames.org/1668284/ |
| "RV"^^xsd:string | http://img.jamendo.com/artists/r/rv.jpg | http://mobylette.canalblog.com/ | http://sws.geonames.org/2971071/ |
| "The TenGooz"^^xsd:string | http://img.jamendo.com/artists/t/the.tengooz.jpg | http://www.tengooz.com/ | http://sws.geonames.org/2112922/ |
| "Rancho Relaxo"^^xsd:string | http://img.jamendo.com/artists/r/rancho.relaxo.jpg | http://www11.nrk.no/urort/user/?id=48567 | http://sws.geonames.org/3137966/ |
| "Stepping Back"^^xsd:string | http://img.jamendo.com/artists/s/stepping.back.jpg | http://www.myspace.com/steppingback | http://sws.geonames.org/3012715/ |
| "The English"^^xsd:string | http://img.jamendo.com/artists/t/the.english.jpg | http://www.myspace.com/djlanglais | http://sws.geonames.org/2968815/ |
| "Assez PAULINE"^^xsd:string | http://img.jamendo.com/artists/a/assez.pauline.jpg | http://www.myspace.com/assezpauline | http://sws.geonames.org/3012715/ |
| "orxata sound system"^^xsd:string | http://img.jamendo.com/artists/o/orxata.png | http://www.orxatasoundsystem.net | http://sws.geonames.org/2510769/ |
| "Staggered Crossing"^^xsd:string | http://img.jamendo.com/artists/s/staggered.crossing.jpg | http://www.staggeredcrossing.com | http://sws.geonames.org/6251999/ |
| "S.I.M"^^xsd:string | http://img.jamendo.com/artists/s/s.i.m.jpg | http://www.myspace.com/simusic1 | http://sws.geonames.org/2921044/ |
| "Kazan"^^xsd:string | http://img.jamendo.com/artists/k/kazan.jpg | http://www.kazan-band.com/ | http://sws.geonames.org/3023423/ |
| "disharmonic"^^xsd:string | http://img.jamendo.com/artists/d/disharmonic.jpg | http://lukas.zapletalovi.com | http://sws.geonames.org/2395170/ |
| "ne8ularis"^^xsd:string | http://img.jamendo.com/artists/n/ne8ularis.jpg | http://www.ne8ularis.altervista.org | http://sws.geonames.org/3175395/ |
| "Lunar Mining Project"^^xsd:string | http://img.jamendo.com/artists/l/lunar.mining.project.jpg | http://www.theelektrosite.com/LMP1.html | http://sws.geonames.org/6557769/ |
| "Cri d'Ames"^^xsd:string | http://img.jamendo.com/artists/c/cridames.jpg | http://www.cridames.fr.fm | http://sws.geonames.org/2989663/ |
| "Rainer Thelonius Balthasar Straschill"^^xsd:string | http://img.jamendo.com/artists/s/straschill.jpg | http://moinlabs.de | http://sws.geonames.org/6556330/ |
| "Tomislav Ocvirek"^^xsd:string | http://img.jamendo.com/artists/t/tomislav.ocvirek.jpg | http://www.ocvirek.com/music | http://sws.geonames.org/3202326/ |
| "Fucking PeaNuts"^^xsd:string | http://img.jamendo.com/artists/f/fucking.peanuts.jpg | http://www.myspace.com/fuckingpeanuts | http://sws.geonames.org/2802361/ |
| "Alzheimer Sozé"^^xsd:string | http://img.jamendo.com/artists/a/alzheimer.soze.jpg | __jamendo-3.rdf#__Description10 | http://sws.geonames.org/2974304/ |
| "the ad.kowas"^^xsd:string | http://img.jamendo.com/artists/t/the.ad.kowas.jpg | http://www.myspace.com/simusic1 | http://sws.geonames.org/2911297/ |
| "Les Chapo-T"^^xsd:string | http://img.jamendo.com/artists/l/leschapot.jpg | http://www.chapot.com | http://sws.geonames.org/3029094/ |
| "_voice"^^xsd:string | http://img.jamendo.com/artists/v/voice.jpg | http://www.phatsonic.de | http://sws.geonames.org/3213264/ |
| "Fred OSCAR"^^xsd:string | http://img.jamendo.com/artists/f/fred.oscar.jpg | http://www.fredoscar.com | http://sws.geonames.org/2987410/ |
| "Psicotropicodelia Music [netlabel]"^^xsd:string | http://img.jamendo.com/artists/p/psicotropicodelia.music.gif | http://psicotropicodleia.blogspot.com | http://sws.geonames.org/3469034/ |
| "Evias"^^xsd:string | http://img.jamendo.com/artists/e/evias.jpg | http://evias.tk | http://sws.geonames.org/3017382/ |
| "ZG and 108 Desires"^^xsd:string | http://img.jamendo.com/artists/z/zg.and.108.desires.jpg | http://www.zgdream.com | http://sws.geonames.org/6252001/ |
| "Sam Harmon"^^xsd:string | http://img.jamendo.com/artists/s/sam.harmon.jpg | http://www.myspace.com/samharmonmusic | http://sws.geonames.org/6252001/ |
| "Feel-ipson"^^xsd:string | http://img.jamendo.com/artists/f/feel-ipson.jpg | http://www.feel-ipson.com | http://sws.geonames.org/2661886/ |
| "brynet"^^xsd:string | http://img.jamendo.com/artists/b/brynet.jpg | http://andybient.altervista.org | http://sws.geonames.org/1149361/ |
| "FMR"^^xsd:string | http://img.jamendo.com/artists/f/fmr.jpg | http://www.collectif-fmr.com | http://sws.geonames.org/2968815/ |
| "Nokto De Esperi"^^xsd:string | http://img.jamendo.com/artists/n/nokto.de.esperi.jpg | http:// | http://sws.geonames.org/2802361/ |
| "JEWEL"^^xsd:string | http://img.jamendo.com/artists/j/jewel.jpg | http://jewelpoprock.free.fr/ | http://sws.geonames.org/3013726/ |
| "PIPEDREAMS"^^xsd:string | http://img.jamendo.com/artists/p/pipedreams.jpg | http://www.pipedreams-music.com | http://sws.geonames.org/2975517/ |
| "liplug"^^xsd:string | http://img.jamendo.com/artists/l/liplug.jpg | http://myspace.com/liplug | http://sws.geonames.org/2884161/ |
| "Dosis Diaria"^^xsd:string | http://img.jamendo.com/artists/d/dosis.diaria.jpg | http://dosisdiaria1.blogspot.com/ | http://sws.geonames.org/2521883/ |
| "KISSIN' KATE"^^xsd:string | http://img.jamendo.com/artists/k/kissin.kate.jpg | http://www.myspace.com/kissinkate | http://sws.geonames.org/3013767/ |
| "LODS"^^xsd:string | http://img.jamendo.com/artists/l/lods.jpg | http://www.indemarket.com | http://sws.geonames.org/2968815/ |
| "Les Garçons Joufflus"^^xsd:string | http://img.jamendo.com/artists/l/lesgarconsjoufflus.jpg | http://www.myspace.com/garconsjoufflus | http://sws.geonames.org/2081918/ |
| "Stalling Downhill"^^xsd:string | http://img.jamendo.com/artists/s/stallingdownhill.jpg | http://www.stallingdownhill.de.vu | http://sws.geonames.org/3213264/ |
| "Androïds-B"^^xsd:string | http://img.jamendo.com/artists/a/androids-b.jpg | file:///home/yves/jamendo/http//:www.myspace.com/androidsb | http://sws.geonames.org/3020781/ |
| "The Playing Orchestra"^^xsd:string | http://img.jamendo.com/artists/t/the.playing.orchestra.jpg | http://www.myspace.com/theplayingorchestra | http://sws.geonames.org/2510769/ |
| "keiro"^^xsd:string | http://img.jamendo.com/artists/k/keiro.jpg | http://www.myspace.com/keiro92 | http://sws.geonames.org/3013657/ |
| "landeros"^^xsd:string | http://img.jamendo.com/artists/l/landeros.jpg | http://myspace.com/locoins | http://sws.geonames.org/3996063/ |
| "Kolorize"^^xsd:string | http://img.jamendo.com/artists/k/kolorize.jpg | http://www.myspace.com/epicrisismusic | http://sws.geonames.org/798544/ |
| "Xenofobia"^^xsd:string | http://img.jamendo.com/artists/x/xenofobia.jpg | http://www.mp3.de/xenofobia | http://sws.geonames.org/2921044/ |
| "The Airy Snaps"^^xsd:string | http://img.jamendo.com/artists/t/theairysnaps.jpg | http://www.theairysnaps.com | http://sws.geonames.org/3029094/ |
| "ZAM'S"^^xsd:string | http://img.jamendo.com/artists/z/zams.jpg | http://www.zams.fr | http://sws.geonames.org/3012051/ |
| "Mankind concept"^^xsd:string | http://img.jamendo.com/artists/m/mankind.concept.jpg | http://mankind.concept.free.fr/ | http://sws.geonames.org/3013767/ |
| "Fugue State"^^xsd:string | http://img.jamendo.com/artists/f/fuguestate.jpg | http://fstate.skincontact.com | http://sws.geonames.org/6252001/ |
| "Julien Boulier"^^xsd:string | http://img.jamendo.com/artists/j/julien.boulier.jpg | http://www.julien-boulier.net | http://sws.geonames.org/3018471/ |
| "Exe.Cute"^^xsd:string | http://img.jamendo.com/artists/e/exe.cute.jpg | http://\dementialcore.blogspot.com | http://sws.geonames.org/3182350/ |
| "skin contact"^^xsd:string | http://img.jamendo.com/artists/s/skincontact.jpg | http://www.skincontact.com | http://sws.geonames.org/6252001/ |
| "SEKMETH"^^xsd:string | http://img.jamendo.com/artists/s/sekmeth.jpg | http://myspace.com/sekmethband | http://sws.geonames.org/2991627/ |
| "Xcyril"^^xsd:string | http://img.jamendo.com/artists/z/zagan.jpg | http://xcyril.tuxfamily.org/dotclear/index.php/ | http://sws.geonames.org/798544/ |
| "Seal Seven"^^xsd:string | http://img.jamendo.com/artists/s/seal.seven.jpg | http://sealseven.com | http://sws.geonames.org/6252001/ |
| "My Every Sin"^^xsd:string | http://img.jamendo.com/artists/m/myeverysin.jpg | http://www.myspace.com/myeverysin | http://sws.geonames.org/2802361/ |
| "Electric Zoom"^^xsd:string | http://img.jamendo.com/artists/e/electric-zoom.jpg | http://www.electriczoom.de | http://sws.geonames.org/3213264/ |
| "Fireproof Babies"^^xsd:string | http://img.jamendo.com/artists/f/fireproof.babies.jpg | http://fireproofbabies.blogspot.com | http://sws.geonames.org/6252001/ |
| "Ryan Helinski"^^xsd:string | http://img.jamendo.com/artists/r/ryan.helinski.jpg | http://www.cs.umbc.edu/~rhelins1/ | http://sws.geonames.org/6252001/ |
| "xHenon"^^xsd:string | http://img.jamendo.com/artists/x/xhenon.jpg | http://www.chrysfairlight.com | http://sws.geonames.org/3023414/ |
| "rkt"^^xsd:string | http://img.jamendo.com/artists/r/rkt.jpg | http://www.myspace.com/rkt95 | http://sws.geonames.org/2971071/ |
| "Lokolé"^^xsd:string | http://img.jamendo.com/artists/l/lokoleafrofusion.jpg | http://www.lokole.es | http://sws.geonames.org/6355234/ |
| "The Trembling Turncoats"^^xsd:string | http://img.jamendo.com/artists/t/trembling.turncoats.jpg | http://www.myspace.com/thetremblingturncoats | http://sws.geonames.org/6252001/ |
| "viroos"^^xsd:string | http://img.jamendo.com/artists/v/viroos.jpg | http://viroos.oqq.pl | http://sws.geonames.org/798544/ |
| "Convergence"^^xsd:string | http://img.jamendo.com/artists/c/convergence.jpg | http://www.convergence.it | http://sws.geonames.org/3173330/ |
| "spiceware"^^xsd:string | http://img.jamendo.com/artists/s/spiceware.gif | http://spiceware.free.fr/album/ | http://sws.geonames.org/3023423/ |
| "Kissel"^^xsd:string | http://img.jamendo.com/artists/k/kissel.jpg | http://kisselcaminos.blogsome.com/ | http://sws.geonames.org/3104469/ |
| "DJ Lux"^^xsd:string | http://img.jamendo.com/artists/d/dj.lux.jpg | http://None | http://sws.geonames.org/6252001/ |
| "STURTZFREQUENZ"^^xsd:string | http://img.jamendo.com/artists/s/sturtzfrequenz.jpg | http://www.myspace.com/sturtzfrequenz | http://sws.geonames.org/2921044/ |
| "narcoz mc"^^xsd:string | http://img.jamendo.com/artists/n/narcoz.mc.jpg | http://narcoz.skyblog.com | http://sws.geonames.org/3013500/ |
| "Vida en Marte"^^xsd:string | http://img.jamendo.com/artists/v/vida.en.marte.jpg | http://myspace.com/vidaenmarte | http://sws.geonames.org/2510769/ |
| "Anawin"^^xsd:string | http://img.jamendo.com/artists/a/anawin.jpg | http://monray.free.fr | http://sws.geonames.org/6251999/ |
| "Submission/Lies"^^xsd:string | http://img.jamendo.com/artists/s/submissionlies.jpg | http://nksinternational.free.fr/submissionlies.html | http://sws.geonames.org/3017382/ |
| "Kryptic Mood"^^xsd:string | http://img.jamendo.com/artists/k/kryptic.mood.jpg | http://jeff1966.deviantart.com/ | http://sws.geonames.org/6252001/ |
| "Rémi.DB "^^xsd:string | http://img.jamendo.com/artists/r/rdbs.jpg | http://drumms.skyrock.com/ | http://sws.geonames.org/3016670/ |
| "Soresmile"^^xsd:string | http://img.jamendo.com/artists/s/soresmile.jpg | http://www.soresmile.com | http://sws.geonames.org/2802361/ |
| "Vol De Nuit"^^xsd:string | http://img.jamendo.com/artists/v/vol.de.nuit.jpg | http://vol2nuit.chez-alice.fr | http://sws.geonames.org/3013767/ |
| "Wurstwasser"^^xsd:string | http://img.jamendo.com/artists/w/wurstwasser.gif | http://www.rollmotz.de | http://sws.geonames.org/3213264/ |
| "Bruno attitood"^^xsd:string | http://img.jamendo.com/artists/b/bruno.attitood.jpg | http://brunoattitood.blogspot.com/ | http://sws.geonames.org/3017382/ |
| "FreddySk8"^^xsd:string | http://img.jamendo.com/artists/f/freddysk8.jpg | http://www.myspace.com/freddyskate | http://sws.geonames.org/3165924/ |
| "MeLTiNg*pOtEs pRojekT"^^xsd:string | http://img.jamendo.com/artists/m/melting-potes-projekt.jpg | http://www.myspace.com/meltingpotesprojekt | http://sws.geonames.org/2991627/ |
| "dextrine"^^xsd:string | http://img.jamendo.com/artists/d/dextrine.jpg | http://perso.orange.fr/astegem/entree.html | http://sws.geonames.org/2975926/ |
| "green"^^xsd:string | http://img.jamendo.com/artists/g/green.jpg | http://rainbow.blogdns.net | http://sws.geonames.org/3017382/ |
| "nanar mouskouri"^^xsd:string | http://img.jamendo.com/artists/n/nanar.mouskouri.jpg | http://membres.lycos.fr/hapock/ | http://sws.geonames.org/3013500/ |
| "Empathik"^^xsd:string | http://img.jamendo.com/artists/e/empathik.jpg | http://www.myspace.com/empathik | http://sws.geonames.org/2975246/ |
| "Auricular"^^xsd:string | http://img.jamendo.com/artists/a/auricular.jpg | http://www.thebasingers.com/auricular/ | http://sws.geonames.org/6252001/ |
| "SMILEY"^^xsd:string | http://img.jamendo.com/artists/s/smiley.gif | http://www.smileymusic.fr | http://sws.geonames.org/3012715/ |
| "Ptit lutin"^^xsd:string | http://img.jamendo.com/artists/p/ptit.lutin.jpg | file:///home/yves/jamendo/www.myspace.com/max00u_0 | http://sws.geonames.org/2989663/ |
| "kiseki"^^xsd:string | http://img.jamendo.com/artists/k/kisekii.png | http://www.myspace.com/kiseki77 | http://sws.geonames.org/2975249/ |
| "Stoke"^^xsd:string | http://img.jamendo.com/artists/s/stoke.jpg | http://www.stokepunkrock.com | http://sws.geonames.org/2510769/ |
| "Projet Hajra"^^xsd:string | http://img.jamendo.com/artists/p/projethajra.jpg | http://myspace.com/projethajra | http://sws.geonames.org/3013736/ |
| "Matieu"^^xsd:string | http://img.jamendo.com/artists/m/matieu.jpg | http://www.matieu.net | http://sws.geonames.org/2991627/ |
| "j.s.marti"^^xsd:string | http://img.jamendo.com/artists/j/j.s.marti.jpg | http://www.myspace.com/jsmartimusic | http://sws.geonames.org/6424360/ |
| "Titee & Pixieguts"^^xsd:string | http://img.jamendo.com/artists/t/titee.pixieguts.jpg | http://myspace.com/titeepixieguts | http://sws.geonames.org/2077456/ |
| "Franco Uda"^^xsd:string | http://img.jamendo.com/artists/f/francouda.jpg | http://francouda.blogspot.com | http://sws.geonames.org/3165241/ |
| "bazzmann"^^xsd:string | http://img.jamendo.com/artists/b/bazzmann.png | http://www.marcotrevisan.it/ | http://sws.geonames.org/3164600/ |
| "Cellardoor"^^xsd:string | http://img.jamendo.com/artists/c/cellardoor.jpg | http://cellardoor.netsons.org | http://sws.geonames.org/3175120/ |
| "Daniel Bautista"^^xsd:string | http://img.jamendo.com/artists/d/daniel.bautista.jpg | http://www.danielbautista.com | http://sws.geonames.org/2515271/ |
| "non-conforme"^^xsd:string | http://img.jamendo.com/artists/n/non-conforme.jpg | http://www.myspace.com/nonconforme10 | http://sws.geonames.org/3036420/ |
| "Digital Bros."^^xsd:string | http://img.jamendo.com/artists/d/digital.bros.jpg | http://digital.noise.free.fr | http://sws.geonames.org/3034720/ |
| "R6.3zist"^^xsd:string | http://img.jamendo.com/artists/r/r6.3zist.jpg | http://www.myspace.com/r63zist | http://sws.geonames.org/3013657/ |
| "Existence"^^xsd:string | http://img.jamendo.com/artists/e/existence.jpg | http://existenceleblog.blogspot.com/ | http://sws.geonames.org/2968815/ |
| "Jomeini Taim"^^xsd:string | http://img.jamendo.com/artists/j/jomeini.taim.jpg | http://www.areahiphop.com/maquetas.php?i=12 | http://sws.geonames.org/2510769/ |
| "Acherusia"^^xsd:string | http://img.jamendo.com/artists/a/acherusia.png | http://www.acherusia.tk | http://sws.geonames.org/2994111/ |
| "Conchadors"^^xsd:string | http://img.jamendo.com/artists/c/conchadors.jpg | http://www.conchadors.com | http://sws.geonames.org/325302/ |
| "JPMOUNIER"^^xsd:string | http://img.jamendo.com/artists/j/jpmounier.jpg | http://jazzodiaque.blogspot.com | http://sws.geonames.org/2984885/ |
| "Ecliptika"^^xsd:string | http://img.jamendo.com/artists/e/ecliptika.jpg | http://www.myspace.com/ecliptika | http://sws.geonames.org/6355233/ |
| "BeatRaider"^^xsd:string | http://img.jamendo.com/artists/b/beatraider.jpg | http://www.myspace.com/beat_raider | http://sws.geonames.org/2841464/ |
| "Idryss"^^xsd:string | http://img.jamendo.com/artists/i/idryss.jpg | http://kankasia.free.fr | http://sws.geonames.org/2968815/ |
| "Kokkaljós"^^xsd:string | http://img.jamendo.com/artists/k/kokkaljos.jpg | http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid=176963174 | http://sws.geonames.org/2629691/ |
| "[ i ]"^^xsd:string | http://img.jamendo.com/artists/i/i-rock.jpg | http://i-rock.pl | http://sws.geonames.org/798544/ |
| "Oooh !!!"^^xsd:string | http://img.jamendo.com/artists/o/oooh.jpg | http://oooh.free.fr/ | http://sws.geonames.org/3021501/ |
| "meterRruidos"^^xsd:string | http://img.jamendo.com/artists/m/meterrruidos.jpg | http://meterrruidos.blogspot.com | http://sws.geonames.org/2510769/ |
| "Uberlulu"^^xsd:string | http://img.jamendo.com/artists/u/uberlulu.jpg | http://www.e-monsite.com/uberlulu/ | http://sws.geonames.org/3337521/ |
| "AUSTERLITZ"^^xsd:string | http://img.jamendo.com/artists/a/austerlitz.jpg | http://www.myspace.com/austerlitzrock | http://sws.geonames.org/2968815/ |
| "Bears In Black"^^xsd:string | http://img.jamendo.com/artists/b/bears.in.black1.jpg | http://myspace.com/bearsinblack | http://sws.geonames.org/3013767/ |
| "pornophonique"^^xsd:string | http://img.jamendo.com/artists/p/pornophonique.jpg | http://www.pornophonique.de | http://sws.geonames.org/6557769/ |
| "SICKBAG"^^xsd:string | http://img.jamendo.com/artists/s/sickbag.jpg | http://www.sickbag.pl | http://sws.geonames.org/798544/ |
| "Susan Rom"^^xsd:string | http://img.jamendo.com/artists/s/susan.rom.jpg | http://www.myspace.com/susanrom | http://sws.geonames.org/3209442/ |
| "Tom Crusader"^^xsd:string | http://img.jamendo.com/artists/t/tom.crusader.jpg | http://tcmusic.mine.nu/ | http://sws.geonames.org/2661886/ |
| "C. Glen Williams"^^xsd:string | http://img.jamendo.com/artists/c/c.glen.williams.jpg | http://www.kallixti.net | http://sws.geonames.org/6252001/ |
| "Nakazawa Fusako"^^xsd:string | http://img.jamendo.com/artists/e/ensemblekoto.jpg | http://www.ensemblekoto.it | http://sws.geonames.org/3164600/ |
| "Electrosaurio"^^xsd:string | http://img.jamendo.com/artists/e/electrosaurio.jpg | http://www.electrosaurio.com.ar | http://sws.geonames.org/3865483/ |
| "herr gau"^^xsd:string | http://img.jamendo.com/artists/h/herr.gau.jpg | http://www.soundclick.com/herrgau | http://sws.geonames.org/2911297/ |
| "CHRISTINE"^^xsd:string | http://img.jamendo.com/artists/c/christine.jpg | http://www.myspace.com/christinevousaime | http://sws.geonames.org/3031359/ |
| "Punkteticos"^^xsd:string | http://img.jamendo.com/artists/p/punkteticos.jpg | http://punkteticos.iespana.es | http://sws.geonames.org/3865483/ |
| "four-O-four"^^xsd:string | http://img.jamendo.com/artists/f/four-o-four.jpg | http://www.four-O-four.com | http://sws.geonames.org/2921044/ |
| "MFTM (music for the minority)"^^xsd:string | http://img.jamendo.com/artists/m/mftm.jpg | http://www.MFTM.co.nr | http://sws.geonames.org/2963597/ |
| "Naadir"^^xsd:string | http://img.jamendo.com/artists/n/naadir.jpg | http://myspace.com/naadirsalerno | http://sws.geonames.org/3168670/ |
| "DeeJay PowerG"^^xsd:string | http://img.jamendo.com/artists/d/deejay.powerg.png | http://www.dj-powerg.fr.nf/ | http://sws.geonames.org/2658182/ |
| "Broken Steel"^^xsd:string | http://img.jamendo.com/artists/b/broken.steel.jpg | http://brokensteel.blogspot.com/ | http://sws.geonames.org/798544/ |
| "Mobiuself"^^xsd:string | http://img.jamendo.com/artists/m/mobius.jpg | http://perso.wanadoo.fr/mobius.musique | http://sws.geonames.org/3013767/ |
| "Silt"^^xsd:string | http://img.jamendo.com/artists/s/silt.jpg | http://www.myspace.com/groupesilt | http://sws.geonames.org/2975248/ |
| "miss daisy black"^^xsd:string | http://img.jamendo.com/artists/m/miss.daisy.black.jpg | http://www.myspace.com/missdaisyblack | http://sws.geonames.org/3017382/ |
| "Die feuchte Elfriede"^^xsd:string | http://img.jamendo.com/artists/d/die.feuchte.elfriede.jpg | http://pearlmande.blogspot.com/ | http://sws.geonames.org/6556330/ |
| "Chili 70"^^xsd:string | http://img.jamendo.com/artists/c/chili.70.jpg | http://chili70.over-blog.net/ | http://sws.geonames.org/2984887/ |
| "dteix"^^xsd:string | http://img.jamendo.com/artists/d/dteix.jpg | http://www.dteix.net | http://sws.geonames.org/2990129/ |
| "Mr Darkmind"^^xsd:string | http://img.jamendo.com/artists/m/mr.darkmind.jpg | http://mrdarkmind.free.fr | http://sws.geonames.org/2991627/ |
| "CONFUSION IS NEXT"^^xsd:string | http://img.jamendo.com/artists/c/confusion.is.next.jpg | http://www.myspace.com/confusionisnext | http://sws.geonames.org/3173434/ |
| "Angelo Romano"^^xsd:string | http://img.jamendo.com/artists/a/aromano.jpg | http://leader.altervista.org/music/ | http://sws.geonames.org/3170646/ |
| "Strange Republik"^^xsd:string | http://img.jamendo.com/artists/s/strangerepublik.png | http://www.strangerepublik.com | http://sws.geonames.org/6252001/ |
| "The Same Street"^^xsd:string | http://img.jamendo.com/artists/t/the.same.street.jpg | http://www.thesamestreet.com | http://sws.geonames.org/2802361/ |
| "Reciclados"^^xsd:string | http://img.jamendo.com/artists/r/reciclados.gif | http://puercoespines.iespana.es | http://sws.geonames.org/2510910/ |
| "Sans-Ouate !!!"^^xsd:string | http://img.jamendo.com/artists/s/sans-ouate.jpg | http://sansouate.free.fr | http://sws.geonames.org/2990129/ |
| "komein"^^xsd:string | http://img.jamendo.com/artists/k/komein.jpg | http://iplusplus-records.net | http://sws.geonames.org/2968815/ |
| "plusp"^^xsd:string | http://img.jamendo.com/artists/p/plusp.jpg | http://iplusplus-records.net | http://sws.geonames.org/2968815/ |
| "enslyon"^^xsd:string | http://img.jamendo.com/artists/e/enslyon.jpg | http://iplusplus-records.net | http://sws.geonames.org/2968815/ |
| "software"^^xsd:string | http://img.jamendo.com/artists/s/software.jpg | http://iplusplus-records.net | http://sws.geonames.org/2968815/ |
| "notolerance"^^xsd:string | http://img.jamendo.com/artists/n/notolerance.jpg | file:///home/yves/jamendo/http//www.jamendo.com/artist/notolerance/ | http://sws.geonames.org/2782113/ |
| "Logout"^^xsd:string | http://img.jamendo.com/artists/l/logout.jpg | http://www.diebanddiesichlogoutnennt.de | http://sws.geonames.org/2884161/ |
| "Illusion of Art"^^xsd:string | http://img.jamendo.com/artists/i/illusion.of.art.jpg | http://illusionofart.com/ | http://sws.geonames.org/6252001/ |
| "L.L. de Mars"^^xsd:string | http://img.jamendo.com/artists/l/l.l.de.mars.gif | http://www.le-terrier.net | http://sws.geonames.org/3012849/ |
| "Manguina"^^xsd:string | http://img.jamendo.com/artists/m/manguina.jpg | http://www.manguina.net | http://sws.geonames.org/2968815/ |
| "Conny Olivetti"^^xsd:string | http://img.jamendo.com/artists/o/olivetti.jpg | http://www.whatif.nu/ | http://sws.geonames.org/2661886/ |
| "Mister Electric Demon & Redribbon"^^xsd:string | http://img.jamendo.com/artists/M/Mister_Electric_Demon_Redribbon.jpg | http://medcg.free.fr | http://sws.geonames.org/3017382/ |
| "BOOSTIE"^^xsd:string | http://img.jamendo.com/artists/b/boostie.jpg | http://www.boostie.com | http://sws.geonames.org/3015948/ |
| "Proiler"^^xsd:string | http://img.jamendo.com/artists/p/proiler.jpg | http://www.proiler.com | http://sws.geonames.org/2973362/ |
| "KTan"^^xsd:string | http://img.jamendo.com/artists/k/ktan.jpg | http://www.ktan.net | http://sws.geonames.org/3012715/ |
| "Antarhes"^^xsd:string | http://img.jamendo.com/artists/a/antarhes.jpg | http://www.antarhes.com | http://sws.geonames.org/2984887/ |
| "Thierry Secqueville"^^xsd:string | http://img.jamendo.com/artists/t/thierry.secqueville.jpg | http://www.myspace.com/thierry_secqueville | http://sws.geonames.org/3031359/ |
| "GUILLO"^^xsd:string | http://img.jamendo.com/artists/g/guillo.jpg | http://www.guilloland.com | http://sws.geonames.org/3007866/ |
| "Arcadiaz"^^xsd:string | http://img.jamendo.com/artists/a/arcadiaz.jpg | http://pibilinn.free.fr | http://sws.geonames.org/3023414/ |
| "Alexis"^^xsd:string | http://img.jamendo.com/artists/a/alexis.jpg | http://www.chatougri.com | http://sws.geonames.org/3012849/ |
| "ZooL"^^xsd:string | http://img.jamendo.com/artists/z/zool.jpg | http://zoolzone.free.fr | http://sws.geonames.org/2975249/ |
| "NeXuS"^^xsd:string | http://img.jamendo.com/artists/n/nexus.jpg | http://www.nexus-trance.fr | http://sws.geonames.org/3013767/ |
| "eXe's"^^xsd:string | http://img.jamendo.com/artists/e/exe.s.jpg | http://www.groupe-exes.com | http://sws.geonames.org/3031359/ |
| "DIG"^^xsd:string | http://img.jamendo.com/artists/d/dig.jpg | http://dig.fb.bz | http://sws.geonames.org/2988430/ |
| "Redmind"^^xsd:string | http://img.jamendo.com/artists/r/redmind.jpg | http://jlanthea.free.fr/jamendo/ | http://sws.geonames.org/2970749/ |
| "Donna"^^xsd:string | http://img.jamendo.com/artists/d/donna.jpg | http://donna.grand-teton.net | http://sws.geonames.org/2968815/ |
| "FOOL DADAZ FIRE"^^xsd:string | http://img.jamendo.com/artists/m/mais.69.jpg | http://fooldadazfire.free.fr | http://sws.geonames.org/2968815/ |
| "Lorenzo and the Lamas"^^xsd:string | http://img.jamendo.com/artists/l/lorenzo.and.the.lamas.jpg | http://mais69.hautetfort.com | http://sws.geonames.org/2997861/ |
| "LEGO"^^xsd:string | http://img.jamendo.com/artists/l/lego.jpg | http://www.myspace.com/legolag | http://sws.geonames.org/3013767/ |
| "NO"^^xsd:string | http://img.jamendo.com/artists/n/no.gif | http://www.website-no.com | http://sws.geonames.org/6252001/ |
| "Back On"^^xsd:string | http://img.jamendo.com/artists/b/back.on.jpg | http://backon.es | http://sws.geonames.org/2510769/ |
| "dilo"^^xsd:string | http://img.jamendo.com/artists/d/dilo.jpg | http://www.dilo.org | http://sws.geonames.org/2510769/ |
| "NALYSTIN"^^xsd:string | http://img.jamendo.com/artists/n/nalystin.jpg | http://www.nalystin.com | http://sws.geonames.org/3013767/ |
| "Lonah"^^xsd:string | http://img.jamendo.com/artists/l/lonah.jpg | http://www.lonah.net | http://sws.geonames.org/2968815/ |
| "K-DJ"^^xsd:string | http://img.jamendo.com/artists/k/k-dj.jpg | http://www.freewebs.com/slyge/kdj.htm | http://sws.geonames.org/2997861/ |
| "Detenzya"^^xsd:string | http://img.jamendo.com/artists/d/detenzya.jpg | http://www.detenzya.clan.st | http://sws.geonames.org/2991627/ |
| "MASTAROTH"^^xsd:string | http://img.jamendo.com/artists/m/mastaroth.jpg | http://mastaroth.free.fr | http://sws.geonames.org/3013767/ |
| "dj-cat"^^xsd:string | http://img.jamendo.com/artists/d/dj-cat.jpg | http://www.neomusicstore.com/downloads/digital-1f9e24517dea-dj-cat-rechauffement-enigmatique-independent-artist.html | http://sws.geonames.org/3013767/ |
| "Les Sens Crient"^^xsd:string | http://img.jamendo.com/artists/l/les.sens.crient.jpg | http://www.les-sens-crient.com | http://sws.geonames.org/3023423/ |
| "joKeR"^^xsd:string | http://img.jamendo.com/artists/j/joker.jpg | http://jeldora.cowblog.fr | http://sws.geonames.org/3015948/ |
| "Steven Dunston"^^xsd:string | http://img.jamendo.com/artists/s/steven.dunston.jpg | http://www.stevendunston.com | http://sws.geonames.org/6252001/ |
| "Carlos Saura"^^xsd:string | http://img.jamendo.com/artists/c/carlosaura.jpg | http://www.carlosaura.com | http://sws.geonames.org/2510769/ |
| "Andy Pierron"^^xsd:string | http://img.jamendo.com/artists/a/andy.pierron.jpg | http://www.liverdun.com/perso/andy/index.htm | http://sws.geonames.org/2994111/ |
| "Rafa Caballero"^^xsd:string | http://img.jamendo.com/artists/r/rafacaballero.png | http://www.rafacaballero.es | http://sws.geonames.org/2510769/ |
| "En Busca Del Pasto"^^xsd:string | http://img.jamendo.com/artists/e/en.busca.del.pasto.jpg | http://www.enbuscadelpasto.com | http://sws.geonames.org/2510769/ |
| "Lolo Tof"^^xsd:string | http://img.jamendo.com/artists/l/lolo.tof.jpg | http://www.lolotof.es.vg | http://sws.geonames.org/2510769/ |
| "adel"^^xsd:string | http://img.jamendo.com/artists/a/adel.jpg | http://adel.net.free.fr | http://sws.geonames.org/3013657/ |
| "Innerchaos"^^xsd:string | http://img.jamendo.com/artists/i/innerchaos.jpg | http://www.innerchaos.net | http://sws.geonames.org/2968815/ |
| "Arietys"^^xsd:string | http://img.jamendo.com/artists/a/arietys.jpg | http://arietys.free.fr | http://sws.geonames.org/2990129/ |
| "Urban Castle Magic"^^xsd:string | http://img.jamendo.com/artists/u/urbancastlemagic.gif | http://www.urbancastlemagic.com | http://sws.geonames.org/2510769/ |
| "Ogg Vorbis"^^xsd:string | http://img.jamendo.com/artists/o/ogg.vorbis.jpg | http://www.myspace.com/bigbazar | http://sws.geonames.org/3013500/ |
| "denis lecarme"^^xsd:string | http://img.jamendo.com/artists/d/denis.lecarme.jpg | http://www.denislecarme.com | http://sws.geonames.org/2987410/ |
| "Gina Artworth"^^xsd:string | http://img.jamendo.com/artists/g/gina.artworth.jpg | http://www.another-record.com | http://sws.geonames.org/3017382/ |
| "Sinn"^^xsd:string | http://img.jamendo.com/artists/s/sinn.gif | http://www.sinnproject.com | http://sws.geonames.org/2968815/ |
| "TONTO"^^xsd:string | http://img.jamendo.com/artists/e/erestonto.gif | http://www.erestonto.info | http://sws.geonames.org/2510769/ |
| "jiboul"^^xsd:string | http://img.jamendo.com/artists/j/jiboul.jpg | http://mouvementlibre.fr.nf | http://sws.geonames.org/2997856/ |
| "The Other White Noise"^^xsd:string | http://img.jamendo.com/artists/t/theotherwhitenoise.png | http://www.theotherwhitenoise.com/ | http://sws.geonames.org/6252001/ |
| "Ed L'Epicier"^^xsd:string | http://img.jamendo.com/artists/e/edlepiciereh.jpg | http://edlepiciereh.free.fr | http://sws.geonames.org/3019599/ |
| "Drunksouls"^^xsd:string | http://img.jamendo.com/artists/d/drunksouls.jpg | http://www.drunksouls.com | http://sws.geonames.org/3031359/ |
| "Kiff'On"^^xsd:string | http://img.jamendo.com/artists/k/kiff.on.gif | http://www.kiffon.com | http://sws.geonames.org/2997861/ |
| "Juan de Buxó"^^xsd:string | http://img.jamendo.com/artists/j/juan.de.buxo.jpg | http://www.juandebuxo.com | http://sws.geonames.org/3113208/ |
| "bad loop"^^xsd:string | http://img.jamendo.com/artists/b/badloop.jpg | http://www.badloop.com | http://sws.geonames.org/660013/ |
| name | img | hp | loc |
|---|---|---|---|
| "Cicada"^^xsd:string | http://img.jamendo.com/artists/h/hattrickman.jpg | http://www.cicada.fr.st | http://sws.geonames.org/3031359/ |
| "Hace Soul"^^xsd:string | http://img.jamendo.com/artists/h/hace.soul.jpg | http://www.hacesoul.com | http://sws.geonames.org/2510769/ |
| "vincent j"^^xsd:string | http://img.jamendo.com/artists/v/vincentj.jpg | http://v.joudrier.free.fr/SiteV | http://sws.geonames.org/3020781/ |
| "NoU"^^xsd:string | http://img.jamendo.com/artists/n/nou.gif | http://www.noumusic.be | http://sws.geonames.org/2802361/ |
| "Margin of Safety"^^xsd:string | http://img.jamendo.com/artists/m/mos.jpg | http://wheresthestation.blogspot.com/ | http://sws.geonames.org/660013/ |
| "Bobywan"^^xsd:string | http://img.jamendo.com/artists/b/bobywan.jpg | http://bobywan.over-blog.org | http://sws.geonames.org/3923057/ |
| "Les Clip's"^^xsd:string | http://img.jamendo.com/artists/l/les.clips.jpg | http://www.chez.com/theclips/ | http://sws.geonames.org/3023414/ |
| "Carter Hotel"^^xsd:string | http://img.jamendo.com/artists/c/carter.hotel.jpg | http://sws.geonames.org/3013767/ | |
| "La Tumba"^^xsd:string | http://img.jamendo.com/artists/l/la.tumba.jpg | http://www.tumbalaye.com | http://sws.geonames.org/2967196/ |
| "King Dubby"^^xsd:string | http://img.jamendo.com/artists/k/king.dubby.jpg | http://kingdubby.hautetfort.com/ | http://sws.geonames.org/2996663/ |
| "vavrek"^^xsd:string | http://img.jamendo.com/artists/v/vavrek.jpg | http://vavrek.com | http://sws.geonames.org/6252001/ |
| "Suerte"^^xsd:string | http://img.jamendo.com/artists/s/suerte.jpg | http://suerte.hautetfort.com | http://sws.geonames.org/3036264/ |
| "My Name Is Fantastik"^^xsd:string | http://img.jamendo.com/artists/m/my.name.is.fantastik.png | http://www.myspace.com/mynameisfantastik | http://sws.geonames.org/3038049/ |
| "KEPAY"^^xsd:string | http://img.jamendo.com/artists/k/kepay.jpg | http://www.kepay.net | http://sws.geonames.org/2510769/ |
| "t r y ^ d"^^xsd:string | http://img.jamendo.com/artists/t/tryad.jpg | http://tryad.org/ | http://sws.geonames.org/6252001/ |
| "Buzzworkers"^^xsd:string | http://img.jamendo.com/artists/b/buzzworkers.jpg | http://www.buzzworkers.com | http://sws.geonames.org/2802361/ |
| "Mr Nuts"^^xsd:string | http://img.jamendo.com/artists/m/mr.nuts.jpg | http://www.mrnuts.net | http://sws.geonames.org/2510769/ |
| "Stian"^^xsd:string | http://img.jamendo.com/artists/s/stian.jpg | http://lignu.no | http://sws.geonames.org/3133897/ |
| "isotrak"^^xsd:string | http://isotrak.free.fr | http://sws.geonames.org/3017382/ | |
| "433 erOs"^^xsd:string | http://img.jamendo.com/artists/4/433.eros.jpg | http://users.skynet.be/fa869102/ | http://sws.geonames.org/2802361/ |
| "Mael"^^xsd:string | http://img.jamendo.com/artists/m/mael.jpg | http://fr.audiofanzine.com/compos/titres/index,idmembre,170802.html | http://sws.geonames.org/3018471/ |
| "Haine Brigade"^^xsd:string | http://img.jamendo.com/artists/h/haine.brigade.jpg | http://hainebrigade.free.fr/index.htm | http://sws.geonames.org/2987410/ |
| "woc007"^^xsd:string | http://img.jamendo.com/artists/w/woc007.jpg | http://www.dogmazic.net/woc007 | http://sws.geonames.org/2975246/ |
| "Le Leprechaune"^^xsd:string | http://img.jamendo.com/artists/l/leleprechaune.gif | http://leleprechaune.free.fr/ | http://sws.geonames.org/2990129/ |
| "amandine"^^xsd:string | http://www.mandine.free.fr/blog/ | http://sws.geonames.org/3017382/ | |
| "lecyr"^^xsd:string | http://img.jamendo.com/artists/l/lecyr.jpg | http://synthosaure.free.fr | http://sws.geonames.org/2968815/ |
| "MEA"^^xsd:string | http://img.jamendo.com/artists/m/mea.png | http://frenchlaboratoryof.ifrance.com | http://sws.geonames.org/2984986/ |
| "Dubphil"^^xsd:string | http://img.jamendo.com/artists/d/dubphil.jpg | http://dubphil.free.fr | http://sws.geonames.org/3034720/ |
| "crashtesttaurus"^^xsd:string | http://img.jamendo.com/artists/c/crashtesttaurus.jpg | http://imprec.free.fr | http://sws.geonames.org/2997857/ |
| "PARALLAX VIEW"^^xsd:string | http://img.jamendo.com/artists/p/parallax.view.jpg | http://pxv.wgp.be | http://sws.geonames.org/2802361/ |
| "Les Féelarsen"^^xsd:string | http://img.jamendo.com/artists/f/feelarsen.gif | http://feelarsen.over-blog.com | http://sws.geonames.org/2969280/ |
| "Spleen"^^xsd:string | http://img.jamendo.com/artists/s/spleen.jpg | http://perso.orange.fr/Spleen.Music/ | http://sws.geonames.org/2971071/ |
| "MAKO"^^xsd:string | http://img.jamendo.com/artists/m/mako.jpg | http://makolove.blogspot.com | http://sws.geonames.org/3017382/ |
| "Bambax"^^xsd:string | http://img.jamendo.com/artists/b/bambax.gif | http://www.bambax.com/ | http://sws.geonames.org/2968815/ |
| "K.Lin"^^xsd:string | http://img.jamendo.com/artists/k/k.lin.jpg | http://perso.wanadoo.fr/jyppe | http://sws.geonames.org/2968815/ |
| "seriA"^^xsd:string | http://img.jamendo.com/artists/s/seria.jpg | http://sws.geonames.org/2968815/ | |
| "DJ DEVINCI"^^xsd:string | http://img.jamendo.com/artists/d/dj.devinci.jpg | http://djdevincimusicworld.wifeo.com/ | http://sws.geonames.org/3020989/ |
| "Phantom ladies over Paris"^^xsd:string | http://img.jamendo.com/artists/p/phantom.ladies.over.paris.jpg | http://www.phantomladiesoverparis.com | http://sws.geonames.org/3023423/ |
| "Karl Cosmos"^^xsd:string | http://img.jamendo.com/artists/k/karl.cosmos.jpg | http://www.karlcosmos.com | http://sws.geonames.org/2968815/ |
| "Vertiges"^^xsd:string | http://img.jamendo.com/artists/v/vertiges.jpg | http://www.vertiges.fr.tc | http://sws.geonames.org/3031359/ |
| "snapo"^^xsd:string | http://img.jamendo.com/artists/s/snapo.jpg | http://snaposong.free.fr | http://sws.geonames.org/3038049/ |
| "Happiness Project"^^xsd:string | http://img.jamendo.com/artists/h/happiness.project.jpg | http://www.myspace.com-happinessproject | http://sws.geonames.org/3013719/ |
| "Geminius Corpus"^^xsd:string | http://img.jamendo.com/artists/g/geminius.corpus.jpg | http://geminius.corpus.voila.fr | http://sws.geonames.org/2971071/ |
| "Niconoclaste"^^xsd:string | http://img.jamendo.com/artists/n/niconoclaste.jpg | http://www.niconoclaste.blogspot.com | http://sws.geonames.org/2968815/ |
| "Dj EWAS"^^xsd:string | http://img.jamendo.com/artists/d/dj.ewas.jpg | http://www.myspace.com/nerfamily | http://sws.geonames.org/3013657/ |
| "Patknot"^^xsd:string | http://img.jamendo.com/artists/p/patknot.jpg | http://patknot.hautetfort.com/ | http://sws.geonames.org/2658434/ |
| "Franck "KP7" Cappellacci"^^xsd:string | http://img.jamendo.com/artists/f/franck.kp7.cappellacci.jpg | http://karmakomae.free.fr/IHDB/ | http://sws.geonames.org/2994111/ |
| "jibs"^^xsd:string | http://img.jamendo.com/artists/j/jibs.jpg | http://jibs.hautetfort.com/ | http://sws.geonames.org/2975248/ |
| "Djet"^^xsd:string | http://img.jamendo.com/artists/d/djet.jpg | http://djet.hearusplay.com/ | http://sws.geonames.org/2017370/ |
| "Vinc2"^^xsd:string | http://img.jamendo.com/artists/v/vinc2.jpg | http://vinc2creations.free.fr | http://sws.geonames.org/3013736/ |
| "Rescue Rangers"^^xsd:string | http://img.jamendo.com/artists/r/rescue.rangers.gif | http://www.myspace.com/rangersdurisque | http://sws.geonames.org/3031359/ |
| "Ninja force"^^xsd:string | http://img.jamendo.com/artists/n/ninja.force.jpg | http://ninja.force.free.fr | http://sws.geonames.org/3013500/ |
| "Eldorado"^^xsd:string | http://img.jamendo.com/artists/e/eldorado.jpg | http://www.eldorado.zik.mu | http://sws.geonames.org/2975248/ |
| "SyNopTiK"^^xsd:string | http://img.jamendo.com/artists/s/synoptik.jpg | http://synoptik.9online.fr/ | http://sws.geonames.org/3019599/ |
| "GDM"^^xsd:string | http://img.jamendo.com/artists/g/gdm.jpg | http://www.gdm-music.com | http://sws.geonames.org/3012849/ |
| "Les Jocks"^^xsd:string | http://img.jamendo.com/artists/l/les.jocks.jpg | http://jocks.online.free.fr | http://sws.geonames.org/2973362/ |
| "Mac Lomig"^^xsd:string | http://img.jamendo.com/artists/m/mac.lomig.jpg | http://www.myspace.com/mlomig | http://sws.geonames.org/2975926/ |
| "Jérémy Dewinter"^^xsd:string | http://img.jamendo.com/artists/j/jeremy.dewinter.jpg | http://www.jeremydewinter.com | http://sws.geonames.org/2990129/ |
| "Phoniques"^^xsd:string | http://img.jamendo.com/artists/p/phoniques.jpg | http://www.phoniques.ch | http://sws.geonames.org/2658434/ |
| "Binärpilot"^^xsd:string | http://img.jamendo.com/artists/b/binaerpilot.jpg | http://www.binaerpilot.info | http://sws.geonames.org/3144096/ |
| "Bluster"^^xsd:string | http://img.jamendo.com/artists/b/bluster.jpg | http://www.myspace.com/thebluster | http://sws.geonames.org/3034720/ |
| "KING D.A."^^xsd:string | http://img.jamendo.com/artists/k/kingda.jpg | http://www.wat.tv/KINGDA | http://sws.geonames.org/2970140/ |
| "TANAEKA"^^xsd:string | http://img.jamendo.com/artists/t/tanaeka.gif | http://www.tanaeka.com | http://sws.geonames.org/3013500/ |
| "Michiboux"^^xsd:string | http://img.jamendo.com/artists/m/michiboux.jpg | http://www.geocities.com/michiboux/ | http://sws.geonames.org/3019317/ |
| "Switch oN"^^xsd:string | http://img.jamendo.com/artists/s/switch.on.jpg | http://www.switch-on-groupe.com | http://sws.geonames.org/2995603/ |
| "AMPM"^^xsd:string | http://img.jamendo.com/artists/a/ampm.jpg | http://www.ampm-officiel.com | http://sws.geonames.org/3034720/ |
| "Midi Clock"^^xsd:string | http://img.jamendo.com/artists/m/midi.clock.jpg | http://perso.wanadoo.fr/sebastien.manaches/ | http://sws.geonames.org/2968815/ |
| "Bézèd'h"^^xsd:string | http://img.jamendo.com/artists/b/b.z.d.h.jpg | http://www.bezedh.com | http://sws.geonames.org/3013663/ |
| "Akeuponctur"^^xsd:string | http://img.jamendo.com/artists/a/akeuponctur.jpg | http://akeuponctur.blogspot.com | http://sws.geonames.org/2975926/ |
| "Bodycocktail"^^xsd:string | http://img.jamendo.com/artists/b/bodycocktail.gif | http://zh27.blogspot.com | http://sws.geonames.org/6252001/ |
| "Melampyre"^^xsd:string | http://img.jamendo.com/artists/m/melampyre.jpg | http://www.melampyre.com/ | http://sws.geonames.org/2975249/ |
| "Neurone"^^xsd:string | http://img.jamendo.com/artists/n/neurone.jpg | http://imprec.free.fr/artistfiche.php?id=13 | http://sws.geonames.org/2997857/ |
| "Fenshu"^^xsd:string | http://img.jamendo.com/artists/f/fenshu.jpg | http://fenshu.free.fr | http://sws.geonames.org/2997857/ |
| "DUK"^^xsd:string | http://img.jamendo.com/artists/d/duk.gif | http://imprec.free.fr/artistfiche.php?id=8 | http://sws.geonames.org/2997857/ |
| "Dud"^^xsd:string | http://img.jamendo.com/artists/d/dud.jpg | http://www.dudmusic.fr | http://sws.geonames.org/3031359/ |
| "ultraphallus"^^xsd:string | http://img.jamendo.com/artists/u/ultraphallus.gif | http://www.ultraphallus.be/ | http://sws.geonames.org/2802361/ |
| "REGIM LIQUID"^^xsd:string | http://img.jamendo.com/artists/r/regim.liquid.jpg | http://regimliquid.free.fr | http://sws.geonames.org/3031359/ |
| "superstring theory"^^xsd:string | http://img.jamendo.com/artists/s/superstring.theory.jpg | http://www.jamendo.com/?superstring.theory | http://sws.geonames.org/2976082/ |
| "T-ROOTS"^^xsd:string | http://img.jamendo.com/artists/t/t-roots.jpg | http://t-roots.ifrance.com | http://sws.geonames.org/2970140/ |
| "SILVER666"^^xsd:string | http://img.jamendo.com/artists/s/silver666.png | http://silver666musica.blogspot.com/ | http://sws.geonames.org/3015948/ |
| "RMX"^^xsd:string | http://img.jamendo.com/artists/r/rmx.gif | http://rmx.oldiblog.com/ | http://sws.geonames.org/3023423/ |
| "Zero Vs. One"^^xsd:string | http://img.jamendo.com/artists/z/zero.vs.one.jpg | http://www.sheket.net | http://sws.geonames.org/294640/ |
| "CRS"^^xsd:string | http://img.jamendo.com/artists/c/crs.jamendo.com.jpg | http://misere-record.skyblog.com | http://sws.geonames.org/2975248/ |
| "Extatik"^^xsd:string | http://img.jamendo.com/artists/e/extatik.jpg | http://www.extatik.net | http://sws.geonames.org/3038111/ |
| "c-nergy"^^xsd:string | http://img.jamendo.com/artists/c/c-nergy.jpg | http://www.c-nergy.fr.nr | http://sws.geonames.org/2996268/ |
| "Binary Mind"^^xsd:string | http://img.jamendo.com/artists/b/binary.mind.jpg | http://www.binarymind.org | http://sws.geonames.org/2968815/ |
| "Meleliale"^^xsd:string | http://img.jamendo.com/artists/m/meleliale.png | http://acer.ilrt.bris.ac.uk/~ale/music/elianmel/ | |
| "Lysthea"^^xsd:string | http://img.jamendo.com/artists/l/lysthea.jpg | http://www.lysthea.com | http://sws.geonames.org/2991627/ |
| "Saint-Jean"^^xsd:string | http://img.jamendo.com/artists/b/bouvier.jpg | http://jeanobob.ifrance.com/ | http://sws.geonames.org/3018471/ |
| "LUXUS"^^xsd:string | http://img.jamendo.com/artists/l/luxus.jpg | http://www.luxus.lu | http://sws.geonames.org/2960313/ |
| "Briareus"^^xsd:string | http://img.jamendo.com/artists/b/briareus.jpg | http://www.myspace.com/briareusmusic | http://sws.geonames.org/6252001/ |
| "Juice lee"^^xsd:string | http://img.jamendo.com/artists/j/juice.lee.jpg | http://www.juicelee.net | http://sws.geonames.org/3019599/ |
| "Gauthier Paturo"^^xsd:string | http://img.jamendo.com/artists/g/gauthier.paturo.jpg | http://www.ma-bonne-etoile.com | http://sws.geonames.org/2968815/ |
| "kyrriel"^^xsd:string | http://sws.geonames.org/2987410/ | ||
| "Bacco Baccanels"^^xsd:string | http://img.jamendo.com/artists/b/bacco.baccanels.jpg | http://www.baccobaccanels.com | http://sws.geonames.org/3175395/ |
| "Boris Blend"^^xsd:string | http://img.jamendo.com/artists/b/boris.blend.jpg | http://sws.geonames.org/3023414/ | |
| "kerana"^^xsd:string | http://img.jamendo.com/artists/k/kerana.jpg | http://fabrice89.skyblog.com | http://sws.geonames.org/3012849/ |
| "Nesta Positive"^^xsd:string | http://img.jamendo.com/artists/n/nesta.positive.jpg | http://nestapositive.free.fr | http://sws.geonames.org/2994111/ |
| "Beto Stocker"^^xsd:string | http://img.jamendo.com/artists/b/beto.stocker.jpg | http://www.betostocker.com | http://sws.geonames.org/3895114/ |
| "PORNBOY"^^xsd:string | http://img.jamendo.com/artists/p/pornboy.jpg | http://www.anorakcd.net | http://sws.geonames.org/3037147/ |
| "LucB"^^xsd:string | http://img.jamendo.com/artists/l/lucb.jpg | http://lucB.hautetfort.com | http://sws.geonames.org/3013500/ |
| "la curiosite tua le chat"^^xsd:string | http://img.jamendo.com/artists/l/la.curiosite.tua.le.chat.jpg | http://www.lacuriositetualechat.com | http://sws.geonames.org/2987410/ |
| "Judas"^^xsd:string | http://img.jamendo.com/artists/j/judas.jpg | http://www.judas.cl | http://sws.geonames.org/3895114/ |
| "Ben Othman"^^xsd:string | http://img.jamendo.com/artists/b/ben.othman.jpg | http://www.ben-othman.de | http://sws.geonames.org/2921044/ |
| "dryfe"^^xsd:string | http://sws.geonames.org/2967196/ | ||
| "Gély-Fort Pierre"^^xsd:string | http://img.jamendo.com/artists/g/gely.pierre.jpg | http://gely-fort.hautetfort.com | http://sws.geonames.org/2984986/ |
| "J'Peux Entrer"^^xsd:string | http://lapinot7.free.fr/ | http://sws.geonames.org/2994111/ | |
| "dave pretty"^^xsd:string | http://img.jamendo.com/artists/d/dave.pretty.jpg | http://davepretty.com | http://sws.geonames.org/2077456/ |
| "nitramm"^^xsd:string | http://img.jamendo.com/artists/n/nitramm.jpg | http://www.nitramm.net | http://sws.geonames.org/3012715/ |
| "Obviously Grimy"^^xsd:string | http://img.jamendo.com/artists/o/obviously.grimmy.jpg | http://obviously-grimy.noosblog.fr/ | http://sws.geonames.org/3012849/ |
| "Rob Costlow - Solo Piano"^^xsd:string | http://img.jamendo.com/artists/r/rob.costlow.jpg | http://www.robcostlow.com | http://sws.geonames.org/6252001/ |
| "thelittlewoodstudio"^^xsd:string | http://img.jamendo.com/artists/t/thelittlewoodstudio.jpg | http://sws.geonames.org/3021501/ | |
| "Vate"^^xsd:string | http://img.jamendo.com/artists/v/vate.jpg | http://www.vate.com.mx | http://sws.geonames.org/3996063/ |
| "oliv928"^^xsd:string | http://sws.geonames.org/2968815/ | ||
| "By.K"^^xsd:string | http://img.jamendo.com/artists/b/byk.jpg | http://byk.hautetfort.com/ | http://sws.geonames.org/2988430/ |
| "LYDIE"^^xsd:string | http://img.jamendo.com/artists/l/lydie.jpg | http://sws.geonames.org/3013663/ | |
| "Fraktion"^^xsd:string | http://www.17sons.com/articles.php?lng=en&pg=75 | http://sws.geonames.org/3017382/ | |
| "Narcis"^^xsd:string | http://img.jamendo.com/artists/n/narcis.jpg | http://rock.ampm.free.fr/narcis.htm | http://sws.geonames.org/3034720/ |
| "Glue Trax"^^xsd:string | http://img.jamendo.com/artists/g/glue.trax.jpg | file:///home/yves/jamendo/www.myspace.com/gluetrax | http://sws.geonames.org/3023423/ |
| "John Sore & his Afro-Safety"^^xsd:string | http://img.jamendo.com/artists/j/johnsore.jpg | http://www.johnsore.net | http://sws.geonames.org/660013/ |
| "Les K-Rock"^^xsd:string | http://img.jamendo.com/artists/l/les.k-rock.gif | http://www.k-rock.fr/ | http://sws.geonames.org/2969280/ |
| "16pac"^^xsd:string | http://img.jamendo.com/artists/1/16pac.jpg | http://www.16pac.com | http://sws.geonames.org/2968815/ |
| "Pierced Data"^^xsd:string | http://img.jamendo.com/artists/p/pierceddata.jpg | http://www.myspace.com/pierceddata | http://sws.geonames.org/6252001/ |
| "Bubar the cook"^^xsd:string | http://img.jamendo.com/artists/b/bubarthecook.gif | http://www.bablukid.com/music/ | http://sws.geonames.org/2968815/ |
| "MAMASAID"^^xsd:string | http://img.jamendo.com/artists/m/mamasaid.jpg | http://www.mamasaid-legroupe.com | http://sws.geonames.org/3013657/ |
| "Echo lali"^^xsd:string | http://img.jamendo.com/artists/e/echo.lali.jpg | http://www.echolali.fr | http://sws.geonames.org/2991627/ |
| "Kolokon"^^xsd:string | http://img.jamendo.com/artists/k/kolokon.jpg | http://www.kolokon.es | http://sws.geonames.org/2510769/ |
| "Manu Cornet"^^xsd:string | http://img.jamendo.com/artists/m/manu.cornet.jpg | http://www.manucornet.net/album | http://sws.geonames.org/2968815/ |
| "Triole"^^xsd:string | http://img.jamendo.com/artists/w/www.triole.com.ar.jpg | http://www.triole.com.ar | http://sws.geonames.org/3865483/ |
| "Akoufen"^^xsd:string | http://www.akoufen.org/ | http://sws.geonames.org/3012715/ | |
| "shex"^^xsd:string | http://img.jamendo.com/artists/s/shex.jpg | http://lxt.free.fr | http://sws.geonames.org/3038375/ |
| "Hollywood & Deadbeat"^^xsd:string | http://img.jamendo.com/artists/h/hollywood.deadbeat.jpg | http://myrealtalent.com | http://sws.geonames.org/6251999/ |
| "Jean-Luc Pourroy"^^xsd:string | http://jlpourroy.com | http://sws.geonames.org/2968815/ | |
| "En attendant Mado"^^xsd:string | http://img.jamendo.com/artists/e/en.attendant.mado.png | http://hopmado.free.fr/ | http://sws.geonames.org/3015948/ |
| "min-o"^^xsd:string | http://www.min-o.org | http://sws.geonames.org/3017382/ | |
| "Antalgic"^^xsd:string | http://img.jamendo.com/artists/a/antalgic.jpg | http://antalgic.neuf.fr | http://sws.geonames.org/2990129/ |
| "da fuck"^^xsd:string | http://www.NEPASGERBER.fr | http://sws.geonames.org/2967681/ | |
| "Naetherna"^^xsd:string | http://img.jamendo.com/artists/n/naetherna.jpg | http://myspace.com/naetherna | http://sws.geonames.org/2510769/ |
| "TROY"^^xsd:string | http://img.jamendo.com/artists/t/troy.gif | http://www.TROY.co.il | http://sws.geonames.org/294640/ |
| "Rach'"^^xsd:string | http://img.jamendo.com/artists/r/rach.jpg | http://jamendo.com/?rach1 | http://sws.geonames.org/2987410/ |
| "Ludantes"^^xsd:string | http://img.jamendo.com/artists/l/ludantes.png | http://www.ludantes.net | http://sws.geonames.org/3012715/ |
| "Brad Sucks"^^xsd:string | http://img.jamendo.com/artists/b/bradsucks.jpg | http://www.bradsucks.net/ | http://sws.geonames.org/6251999/ |
| "The Georges Habitbol Brothers"^^xsd:string | http://img.jamendo.com/artists/g/georges.habitbol.jpg | http://www.ghbaddicted.com | http://sws.geonames.org/3017382/ |
| "Elecmutec"^^xsd:string | http://img.jamendo.com/artists/e/elecmutec.jpg | http://elecmutec.com | http://sws.geonames.org/2970749/ |
| "claudioh"^^xsd:string | http://img.jamendo.com/artists/c/claudioh.jpg | http://www.claudioh.com | http://sws.geonames.org/2510769/ |
| "the precious band"^^xsd:string | http://img.jamendo.com/artists/t/the.precious.band.jpg | http://www.soundclick.com/bands/pageartist.cfm?bandID=472061 | http://sws.geonames.org/3015948/ |
| "chevalier dominique"^^xsd:string | http://img.jamendo.com/artists/g/gell.jpg | http://www.putfil.com/dominiquec | http://sws.geonames.org/3022516/ |
| "Skastation"^^xsd:string | http://img.jamendo.com/artists/s/skastation.gif | http://www.skastation.fr.st | http://sws.geonames.org/2967196/ |
| "Simon Slator"^^xsd:string | http://img.jamendo.com/artists/s/simonslator.jpg | http://www.simonslator.tk/ | |
| "Aurélien Girelli"^^xsd:string | http://img.jamendo.com/artists/m/metropolis.images.unlimited.jpg | http://www.aureliengirelli.fr | http://sws.geonames.org/2968815/ |
| "B.O.Y.L."^^xsd:string | http://img.jamendo.com/artists/b/b.o.y.l.jpg | http://users.skynet.be/boyl/ | http://sws.geonames.org/2802361/ |
| "downliners sekt"^^xsd:string | http://img.jamendo.com/artists/d/downliners-sekt.jpg | file:///home/yves/jamendo/www.dsekt.com | http://sws.geonames.org/2968815/ |
| "Léon Plane"^^xsd:string | http://img.jamendo.com/artists/l/leon.plane.jpg | http://leonplane.blogspot.com/ | http://sws.geonames.org/2987410/ |
| "Human Signals"^^xsd:string | http://img.jamendo.com/artists/h/human.signals.jpg | http://www.soundclick.com/bands/pageartist.cfm?bandID=498017 | http://sws.geonames.org/6252001/ |
| "Greg V"^^xsd:string | http://img.jamendo.com/artists/g/greg.v.jpg | http://greg-v.monsite.wanadoo.fr | http://sws.geonames.org/2967196/ |
| "BrunoXe"^^xsd:string | http://img.jamendo.com/artists/b/brunoxe.jpg | http://www.geocities.com/brunoxe3 | http://sws.geonames.org/2520597/ |
| "BCreativ"^^xsd:string | http://img.jamendo.com/artists/b/bcreativ.jpg | http://www.soiscreatif.com/bcreativ | http://sws.geonames.org/6251999/ |
| "HYPNOSS"^^xsd:string | http://img.jamendo.com/artists/h/hypnoss.jpg | http://hypnoss02100.free.fr | http://sws.geonames.org/3038375/ |
| "The Maya Conglomerate"^^xsd:string | http://sws.geonames.org/1269750/ | ||
| "SM3CREW"^^xsd:string | http://sm3crew.free.fr/ | http://sws.geonames.org/3038375/ | |
| "LA CAJA NEGRA"^^xsd:string | http://img.jamendo.com/artists/l/la.caja.negra.jpg | http://www.lacajanegra.org | http://sws.geonames.org/2510769/ |
| "La Manutention"^^xsd:string | http://img.jamendo.com/artists/l/la.manutention.jpg | http://www.lamanutention.fr | http://sws.geonames.org/2991627/ |
| "MARTO"^^xsd:string | http://img.jamendo.com/artists/m/marto.jpg | http://www.martoland.com | http://sws.geonames.org/3013500/ |
| "SONGO 21"^^xsd:string | http://img.jamendo.com/artists/s/songo.21.jpg | http://www.songo21.com | http://sws.geonames.org/2968815/ |
| "Bruno"^^xsd:string | http://img.jamendo.com/artists/b/bruno.jpg | http://www.bruno.new.fr | http://sws.geonames.org/3033789/ |
| "Yue"^^xsd:string | http://img.jamendo.com/artists/y/yue.jpg | http://www.yue.it | http://sws.geonames.org/3175395/ |
| "Cristan Roba"^^xsd:string | http://img.jamendo.com/artists/c/cristan.roba.jpg | http://www.cristan.be | http://sws.geonames.org/2802361/ |
| "Kea182"^^xsd:string | http://img.jamendo.com/artists/k/kea182.jpg | http://www.myspace.com/bluedazed | http://sws.geonames.org/2968815/ |
| "ARCTIC"^^xsd:string | http://img.jamendo.com/artists/a/arctic.gif | http://www.projectarctic.com | http://sws.geonames.org/6251999/ |
| "David TMX"^^xsd:string | http://img.jamendo.com/artists/d/david.tmx.jpg | http://www.davidtmx.com/ | http://sws.geonames.org/2991627/ |
| "Rematto"^^xsd:string | http://img.jamendo.com/artists/r/rematto.jpg | http://sws.geonames.org/3175395/ | |
| "Dd le malfrat"^^xsd:string | http://img.jamendo.com/artists/d/dd.le.malfrat1.jpg | http://www.labellemadouna.org | http://sws.geonames.org/2997870/ |
| "littlecaniche"^^xsd:string | http://img.jamendo.com/artists/l/littlecaniche.jpg | http://www.myspace.com/littlecaniche | http://sws.geonames.org/2996663/ |
| "frey"^^xsd:string | http://img.jamendo.com/artists/f/frey.jpg | http://www.frey.co.nz | http://sws.geonames.org/2186224/ |
| "Al Azred"^^xsd:string | http://img.jamendo.com/artists/a/alazred.jpg | http://alazred.free.fr | http://sws.geonames.org/3012715/ |
| "Bluemiss"^^xsd:string | http://img.jamendo.com/artists/b/bluemiss.jpg | http://bluemiss.free.fr | http://sws.geonames.org/2997861/ |
| "Swirl Of Dust"^^xsd:string | http://img.jamendo.com/artists/c/christine.clement.jpg | http://perso.wanadoo.fr/mayalyon/swirlofdustcad.htm | http://sws.geonames.org/2987410/ |
| "Kiprokro"^^xsd:string | http://img.jamendo.com/artists/k/kiprokro.jpg | http://www.kiprokro.tk | http://sws.geonames.org/2967196/ |
| "Psyxxx"^^xsd:string | http://img.jamendo.com/artists/p/psyxxx.jpg | http://www.myspace.com/cixxxj | http://sws.geonames.org/3175395/ |
| "New-G"^^xsd:string | http://img.jamendo.com/artists/n/new-g.jpg | http://www.laviedespingouins.com | http://sws.geonames.org/2997861/ |
| "International Corpus Industry"^^xsd:string | http://img.jamendo.com/artists/i/international.corpus.industry.jpg | http://www.myspace.com/internationalcorpusindustry | http://sws.geonames.org/2997861/ |
| "All:My:Faults"^^xsd:string | http://img.jamendo.com/artists/a/allmyfaults.jpg | http://www.allmyfaults.com | http://sws.geonames.org/6557769/ |
| "FOGGY BOTTOM"^^xsd:string | http://img.jamendo.com/artists/f/foggy.bottom.jpg | http://www.myspace.com/lesfoggybottom | http://sws.geonames.org/2991627/ |
| "Cesare Marilungo"^^xsd:string | http://img.jamendo.com/artists/c/cesare.marilungo.jpg | http://www.cesaremarilungo.com | http://sws.geonames.org/3175395/ |
| "JT Bruce"^^xsd:string | http://img.jamendo.com/artists/j/jtbruce.jpg | http://www.subjectruin.net | http://sws.geonames.org/6252001/ |
| "las kademy"^^xsd:string | http://img.jamendo.com/artists/l/laskademy.jpg | http://www.laskademy.fr | http://sws.geonames.org/2975249/ |
| "david aubrun"^^xsd:string | http://img.jamendo.com/artists/d/davidaubrun.jpg | http://davidaubrun.free.fr | http://sws.geonames.org/2997857/ |
| "Clemix SoundShaker"^^xsd:string | http://img.jamendo.com/artists/c/clemix.soundshaker.jpg | http://www.clemixsoundshaker.com | http://sws.geonames.org/2802361/ |
| "Bluedozer"^^xsd:string | http://img.jamendo.com/artists/b/bluedozer.jpg | http://demolid.com/bluedozer | http://sws.geonames.org/719819/ |
| "DEREK"^^xsd:string | http://img.jamendo.com/artists/d/derek.music.jpg | http://www.derek-music.com | http://sws.geonames.org/3013663/ |
| "athush"^^xsd:string | http://img.jamendo.com/artists/a/athush.gif | http://sws.geonames.org/2510769/ | |
| "MYHYBRIS"^^xsd:string | http://img.jamendo.com/artists/m/myhybris.jpg | http://www.myhybris.net | http://sws.geonames.org/2971071/ |
| "Kvaleoun"^^xsd:string | http://img.jamendo.com/artists/k/kvaleoun.jpg | http://max.coste.club.fr | http://sws.geonames.org/3031359/ |
| "Vodevil"^^xsd:string | http://img.jamendo.com/artists/v/vodevil.gif | http://www.vodevil.com.ar | http://sws.geonames.org/3865483/ |
| "PhIlIpPe ChAvArOcHe"^^xsd:string | http://img.jamendo.com/artists/p/philippe.chavaroche.jpg | http://www.philippechavaroche.com | http://sws.geonames.org/3017382/ |
| "L. Saint Lazare"^^xsd:string | http://img.jamendo.com/artists/s/saintlazare.jpg | http://www.saintlazare.be | http://sws.geonames.org/2802361/ |
| "Mister Poison"^^xsd:string | http://img.jamendo.com/artists/m/misterpoison.jpg | http://www.orkyd.net | http://sws.geonames.org/2967196/ |
| "BorasBand"^^xsd:string | http://www.myspace.com/borasband | http://sws.geonames.org/2750405/ | |
| "Lusi Laps"^^xsd:string | http://lusilaps.free.fr | http://sws.geonames.org/2990129/ | |
| "Damien Monet"^^xsd:string | http://www.damienmonet.fr.st | http://sws.geonames.org/3012715/ | |
| "Countdown"^^xsd:string | http://img.jamendo.com/artists/c/countdown.jpg | http://www.countdown.fr.fm | http://sws.geonames.org/2994111/ |
| "Ciruelo Cilíndrico"^^xsd:string | http://img.jamendo.com/artists/c/ciruelo.cilindrico.jpg | http://www.ciruelocilindrico.com | http://sws.geonames.org/2510769/ |
| "b-Shake"^^xsd:string | http://img.jamendo.com/artists/b/bshake.jpg | http://www.bshake.com | http://sws.geonames.org/2802361/ |
| "LeBelgeElectrod"^^xsd:string | http://img.jamendo.com/artists/l/lebelgeelectrod.jpg | http://users.electrobel.be/LeBelgeElectrod | http://sws.geonames.org/2802361/ |
| "Various Artists"^^xsd:string | |||
| "FuryKane"^^xsd:string | http://img.jamendo.com/artists/f/furykane.jpg | http://www.FuryKane.com | http://sws.geonames.org/2968815/ |
| "Badaboum"^^xsd:string | http://img.jamendo.com/artists/b/badaboum.jpg | http://antoineboullenot.free.fr | http://sws.geonames.org/2975248/ |
| "white andersen"^^xsd:string | http://img.jamendo.com/artists/w/white.andersen.jpg | http://www.andersen-white.com | http://sws.geonames.org/2975517/ |
| "Kaiser IK"^^xsd:string | http://img.jamendo.com/artists/k/kaiser.ik.jpg | http://kaiser.ik.free.fr/ | http://sws.geonames.org/3038375/ |
| "Exit Roméo"^^xsd:string | http://img.jamendo.com/artists/e/exit.romeo.jpg | http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid=151102259 | http://sws.geonames.org/2984885/ |
| "Random I Am"^^xsd:string | http://img.jamendo.com/artists/r/randomiam.jpg | http://www.randomiam.de | http://sws.geonames.org/3213264/ |
| "Classic Tragic Hero"^^xsd:string | http://img.jamendo.com/artists/c/classictragichero.jpg | http://www.classictragichero.com | http://sws.geonames.org/6252001/ |
| "VS"^^xsd:string | http://img.jamendo.com/artists/v/vs.jpg | http://www.vs-music.com | http://sws.geonames.org/3017382/ |
| "Mysth-R"^^xsd:string | http://img.jamendo.com/artists/m/mysth-r.gif | http://mysthr.oldiblog.com | http://sws.geonames.org/3031359/ |
| "Kahlan"^^xsd:string | http://img.jamendo.com/artists/k/kahlan.jpg | http://sws.geonames.org/2994111/ | |
| "Hr.LoXX"^^xsd:string | http://img.jamendo.com/artists/h/hr.loxx.jpg | http://hr.loxx.free.fr/ | http://sws.geonames.org/3013663/ |
| "Jacques COUTURIER"^^xsd:string | http://img.jamendo.com/artists/j/jacques.couturier.jpg | http://www.couturiermusart.com | http://sws.geonames.org/3013657/ |
| "Fishbone Rocket"^^xsd:string | http://img.jamendo.com/artists/f/fishbone.rocket.png | http://myspace.com/fishbonerocket , http://www.fishbonerocket.com | http://sws.geonames.org/2991879/ |
| "Lithium"^^xsd:string | http://img.jamendo.com/artists/x/xlithiumx.jpg | http://xsmokingbenx.free.fr | http://sws.geonames.org/2988430/ |
| "37%human"^^xsd:string | http://img.jamendo.com/artists/3/37.human.jpg | http://37human.hautetfort.com | http://sws.geonames.org/2984887/ |
| "Stefan Colomb"^^xsd:string | http://img.jamendo.com/artists/s/stefan.colomb.jpg | http://modelpif.free.fr | http://sws.geonames.org/3038111/ |
| "M.O.A. - ALIX"^^xsd:string | http://img.jamendo.com/artists/a/alix.jpg | http://www.ALIX.Biz | http://sws.geonames.org/3017382/ |
| "greguenox"^^xsd:string | http://img.jamendo.com/artists/g/greguenox.jpg | http://en construction/ | http://sws.geonames.org/2967222/ |
| "UNSOUND"^^xsd:string | http://img.jamendo.com/artists/u/unsound.jpg | http://unsound4.free.fr/ | http://sws.geonames.org/2991627/ |
| "Monnaie de singe"^^xsd:string | http://img.jamendo.com/artists/m/monnaiedesinge.jpg | http://www.monnaiedesinge.net | http://sws.geonames.org/3028791/ |
| "The SillyJunX"^^xsd:string | http://img.jamendo.com/artists/t/the.sillyjunx.jpg | http://bioteckrecords.free.fr | http://sws.geonames.org/3038375/ |
| "sir-clandestino"^^xsd:string | http://img.jamendo.com/artists/s/sir-clandestino.jpg | http://underground-pressbook.ifrance.com/ | http://sws.geonames.org/2802361/ |
| "cyril brunet"^^xsd:string | http://img.jamendo.com/artists/c/cyril.brunet.jpg | http://sws.geonames.org/3013500/ | |
| "Rouler Pinder"^^xsd:string | http://img.jamendo.com/artists/r/rouler.pinder.jpg | http://roulerpinder.free.fr | http://sws.geonames.org/2994111/ |
| "MFMR"^^xsd:string | http://img.jamendo.com/artists/m/mifmir.jpg | http://blogs.aol.fr/mifmir/MIFUGUEMIRAISON/ | http://sws.geonames.org/2991879/ |
| "Manès"^^xsd:string | http://img.jamendo.com/artists/m/manes.jpg | http://bioteckrecords.free.fr | http://sws.geonames.org/3038375/ |
| "Mr Haze dub project"^^xsd:string | http://img.jamendo.com/artists/m/mr.haze.jpg | http://www.mrhaze.net | http://sws.geonames.org/2995603/ |
| "Los Rápidos"^^xsd:string | http://img.jamendo.com/artists/l/los.rapidos.jpg | http://www.estoesrapidos.com | http://sws.geonames.org/2510769/ |
| "Fast Friday"^^xsd:string | http://img.jamendo.com/artists/f/fast.friday.jpg | http://www.myspace.com/fastfriday | http://sws.geonames.org/2960313/ |
| "thcx"^^xsd:string | http://img.jamendo.com/artists/t/thcx.jpg | http://sws.geonames.org/2997861/ | |
| "Rouge"^^xsd:string | http://img.jamendo.com/artists/r/rouge.jpg | http://bsidefactorie.free.fr/cariboost1/index.html | http://sws.geonames.org/2968815/ |
| "Pachuco Cadaver"^^xsd:string | http://img.jamendo.com/artists/p/pachuco.cadaver.jpg | http://www.myspace.com/lesmortsquimarchent | http://sws.geonames.org/2991627/ |
| "staiff"^^xsd:string | http://img.jamendo.com/artists/m/menestrel.gif | http://www.staiff.com | http://sws.geonames.org/2991879/ |
| "Chelmi"^^xsd:string | http://img.jamendo.com/artists/c/chelmi.jpg | http://mc-chelmi.blogspot.com/ | http://sws.geonames.org/2994111/ |
| "Hasch'm'Méneum"^^xsd:string | http://img.jamendo.com/artists/h/hasch.m.meneum.jpg | http://sws.geonames.org/3013767/ | |
| "Wikoo"^^xsd:string | http://img.jamendo.com/artists/w/wikoo.jpg | http://wikoo.free.fr | http://sws.geonames.org/3017382/ |
| "Omri Levy"^^xsd:string | http://img.jamendo.com/artists/o/omri.levy.jpg | http://www.omrilevy.com | http://sws.geonames.org/294640/ |
| "Keep Cool Vibration"^^xsd:string | http://img.jamendo.com/artists/k/kcv.jpg | http://keepcoolvibration.free.fr | http://sws.geonames.org/2994111/ |
| "Sick Side Project"^^xsd:string | http://img.jamendo.com/artists/s/sick.side.project.gif | http://www.sicksideproject.fr.st | http://sws.geonames.org/2994111/ |
| "Religionnaire"^^xsd:string | http://img.jamendo.com/artists/r/religionnaire.jpg | http://perso.orange.fr/religionnaire | http://sws.geonames.org/3013657/ |
| "Curly's Revenge"^^xsd:string | http://img.jamendo.com/artists/c/curlysrevenge.jpg | http://curlys.free.fr/ | http://sws.geonames.org/2971090/ |
| "The Abogix (J.K.)"^^xsd:string | http://img.jamendo.com/artists/t/the.abogix.jpg | http://www.theabogix.rockzone.lu | http://sws.geonames.org/2960313/ |
| "Radhika"^^xsd:string | http://img.jamendo.com/artists/r/radhika.jpg | http://www.radhikamusic.com | |
| "Godon"^^xsd:string | http://img.jamendo.com/artists/g/godon.jpg | http://www.godon.org | http://sws.geonames.org/3023532/ |
| "[GO:MACHE]"^^xsd:string | http://img.jamendo.com/artists/g/gomache.jpg | http://gomache.hautetfort.com / | http://sws.geonames.org/2968815/ |
| "Haki Groucho Empire"^^xsd:string | http://img.jamendo.com/artists/h/haki.groucho.empire.jpg | http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendID=61809949 | http://sws.geonames.org/2984887/ |
| "Santiago Louvet"^^xsd:string | http://img.jamendo.com/artists/s/santiago.louvet.png | http://www.santiagolouvet.info | http://sws.geonames.org/3013767/ |
| "Antinéa"^^xsd:string | http://img.jamendo.com/artists/a/antinea.png | http://antinea-world.blogspot.com/ | http://sws.geonames.org/3037147/ |
| "Guess"^^xsd:string | http://img.jamendo.com/artists/g/guess.jpg | http://www.guess-groupe.com | http://sws.geonames.org/2995603/ |
| "ApocAlypse"^^xsd:string | http://img.jamendo.com/artists/a/apocalypse.jpg | http://sws.geonames.org/3033789/ | |
| "Came Into Dust"^^xsd:string | http://img.jamendo.com/artists/c/came.into.dust1.jpg | http://www.cameintodust.be | http://sws.geonames.org/2802361/ |
| "Baïki"^^xsd:string | http://www.baiki.be | http://sws.geonames.org/2802361/ | |
| "Amniotik"^^xsd:string | http://img.jamendo.com/artists/a/amniotik.jpg | http://amniotik.blogspot.com/ | http://sws.geonames.org/3016670/ |
| "...anabase*"^^xsd:string | http://img.jamendo.com/artists/a/anabase.jpg | http://www.anabase.fr | http://sws.geonames.org/2968815/ |
| "Three Star Hotel"^^xsd:string | http://img.jamendo.com/artists/t/three.star.hotel.png | http://www.threestarhotel.org | http://sws.geonames.org/3007866/ |
| "Abdou Day"^^xsd:string | http://img.jamendo.com/artists/a/abdou.day.jpg | http://www.abdouday.fr.st | http://sws.geonames.org/2991627/ |
| "TerPacific"^^xsd:string | http://img.jamendo.com/artists/t/terpacific.jpg | http://terrepacifique.info | http://sws.geonames.org/3013760/ |
| "Nebulis"^^xsd:string | http://img.jamendo.com/artists/n/nebulis.jpg | http://sws.geonames.org/3013767/ | |
| "...ChArLy's..."^^xsd:string | http://www.zorozora.com | http://sws.geonames.org/3036264/ | |
| "Indiana Jones"^^xsd:string | http://img.jamendo.com/artists/i/indiana.jones.png | http://www.myspace.com/indianajones | http://sws.geonames.org/2921044/ |
| "sam & thierry blanchard"^^xsd:string | http://img.jamendo.com/artists/s/sam.thierry.blanchard.jpg | http://lesgrandesroues.free.fr | http://sws.geonames.org/2971090/ |
| "mekanix"^^xsd:string | http://img.jamendo.com/artists/m/mekanix.jpg | http://l-artduson.hautetfort.com/archive/2006/04/09/mekanix-road.html | http://sws.geonames.org/3023414/ |
| "Jean-Fred"^^xsd:string | http://img.jamendo.com/artists/j/jean-fred.jpg | http://www.jean-fred.net | http://sws.geonames.org/2975249/ |
| "Silly Monday"^^xsd:string | http://img.jamendo.com/artists/s/silly.monday.jpg | http://www.creabc.com/sites/index.php?site=SillyMonday | http://sws.geonames.org/2802361/ |
| "dubsoniq"^^xsd:string | http://img.jamendo.com/artists/d/dubsoniq.jpg | http://dubsoniq.blogspot.com | http://sws.geonames.org/3013657/ |
| "Briovere Buffentis"^^xsd:string | http://img.jamendo.com/artists/b/briovere.buffentis.png | http://brioverebuffentis.com | http://sws.geonames.org/3013767/ |
| "DKZ"^^xsd:string | http://img.jamendo.com/artists/d/dkz.jpg | http://www.cleantraxx.com | http://sws.geonames.org/3013663/ |
| "VéBé"^^xsd:string | http://img.jamendo.com/artists/v/vebe.jpg | http://www.myspace.com/vebe07 | http://sws.geonames.org/3037147/ |
| "PistONE"^^xsd:string | http://img.jamendo.com/artists/s/stef.png | http://pistonemusique.free.fr | http://sws.geonames.org/2987410/ |
| "BioCarbon13"^^xsd:string | http://img.jamendo.com/artists/b/biocarbon13.jpg | http://www.BioCarbon13.com | http://sws.geonames.org/6252001/ |
| "KATCHIN-A"^^xsd:string | http://img.jamendo.com/artists/k/katchin-a.gif | http://katchinarock.free.fr/ | http://sws.geonames.org/3012849/ |
| "Maya de Luna"^^xsd:string | http://img.jamendo.com/artists/m/maya.de.luna.jpg | http://perso.orange.fr/mayalyon | http://sws.geonames.org/2987410/ |
| "SYLMER"^^xsd:string | http://img.jamendo.com/artists/s/sylmer.jpg | http://blogs.aol.fr/merezettesylmer/SYLMERartiste | http://sws.geonames.org/2975248/ |
| "SpatzAttack"^^xsd:string | http://htttp://perso.wanadoo.fr/spatz/ | http://sws.geonames.org/3019599/ | |
| "Lui-Mp3"^^xsd:string | http://www.lui-mp3.net/ | http://sws.geonames.org/2975246/ | |
| "Dj Bexos"^^xsd:string | http://img.jamendo.com/artists/d/djbexos.jpg | http://www.djbexos.info | http://sws.geonames.org/3013760/ |
| "Electric Fence"^^xsd:string | http://img.jamendo.com/artists/e/electric.fence1.jpg | http://www.myspace.com/electricfencerocks | http://sws.geonames.org/2510769/ |
| "Tomawox"^^xsd:string | http://img.jamendo.com/artists/t/tomawox.jpg | http://www.tomawox.com | http://sws.geonames.org/3013500/ |
| "czskamaarù"^^xsd:string | http://img.jamendo.com/artists/c/czskamaaru.jpg | http://www.softly-dangerous.com | http://sws.geonames.org/3018471/ |
| "babyPaul"^^xsd:string | http://img.jamendo.com/artists/b/babypaul.jpg | http://www.baby-paul.com | http://sws.geonames.org/3038049/ |
| "dj blanguy"^^xsd:string | http://img.jamendo.com/artists/d/dj.blanguy.jpg | htpp://djblanguy.blog.radiofg.com | http://sws.geonames.org/2989663/ |
| "sAMi"^^xsd:string | http://img.jamendo.com/artists/s/sami.jpg | http://leblogdesami.blogg.org/ | http://sws.geonames.org/3017382/ |
| "GRASSHOPERS"^^xsd:string | http://img.jamendo.com/artists/g/grasshopers.jpg | http://www.grasshopers.net | http://sws.geonames.org/2991627/ |
| "Freibeuter AG"^^xsd:string | http://img.jamendo.com/artists/f/freibeuter.ag.jpg | http://www.freibeuter-ag.de/freibeuter_ag/freibeuter.htm | http://sws.geonames.org/6556330/ |
| "Dorcel"^^xsd:string | http://img.jamendo.com/artists/d/dorcel.gif | http://www.dorcelmusic.com | http://sws.geonames.org/2991627/ |
| "Se7eN"^^xsd:string | http://img.jamendo.com/artists/s/se7en.png | http://www.eicko.net | http://sws.geonames.org/3019599/ |
| "Proche Chaos"^^xsd:string | http://img.jamendo.com/artists/p/proche.chaos.jpg | http://prochechaos.free.fr | http://sws.geonames.org/3013663/ |
| "Alchimie"^^xsd:string | http://img.jamendo.com/artists/a/alchimie.jpg | http://www.alchimie-legroupe.com | http://sws.geonames.org/2994111/ |
| "Manella"^^xsd:string | http://www.manella.com | http://sws.geonames.org/3034720/ | |
| "François Ville"^^xsd:string | http://img.jamendo.com/artists/f/francois.ville.jpg | http://www.wat.tv/francoisville | http://sws.geonames.org/2975249/ |
| "Mekah"^^xsd:string | http://img.jamendo.com/artists/m/mekah.jpg | http://www.myspace.com/mekahvoyou | http://sws.geonames.org/3012849/ |
| "Leitmotiv"^^xsd:string | http://img.jamendo.com/artists/l/leitmotivonline.jpg | http://www.leitmotivonline.net | http://sws.geonames.org/3165924/ |
| "No Mad's Land"^^xsd:string | http://img.jamendo.com/artists/n/nomads.land.gif | http://nomads.land.free.fr | http://sws.geonames.org/2973357/ |
| "fukufuku"^^xsd:string | http://www.geocities.jp/kepaukepa/midi.html | http://sws.geonames.org/1861060/ | |
| "Manra"^^xsd:string | http://img.jamendo.com/artists/m/manra.png | http://manra.free.fr | http://sws.geonames.org/2990129/ |
| "Phoebus"^^xsd:string | http://img.jamendo.com/artists/p/phoebus.png | http://zikweb.org/index.php?op=newindex&catid=1 | http://sws.geonames.org/3013663/ |
| "xser1964"^^xsd:string | http://img.jamendo.com/artists/x/xser1964.jpg | http://www.auranovastudio.com | http://sws.geonames.org/3895114/ |
| "Sud Equipe"^^xsd:string | http://img.jamendo.com/artists/s/sud.equipe.jpg | http://sudequipe.free.fr | http://sws.geonames.org/3036420/ |
| "Eponyme"^^xsd:string | http://www.NEPASGERBER.fr | http://sws.geonames.org/2967681/ | |
| "Marc"^^xsd:string | http://www.marc-lesite.com | http://sws.geonames.org/3013657/ | |
| "Dj Poke"^^xsd:string | http://img.jamendo.com/artists/d/dj.poke.jpg | http://www.basic-sombre.com | http://sws.geonames.org/3013793/ |
| "Paiheux"^^xsd:string | http://img.jamendo.com/artists/p/paiheux.jpg | http://paiheux.blogspot.com/ | http://sws.geonames.org/3019317/ |
| "ParaVerse"^^xsd:string | http://img.jamendo.com/artists/p/paraverse.jpg | http://www.myspace.com/paraverse | http://sws.geonames.org/3013500/ |
| "Mercer"^^xsd:string | http://www.djmercer.fr | http://sws.geonames.org/2975246/ | |
| "autonomadic"^^xsd:string | http://img.jamendo.com/artists/a/autonomadic.jpg | http://www.autonomadic.com/ | http://sws.geonames.org/6252001/ |
| "André Lage"^^xsd:string | http://img.jamendo.com/artists/a/andre.lage.jpg | http://sws.geonames.org/3469034/ | |
| "Athman"^^xsd:string | http://img.jamendo.com/artists/a/athman.jpg | http://sws.geonames.org/3015948/ | |
| "Damien et Charles"^^xsd:string | http://img.jamendo.com/artists/d/damien.et.charles.jpg | http://kskusanagi.over-blog.com | http://sws.geonames.org/3017382/ |
| "Albin Renard"^^xsd:string | http://img.jamendo.com/artists/a/albin.renard.jpg | http://sws.geonames.org/2968815/ | |
| "Rodrigue DOUCHEZ"^^xsd:string | http://img.jamendo.com/artists/r/rodrigue.jpg | http://www.douchez.com | http://sws.geonames.org/2990129/ |
| "Rasta-Square"^^xsd:string | http://rasta-square.freesurf.fr/index.html | http://sws.geonames.org/2967196/ | |
| "eXperpento"^^xsd:string | http://img.jamendo.com/artists/e/experpento.jpg | http://www.experpento.net | http://sws.geonames.org/2510910/ |
| "la bête malade"^^xsd:string | http://img.jamendo.com/artists/l/labetemalade.jpg | http://labetemalade.com | http://sws.geonames.org/2997861/ |
| "zOrozora"^^xsd:string | http://img.jamendo.com/artists/z/zorozora.gif | http://www.zorozora.com | http://sws.geonames.org/3036264/ |
| "Ashran"^^xsd:string | http://img.jamendo.com/artists/a/ashran.jpg | http://ashranfirebrand.free.fr/serendipity/ | http://sws.geonames.org/2802361/ |
| "Mr Feelix"^^xsd:string | http://img.jamendo.com/artists/m/mr.feelix.gif | ||
| "SOULDAYS"^^xsd:string | http://sws.geonames.org/3012804/ | ||
| "-;~°§)[ k.ROCKSHIRE ](§°~;-"^^xsd:string | http://img.jamendo.com/artists/r/rockshire.jpg | http://krockshire.podemus.com | http://sws.geonames.org/3031359/ |
| "J.SPRING"^^xsd:string | http://img.jamendo.com/artists/j/j.spring.jpg | http://www.jspring.info | http://sws.geonames.org/2510769/ |
| "ToadStooL"^^xsd:string | http://img.jamendo.com/artists/t/toadstool.jpg | http://www.toadstool-fr.com | http://sws.geonames.org/2997870/ |
| "Steve Stone"^^xsd:string | http://img.jamendo.com/artists/s/steve.stone.jpg | http://no web/ | http://sws.geonames.org/2991627/ |
| "A.post.A"^^xsd:string | http://img.jamendo.com/artists/a/a.post.a.jpg | http://aposta.bleublog.ch | http://sws.geonames.org/2658434/ |
| "FOGMAN"^^xsd:string | http://img.jamendo.com/artists/f/fogman.jpg | http://www.fogman.com.ar | http://sws.geonames.org/3865483/ |
| "nicod"^^xsd:string | http://img.jamendo.com/artists/n/nicod.jpg | http://www.nicod.neufblog.com | http://sws.geonames.org/3031359/ |
| "Drozofil"^^xsd:string | http://img.jamendo.com/artists/l/l-ecoute-s-il-pleut.jpg | http://lecoutesilpleut.blogspot.com | http://sws.geonames.org/3019599/ |
| "Chadderandom"^^xsd:string | http://www.geocities.com/drandomusic/ | http://sws.geonames.org/6252001/ | |
| "Bibopof"^^xsd:string | http://img.jamendo.com/artists/b/bibopof.jpg | http://bibopof.free.fr | http://sws.geonames.org/3034720/ |
| "Dean Chris"^^xsd:string | http://img.jamendo.com/artists/d/dean.chris.jpg | http://dean-chris.blogspot.com | http://sws.geonames.org/3213264/ |
| "Popof"^^xsd:string | http://img.jamendo.com/artists/p/popof.jpg | http://bibopof.free.fr | http://sws.geonames.org/2994111/ |
| "PeterPanProject"^^xsd:string | http://img.jamendo.com/artists/p/peterpanproject.jpg | http://www.embryosonic.net | http://sws.geonames.org/2658434/ |
| "DJ Klass"^^xsd:string | http://img.jamendo.com/artists/d/dj.klass.jpg | http://www.myspace.com/djklassmusic | http://sws.geonames.org/3038049/ |
| "Soul Resistance"^^xsd:string | http://img.jamendo.com/artists/s/soulresistance.jpg | http://soulresistance.free.fr | http://sws.geonames.org/2968815/ |
| "Carole Masseport"^^xsd:string | http://img.jamendo.com/artists/c/carole.masseport.jpg | http://www.carolemasseport.com | http://sws.geonames.org/2968815/ |
| "Yle Sensuelle"^^xsd:string | http://img.jamendo.com/artists/y/yle.sensuelle.jpg | http://www.adrenalinicsound.com | http://sws.geonames.org/3175395/ |
| "deejay dav"^^xsd:string | http://img.jamendo.com/artists/d/deejay.dav.jpg | http://membres.lycos.fr/digitalnoise/ | http://sws.geonames.org/1699807/ |
| "Evergreen Terrasse"^^xsd:string | http://img.jamendo.com/artists/e/evergreen.terrasse.jpg | http://www.evergreenterrasse.com | http://sws.geonames.org/2994111/ |
| "Dance2003"^^xsd:string | http://wwww.NEPASGERBER.fr | http://sws.geonames.org/2967681/ | |
| "Ehma"^^xsd:string | http://img.jamendo.com/artists/e/ehma.gif | http://blane-est.net/ehma/ | http://sws.geonames.org/2802361/ |
| "Maidenhair"^^xsd:string | http://img.jamendo.com/artists/m/maidenhair.jpg | ||
| "Sophie Cappere"^^xsd:string | http://img.jamendo.com/artists/s/sophie.cappere.jpg | http://sws.geonames.org/2968815/ | |
| "causa"^^xsd:string | http://img.jamendo.com/artists/c/causa.jpg | http://www.causarock.com.ar | http://sws.geonames.org/3865483/ |
| "Xenophonia"^^xsd:string | http://www.geronimo-collective.org/xenophonia/xenophonia.html | http://sws.geonames.org/1861060/ | |
| "Samgratt"^^xsd:string | http://img.jamendo.com/artists/s/samgratt.jpg | http://www.samgratt.fr.st | http://sws.geonames.org/2994111/ |
| "Backwater"^^xsd:string | http://www.backwater-legroupe.com | http://sws.geonames.org/2968815/ | |
| "Ricardo Vecchio"^^xsd:string | http://img.jamendo.com/artists/r/ricardo.vecchio.jpg | http://ricardovecchio.blogspot.com/ | http://sws.geonames.org/3034720/ |
| "B & W"^^xsd:string | http://img.jamendo.com/artists/b/b.w.jpg | http://b.w.gremobs.info | http://sws.geonames.org/3012715/ |
| "Flor Mostaza"^^xsd:string | http://img.jamendo.com/artists/f/flormostaza.jpg | http://www.flormostaza.com.ar | http://sws.geonames.org/3865483/ |
| "TAT"^^xsd:string | http://img.jamendo.com/artists/t/tat.jpg | http://tat.darkfolk.free.fr/ | http://sws.geonames.org/2987410/ |
| "POSITIV HATE"^^xsd:string | http://img.jamendo.com/artists/p/positiv.hate.jpg | http://positivhate.propagande.org | http://sws.geonames.org/2990129/ |
| "Raoul & Didsenko"^^xsd:string | http://sws.geonames.org/2991627/ | ||
| "YAZ TRAX"^^xsd:string | http://img.jamendo.com/artists/y/yaz.trax1.jpg | http://www.yaztrax.com | http://sws.geonames.org/3034720/ |
| "wotan klang"^^xsd:string | http://www.myspace.com/douglasbravo | http://sws.geonames.org/3023423/ | |
| "les bas d'anselm"^^xsd:string | http://img.jamendo.com/artists/l/lesbasdanselm.jpg | http://www.lesbasdanselm.com | http://sws.geonames.org/3015948/ |
| "Aching Beauty"^^xsd:string | http://img.jamendo.com/artists/a/achingbeauty.jpg | http://www.aching-beauty.com/ | http://sws.geonames.org/2968815/ |
| "Dee Mond"^^xsd:string | http://img.jamendo.com/artists/d/dee.mond.jpg | http://www.pyratemusic.co.uk | |
| "Talley Lambert"^^xsd:string | http://img.jamendo.com/artists/t/talley.lambert.jpg | http://www.talleylambert.com | http://sws.geonames.org/6252001/ |
| "PearlPlex"^^xsd:string | http://img.jamendo.com/artists/p/perlplex.png | http://www.pearl-plex.de | http://sws.geonames.org/3209442/ |
| "SF5X"^^xsd:string | http://img.jamendo.com/artists/s/sf5x.gif | http://stakyprod.canalblog.com | http://sws.geonames.org/2991627/ |
| "Valérianne Lavi"^^xsd:string | http://img.jamendo.com/artists/v/valerianne.lavi.jpg | http://www.valeriannelavi.com | http://sws.geonames.org/2802361/ |
| "EXIT"^^xsd:string | http://img.jamendo.com/artists/e/exit-project.jpg | http://www.exit-project.com | http://sws.geonames.org/2968815/ |
| "Trafic de Blues"^^xsd:string | http://img.jamendo.com/artists/t/trafic.de.blues.jpg | http://www.traficdeblues.fr.st | http://sws.geonames.org/3012804/ |
| "Deckard"^^xsd:string | http://img.jamendo.com/artists/d/deckard.jpg | http://www.deckard-worldwide.com | http://sws.geonames.org/6556330/ |
| "Rojata"^^xsd:string | http://img.jamendo.com/artists/r/rojata.jpg | http://sws.geonames.org/3013657/ | |
| "Solarfall"^^xsd:string | http://img.jamendo.com/artists/s/solarfall.jpg | http://www.solarfall.jexiste.fr | http://sws.geonames.org/2987410/ |
| "subatomicglue"^^xsd:string | http://img.jamendo.com/artists/s/subatomicglue.png | http://www.subatomicglue.com | http://sws.geonames.org/6252001/ |
| "Sea and Field"^^xsd:string | http://img.jamendo.com/artists/s/sea.and.field.jpg | http://www.sea-and-field.com | http://sws.geonames.org/2997856/ |
| "Laxa_Tif"^^xsd:string | http://img.jamendo.com/artists/l/laxa.tif.jpg | http://laxatif.canalblog.com/ | http://sws.geonames.org/2991627/ |
| "Dream ED"^^xsd:string | http://img.jamendo.com/artists/d/dreamed.jpg | http://dream.ed.free.fr | http://sws.geonames.org/3013767/ |
| "X-RAY POP"^^xsd:string | http://www.x-raypop.com/ | http://sws.geonames.org/3012804/ | |
| "Matthew Tyas"^^xsd:string | http://img.jamendo.com/artists/m/matthew.tyas.jpg | http://mtyas.com | http://sws.geonames.org/2984887/ |
| "Clainzy"^^xsd:string | http://img.jamendo.com/artists/c/clainzy.jpg | http://perso.orange.fr/music.titi/ | http://sws.geonames.org/3019599/ |
| "Nico Grim"^^xsd:string | http://sws.geonames.org/2990129/ | ||
| "#Dance 75#"^^xsd:string | http://img.jamendo.com/artists/d/dance.75.png | http://www.dance.cmon.biz | http://sws.geonames.org/2968815/ |
| "anarchy in progress"^^xsd:string | http://img.jamendo.com/artists/a/anarchy.in.progress.jpg | http://dem0nd1g1tal.blogspot.com/ | http://sws.geonames.org/3026644/ |
| "Saelynh"^^xsd:string | http://img.jamendo.com/artists/s/saelynh.jpg | http://saelynh.hautetfort.com/ | http://sws.geonames.org/3013657/ |
| "El Frero"^^xsd:string | http://img.jamendo.com/artists/e/el.frero.jpg | http://www.elfrero.com | http://sws.geonames.org/2990129/ |
| "Testicore"^^xsd:string | http://img.jamendo.com/artists/t/testicore.jpg | http://www.testicore.fr.st | http://sws.geonames.org/3013500/ |
| "Quendi"^^xsd:string | http://img.jamendo.com/artists/q/quendi.gif | http://www.myspace.com/quendi57 | http://sws.geonames.org/2991627/ |
| "New-York Black Watacloza"^^xsd:string | http://img.jamendo.com/artists/n/nybwc.jpg | http://nybwc.free.fr | http://sws.geonames.org/2991627/ |
| "Samsara"^^xsd:string | http://img.jamendo.com/artists/s/samsara.oneshot.jpg | http://www.samsara.new.fr | http://sws.geonames.org/3013767/ |
| "gautam sen"^^xsd:string | http://img.jamendo.com/artists/g/gautam.sen.jpg | http://gaetansengupta.free.fr/site/nouveausite.swf | http://sws.geonames.org/2990129/ |
| "Yoogz & Nix"^^xsd:string | http://img.jamendo.com/artists/y/yoogz.nix.jpg | http://spaces.msn.com/nixno-funk/ | http://sws.geonames.org/3012715/ |
| "Nika"^^xsd:string | http://img.jamendo.com/artists/n/nika.jpg | http://face-nika.sup.fr | http://sws.geonames.org/2991627/ |
| "Asser Sleds"^^xsd:string | http://img.jamendo.com/artists/a/asser.sleds.jpg | http://assersleds.over-blog.com/ | http://sws.geonames.org/3026644/ |
| "DJ Epsilon"^^xsd:string | http://img.jamendo.com/artists/d/djepsilon.jpg | http://www.djepsilon.net | http://sws.geonames.org/3034720/ |
| "The Clock"^^xsd:string | http://img.jamendo.com/artists/t/theclock.jpg | http://www.theclock.org | http://sws.geonames.org/6252001/ |
| "Maniax Memori"^^xsd:string | http://img.jamendo.com/artists/m/maniax.memori.jpg | http://maniaxmemori.net | http://sws.geonames.org/3031359/ |
| "Idayam"^^xsd:string | http://img.jamendo.com/artists/i/idayam.png | http://www.idayam.net | http://sws.geonames.org/2971071/ |
| "Soap Parano"^^xsd:string | http://img.jamendo.com/artists/s/soapparano.jpg | http://www.soapparano.net | http://sws.geonames.org/2967196/ |
| "Pied d'nez"^^xsd:string | http://img.jamendo.com/artists/p/pied.d.nez.png | http://piednez.free.fr | http://sws.geonames.org/3029094/ |
| "cyprien"^^xsd:string | http://img.jamendo.com/artists/c/cyprien.jpg | http://www.night-bird.c0wb0ys.org | http://sws.geonames.org/3015948/ |
| "sukara"^^xsd:string | http://img.jamendo.com/artists/s/sukara.png | http://sukara.ouame.com | http://sws.geonames.org/3012804/ |
| "Amaral"^^xsd:string | http://img.jamendo.com/artists/a/amaral.png | http://www.misogyne.com/ | http://sws.geonames.org/3013767/ |
| "HORION"^^xsd:string | http://img.jamendo.com/artists/h/horion.jpg | http://myspace.com/horion | http://sws.geonames.org/3013767/ |
| "Lillian Gish"^^xsd:string | http://img.jamendo.com/artists/l/lillian.gish.jpg | http://lilliangish.hautetfort.com/ | http://sws.geonames.org/2802361/ |
| "No, Really"^^xsd:string | http://www.noreallyrock.com | http://sws.geonames.org/6252001/ | |
| "Pompey"^^xsd:string | http://img.jamendo.com/artists/p/pompey.jpg | http://www.pocketclock.org/pompey | http://sws.geonames.org/2077456/ |
| "Les baguettes moulées"^^xsd:string | http://img.jamendo.com/artists/l/les.baguettes.moulees.jpg | http://www.lesbaguettesmoulees.com | http://sws.geonames.org/2975926/ |
| "Crabtambour"^^xsd:string | http://img.jamendo.com/artists/c/crabtambour.jpg | http://www.crabtambour.infos.st | http://sws.geonames.org/2967681/ |
| "4neurones"^^xsd:string | http://img.jamendo.com/artists/4/4neurones.jpg | http://www.4-n.org | http://sws.geonames.org/2990129/ |
| "Sacha Rives"^^xsd:string | http://img.jamendo.com/artists/s/sacha.jpg | http://sacha33000.free.fr | http://sws.geonames.org/3015948/ |
| "Heymeget"^^xsd:string | http://img.jamendo.com/artists/h/heymeget.jpg | http://heymeget.typepad.com/walrus_pop_music/ | http://sws.geonames.org/2968815/ |
| "Guillaume de la Chapelle"^^xsd:string | http://img.jamendo.com/artists/g/guillaume.de.la.chapelle.jpg | http://g.dlc.free.fr | http://sws.geonames.org/3017382/ |
| "Michaël MARCHE"^^xsd:string | http://michaelmarche.new.fr | http://sws.geonames.org/2994111/ | |
| "nOle"^^xsd:string | http://img.jamendo.com/artists/n/nole.gif | http://nolemusic.free.fr | http://sws.geonames.org/3017382/ |
| "Platinum Limb"^^xsd:string | http://img.jamendo.com/artists/p/platinumlimb.jpg | http://platinumlimb.org/ | http://sws.geonames.org/6252001/ |
| "Cero Amor"^^xsd:string | http://img.jamendo.com/artists/c/ceroamor.png | http://www.mundofree.com/ceroamor | http://sws.geonames.org/2510769/ |
| "iadcell"^^xsd:string | http://bcott.free.fr/ | http://sws.geonames.org/3017382/ | |
| "Anarcotik"^^xsd:string | http://img.jamendo.com/artists/a/anarcotik.jpg | http://anarcotik.free.fr | http://sws.geonames.org/3023423/ |
| "WELFARE"^^xsd:string | http://img.jamendo.com/artists/w/welfare.jpg | http://www.welfare.fr.nf | http://sws.geonames.org/3012715/ |
| "Morpheus"^^xsd:string | http://img.jamendo.com/artists/m/morpheus.jpg | http://www.chaospiral-studios.net | http://sws.geonames.org/2510769/ |
| "EL HUERTO DEL CURA"^^xsd:string | http://img.jamendo.com/artists/e/el.huerto.del.cura.gif | http://www.elhuertodelcura.com | http://sws.geonames.org/2510769/ |
| "Artistix"^^xsd:string | http://img.jamendo.com/artists/a/artistix.png | http://nossaraj.free.fr/ | http://sws.geonames.org/2975249/ |
| "le Komité Mité"^^xsd:string | http://img.jamendo.com/artists/k/komite.mite.jpg | http://www.chez.com/drjekyll/ | http://sws.geonames.org/2991627/ |
| "Keroseno"^^xsd:string | http://img.jamendo.com/artists/k/keroseno.jpg | http://www.keroseno.org/blog | http://sws.geonames.org/2510769/ |
| "clbustos"^^xsd:string | http://img.jamendo.com/artists/c/clbustos.png | http://www.algodemusica.com/es/artist/clbustos | http://sws.geonames.org/3895114/ |
| "Stan-X"^^xsd:string | http://img.jamendo.com/artists/s/stan-x.jpg | http://www.stan-x.com | http://sws.geonames.org/3019599/ |
| "Weirdland"^^xsd:string | http://img.jamendo.com/artists/w/weirdland.png | http://weirdland.fr.st | http://sws.geonames.org/2997870/ |
| "Monkey Throw Feces"^^xsd:string | http://img.jamendo.com/artists/m/monkeythrowfeces.png | http://www.yodellingllama.com/?page_id=99 | http://sws.geonames.org/223816/ |
| "yerba"^^xsd:string | http://img.jamendo.com/artists/y/yerba.jpg | http://tetragrammaton72.tripod.com/ | |
| "Les Roses Noires"^^xsd:string | http://lesrosesnoires.free.fr/ | http://sws.geonames.org/3019317/ | |
| "Bill Magill"^^xsd:string | http://img.jamendo.com/artists/b/bill.magill.jpg | http://sws.geonames.org/6252001/ | |
| "Sidekick Lupchen & The Bad Generation"^^xsd:string | http://img.jamendo.com/artists/s/sidekick.lupchen.and.the.bad.generation.jpg | http://www.bad-generation.de | http://sws.geonames.org/2921044/ |
| "macmartin"^^xsd:string | http://img.jamendo.com/artists/m/macmartin.jpg | http://sws.geonames.org/2968815/ | |
| "UFS"^^xsd:string | http://img.jamendo.com/artists/u/ufs.jpg | http://perso.wanadoo.fr/U.F.S/ | http://sws.geonames.org/3013767/ |
| "Natis"^^xsd:string | http://img.jamendo.com/artists/n/natis.jpg | http://www.natis.fr.tc | http://sws.geonames.org/3036264/ |
| "Buddhaz Yoyos"^^xsd:string | http://img.jamendo.com/artists/b/buddhaz.yoyos.jpg | http://buddhazyoyos.new.fr | http://sws.geonames.org/2975248/ |
| "Ecchymoze"^^xsd:string | http://img.jamendo.com/artists/e/ecchymoze.jpg | http://www.ecchymoze.com | http://sws.geonames.org/3034720/ |
| "HEAVENOISE"^^xsd:string | http://img.jamendo.com/artists/h/heavenoise.jpg | http://www.heavenoise.com | http://sws.geonames.org/3175395/ |
| "Les Petits Chanteurs de Montigny"^^xsd:string | http://img.jamendo.com/artists/p/pcmontigny.jpg | http://melimelodie.montigny.free.fr | http://sws.geonames.org/2991627/ |
| "Pascal Garry"^^xsd:string | http://img.jamendo.com/artists/p/pascal.garry.jpg | http://www.pascalgarry.com | http://sws.geonames.org/3019599/ |
| "Micko"^^xsd:string | http://img.jamendo.com/artists/m/micko.jpg | http://www.micko.blogspot.com | http://sws.geonames.org/2510769/ |
| "#Blockout"^^xsd:string | http://img.jamendo.com/artists/b/blockout.jpg | http://www.blockout.new.fr | http://sws.geonames.org/2967196/ |
| "UNEX"^^xsd:string | http://img.jamendo.com/artists/u/unex.jpg | http://www.myspace.com/unexofgermany | http://sws.geonames.org/2921044/ |
| "Julien Stankiewicz"^^xsd:string | http://img.jamendo.com/artists/j/julien.stankiewicz.jpg | http://stankiewicz.free.fr | http://sws.geonames.org/2968815/ |
| "Desiderata"^^xsd:string | http://img.jamendo.com/artists/d/desiderata.jpg | http://www.desiderata.ch | http://sws.geonames.org/2658182/ |
| "WENLOCK"^^xsd:string | http://img.jamendo.com/artists/w/wenlock.jpg | http://wenlockworld.free.fr | http://sws.geonames.org/2989663/ |
| "laMundial.net"^^xsd:string | http://img.jamendo.com/artists/l/lamundial.jpg | http://www.lamundial.net | http://sws.geonames.org/2510769/ |
| "Antony Raijekov"^^xsd:string | http://img.jamendo.com/artists/a/antony.raijekov.jpg | http://tony.cult.bg | http://sws.geonames.org/6459211/ |
| "Cynicism"^^xsd:string | http://img.jamendo.com/artists/c/cynicism.jpg | http://www.cynicism.de | http://sws.geonames.org/6556330/ |
| "Dazibao"^^xsd:string | http://img.jamendo.com/artists/d/dazibao.jpg | http://www.dazibao-land.com | http://sws.geonames.org/2967222/ |
| "Portrait"^^xsd:string | http://img.jamendo.com/artists/p/portrait.jpg | http://sws.geonames.org/2510769/ | |
| "TkDonF"^^xsd:string | http://img.jamendo.com/artists/t/tkdonf.jpg | http://tkdonf.supersite.fr | http://sws.geonames.org/3036420/ |
| "The Chadderandom Abyss"^^xsd:string | http://img.jamendo.com/artists/c/chadderandom.abyss.jpg | http://www.geocities.com/drandomusic/ | http://sws.geonames.org/6252001/ |
| "La Sardina Hidrofòbika"^^xsd:string | http://www.lsh.es.mn | http://sws.geonames.org/2510769/ | |
| "Le bruit de la rue"^^xsd:string | http://img.jamendo.com/artists/l/le.bruit.de.la.rue.jpg | http://lebruitdelarue.free.fr | http://sws.geonames.org/3012715/ |
| "Atomic cat"^^xsd:string | http://img.jamendo.com/artists/a/atomic.cat.jpg | http://www.atomic-cat.fr | http://sws.geonames.org/3013500/ |
| "Michael Forrest"^^xsd:string | http://www.cinestatic.com/michaelforrest | ||
| "from roots"^^xsd:string | http://img.jamendo.com/artists/f/from.roots.jpg | http://fromroots.over-blog.com | http://sws.geonames.org/3013767/ |
| "Galdson"^^xsd:string | http://img.jamendo.com/artists/g/galdson.png | http://galdson.com | http://sws.geonames.org/2510769/ |
| "Corentin et ses Danseuses"^^xsd:string | http://img.jamendo.com/artists/c/corentin.et.ses.danseuses.gif | http://corentinlesite.free.fr | http://sws.geonames.org/2989663/ |
| "hozonie"^^xsd:string | http://img.jamendo.com/artists/h/hozonie.jpg | http://sws.geonames.org/2997870/ | |
| "misterjok"^^xsd:string | http://misterjok.free.fr | http://sws.geonames.org/2997524/ | |
| "NMDV"^^xsd:string | http://img.jamendo.com/artists/n/nmdv.gif | http://nmdv.vandalay.org | http://sws.geonames.org/6556330/ |
| "Quezillacolt45"^^xsd:string | http://img.jamendo.com/artists/q/quezillacolt45.jpg | http://quezillacolt45.blogspot.com/ | http://sws.geonames.org/6251999/ |
| "Vincent Soleil"^^xsd:string | http://img.jamendo.com/artists/v/vincent.soleil.jpg | http://vsoleil.free.fr/anotherpasttime-lesite/ | http://sws.geonames.org/2968815/ |
| "Le Milieu"^^xsd:string | http://img.jamendo.com/artists/l/lemilieu.png | http://lemilieu.free.fr | http://sws.geonames.org/3029094/ |
| "Wuzz"^^xsd:string | http://img.jamendo.com/artists/w/wuzz.jpg | http://jerome.wuzz.free.fr/wuzz | http://sws.geonames.org/3038049/ |
| "Sickboys and Lowmen"^^xsd:string | http://img.jamendo.com/artists/s/sicklow.jpg | http://www.sickboys.nl | http://sws.geonames.org/2750405/ |
| "steven host"^^xsd:string | http://img.jamendo.com/artists/s/stevenhost.jpg | http://stevenhost.free.fr | http://sws.geonames.org/2968815/ |
| "Hiktheb"^^xsd:string | http://img.jamendo.com/artists/h/hiktheb.jpg | http://www.hiktheb.com | http://sws.geonames.org/2989663/ |
| "57 grados"^^xsd:string | http://img.jamendo.com/artists/5/57grados.jpg | http://www.57grados.tk | http://sws.geonames.org/3114471/ |
| "Essebea"^^xsd:string | http://img.jamendo.com/artists/e/essebea.jpg | http://essebea.blogspot.com/ | http://sws.geonames.org/3036420/ |
| "djbouly"^^xsd:string | http://img.jamendo.com/artists/d/djbouly.jpg | http://chefgeorges.free.fr | http://sws.geonames.org/2988430/ |
| "Georges Bloch"^^xsd:string | http://img.jamendo.com/artists/g/georges.bloch.jpg | http://www.georgesbloch.com | http://sws.geonames.org/2658434/ |
| "Talking Cure"^^xsd:string | http://img.jamendo.com/artists/t/talking.cure.jpg | http://cyrille.lips.club.fr/ | http://sws.geonames.org/2975517/ |
| "Avastar"^^xsd:string | http://img.jamendo.com/artists/a/avastar.png | http://myspace.com/avastarmusic | http://sws.geonames.org/2960313/ |
| "Razzmatazz"^^xsd:string | http://img.jamendo.com/artists/r/razzmatazz.jpg | http://lesrazzmatazz.skyblog.com | http://sws.geonames.org/2984986/ |
| "Elias Schwerdtfeger"^^xsd:string | http://img.jamendo.com/artists/e/elias.schwerdtfeger.png | http://www.tamagothi.de/ | http://sws.geonames.org/2930484/ |
| "Johannes Hopfner"^^xsd:string | http://img.jamendo.com/artists/j/johanneshopfner.gif | http://www.myspace.com/johanneshopfner | http://sws.geonames.org/3017382/ |
| "Avec elle"^^xsd:string | http://img.jamendo.com/artists/a/avecelle.jpg | http://www.avecelle.org | http://sws.geonames.org/2967196/ |
| "The Washing Machine"^^xsd:string | http://img.jamendo.com/artists/t/twm.jpg | http://www.thewashingmachine.tk | http://sws.geonames.org/2994111/ |
| "Bass"^^xsd:string | http://img.jamendo.com/artists/b/bass.jpg | http://osiris4.free.fr | http://sws.geonames.org/3038375/ |
| "Madame X"^^xsd:string | http://img.jamendo.com/artists/m/madame.x.jpg | http://www.myspace.com/littlecaniche | http://sws.geonames.org/2996663/ |
| "Les Ombres"^^xsd:string | http://img.jamendo.com/artists/l/les.ombres.jpg | http://www.lesombres.fr | http://sws.geonames.org/3019599/ |
| "Jimouze"^^xsd:string | http://img.jamendo.com/artists/j/jimouze.jpg | http://www.jimouze.com | http://sws.geonames.org/3038049/ |
| "DJ Farwest"^^xsd:string | http://img.jamendo.com/artists/d/dj.farwest.jpg | http://www.hiphop-farwest.at.tf | http://sws.geonames.org/2782113/ |
| "R.E.P - Repose En Paix"^^xsd:string | http://img.jamendo.com/artists/r/r.e.p.jpg | http://www.myspace.com/reposeenpaix | http://sws.geonames.org/3013767/ |
| "David Law n' The Arkitekts"^^xsd:string | http://img.jamendo.com/artists/d/david.law.n.the.arkitekts.jpg | http://mapage.noos.fr/davidlaw | http://sws.geonames.org/2968815/ |
| "Count Rybumpkin"^^xsd:string | http://formica-table.com/rybumpkin/ | ||
| "Luca Deriu"^^xsd:string | http://img.jamendo.com/artists/l/luca.deriu.jpg | http://www.lucaderiu.com | http://sws.geonames.org/3173434/ |
| "ARAI"^^xsd:string | http://img.jamendo.com/artists/a/arai.jpg | http://araiweb.spaces.live.com/ | http://sws.geonames.org/3114471/ |
| "Pierre-Alain Goualch"^^xsd:string | http://www.goualch.com | http://sws.geonames.org/2994111/ | |
| "no feeling"^^xsd:string | http://img.jamendo.com/artists/n/no.feeling.jpg | http://nofeelingart.blogspot.com | http://sws.geonames.org/2997523/ |
| "F.GLAUSINGER"^^xsd:string | http://img.jamendo.com/artists/g/glausinger.jpg | http://glausinger.free.fr | http://sws.geonames.org/2968815/ |
| "Takattack"^^xsd:string | http://img.jamendo.com/artists/t/takattack.jpg | http://www.takattack.net | http://sws.geonames.org/6251999/ |
| "Les Petites Violettes"^^xsd:string | http://img.jamendo.com/artists/l/les.petites.violettes.jpg | http://les-petites-violettes.max.st/ | http://sws.geonames.org/2991627/ |
| "Sleeping Core"^^xsd:string | http://img.jamendo.com/artists/s/sleepingcore.gif | http://www.sleepingcore.com | http://sws.geonames.org/2659752/ |
| "Rouletabille"^^xsd:string | http://img.jamendo.com/artists/r/rouletabille.jpg | http://www.myspace.com/rouletabil | http://sws.geonames.org/3015948/ |
| "deskaya"^^xsd:string | http://img.jamendo.com/artists/d/deskayarockband.jpg | http://deskaya.new.fr/ | http://sws.geonames.org/2997870/ |
| "Angelb"^^xsd:string | http://img.jamendo.com/artists/a/angelb.jpg | http://angelibanez.free.fr | http://sws.geonames.org/3013663/ |
| "Buze Julien"^^xsd:string | http://img.jamendo.com/artists/b/buze.julien.jpg | http://www.lepianiste.be.cx | http://sws.geonames.org/2802361/ |
| "X4U"^^xsd:string | http://img.jamendo.com/artists/x/x4u.jpg | http://bluemiss.free.fr/Sextripcompilation/index.htm | http://sws.geonames.org/3017382/ |
| "Musuca"^^xsd:string | http://img.jamendo.com/artists/m/musuca.jpg | http://www.musuca.eu | |
| "AARON THE CUTTER"^^xsd:string | http://img.jamendo.com/artists/a/aaron.the.cutter.jpg | http://www.myspace.com/aaronthecutter | http://sws.geonames.org/2975246/ |
| "Nihil Limit"^^xsd:string | http://www.17sons.com/articles.php?lng=en&pg=79 | http://sws.geonames.org/3017382/ | |
| "Drallibotrop"^^xsd:string | http://img.jamendo.com/artists/d/drallibotrop.jpg | http://drallibotrop.free.fr | http://sws.geonames.org/3013657/ |
| "CanBlaster"^^xsd:string | http://img.jamendo.com/artists/c/canblaster.jpg | http://www.myspace.com/canblaster | http://sws.geonames.org/2990129/ |
| "Eva Garcia"^^xsd:string | http://img.jamendo.com/artists/e/eva.garcia.jpg | http://www.evagarcia.fr | http://sws.geonames.org/2975246/ |
| "KILLECTRO"^^xsd:string | http://img.jamendo.com/artists/k/kilo.gif | http://sws.geonames.org/3012715/ | |
| "Fanny Engelhart"^^xsd:string | http://img.jamendo.com/artists/f/fanny.engelhart.jpg | http://pas encore de site web/ | http://sws.geonames.org/2997856/ |
| "SLICER"^^xsd:string | http://img.jamendo.com/artists/s/slicer.jpg | http://www.myspace.com/slicerconvoyeurdeson | http://sws.geonames.org/3026646/ |
| "Ratsim"^^xsd:string | http://www.ratsim.com | http://sws.geonames.org/3019317/ | |
| "FarraH Diod Of Antifogs"^^xsd:string | http://img.jamendo.com/artists/f/farrah.diod.of.antifogs.jpg | http://www.diod.org | http://sws.geonames.org/2968815/ |
| "Scoldt"^^xsd:string | http://img.jamendo.com/artists/s/scoldt.jpg | http://www.myspace.com/scoldt | http://sws.geonames.org/3016670/ |
| "CYBORG"^^xsd:string | http://img.jamendo.com/artists/c/cyborg.jpg | http://sws.geonames.org/2994111/ | |
| "pushing globe"^^xsd:string | http://img.jamendo.com/artists/p/pushing.globe.gif | http://www.myspace.com/pushingglobe | http://sws.geonames.org/3013500/ |
| "MORREY"^^xsd:string | http://img.jamendo.com/artists/t/tumorapa.jpg | http://morrey.free.fr | http://sws.geonames.org/2589581/ |
| "b-mor"^^xsd:string | http://img.jamendo.com/artists/b/b-mor.jpg | http://b-mor.over-blog.com/ | http://sws.geonames.org/2997857/ |
| "LOMMORE"^^xsd:string | http://img.jamendo.com/artists/l/lommore.jpg | http://www.lommore.com | http://sws.geonames.org/2988430/ |
| "Junk d.n.A"^^xsd:string | http://img.jamendo.com/artists/j/junk.d.n.a.jpg | http://www.junkdna.fr.st | http://sws.geonames.org/2991627/ |
| "JCRZ"^^xsd:string | http://img.jamendo.com/artists/j/jcrz.gif | http://www.jcrz.com | http://sws.geonames.org/3013767/ |
| "Skandalo Publico"^^xsd:string | http://img.jamendo.com/artists/s/skandalo.publico.jpg | http://skandalopublico.free.fr/ | http://sws.geonames.org/2987410/ |
| "Andrew Jimenez"^^xsd:string | http://img.jamendo.com/artists/a/andrewjimenez.jpg | http://www.myspace.com/andrewjimenez | http://sws.geonames.org/6252001/ |
| "Laocoon"^^xsd:string | http://img.jamendo.com/artists/l/laocoon.jpg | http://laocoon83 | http://sws.geonames.org/2970749/ |
| "Acoustic Affinités"^^xsd:string | http://img.jamendo.com/artists/a/acoustic.affinites.jpg | http://www.acoustic-affinites.com | http://sws.geonames.org/2991627/ |
| "Grace Valhalla"^^xsd:string | http://img.jamendo.com/artists/g/grace.valhalla.jpg | http://gracevalhalla.hautetfort.com | http://sws.geonames.org/2994111/ |
| "Les Oreilles en Ballades"^^xsd:string | http://img.jamendo.com/artists/l/les.oreilles.en.ballades.gif | http://christophe.kay.free.fr/les-oreilles-en-ballades/m.html | http://sws.geonames.org/3031359/ |
| "Stidiek"^^xsd:string | http://img.jamendo.com/artists/s/stidiek.jpg | http://www.myspace.com/stidiekmusic | http://sws.geonames.org/3114471/ |
| "Pol B & Binarymind"^^xsd:string | http://img.jamendo.com/artists/p/pol.b.binarymind.jpg | http://www.binarymind.org | http://sws.geonames.org/2968815/ |
| "Tedmiles"^^xsd:string | http://img.jamendo.com/artists/t/tedmiles.jpg | http://www.tedmiles.fr.st | http://sws.geonames.org/2990129/ |
| "Zampano"^^xsd:string | http://img.jamendo.com/artists/z/zampano.jpg | http://zampano.propagande.org | http://sws.geonames.org/2968815/ |
| "L'Onomatopeur"^^xsd:string | http://img.jamendo.com/artists/l/lonomatopeur.jpg | http://www.myspace.com/lonomatopeur | http://sws.geonames.org/2997861/ |
| "BROM"^^xsd:string | http://img.jamendo.com/artists/b/brom.jpg | http://www.brom.us | http://sws.geonames.org/6252001/ |
| "DJ Palant"^^xsd:string | |||
| "Armust Blegde"^^xsd:string | http://img.jamendo.com/artists/a/armust.blegde.jpg | http://www.violon-guitare.com | http://sws.geonames.org/3013736/ |
| "Laurent M"^^xsd:string | http://img.jamendo.com/artists/l/laurent.m.jpg | http://sws.geonames.org/3012804/ | |
| "La Goutte au Nez"^^xsd:string | http://img.jamendo.com/artists/l/lagoutteaunez.jpg | http://www.lagoutteaunez.com | http://sws.geonames.org/3012804/ |
| "CraZyH et Djézinho"^^xsd:string | http://img.jamendo.com/artists/c/crazyh.et.djezinho.jpg | http://www.myspace.com/kallima1 | http://sws.geonames.org/2997857/ |
| "sound of jack"^^xsd:string | http://img.jamendo.com/artists/s/sound.of.jack.jpg | http://soundofjack.blogspot.com/ | http://sws.geonames.org/3016670/ |
| "Stoy"^^xsd:string | http://img.jamendo.com/artists/s/stoy.jpg | http://stoy.over-blog.com/ | http://sws.geonames.org/3013663/ |
| "HARRY KANE"^^xsd:string | http://img.jamendo.com/artists/h/harry.kane.jpg | http://www.harrykane.es | http://sws.geonames.org/6355240/ |
| "Les Ânes Animent"^^xsd:string | http://img.jamendo.com/artists/l/les.anes.animent.jpg | http://www.anesaniment.fr | http://sws.geonames.org/2997870/ |
| "Bob Voyage"^^xsd:string | http://img.jamendo.com/artists/b/bob.voyage.jpg | http://sws.geonames.org/3013657/ | |
| "jess"^^xsd:string | http://jesszik.free.fr | http://sws.geonames.org/3012715/ | |
| "hapax"^^xsd:string | http://img.jamendo.com/artists/h/hapax.jpg | http://www.soundclick.com/hapax | http://sws.geonames.org/3012804/ |
| "SEPTENTRION"^^xsd:string | http://septentrion.site.voila.fr | http://sws.geonames.org/3013767/ | |
| "Ellenbogen"^^xsd:string | http://img.jamendo.com/artists/e/ellenbogen.jpg | http://www.videoart.net/home/Artists/ArtistPage.cfm?Artist_ID=855 | http://sws.geonames.org/2884161/ |
| "gasno prod"^^xsd:string | http://img.jamendo.com/artists/g/gasnoprod.jpg | http://musique-libre.org/static.php#?op=musiqueIndex.php&npds=-1&group=Gasno prod | http://sws.geonames.org/2984986/ |
| "Minus Clay"^^xsd:string | http://img.jamendo.com/artists/m/minus.clay.jpg | http://membres.lycos.fr/mercutiosdead | http://sws.geonames.org/3017382/ |
| "Revolution Void"^^xsd:string | http://img.jamendo.com/artists/r/revolutionvoid.jpg | http://www.revolutionvoid.com | http://sws.geonames.org/6252001/ |
| "Samax"^^xsd:string | http://samax.tripwood.free.fr | http://sws.geonames.org/2991879/ | |
| "savium"^^xsd:string | http://img.jamendo.com/artists/s/savium.jpg | http://www.saviumsaliva.com/ | http://sws.geonames.org/2623032/ |
| "Anathème"^^xsd:string | http://img.jamendo.com/artists/a/anatheme.jpg | http://www.anatheme.fr.st | http://sws.geonames.org/2994111/ |
| "Scape.Goat"^^xsd:string | http://img.jamendo.com/artists/s/scape.goat.jpg | http://www.myspace.com/goatscape | http://sws.geonames.org/2990129/ |
| "CHRYSALLIS"^^xsd:string | http://img.jamendo.com/artists/c/chrysallis.jpg | __jamendo-3.rdf#__Description1 | http://sws.geonames.org/2975248/ |
| "NUN"^^xsd:string | http://img.jamendo.com/artists/n/nun.jpg | http://www.nunsarean.com | http://sws.geonames.org/3104469/ |
| "stefan d"^^xsd:string | http://img.jamendo.com/artists/s/stefand.jpg | http://www.furaxe.qc.ca | http://sws.geonames.org/6251999/ |
| "Lady Renoir"^^xsd:string | http://img.jamendo.com/artists/l/lady.renoir.jpg | __jamendo-3.rdf#__Description2 | http://sws.geonames.org/2971071/ |
| "i am this"^^xsd:string | http://img.jamendo.com/artists/i/iamthis.jpg | http://www.1amthi5.piczo.com/ | http://sws.geonames.org/6252001/ |
| "Dr. Wanker"^^xsd:string | http://img.jamendo.com/artists/d/dr.wanker.jpg | http://www.jamendo.com/dr.wanker | http://sws.geonames.org/2990129/ |
| "GOR"^^xsd:string | http://img.jamendo.com/artists/g/gor.jpg | http://perso.orange.fr/religionnaire/relproductions.htm | http://sws.geonames.org/3013657/ |
| "La cinquième roue"^^xsd:string | http://img.jamendo.com/artists/l/lacinquiemeroue.jpg | http://www.lacinquiemeroue.free.fr | http://sws.geonames.org/2968815/ |
| "Gris"^^xsd:string | http://img.jamendo.com/artists/g/gris.jpg | http://www.grisrock.com.ar | http://sws.geonames.org/3865483/ |
| "MONAGUILLOS SIN FRONTERAS"^^xsd:string | http://mcgafas.blogspot.com | http://sws.geonames.org/2510769/ | |
| "Paper Plane Pilots"^^xsd:string | http://img.jamendo.com/artists/p/paper.plane.pilots.jpg | http://paperplanepilots.free.fr | http://sws.geonames.org/2967196/ |
| "Insanity Heroes"^^xsd:string | http://img.jamendo.com/artists/i/insanity.heroes.jpg | http://www.insanityheroes.co.uk | |
| "Dwight Jack"^^xsd:string | http://img.jamendo.com/artists/d/dwight.jack.png | http://www.webalice.it/dwjack/ | http://sws.geonames.org/3175395/ |
| "blackwire"^^xsd:string | http://img.jamendo.com/artists/b/blackwire.jpg | http://blog.libero.it/blackwire/ | http://sws.geonames.org/3175395/ |
| "No Replay"^^xsd:string | http://img.jamendo.com/artists/n/noreplay.jpg | http://www.noreplay.net | http://sws.geonames.org/6355234/ |
| "Habuhiah-zen"^^xsd:string | http://img.jamendo.com/artists/h/habuhiah-zen.jpg | http://habuhiah-zen-paradise.spaces.msn.com/ | http://sws.geonames.org/3013663/ |
| "David Law"^^xsd:string | http://img.jamendo.com/artists/d/david.law.jpg | http://mapage.noos.fr/davidlaw | http://sws.geonames.org/2968815/ |
| "OMAÏNEN"^^xsd:string | http://img.jamendo.com/artists/o/omainen.png | http://www.omainen.com | http://sws.geonames.org/2968815/ |
| "Sevenless"^^xsd:string | http://img.jamendo.com/artists/s/sevenless.jpg | http://nicolas.manel.free.fr | http://sws.geonames.org/6252001/ |
| "Too Many I's"^^xsd:string | http://img.jamendo.com/artists/t/too.many.i.s.jpg | http://www.myspace.com/toomanyis | http://sws.geonames.org/6252001/ |
| "Whiskey Therapy"^^xsd:string | http://img.jamendo.com/artists/w/whiskey.therapy.jpg | http://www.whiskeytherapy.tk | http://sws.geonames.org/3108680/ |
| "OH"^^xsd:string | http://img.jamendo.com/artists/o/oh.jpg | http://www.myspace.com/ohmusicband | http://sws.geonames.org/2988430/ |
| "Les Bernardo"^^xsd:string | http://www.bernardo.be.tf | http://sws.geonames.org/2802361/ | |
| "Georges Habitbol"^^xsd:string | http://img.jamendo.com/artists/g/georgeshabitbol.jpg | http://www.myspace.com/whiteobscurity | http://sws.geonames.org/3017382/ |
| "ADDICTION"^^xsd:string | http://img.jamendo.com/artists/a/addiction.jpg | http://www.myspace.com/4ddicti0n | http://sws.geonames.org/2997870/ |
| "Nayaree"^^xsd:string | http://img.jamendo.com/artists/n/nayaree.jpg | http://www.myspace.com/nayareemusic | http://sws.geonames.org/2987410/ |
| "The Mystery Artist"^^xsd:string | http://img.jamendo.com/artists/t/the.mystery.artist.jpg | http://www.myspace.com/themysteryartist | http://sws.geonames.org/2264397/ |
| "After Glow"^^xsd:string | http://img.jamendo.com/artists/a/after.glow.jpg | http://www.after-glow.ws | http://sws.geonames.org/2991627/ |
| "Chapter 9"^^xsd:string | http://img.jamendo.com/artists/c/chapter9.jpg | http://www.sellaband.com/chapter9 | http://sws.geonames.org/2968815/ |
| "TDm"^^xsd:string | http://img.jamendo.com/artists/t/tdm.jpg | http://www.myspace.com/julienbeau | http://sws.geonames.org/3015948/ |
| "hotzeplotz"^^xsd:string | http://img.jamendo.com/artists/h/hotzeplotz.jpg | http://www.hotzeplotz.eu | |
| "Oi Destroy"^^xsd:string | http://img.jamendo.com/artists/o/oi.destroy.jpg | http://sws.geonames.org/3023423/ | |
| "Pivert"^^xsd:string | http://img.jamendo.com/artists/p/pivert.jpg | http://pivert.bslfd.net | http://sws.geonames.org/2991627/ |
| "DJ Black Red"^^xsd:string | http://img.jamendo.com/artists/d/dj.black.red.png | http://melotrope.com | http://sws.geonames.org/3012715/ |
| "fonetik"^^xsd:string | http://img.jamendo.com/artists/f/fonetik.jpg | http://music-open-source.com | http://sws.geonames.org/3012715/ |
| "antoine à la plage"^^xsd:string | http://img.jamendo.com/artists/a/antoinalaplage.jpg | http://sws.geonames.org/2987410/ | |
| "Lémo"^^xsd:string | http://img.jamendo.com/artists/l/lemo.jpg | http://www.lemo-web.com | http://sws.geonames.org/3013663/ |
| "dj maRF"^^xsd:string | http://img.jamendo.com/artists/d/dj.marf.jpg | http://sws.geonames.org/2884161/ | |
| "Staiff featuring Klub"^^xsd:string | http://img.jamendo.com/artists/s/staiff.featuring.klub.jpg | http://www.staiff.com | http://sws.geonames.org/2991879/ |
| "La Borgia"^^xsd:string | http://img.jamendo.com/artists/l/la.borgia.jpg | http://sws.geonames.org/3012715/ | |
| "Activ-System"^^xsd:string | http://img.jamendo.com/artists/a/activ-system.jpg | http://www.boxson.net | http://sws.geonames.org/2987410/ |
| "altor dj"^^xsd:string | http://img.jamendo.com/artists/a/altor.dj.jpg | http://www.altordj.com | http://sws.geonames.org/2658182/ |
| "Artkane"^^xsd:string | http://img.jamendo.com/artists/a/artkane.jpg | http://www.artkane-rock.new.fr | http://sws.geonames.org/2997861/ |
| "pang pung"^^xsd:string | http://img.jamendo.com/artists/p/pangpung.jpg | http://pangpung.free.Fr | http://sws.geonames.org/3012804/ |
| "Fate Close Warning"^^xsd:string | http://img.jamendo.com/artists/f/fateclosewarning.jpg | http://www.myspace.com/fateclosewarning | http://sws.geonames.org/2510769/ |
| "Phalaenopsis"^^xsd:string | http://img.jamendo.com/artists/p/phalaenopsis.jpg | http://www.phalaenopsis.tk | http://sws.geonames.org/2991627/ |
| "M26.7"^^xsd:string | http://img.jamendo.com/artists/m/m26.7.gif | http://rocksyndicate.com/ | http://sws.geonames.org/2990129/ |
| "JT25"^^xsd:string | http://img.jamendo.com/artists/j/jt25.jpg | http://www.jt25.net | http://sws.geonames.org/2997857/ |
| "Birds of fire"^^xsd:string | http://img.jamendo.com/artists/b/birds.of.fire.jpg | http://sws.geonames.org/2987410/ | |
| "Dj Toxik Waste"^^xsd:string | http://img.jamendo.com/artists/d/dj.toxik.waste.gif | http://djtoxikwaste.centerblog.net/ | http://sws.geonames.org/2802361/ |
| "Lark Wiskey"^^xsd:string | http://img.jamendo.com/artists/l/larkwiskey.jpg | http://www.larkwiskey.com | http://sws.geonames.org/3469034/ |
| "BOSSIIBOSS"^^xsd:string | http://img.jamendo.com/artists/b/bossiiboss.jpg | http://bossiiboss.biz | http://sws.geonames.org/2984887/ |
| "TORP"^^xsd:string | http://groupetorp.free.fr | http://sws.geonames.org/2991627/ | |
| "Josh"^^xsd:string | http://img.jamendo.com/artists/j/josh.jpg | http://joshmusic.infogami.com/ | http://sws.geonames.org/3012715/ |
| "Barzaoui"^^xsd:string | http://img.jamendo.com/artists/b/barzaoui.jpg | http://www.barzaoui.fr | http://sws.geonames.org/2968815/ |
| "noise sound nation"^^xsd:string | http://img.jamendo.com/artists/n/noise.sound.nation.jpg | http://xoomer.alice.it/soundofnoise/ | http://sws.geonames.org/3176958/ |
| "CC4.project"^^xsd:string | http://img.jamendo.com/artists/c/cc4.project.jpg | http://www.myspace.com/cc4project | http://sws.geonames.org/2994111/ |
| "Drunk Yoghurt"^^xsd:string | http://img.jamendo.com/artists/d/drunk.yoghurt.jpg | http://drunkyoghurt.blogspot.com | http://sws.geonames.org/6252001/ |
| "i.care"^^xsd:string | http://img.jamendo.com/artists/i/i.care.jpg | http://i.care.music.perso.orange.fr/ | http://sws.geonames.org/2970749/ |
| "INTI"^^xsd:string | http://img.jamendo.com/artists/i/inti.png | http://www.inti-web.org | http://sws.geonames.org/2975249/ |
| "Kaeba"^^xsd:string | http://img.jamendo.com/artists/k/kaeba.jpg | http://www.kaeba.altervista.org | http://sws.geonames.org/3169069/ |
| "Methu"^^xsd:string | http://img.jamendo.com/artists/m/methu.png | http://methu.free.fr | http://sws.geonames.org/3012804/ |
| "Menfi"^^xsd:string | http://img.jamendo.com/artists/m/menfi.jpg | http://www.menfi-rock.fr.tc | http://sws.geonames.org/2991627/ |
| "Apoapsis"^^xsd:string | http://img.jamendo.com/artists/a/apoapsis.png | http://sws.geonames.org/2661886/ | |
| "wesen"^^xsd:string | http://wesen.saugt.net/ | http://sws.geonames.org/2921044/ | |
| "MEATLES"^^xsd:string | http://img.jamendo.com/artists/m/meatles.jpg | http://meatles.blogspot.com/ | http://sws.geonames.org/2987410/ |
| "Descent Psychosis"^^xsd:string | http://img.jamendo.com/artists/d/descentpsychosis.jpg | http://web.mac.com/smurfgod23/iWeb/despsy/Introducing.html | http://sws.geonames.org/6252001/ |
| "LaBarcaDeSua"^^xsd:string | http://img.jamendo.com/artists/l/labarcadesua.jpg | http://www.labarcadesua.org | http://sws.geonames.org/2510769/ |
| "psystamp"^^xsd:string | http://img.jamendo.com/artists/p/psystamp.jpg | http://medlem.spray.se/psystamp/ | http://sws.geonames.org/2661886/ |
| "Superdefekt"^^xsd:string | http://img.jamendo.com/artists/s/superdefekt.jpg | http://www.superdefekt.com | http://sws.geonames.org/2911297/ |
| "Piergiorgio Lucidi"^^xsd:string | http://img.jamendo.com/artists/p/piergiorgio.lucidi.jpg | http://www.piergiorgiolucidi.com | http://sws.geonames.org/3169069/ |
| "Silence"^^xsd:string | http://img.jamendo.com/artists/s/silence.jpg | http://www.silence-world.tk/ | http://sws.geonames.org/2802361/ |
| "CALAME"^^xsd:string | http://img.jamendo.com/artists/c/calame.jpg | http://www.myspace.com/calameart | http://sws.geonames.org/2990129/ |
| "In Faded Glory"^^xsd:string | http://img.jamendo.com/artists/i/in.faded.glory.gif | http://www.infadedglory.com | http://sws.geonames.org/3013500/ |
| "Doctor Strangelove"^^xsd:string | http://img.jamendo.com/artists/d/doctor.strangelove.jpg | http://www.sonicvisions.net | |
| "MonSteReo"^^xsd:string | http://img.jamendo.com/artists/m/monstereo.jpg | http://www.monstereo.zik.mu | http://sws.geonames.org/3018471/ |
| "The White Nite"^^xsd:string | http://img.jamendo.com/artists/t/the.white.nite.jpg | http://www.thewhitenite.sup.fr | http://sws.geonames.org/2975926/ |
| "jose orraca"^^xsd:string | http://img.jamendo.com/artists/j/jose.orraca.jpg | http://www.joseorraca.com | http://sws.geonames.org/2510769/ |
| "Scoop"^^xsd:string | http://img.jamendo.com/artists/s/scoop.jpg | http://\\scoop05.skyblog.com | http://sws.geonames.org/3025480/ |
| "Madame Olga"^^xsd:string | http://img.jamendo.com/artists/m/madameolga.jpg | http://www.madameolga.com | http://sws.geonames.org/2987410/ |
| "SEBRIDER"^^xsd:string | http://img.jamendo.com/artists/s/sebrider.jpg | http://srmusic.free.fr/SEBRIDER/sebrider.html | http://sws.geonames.org/2996663/ |
| "Laurent Sarrote"^^xsd:string | http://img.jamendo.com/artists/l/laurent.sarrote.jpg | http://www.laurent-sarrote.new.fr | http://sws.geonames.org/3026644/ |
| "Am"^^xsd:string | http://img.jamendo.com/artists/a/am.jpg | http://www.am-offline.net | http://sws.geonames.org/3020781/ |
| "Maö"^^xsd:string | http://img.jamendo.com/artists/m/mao.jpg | http://mao.musicblog.fr | http://sws.geonames.org/3034720/ |
| "TubularTos"^^xsd:string | http://img.jamendo.com/artists/t/tubulartos.jpg | http://www.soundclick.com/tubulartos | http://sws.geonames.org/3037136/ |
| "Poulp"^^xsd:string | http://img.jamendo.com/artists/p/poulp.png | http://r.pelisse.Free.fr/poulp/ | http://sws.geonames.org/2968815/ |
| "Shearer"^^xsd:string | http://img.jamendo.com/artists/s/shearer.jpg | http://www.shearer.de | http://sws.geonames.org/2884161/ |
| "MAIS"^^xsd:string | http://img.jamendo.com/artists/m/mais.gif | http://mais.altervista.org/ | http://sws.geonames.org/3175395/ |
| "@Posteriori"^^xsd:string | http://img.jamendo.com/artists/a/aposteriori.png | http://www.ars-libra.org/@posteriori | http://sws.geonames.org/3038375/ |
| "DOC PILOT"^^xsd:string | http://www.x-raypop.com/ | http://sws.geonames.org/3012804/ | |
| "The Simon Slator Project"^^xsd:string | http://img.jamendo.com/artists/s/simonslatorproject.jpg | http://simonslator.blogspot.com | |
| "Lovely Girls Are Blind"^^xsd:string | http://img.jamendo.com/artists/l/lgab.jpg | http://lgab.tk/ | http://sws.geonames.org/3013657/ |
| "Edouard Busa"^^xsd:string | http://img.jamendo.com/artists/e/edouard.busa.jpg | http://edouard-busa.monsite.wanadoo.fr/ | http://sws.geonames.org/3037136/ |
| "All the living and the dead"^^xsd:string | http://www.allthelivingandthedead.com/ | http://sws.geonames.org/2969280/ | |
| "Clownage"^^xsd:string | http://img.jamendo.com/artists/c/clownage.jpg | http://www.clownage.fr | http://sws.geonames.org/2968815/ |
| "tchopilo"^^xsd:string | http://img.jamendo.com/artists/t/tchopilo.png | http://www.tchopilo.com/blog | |
| "ROCCO Allegretti"^^xsd:string | http://www.roccoallegretti.musicblog.fr | http://sws.geonames.org/3036420/ | |
| "Ksyz"^^xsd:string | http://img.jamendo.com/artists/k/ksyz.jpg | http://enoz.free.fr | http://sws.geonames.org/3012849/ |
| "Nex2012 & DJ "H""^^xsd:string | http://img.jamendo.com/artists/n/nex2012.jpg | http://realitesecrete.chez-alice.fr | http://sws.geonames.org/3035691/ |
| "LOGAN"^^xsd:string | http://img.jamendo.com/artists/l/logan.jpg | http://www.myspace.com/loganbrkn | http://sws.geonames.org/2968815/ |
| "JellRoy"^^xsd:string | http://img.jamendo.com/artists/j/jellroy.jpg | http://www.jellroy.net | http://sws.geonames.org/2802361/ |
| "The Menciales"^^xsd:string | http://img.jamendo.com/artists/t/the.menciales.jpg | http://themenciales.blogspot.com | http://sws.geonames.org/3113208/ |
| "black era"^^xsd:string | http://img.jamendo.com/artists/b/blackera.jpg | http://www.blackera.com | http://sws.geonames.org/3172391/ |
| "Ally Valentine"^^xsd:string | http://img.jamendo.com/artists/a/ally.valentine.jpg | http://www.soundclick.com/allyvalentine | |
| "The Badgers"^^xsd:string | http://img.jamendo.com/artists/t/the.badgers.jpg | http://perso.orange.fr/keep.out/cariboost3/index.html | http://sws.geonames.org/3026644/ |
| "Monsieur Koala"^^xsd:string | http://img.jamendo.com/artists/m/monsieur.koala.jpg | http://www.monsieurkoala.com | http://sws.geonames.org/3034720/ |
| "Real Rice"^^xsd:string | http://img.jamendo.com/artists/r/real.rice.jpg | http://realrice.free.fr/ | http://sws.geonames.org/3012849/ |
| "stlick"^^xsd:string | http://img.jamendo.com/artists/s/stlick.jpg | http://www.myspace.com/akoufenmissstlick | http://sws.geonames.org/2994111/ |
| "Mojo Project"^^xsd:string | http://img.jamendo.com/artists/m/mojo.project.jpg | http://www.french-metal.com/forum/viewforum.php?f=141 | http://sws.geonames.org/2967222/ |
| "adrugan"^^xsd:string | http://img.jamendo.com/artists/a/adrugan.jpg | http://adrugan.blogspot.com/ | http://sws.geonames.org/2989663/ |
| "Aderito CARAPITO"^^xsd:string | http://img.jamendo.com/artists/a/aderito.carapito.jpg | http://www.ade21.com | http://sws.geonames.org/3023423/ |
| "KALIUM"^^xsd:string | http://img.jamendo.com/artists/k/kalium.jpg | http://kaliummetal.free.fr | http://sws.geonames.org/2997861/ |
| "01zu"^^xsd:string | http://img.jamendo.com/artists/0/01zu.jpg | http://www.01zu.com | http://sws.geonames.org/2997861/ |
| "Glasklinge"^^xsd:string | http://img.jamendo.com/artists/g/glasklinge.jpg | http://sampler.glasklinge.com/ | http://sws.geonames.org/3213264/ |
| "pan"^^xsd:string | http://img.jamendo.com/artists/p/pan.jpg | http://pancore.de | http://sws.geonames.org/2841464/ |
| "Fellonie"^^xsd:string | http://img.jamendo.com/artists/f/fellonie.jpg | http://kaliummetal.free.fr | http://sws.geonames.org/2997861/ |
| "Omen-s-free"^^xsd:string | http://img.jamendo.com/artists/o/omen-s-free.gif | http://www.djomensfree.c.la | http://sws.geonames.org/3038422/ |
| "Sheena"^^xsd:string | http://img.jamendo.com/artists/s/sheena.jpg | http://www.sheenamusic.com | http://sws.geonames.org/2991627/ |
| "pan:core"^^xsd:string | http://img.jamendo.com/artists/p/pan.core.gif | http://pancore.de | http://sws.geonames.org/2841464/ |
| "yggdrazil"^^xsd:string | http://img.jamendo.com/artists/y/yggdrazil.png | http://yggdrazilhc.free.fr | http://sws.geonames.org/2997857/ |
| "Dadub's"^^xsd:string | http://img.jamendo.com/artists/d/dadubs.jpg | http://dadubs.hautetfort.com/ | http://sws.geonames.org/2970749/ |
| "Martyn Circus"^^xsd:string | http://img.jamendo.com/artists/m/martyn.circus.gif | http://www.martyn-circus.com | http://sws.geonames.org/3012715/ |
| "marKus"^^xsd:string | http://sws.geonames.org/3012715/ | ||
| "r.a.d.i.a.l"^^xsd:string | http://img.jamendo.com/artists/c/choc.jpg | http://www.myspace.com/radialcollective. | http://sws.geonames.org/3018471/ |
| "Magnum"^^xsd:string | http://img.jamendo.com/artists/m/magnum.jpg | http://magnum64.free.fr | http://sws.geonames.org/2984887/ |
| "Arthur Cravan"^^xsd:string | http://img.jamendo.com/artists/a/arthur.cravan.jpg | http://virb.com/arthurcravan | http://sws.geonames.org/3181553/ |
| "Amnis"^^xsd:string | http://img.jamendo.com/artists/a/amnis.jpg | http://sws.geonames.org/3038422/ | |
| "Barrelwash"^^xsd:string | http://img.jamendo.com/artists/b/barrelwash.gif | http://www3.telus.net/public/everett3/barrelwash.html | http://sws.geonames.org/6251999/ |
| "Projet.3"^^xsd:string | http://img.jamendo.com/artists/p/projet3.jpg | http://www.lucky3rd3ye.com/ | http://sws.geonames.org/2802361/ |
| "Chantonneur anonyme"^^xsd:string | http://img.jamendo.com/artists/c/chantonneur.anonyme.jpg | http://ritaline.podemus.com/ | http://sws.geonames.org/3012849/ |
| "Lopsided"^^xsd:string | http://img.jamendo.com/artists/l/lopsided.jpg | http://absynthetic.fr/lopsided | http://sws.geonames.org/2990129/ |
| "JigKorova"^^xsd:string | http://img.jamendo.com/artists/j/jigkorova.jpg | http://www.jigkorova.com | http://sws.geonames.org/2517115/ |
| "Djabb"^^xsd:string | http://img.jamendo.com/artists/d/djabb.jpg | http://www.djabb.net/ | http://sws.geonames.org/3012715/ |
| "Aureserva"^^xsd:string | http://img.jamendo.com/artists/a/aureserva.jpg | http://www.aureserva.com | http://sws.geonames.org/2996663/ |
| "Dr Luge"^^xsd:string | http://img.jamendo.com/artists/d/dr.luge.jpg | http://jadebreidi.spaces.live.com/?owner=1 | http://sws.geonames.org/3013657/ |
| "nabla"^^xsd:string | http://img.jamendo.com/artists/i/ifredd.jpg | http://sws.geonames.org/3012715/ | |
| "Stabela"^^xsd:string | http://img.jamendo.com/artists/s/stabela.jpg | http://www.stabela.ru | http://sws.geonames.org/2017370/ |
| "Dj X-Ray"^^xsd:string | http://img.jamendo.com/artists/s/sebx91.jpg | http://ltvfr.nitroxine.com/xray/index.htm | http://sws.geonames.org/3019599/ |
| "Karim Amari"^^xsd:string | http://img.jamendo.com/artists/k/karim.amari.jpg | http://madhyalaya.spaces.live.com/ | http://sws.geonames.org/2970749/ |
| "Alex' des Shookabah"^^xsd:string | http://img.jamendo.com/artists/a/alex.des.shookabah.jpg | http://alex.societeg.com | http://sws.geonames.org/2660207/ |
| "theWell"^^xsd:string | http://img.jamendo.com/artists/t/thewell.jpg | http://akashikmediamatrix.org/thewell | |
| "Meteorite"^^xsd:string | http://img.jamendo.com/artists/m/meteorite.jpg | http://gringo8800.free.fr | http://sws.geonames.org/2991627/ |
| "Ignasio"^^xsd:string | http://img.jamendo.com/artists/i/ignasio.jpg | http://sws.geonames.org/2968815/ | |
| "Biphenson"^^xsd:string | http://img.jamendo.com/artists/b/biphenson.jpg | http://biphenson.free.fr/index.html | http://sws.geonames.org/3033789/ |
| "Cowboy Zorro"^^xsd:string | http://img.jamendo.com/artists/c/cowboy.zorro.jpg | http://cowboy-zorro.blogspot.com/ | http://sws.geonames.org/6252001/ |
| "Stephan CArtier®"^^xsd:string | http://img.jamendo.com/artists/s/stephan.cartier.gif | http://www.stephancartier.cjb.net | http://sws.geonames.org/3175395/ |
| "Boris CAMPELLO"^^xsd:string | http://img.jamendo.com/artists/b/boris.campello.jpg | http://www.myspace.com/lidlbodybags | http://sws.geonames.org/3020989/ |
| "AS-POTIRONT!"^^xsd:string | http://img.jamendo.com/artists/a/as-potiront.jpg | http://as-potiront.com | http://sws.geonames.org/2997861/ |
| "POZAdéLICA"^^xsd:string | http://img.jamendo.com/artists/p/pozadelica.gif | http://www.poza.de/lica | http://sws.geonames.org/6557769/ |
| "Mon coté Manouche"^^xsd:string | http://img.jamendo.com/artists/m/mon.cote.manouche.jpg | http://www.myspace.com/cestmoncotemanouche | http://sws.geonames.org/2968815/ |
| "magnetic"^^xsd:string | http://img.jamendo.com/artists/m/magnetic.jpg | http://magneticmusic.blogspot.com/ | http://sws.geonames.org/6251999/ |
| "arnoldsrecords"^^xsd:string | http://img.jamendo.com/artists/a/arnoldsrecords.jpg | http://www.arnoldsrecords.com | http://sws.geonames.org/3017382/ |
| "Wallahi"^^xsd:string | http://img.jamendo.com/artists/w/wallahi.jpg | http://404.free.fr/ | http://sws.geonames.org/2361809/ |
| "Hellspawn"^^xsd:string | http://img.jamendo.com/artists/h/hellspawn.jpg | http://www.tunizik.com/hellspawn | http://sws.geonames.org/2464461/ |
| "Überland Deluxe"^^xsd:string | http://img.jamendo.com/artists/u/uberland.deluxe.jpg | http://www.uberland-deluxe.org | http://sws.geonames.org/2997861/ |
| "Elkapel"^^xsd:string | http://img.jamendo.com/artists/e/elkapel.jpg | http://elkapel.com | http://sws.geonames.org/2510769/ |
| "Mbata kongo"^^xsd:string | http://img.jamendo.com/artists/m/mbata.kongo.jpg | http://mouvementlibre.fr.nf | http://sws.geonames.org/2997856/ |
| "Dr.Arthur"^^xsd:string | http://www.arthursucks.com | http://sws.geonames.org/6252001/ | |
| "GMR"^^xsd:string | http://img.jamendo.com/artists/g/gmr.jpg | http://www.gmr.mu | http://sws.geonames.org/3019599/ |
| "promising crew"^^xsd:string | http://img.jamendo.com/artists/p/promising.jpg | http://www.promising-crew.com | http://sws.geonames.org/2991879/ |
| "Brain Damage"^^xsd:string | http://img.jamendo.com/artists/b/brain.damage.jpg | http://rcw.nerim.net/brain/brainac.html | http://sws.geonames.org/3026646/ |
| "Vardhlokr"^^xsd:string | http://img.jamendo.com/artists/v/vardhlokr.jpg | http://www.mperia.com/artists/vardhlokr | http://sws.geonames.org/2990129/ |
| "David Alexander McDonald"^^xsd:string | http://img.jamendo.com/artists/d/david.alexander.mcdonald.jpg | http://wyldemusick.livejournal.com | http://sws.geonames.org/6252001/ |
| "Ambient Frequencies"^^xsd:string | http://img.jamendo.com/artists/a/ambient.frequencies.png | http://www.jamendo.com/fr/artist/ambient.frequencies | http://sws.geonames.org/2971071/ |
| "Waterfalls"^^xsd:string | http://img.jamendo.com/artists/w/waterfalls.jpg | http://www.waterfalls.sup.fr | http://sws.geonames.org/2975926/ |
| "Mercurius FM"^^xsd:string | http://img.jamendo.com/artists/m/mercuriusfm.jpg | http://mercuriusfm.blogspot.com/ | http://sws.geonames.org/6252001/ |
| "Sousbock"^^xsd:string | http://img.jamendo.com/artists/s/sousbock.jpg | http://www.sousbock-fr.com | http://sws.geonames.org/3013500/ |
| "Camelia Ashbach"^^xsd:string | http://img.jamendo.com/artists/c/cameliaashbach.jpg | http://www.cameliaashbach.com | http://sws.geonames.org/2968815/ |
| "Jérôme lollo"^^xsd:string | http://img.jamendo.com/artists/l/lollo.jpg | http://jlollo.noosblog.fr/blollog/ | http://sws.geonames.org/2987410/ |
| "Franky Joe Texier"^^xsd:string | http://img.jamendo.com/artists/f/franky.joe.texier.jpg | http://franky-texier.blogspot.com/ | http://sws.geonames.org/3016670/ |
| "NatSpAcE"^^xsd:string | http://img.jamendo.com/artists/n/natspace.jpg | http://www.europamp3.org/groups/NatSpAcE/index | http://sws.geonames.org/2990129/ |
| "Perro Pelon"^^xsd:string | http://img.jamendo.com/artists/p/perropelon.jpg | http://perropelon.blogspot.com | http://sws.geonames.org/3996063/ |
| "Avel Glas"^^xsd:string | http://img.jamendo.com/artists/a/avel.glas.jpg | http://www.avel-glas.com | http://sws.geonames.org/2994932/ |
| "AUVERNIA"^^xsd:string | http://img.jamendo.com/artists/a/auvernia.jpg | http://www.auvernia.com | http://sws.geonames.org/3865483/ |
| "Boules de Feu"^^xsd:string | http://www.boulesdefeu.com | http://sws.geonames.org/2995603/ | |
| "Simon Gris"^^xsd:string | http://img.jamendo.com/artists/s/simongris.jpg | http://www.simongris.com | http://sws.geonames.org/2967196/ |
| "rules"^^xsd:string | http://img.jamendo.com/artists/r/rules.gif | http://myspace.com/rul3s | http://sws.geonames.org/2984986/ |
| "Sango"^^xsd:string | http://img.jamendo.com/artists/s/sango.jpg | http://alsango.blogspot.com | http://sws.geonames.org/3127460/ |
| "matinmidietsoir"^^xsd:string | http://img.jamendo.com/artists/m/matinmidietsoir.jpg | http://matinmidietsoir.free.fr/ | http://sws.geonames.org/3013657/ |
| "Chupa Chuva"^^xsd:string | http://img.jamendo.com/artists/c/chupa.chuva.jpg | http://chupachuva.free.fr | http://sws.geonames.org/2989663/ |
| "MiCk"^^xsd:string | http://img.jamendo.com/artists/m/mick.jpg | http://mickmusic.free.fr | http://sws.geonames.org/3013767/ |
| "Chroma"^^xsd:string | http://www.17sons.com/articles.php?lng=en&pg=17 | http://sws.geonames.org/3017382/ | |
| "Kusinfilm"^^xsd:string | http://img.jamendo.com/artists/k/kusinfilm.png | http://www.kusinfilm.com | http://sws.geonames.org/2661886/ |
| "YARA"^^xsd:string | http://img.jamendo.com/artists/y/yara.jpg | http://sws.geonames.org/3017382/ | |
| "Bambara"^^xsd:string | http://img.jamendo.com/artists/b/bambara.jpg | http://www.myspace.com/rockbambara | http://sws.geonames.org/2510769/ |
| "Jampoet"^^xsd:string | http://img.jamendo.com/artists/j/jampoet.jpg | http://lapoliticalart.blogspot.com | http://sws.geonames.org/6252001/ |
| "jololo sarca"^^xsd:string | http://img.jamendo.com/artists/j/jololo.sarca.jpg | http://sws.geonames.org/3023423/ | |
| "blessing"^^xsd:string | http://img.jamendo.com/artists/b/blessing.jpg | http://myspace.com/blessingband | http://sws.geonames.org/3031359/ |
| "Lem0n IndiGo"^^xsd:string | http://img.jamendo.com/artists/l/lemonindigo.jpg | http://myspace.com/lemonindigo | http://sws.geonames.org/2968815/ |
| "Dark Knight Fifty Four"^^xsd:string | http://Pas de site web/ | http://sws.geonames.org/2994111/ | |
| "Bebeto"^^xsd:string | http://img.jamendo.com/artists/b/bebeto.jpg | http://www.myspace.com/mbecks23 | http://sws.geonames.org/3213264/ |
| "Mindwatcher"^^xsd:string | http://img.jamendo.com/artists/m/mindwatcher.jpg | http://mindwatcher.blogspot.com/ | http://sws.geonames.org/3013500/ |
| "Bleacher"^^xsd:string | http://www.17sons.com/articles.php?lng=en&pg=16 | http://sws.geonames.org/3017382/ | |
| "Celestial Aeon Project"^^xsd:string | http://img.jamendo.com/artists/c/celestial.aeon.project.jpg | http://www.mikseri.net/essence | http://sws.geonames.org/660013/ |
| "Project Divinity"^^xsd:string | http://img.jamendo.com/artists/p/project.divinity.jpg | http://www.mikseri.net/divinity/ | http://sws.geonames.org/660013/ |
| "MITYX"^^xsd:string | http://img.jamendo.com/artists/m/mityx.jpg | http://www.myspace.com/mityx | http://sws.geonames.org/2968815/ |
| "Schizoidal"^^xsd:string | http://www.17sons.com/articles.php?lng=en&pg=12 | http://sws.geonames.org/3017382/ | |
| "Matteo Cargnelutti"^^xsd:string | http://img.jamendo.com/artists/m/matteo.cargnelutti.png | http://site.voila.fr/noprob/noprob.html | http://sws.geonames.org/3023414/ |
| "MAGGA"^^xsd:string | http://img.jamendo.com/artists/m/manbasaa.jpg | http://magga.hauetfort.com | http://sws.geonames.org/2968815/ |
| "mob"^^xsd:string | http://img.jamendo.com/artists/m/mob.jpg | http://mobylette.canalblog.com | http://sws.geonames.org/2971071/ |
| "F.A.B"^^xsd:string | http://img.jamendo.com/artists/f/f.a.b.gif | http://www.studiopmrecords.com | http://sws.geonames.org/3015948/ |
| "NoSoda"^^xsd:string | http://img.jamendo.com/artists/n/nosoda.jpg | http://www.nosoda.com | http://sws.geonames.org/3034720/ |
| "Neotene"^^xsd:string | http://img.jamendo.com/artists/n/neotene.jpg | http://web.mac.com/cedricbch/iWeb/neotene | http://sws.geonames.org/2658182/ |
| "AdHoc"^^xsd:string | http://img.jamendo.com/artists/a/ad.hoc.png | http://www.adhocmusic.org | http://sws.geonames.org/3013736/ |
| "Ponpon"^^xsd:string | http://img.jamendo.com/artists/p/ponpon.jpg | http://www.ponpon.tuxfamily.org | http://sws.geonames.org/2802361/ |
| "Idiosyncrasy"^^xsd:string | http://img.jamendo.com/artists/a/aziza-artists.jpg | http://homepage.ntlworld.com/tessa.corner1/AzizA-Music.html | |
| "ADB"^^xsd:string | http://img.jamendo.com/artists/a/adb.jpg | http://www.echo-on.org | http://sws.geonames.org/2968815/ |
| "Red Nebula"^^xsd:string | http://img.jamendo.com/artists/r/red.nebula.png | http://rednebula.hd.free.fr/ | http://sws.geonames.org/2968815/ |
| "DaveFilms Digital Media"^^xsd:string | http://img.jamendo.com/artists/d/davefilms.digital.media.jpg | http://www.davefilms.us | http://sws.geonames.org/6252001/ |
| "electro.choc"^^xsd:string | http://img.jamendo.com/artists/e/electrochoc.jpg | http://en construction/ | http://sws.geonames.org/2975249/ |
| "MATT PEPPER TRIO"^^xsd:string | http://img.jamendo.com/artists/m/mattpeppertrio.jpg | http://www.mattpeppertrio.com/ | http://sws.geonames.org/3031359/ |
| "Kuervos del Sur"^^xsd:string | http://img.jamendo.com/artists/k/kuervosdelsur.jpg | http://www.kuervosdelsur.cl | http://sws.geonames.org/3895114/ |
| "gecko"^^xsd:string | http://img.jamendo.com/artists/g/gecko.jpg | http://anarching.zeblog.com/74105-i-sans-titre-i/ | http://sws.geonames.org/3020781/ |
| "Sucrepop"^^xsd:string | http://img.jamendo.com/artists/s/sucrepop.jpg | http://www.sucrepop.com | http://sws.geonames.org/2975246/ |
| "-DEMO-"^^xsd:string | http://img.jamendo.com/artists/d/demo-legroupe.jpg | http://demo-legroupe.com | http://sws.geonames.org/2990129/ |
| "six"^^xsd:string | http://img.jamendo.com/artists/s/six.gif | http://si.kz/ | http://sws.geonames.org/3013657/ |
| "Wombat"^^xsd:string | http://img.jamendo.com/artists/w/wombat-legroupe.png | http://www.wombatlesite.com | http://sws.geonames.org/2990129/ |
| "Krepuskule"^^xsd:string | http://img.jamendo.com/artists/k/krepuskule.png | http://www.krepuskule.com | http://sws.geonames.org/2968815/ |
| "TURBULENCE"^^xsd:string | http://img.jamendo.com/artists/t/turbulence.jpg | http://www.turbulence-net.com | http://sws.geonames.org/2987410/ |
| "Heartbeat"^^xsd:string | http://img.jamendo.com/artists/h/heartbeat.gif | http://vamopalante.splinder.com | http://sws.geonames.org/3182649/ |
| "The Pierre Richard's Family"^^xsd:string | http://img.jamendo.com/artists/t/the.pierre.richard.s.family.png | http://www.thepierrerichardsfamily.com | http://sws.geonames.org/3019317/ |
| "Rhyn"^^xsd:string | http://img.jamendo.com/artists/r/rhyn.jpg | http://www.myspace.com/rhyn | |
| "Salmonraptor"^^xsd:string | http://img.jamendo.com/artists/s/salmonraptor.jpg | http://sws.geonames.org/6252001/ | |
| "Apocalyptik Vs Mantis"^^xsd:string | http://img.jamendo.com/artists/a/apocalyptik.vs.mantis.jpg | http://www.electroziq.com | http://sws.geonames.org/2997523/ |
| "REASON FRANCE"^^xsd:string | http://img.jamendo.com/artists/r/reason.france.jpg | http://reasonfrance.free.fr | http://sws.geonames.org/3029094/ |
| "krystian"^^xsd:string | http://img.jamendo.com/artists/k/krystian.jpg | http://krystal73.ifrance.com/musique/musique.html | http://sws.geonames.org/2975517/ |
| "AX11"^^xsd:string | http://img.jamendo.com/artists/a/ax11.gif | http://blog.ax11.de | http://sws.geonames.org/2884161/ |
| "milo fungus"^^xsd:string | http://img.jamendo.com/artists/m/milo.png | http://www.ourmedia.org/user/38299 | http://sws.geonames.org/6252001/ |
| "wade"^^xsd:string | http://img.jamendo.com/artists/w/wade.jpg | http://www.moonlabel.pl | http://sws.geonames.org/798544/ |
| "Insidejob"^^xsd:string | http://img.jamendo.com/artists/i/insidejob.jpg | http://www.myspace.com/insidejob4 | http://sws.geonames.org/3017382/ |
| "snowman lost his head"^^xsd:string | http://img.jamendo.com/artists/s/snowman.lost.his.head.jpg | http://www.snowmanlosthishead.blogspot.com | http://sws.geonames.org/6424360/ |
| "uncut music"^^xsd:string | http://img.jamendo.com/artists/u/uncut-music.jpg | http://www.uncut-music.com/ | http://sws.geonames.org/3019599/ |
| "alterlabel"^^xsd:string | http://img.jamendo.com/artists/a/alterlabel.jpg | http://www.alterlabel.com | http://sws.geonames.org/3016670/ |
| "Kààt"^^xsd:string | http://img.jamendo.com/artists/m/mikou.jpg | http://www.suprema-records.com | http://sws.geonames.org/3019317/ |
| "Réinsertion sociale"^^xsd:string | http://img.jamendo.com/artists/r/reinsertionsociale.jpg | http://reinsertionsociale.ca.cx | http://sws.geonames.org/2967196/ |
| "ioeo"^^xsd:string | http://img.jamendo.com/artists/i/ioeo.jpg | http://ioeomusic.ning.com/ | http://sws.geonames.org/2970749/ |
| "Daemon X"^^xsd:string | http://www.17sons.com/articles.php?lng=en&pg=18 | http://sws.geonames.org/3017382/ | |
| "Denis RICHARD"^^xsd:string | http://img.jamendo.com/artists/d/denis.richard.jpg | http://www.drmusic.fr | http://sws.geonames.org/2991627/ |
| "Dého"^^xsd:string | http://img.jamendo.com/artists/d/deho.jpg | http://deho.wifeo.com | http://sws.geonames.org/2991879/ |
| "pharmacopia"^^xsd:string | http://img.jamendo.com/artists/p/pharmacopia.jpg | http://blog.myspace.com/pedr | http://sws.geonames.org/6252001/ |
| "raphael edelman"^^xsd:string | http://img.jamendo.com/artists/r/raphael.edelman.jpg | http://blog.myspace.com/index.cfm?fuseaction=blog.ListAll&friendID=105700286 | http://sws.geonames.org/3012849/ |
| "Man-machine connexion"^^xsd:string | http://www.17sons.com/articles.php?lng=en&pg=6 | http://sws.geonames.org/3017382/ | |
| "Licite Fondation"^^xsd:string | http://img.jamendo.com/artists/l/licite.fondation.jpg | http://www.licitefondation.net/ | http://sws.geonames.org/2971090/ |
| "Jack Sparow"^^xsd:string | http://img.jamendo.com/artists/j/jack-sparow.jpg | http://www.jack-sparow.com | http://sws.geonames.org/2997870/ |
| "Urmal Vesnat"^^xsd:string | http://www.17sons.com/articles.php?lng=en&pg=22 | http://sws.geonames.org/3017382/ | |
| "Terra Blue"^^xsd:string | http://img.jamendo.com/artists/t/terra.blue.jpg | http://terra-blue.blogspot.com/ | http://sws.geonames.org/3213264/ |
| "November11"^^xsd:string | http://img.jamendo.com/artists/n/november11.gif | http://www.november11.de | http://sws.geonames.org/2921044/ |
| "Semper Fi"^^xsd:string | http://img.jamendo.com/artists/s/semper.fi.jpg | http://koen.supportware.nl | http://sws.geonames.org/2750405/ |
| "Schickers Mind"^^xsd:string | http://img.jamendo.com/artists/s/schickers.mind.jpg | http://www.bobblespace.de/ | http://sws.geonames.org/6556330/ |
| "The 17 Sons of Abraxas"^^xsd:string | http://www.17sons.com/articles.php?lng=en&pg=21 | http://sws.geonames.org/3017382/ | |
| "AngoOneY"^^xsd:string | http://img.jamendo.com/artists/a/angooney.jpg | http://wOrld-foO.skyblog.com | http://sws.geonames.org/2975249/ |
| "SERGE BATMAN"^^xsd:string | http://img.jamendo.com/artists/s/serge.batman.jpg | http://sws.geonames.org/2969280/ | |
| "Lou Zgain"^^xsd:string | http://img.jamendo.com/artists/l/louzgain.jpg | http://www.louzgain.com | http://sws.geonames.org/3031359/ |
| "Neural"^^xsd:string | http://www.17sons.com/articles.php?lng=en&pg=19 | http://sws.geonames.org/3017382/ | |
| "Chaos"^^xsd:string | http://img.jamendo.com/artists/c/chaos.jpg | http://sws.geonames.org/2911297/ | |
| "Christophe Bosch"^^xsd:string | http://img.jamendo.com/artists/c/christophe.bosch.jpg | http://christophebosch.hautetfort.com | http://sws.geonames.org/2968815/ |
| "Formika"^^xsd:string | http://www.17sons.com/articles.php?lng=en&pg=20 | http://sws.geonames.org/3017382/ | |
| "Holy Pain"^^xsd:string | http://img.jamendo.com/artists/h/holy.pain.jpg | http://myspace.com/holypain | http://sws.geonames.org/2987410/ |
| "dadaf"^^xsd:string | http://img.jamendo.com/artists/d/dadaf.jpg | http://sws.geonames.org/3015948/ | |
| "The Nunchaks"^^xsd:string | http://www.thenunchaks.ift.cx | http://sws.geonames.org/2991627/ | |
| "Auto/Sexual"^^xsd:string | http://www.17sons.com/articles.php?lng=en&pg=46 | http://sws.geonames.org/3017382/ | |
| "Flatlink"^^xsd:string | http://img.jamendo.com/artists/f/flatlink.jpg | http://www.ftlkdesign.wb.st | http://sws.geonames.org/1699807/ |
| "Frank Thorstein"^^xsd:string | http://img.jamendo.com/artists/f/francois.toutain.jpg | http://ventilo35.free.fr | http://sws.geonames.org/3017382/ |
| "Hallu"^^xsd:string | http://www.17sons.com/articles.php?lng=en&pg=45 | http://sws.geonames.org/3017382/ | |
| "Javier Bacchetta"^^xsd:string | http://img.jamendo.com/artists/j/javier.bacchetta.jpg | http://jbacchetta.com.ar | http://sws.geonames.org/3865483/ |
| "Omars Attacks"^^xsd:string | http://omarsattacks.splinder.com | http://sws.geonames.org/3173434/ | |
| "RADIXDMP2005"^^xsd:string | http://img.jamendo.com/artists/r/radixdmp.jpg | http://radixdmp2005.com | http://sws.geonames.org/2782113/ |
| "Defnael"^^xsd:string | http://img.jamendo.com/artists/d/defnael.jpg | http://d.merlateau.free.fr | http://sws.geonames.org/3013657/ |
| "CPOUPA"^^xsd:string | http://www.cpoupa.com | http://sws.geonames.org/2968815/ | |
| "Dotty Harry"^^xsd:string | http://img.jamendo.com/artists/d/dotty.harry.jpg | http://sws.geonames.org/2973362/ | |
| "Dj Potter [Italy]"^^xsd:string | http://img.jamendo.com/artists/d/dj.potter.italy.jpg | http://dj-potter.blogspot.com/ | http://sws.geonames.org/3164600/ |
| "Ralph Buckley"^^xsd:string | http://img.jamendo.com/artists/r/ralph.buckley.jpg | http://www.ralphbuckley.com | http://sws.geonames.org/6252001/ |
| "The Kazoo Funk Orchestra"^^xsd:string | http://img.jamendo.com/artists/k/kfunk.jpg | http://www.kazoofunk.co.uk | |
| "Prøtebröd"^^xsd:string | http://img.jamendo.com/artists/p/pr.tebrod.jpg | http://koen.supportware.nl | http://sws.geonames.org/2750405/ |
| "neko"^^xsd:string | http://img.jamendo.com/artists/n/neko.gif | http://www.nekorama.net | http://sws.geonames.org/2990129/ |
| "Irreversíveis"^^xsd:string | http://img.jamendo.com/artists/i/irreversiveis.jpg | http://irreversiveis.wordpress.com | http://sws.geonames.org/3469034/ |
| "FAB"^^xsd:string | http://img.jamendo.com/artists/f/fbs.jpg | http://sws.geonames.org/3023414/ | |
| "Slim Nevic"^^xsd:string | http://img.jamendo.com/artists/s/slim.nevic.jpg | http://www.infotechno.skyblog.com | http://sws.geonames.org/3013738/ |
| "Hugolution"^^xsd:string | http://www.myspace.com/hugolution | http://sws.geonames.org/6251999/ | |
| "Slim"^^xsd:string | http://img.jamendo.com/artists/s/slim.jpg | http://www.myspace.com/slim | http://sws.geonames.org/6252001/ |
| "Radio Nowhere"^^xsd:string | http://img.jamendo.com/artists/r/radionowhere.jpg | http://www.radionowhere.net | http://sws.geonames.org/6252001/ |
| "bon's"^^xsd:string | http://bonnet.thomas.free.fr | http://sws.geonames.org/2969280/ | |
| "DPA RECORDS"^^xsd:string | http://img.jamendo.com/artists/d/dpa.records.jpg | http://www.geocities.com/dpa_records/ | http://sws.geonames.org/3013767/ |
| "Khaban'"^^xsd:string | http://img.jamendo.com/artists/k/khaban.jpg | http://www.khaban.com | http://sws.geonames.org/2987410/ |
| "Crick Zachary"^^xsd:string | http://img.jamendo.com/artists/c/crick.zachary.jpg | http://www.crickzachary.com | http://sws.geonames.org/2991627/ |
| "Dj Vraj"^^xsd:string | http://img.jamendo.com/artists/d/dj.vraj.jpg | http://djvraj.blogspot.com/ | http://sws.geonames.org/2077456/ |
| "Alex Maneval"^^xsd:string | http://img.jamendo.com/artists/a/alex.maneval.jpg | http://www.alexmaneval.com | http://sws.geonames.org/2987410/ |
| "conFusion"^^xsd:string | http://img.jamendo.com/artists/c/confusion.jpg | http://www.groupe-confusion.fr.tc/ | http://sws.geonames.org/2991627/ |
| "The NUNCHAKS"^^xsd:string | http://img.jamendo.com/artists/t/the-nunchaks.jpg | http://www.thenunchaks.ift.cx | http://sws.geonames.org/2991627/ |
| "Mothers Against Drugs"^^xsd:string | http://img.jamendo.com/artists/m/mothers.against.drugs.jpg | http://www.fotolog.com/losmothers | http://sws.geonames.org/2510769/ |
| "Christian DIDELOT"^^xsd:string | http://img.jamendo.com/artists/c/christian.didelot.jpg | http://unetrente.free.fr/ | http://sws.geonames.org/2991627/ |
| "VODOR ZECK"^^xsd:string | http://img.jamendo.com/artists/v/vodorzeck.jpg | http://in arbeit/ | http://sws.geonames.org/2884161/ |
| "#Zorglups#"^^xsd:string | http://img.jamendo.com/artists/z/zorglups.jpg | http://www.lesdubois.hd.free.fr | http://sws.geonames.org/3019599/ |
| "Hair"^^xsd:string | http://img.jamendo.com/artists/h/hair.jpg | http://www.rnavajas.blogspot.com | http://sws.geonames.org/2510769/ |
| "Bethlehem"^^xsd:string | http://img.jamendo.com/artists/b/bethlehem.jpg | http://www.rnavajas.blogspot.com | http://sws.geonames.org/2510769/ |
| "INVAIN"^^xsd:string | http://img.jamendo.com/artists/i/invain.jpg | http://www.invain.it | http://sws.geonames.org/3171727/ |
| "DJ Ryo9"^^xsd:string | http://img.jamendo.com/artists/r/ryo9.jpg | http://www.djryo9.com | http://sws.geonames.org/6252001/ |
| "lucas ck"^^xsd:string | http://img.jamendo.com/artists/l/lucas.ck.jpg | http://www.myspace.com/lucasck | http://sws.geonames.org/3013500/ |
| "KM"^^xsd:string | http://img.jamendo.com/artists/k/km.jpg | http://camille.sochon.free.fr/_V2 | http://sws.geonames.org/3012849/ |
| "kolslok"^^xsd:string | http://img.jamendo.com/artists/k/kolslok.jpg | http://kolslok.alkablog.com/ | http://sws.geonames.org/2802361/ |
| "Tedlap"^^xsd:string | http://img.jamendo.com/artists/t/tedlap.jpg | http://www.tedlap.de | http://sws.geonames.org/3213264/ |
| "dj saboum"^^xsd:string | http://img.jamendo.com/artists/d/dj.saboum.jpg | http://www.saboum.com/dj | http://sws.geonames.org/2987410/ |
| "mortenjohs"^^xsd:string | http://img.jamendo.com/artists/m/mortenjohs.jpg | http://www.mortenjohs.net | http://sws.geonames.org/2987410/ |
| "skt sekuentzia"^^xsd:string | http://img.jamendo.com/artists/s/skt.gif | http://www.mundurat.net/skt | http://sws.geonames.org/1527747/ |
| "Zeropage"^^xsd:string | http://img.jamendo.com/artists/z/zeropage.jpg | http://www.zeropage-media.com | http://sws.geonames.org/2661551/ |
| "DARWIN"^^xsd:string | http://img.jamendo.com/artists/d/darwin.jpg | http://www.myspace.com/darwin78 | http://sws.geonames.org/2967196/ |
| "La Mecanica Loca"^^xsd:string | http://img.jamendo.com/artists/l/la.mecanica.loca.gif | http://www.myspace.com/mecanicaloca | http://sws.geonames.org/3016194/ |
| "Erich Thomas"^^xsd:string | http://sws.geonames.org/2884161/ | ||
| "Echidna"^^xsd:string | http://img.jamendo.com/artists/e/echidna.jpg | http://echidna1.free.fr/ | http://sws.geonames.org/3023423/ |
| "Crystal Wall"^^xsd:string | http://img.jamendo.com/artists/c/crystal.wall.jpg | http://www.crystal-wall.com | http://sws.geonames.org/2975249/ |
| "JAC"^^xsd:string | http://img.jamendo.com/artists/j/jac.jpg | http://jacsesguitares.blogspot.com/ | http://sws.geonames.org/2802361/ |
| "Cafard Rose"^^xsd:string | http://img.jamendo.com/artists/c/cafard.rose.jpg | http://www.cafardrose.be | http://sws.geonames.org/2802361/ |
| "Lyvyzyk"^^xsd:string | http://www.myspace.com/lyvyzyk | http://sws.geonames.org/2802361/ | |
| "smile of cat"^^xsd:string | http://img.jamendo.com/artists/s/smile.of.cat.jpg | http://maxchabrol.blogspot.com/ | http://sws.geonames.org/2970554/ |
| "R. Winchester"^^xsd:string | http://img.jamendo.com/artists/r/r.winchester.jpg | http://21st-century.freeservers.com | http://sws.geonames.org/6252001/ |
| "Sir Oliver"^^xsd:string | http://img.jamendo.com/artists/s/sir.oliver.jpg | http://www.SirOliver.com | http://sws.geonames.org/2960313/ |
| "Alban Martin"^^xsd:string | http://img.jamendo.com/artists/a/alban.martin.jpg | http://www.cocreation.blogs.com | http://sws.geonames.org/2968815/ |
| "Realaze"^^xsd:string | http://img.jamendo.com/artists/r/realaze.jpg | http://www.realaze.com | http://sws.geonames.org/3013793/ |
| "Shapeshift"^^xsd:string | http://img.jamendo.com/artists/s/shapeshift.jpg | http://www.shapeshift-music.de | http://sws.geonames.org/6556330/ |
| "PAKO"^^xsd:string | http://www.lamusicadepako.com/ | http://sws.geonames.org/2510769/ | |
| "No Más"^^xsd:string | http://img.jamendo.com/artists/n/nomas.gif | http://www.nomas.fr | http://sws.geonames.org/2984986/ |
| "ZERO_1"^^xsd:string | http://img.jamendo.com/artists/z/zero.1.png | http://willgames84.googlepages.com | http://sws.geonames.org/2510769/ |
| "Duck"^^xsd:string | http://img.jamendo.com/artists/d/duck.jpg | http://www.duck.new.fr | http://sws.geonames.org/3038111/ |
| "VoX"^^xsd:string | http://img.jamendo.com/artists/v/vox.png | http://www.vox-band.net | http://sws.geonames.org/2997861/ |
| "ARTICA"^^xsd:string | http://img.jamendo.com/artists/a/artica.jpg | http://www.artica.km6.net | http://sws.geonames.org/6424360/ |
| "Gabriel CG"^^xsd:string | http://sws.geonames.org/3012804/ | ||
| "Lou and Stan"^^xsd:string | http://img.jamendo.com/artists/l/lou.and.stan.jpg | http://louandstan.blogspot.com | http://sws.geonames.org/2510769/ |
| "Robinson, Freitag And The Lonely Trumpet"^^xsd:string | http://img.jamendo.com/artists/r/robinson.freitag.and.the.lonely.trumpet.jpg | http://www.robinson-freitag-karol.de | http://sws.geonames.org/1547376/ |
| "Die Partysahnen"^^xsd:string | http://img.jamendo.com/artists/p/partysahnen.gif | http://www.partysahnen.de | http://sws.geonames.org/2884161/ |
| "NORDINE LE NORDEC"^^xsd:string | http://img.jamendo.com/artists/n/n0rdine.jpg | http://www.baboeup.com | http://sws.geonames.org/2994111/ |
| "Deafsound"^^xsd:string | http://img.jamendo.com/artists/d/deafsound.jpg | http://deafsound.blog.fr/ | http://sws.geonames.org/3013736/ |
| "DavidBowman"^^xsd:string | http://img.jamendo.com/artists/d/davidbowman.jpg | http://www.davidbowman.de | http://sws.geonames.org/6557769/ |
| "Boris & Maxime"^^xsd:string | http://img.jamendo.com/artists/b/boris.maxime.jpg | http://telecom.fr/jaroslawski | http://sws.geonames.org/2994932/ |
| "Louis Lingg and the Bombs"^^xsd:string | http://img.jamendo.com/artists/l/louis.lingg.and.the.bombs.jpg | http://www.myspace.com/louislinggandthebombs | http://sws.geonames.org/2968815/ |
| "FREEPIX"^^xsd:string | http://img.jamendo.com/artists/f/freepix1.gif | http://www.freepix.fr | http://sws.geonames.org/3012849/ |
| "mister tortwist"^^xsd:string | http://img.jamendo.com/artists/m/mister.tortwist.jpg | ||
| "Serphonic"^^xsd:string | http://img.jamendo.com/artists/s/serphonic.png | http://www.serphonic.de | http://sws.geonames.org/6556330/ |
| "eisenherzz ltd."^^xsd:string | http://img.jamendo.com/artists/e/eisenherzz.ltd.gif | http://www.eisenherzz.de | http://sws.geonames.org/3209442/ |
| "Fhilo"^^xsd:string | http://img.jamendo.com/artists/f/fhilo.jpg | http://www.fhilo.zoomshare.com | http://sws.geonames.org/6251999/ |
| "André Weet"^^xsd:string | http://img.jamendo.com/artists/a/andre.weet.jpg | http://andr__weet.myownmusic.de / | http://sws.geonames.org/3213264/ |
| "Macadamia"^^xsd:string | http://img.jamendo.com/artists/m/macadamia.png | http://eatmacadamia.com/ | |
| "JL Tancoigne"^^xsd:string | http://img.jamendo.com/artists/j/jl.tancoigne.jpg | http://sws.geonames.org/2975926/ | |
| "piach"^^xsd:string | http://img.jamendo.com/artists/p/piach.jpg | http://myspace.com/ppiachh | http://sws.geonames.org/798544/ |
| "Vatis Siwany"^^xsd:string | http://img.jamendo.com/artists/v/vatis.siwany.jpg | http://www.vatis-siwani.net | http://sws.geonames.org/2233387/ |
| "Yamy"^^xsd:string | http://img.jamendo.com/artists/y/yamy.jpg | http://www.yy-world.new.fr | http://sws.geonames.org/2968815/ |
| "Varasteleva Puutarhakääpiö"^^xsd:string | http://img.jamendo.com/artists/v/varasteleva.puutarhakaapio.gif | http://www.varastelevapuutarhakaapio.org | http://sws.geonames.org/660013/ |
| "Nokom electro"^^xsd:string | http://img.jamendo.com/artists/n/nokom.electro.png | http://nokom.free.fr | http://sws.geonames.org/2987410/ |
| "Hyperflip"^^xsd:string | http://img.jamendo.com/artists/h/hyperflip.jpg | http://hyperflip.g2gm.com/ | http://sws.geonames.org/458258/ |
| "gilles valli"^^xsd:string | http://img.jamendo.com/artists/g/gilles.valli.jpg | http://www.gillesvalli.com | http://sws.geonames.org/3031359/ |
| "djsunn"^^xsd:string | http://img.jamendo.com/artists/d/djsunn.gif | http://www.electrofloor.net | http://sws.geonames.org/3016670/ |
| "Mism"^^xsd:string | http://img.jamendo.com/artists/m/mism.jpg | http://lemouic.free.fr/Mismenmusik | http://sws.geonames.org/2987410/ |
| "Die Intellektronische Biparietal Projekt"^^xsd:string | http://img.jamendo.com/artists/d/dibp.gif | http://www.tomtipunkrecords.net | http://sws.geonames.org/2990129/ |
| "Mateo"^^xsd:string | http://img.jamendo.com/artists/m/mateo.jpg | http://lemouic.free.fr/Mismenmusik | http://sws.geonames.org/2987410/ |
| "Nieware"^^xsd:string | http://img.jamendo.com/artists/n/nieware.jpg | http://www.nieware.com | http://sws.geonames.org/453733/ |
| "kobline"^^xsd:string | http://img.jamendo.com/artists/k/kobline.jpg | http://www.kobline.org | http://sws.geonames.org/2968815/ |
| "Felixdroid"^^xsd:string | http://img.jamendo.com/artists/f/felixdroid.jpg | http://www.felixdroid.co.uk | |
| "Poison Fang"^^xsd:string | http://img.jamendo.com/artists/p/poison.fang.jpg | http://monsite.orange.fr/poisonfang/ | http://sws.geonames.org/3013719/ |
| "moebius brain"^^xsd:string | http://img.jamendo.com/artists/m/moebius.brain.jpg | http://www.moebiusbrain.com | http://sws.geonames.org/3169069/ |
| "Minnesanc"^^xsd:string | http://img.jamendo.com/artists/m/minnesanc.jpg | http://www.runtime-hq.com | http://sws.geonames.org/3213264/ |
| "M.Alexis.M"^^xsd:string | http://img.jamendo.com/artists/m/malexism.jpg | http://www.malexism.org | http://sws.geonames.org/3015948/ |
| "MZMK"^^xsd:string | http://img.jamendo.com/artists/m/mzmk.png | http://sws.geonames.org/798544/ | |
| "Gasher G.14"^^xsd:string | http://img.jamendo.com/artists/g/gasher.jpg | http://www.gasher.org | http://sws.geonames.org/2884161/ |
| "Melt"^^xsd:string | http://img.jamendo.com/artists/m/melt.gif | http://www.lemondedemelt.com | http://sws.geonames.org/2968815/ |
| "Thaly"^^xsd:string | http://r.pelisse.free.fr/thaly/ | http://sws.geonames.org/3017382/ | |
| "LES CAPRICES D'HADRIEN"^^xsd:string | http://img.jamendo.com/artists/l/les.caprices.d.hadrien.jpg | http://sws.geonames.org/2975246/ | |
| "DECKER"^^xsd:string | http://img.jamendo.com/artists/d/decker.jpg | http://site.voila.fr/decker | http://sws.geonames.org/3018471/ |
| "Nino Nexo"^^xsd:string | http://img.jamendo.com/artists/n/nino.nexo.jpg | http://www.ninonexo.de | http://sws.geonames.org/2921044/ |
| "Sikaryan"^^xsd:string | http://img.jamendo.com/artists/s/sikaryan.png | http://sikaryan.free.fr | http://sws.geonames.org/2991627/ |
| "LosEnatschos"^^xsd:string | http://img.jamendo.com/artists/l/losenatschos.jpg | http://www.holzmusic.com | http://sws.geonames.org/6556330/ |
| "Manuzik"^^xsd:string | http://img.jamendo.com/artists/m/manuzik.png | http://www.manuzik.net | http://sws.geonames.org/1862047/ |
| "Rabastabarbar"^^xsd:string | http://img.jamendo.com/artists/r/rabastabarbar.jpg | http://www.rabastabarbar.pl | http://sws.geonames.org/798544/ |
| "RAOUL"^^xsd:string | http://img.jamendo.com/artists/l/leo.kano.jpg | file:///home/yves/jamendo/www.raoulmusique.tk | http://sws.geonames.org/6251999/ |
| "Alek et les Mauvaises Raisons"^^xsd:string | http://www.aleketles.com | http://sws.geonames.org/6251999/ | |
| "Nelman Music System"^^xsd:string | http://img.jamendo.com/artists/n/nelman.music.system.jpg | http://nelmanmusicsystem.blogspot.com/ | http://sws.geonames.org/2510769/ |
| "Ram Exponention"^^xsd:string | http://img.jamendo.com/artists/r/ram.exponention.jpg | http://cocoonrecords.free.fr | http://sws.geonames.org/2660645/ |
| "nino"^^xsd:string | http://img.jamendo.com/artists/n/ninojer.jpg | http://www.visiondenuit.com/ | http://sws.geonames.org/2968815/ |
| "Mesh m18"^^xsd:string | http://img.jamendo.com/artists/m/mesh.jpg | http://www.myspace.com/meshm18 | http://sws.geonames.org/2968815/ |
| "Lost In..."^^xsd:string | http://img.jamendo.com/artists/l/lost.in.png | http://lost.in.free.fr | http://sws.geonames.org/2997861/ |
| "Start Of The End"^^xsd:string | http://img.jamendo.com/artists/s/start.of.the.end.jpg | http://startoftheend.kicks-ass.org/ | http://sws.geonames.org/2990129/ |
| "Otis"^^xsd:string | http://img.jamendo.com/artists/o/otis.jpg | http://otis84.free.fr | http://sws.geonames.org/2970554/ |
| "Mr PoPoP"^^xsd:string | http://img.jamendo.com/artists/m/mr.popop.jpg | http://sws.geonames.org/2975249/ | |
| "Equals Conquest"^^xsd:string | http://img.jamendo.com/artists/e/equals.conquest.jpg | http://www.myspace.com/equalsconquest | http://sws.geonames.org/6252001/ |
| "Olga Scotland"^^xsd:string | http://img.jamendo.com/artists/o/olga.scotland.jpg | http://www.zenzenzen.ru | http://sws.geonames.org/2017370/ |
| "Perrocker"^^xsd:string | http://img.jamendo.com/artists/p/perrocker.jpg | http://www.perrocker.com | http://sws.geonames.org/2510769/ |
| "Toz"^^xsd:string | http://img.jamendo.com/artists/t/toz.jpg | http://toz.webhop.net | http://sws.geonames.org/2987410/ |
| "Electric Psycho"^^xsd:string | http://img.jamendo.com/artists/e/electric.psycho.jpg | http://electricpsycho.free.fr | http://sws.geonames.org/3023423/ |
| "Jailson Brito Jr."^^xsd:string | http://img.jamendo.com/artists/j/jailson.jpg | http://jailsonmatabarata.blogspot.com | http://sws.geonames.org/3469034/ |
| "Sköhl Offensrüh"^^xsd:string | http://img.jamendo.com/artists/s/skohl.offensruh.jpg | http://skohloffensruh.canalblog.com | http://sws.geonames.org/2991627/ |
| "Tune"^^xsd:string | http://img.jamendo.com/artists/t/tune.jpg | http://tune.magicstone.de | http://sws.geonames.org/2921044/ |
| "giovanni santese"^^xsd:string | http://img.jamendo.com/artists/g/giovanni.santese.jpg | http://www.myspace.com/giovannisantese | http://sws.geonames.org/3169069/ |
| "Red Lion"^^xsd:string | http://img.jamendo.com/artists/r/red.lion.jpg | http://myspace.com/redlions | http://sws.geonames.org/3013767/ |
| "Bugotak"^^xsd:string | http://img.jamendo.com/artists/b/bugotak.jpg | http://www.last.fm/music/Bugotak | http://sws.geonames.org/2017370/ |
| "Echoes of mine"^^xsd:string | http://img.jamendo.com/artists/e/echoes.of.mine.png | http://www.echoes-of-mine.net | http://sws.geonames.org/3012715/ |
| "San Benito"^^xsd:string | http://img.jamendo.com/artists/s/san.benito.jpg | http://humanet.free.fr/ | http://sws.geonames.org/2973362/ |
| "4444"^^xsd:string | http://img.jamendo.com/artists/4/4444.jpg | http://www.4444.es.vg | http://sws.geonames.org/2510769/ |
| "Eden's Garden"^^xsd:string | http://img.jamendo.com/artists/e/edensgarden.jpg | http://www.edensgarden.fr | http://sws.geonames.org/3036420/ |
| "CRISTAL"^^xsd:string | http://img.jamendo.com/artists/n/nadis.jpg | http://milaresolsimi.hautetfort.com | http://sws.geonames.org/3038050/ |
| "The KiK"^^xsd:string | http://img.jamendo.com/artists/t/thekik.jpg | http://thekik.over-blog.com/ | http://sws.geonames.org/3012849/ |
| "Autorun"^^xsd:string | http://img.jamendo.com/artists/a/autorun.jpg | http://www.myspace.com/aut0run | http://sws.geonames.org/2968815/ |
| "Pink Lady"^^xsd:string | http://img.jamendo.com/artists/p/pinklady.jpg | http://pinklady.fr.st | http://sws.geonames.org/2996663/ |
| "charry"^^xsd:string | http://img.jamendo.com/artists/c/charry.gif | http://www.charry.it | http://sws.geonames.org/3175395/ |
| "Goo Goo Cluster"^^xsd:string | http://img.jamendo.com/artists/g/googoocluster.jpg | http://GooGooCluster.free.fr | http://sws.geonames.org/2968815/ |
| "sion"^^xsd:string | http://img.jamendo.com/artists/s/sion.jpg | http://sion-music.com | |
| "Labogalak"^^xsd:string | http://img.jamendo.com/artists/l/labogalak.png | http://www.luneprod.info/labogalak/ | http://sws.geonames.org/2968815/ |
| "No Fun"^^xsd:string | http://img.jamendo.com/artists/n/no.fun.jpg | http://www.nofun.fr | http://sws.geonames.org/3031359/ |
| "Les Maxitubes De Tate"^^xsd:string | http://img.jamendo.com/artists/m/maxitubes.jpg | http://myspace.com/maxitubes | http://sws.geonames.org/3013719/ |
| "La DeNt Noire"^^xsd:string | http://img.jamendo.com/artists/l/ladentnoire.jpg | http://ladentnoire.propagande.org/ | http://sws.geonames.org/3029094/ |
| "Greg Baumont"^^xsd:string | http://img.jamendo.com/artists/g/greg.baumont.jpg | http://www.greg-baumont.com | http://sws.geonames.org/3034720/ |
| "DeBoo"^^xsd:string | http://img.jamendo.com/artists/d/deboo.jpg | http://www.deboo.de | http://sws.geonames.org/3213264/ |
| "Pete Vyler"^^xsd:string | http://img.jamendo.com/artists/p/pete.vyler.jpg | http://petevyler.free.fr | http://sws.geonames.org/2973357/ |
| "Cardinal Colère"^^xsd:string | http://img.jamendo.com/artists/c/cardinal.colere.jpg | http://www.cardinal-colere.com | http://sws.geonames.org/2968815/ |
| "Sonny Munroe"^^xsd:string | http://img.jamendo.com/artists/s/sonny.munroe.jpg | http://home.earthlink.net/~fkrasicki | http://sws.geonames.org/6252001/ |
| "screamin'tubes"^^xsd:string | http://img.jamendo.com/artists/s/screamin.tubes.jpg | http://www.screamintubes.com | http://sws.geonames.org/3031359/ |
| "k4n"^^xsd:string | http://img.jamendo.com/artists/k/k4n.jpg | http://k4n.free.fr | http://sws.geonames.org/3012804/ |
| "Evan"^^xsd:string | http://www.evan.fr | http://sws.geonames.org/3038049/ | |
| "Noisylab71"^^xsd:string | http://img.jamendo.com/artists/n/noisylab71.gif | http://www.noisylab71.com | http://sws.geonames.org/6556330/ |
| "Misantropía"^^xsd:string | http://img.jamendo.com/artists/m/misantropia.jpg | http://www.misantropiaonline.tk/ | http://sws.geonames.org/3996063/ |
| "AMarie.C"^^xsd:string | http://img.jamendo.com/artists/a/amarie.c.jpg | http://amariec.free.fr/marques-d-amour.htm | http://sws.geonames.org/3017382/ |
| "Kouki"^^xsd:string | http://img.jamendo.com/artists/k/kouki.jpg | http://www.youtube.com/profile?user=Odila | http://sws.geonames.org/3013657/ |
| "fab eichert"^^xsd:string | http://img.jamendo.com/artists/f/fab.eichert.jpg | http://www.soundclick.com/genres/a2z.cfm?genre=Pop&letter=F | http://sws.geonames.org/2991627/ |
| "zero lab station"^^xsd:string | http://img.jamendo.com/artists/z/zero.lab.station.jpg | http://www.ko-rec.org/catalogo_zls.html | http://sws.geonames.org/3172391/ |
| "Astreiness"^^xsd:string | http://img.jamendo.com/artists/a/astreiness.jpg | http://srmusic.free.fr/ASTREINESS/astreiness.html | http://sws.geonames.org/2996663/ |
| "Sherief"^^xsd:string | http://img.jamendo.com/artists/s/sherief.jpg | http://www.myspace.com/sheriefmusic | http://sws.geonames.org/6252001/ |
| "Dj Fab"^^xsd:string | http://img.jamendo.com/artists/d/dj.fab.jpg | http://www.dj-fab.net | http://sws.geonames.org/2970749/ |
| "accoutumance"^^xsd:string | http://img.jamendo.com/artists/a/accoutumance.jpg | http://accoutumance.free.fr | http://sws.geonames.org/2994111/ |
| "David Schombert"^^xsd:string | http://img.jamendo.com/artists/d/david.schombert.jpg | http://schombert.net | http://sws.geonames.org/3019599/ |
| "Ghord"^^xsd:string | http://img.jamendo.com/artists/g/ghord.jpg | http://www.ghord.net | http://sws.geonames.org/2994111/ |
| "SEVEN SEAS"^^xsd:string | http://img.jamendo.com/artists/s/seven.seas.jpg | http://www.sevenseas.fr | http://sws.geonames.org/2987410/ |
| "Bonhomme"^^xsd:string | http://img.jamendo.com/artists/b/bonhomme.jpg | http://www.bonhommeweb.com | http://sws.geonames.org/2968815/ |
| "Boulbar"^^xsd:string | http://img.jamendo.com/artists/b/boulbar.jpg | http://www.lamusiquenapasdeprix.com/?q=boulbar | http://sws.geonames.org/2968815/ |
| "Silencio apache"^^xsd:string | http://img.jamendo.com/artists/s/silencio.apache.jpg | http://www.fotolog.com/silencioapache | http://sws.geonames.org/3865483/ |
| "Mahatma"^^xsd:string | http://img.jamendo.com/artists/m/mahatma.png | http://adrenalinicsound.com/music/?ccm=/media/people/seven | http://sws.geonames.org/3181927/ |
| "L'Oeil du Ficus"^^xsd:string | http://img.jamendo.com/artists/l/loeilduficus.jpg | http://www.loeilduficus.fr | http://sws.geonames.org/2987410/ |
| "Paul Leide"^^xsd:string | http://img.jamendo.com/artists/p/paul.leide.jpg | http://www.myspace.com/paulleide | http://sws.geonames.org/2077456/ |
| "Nathalie Harran"^^xsd:string | http://ballonsonde.org | http://sws.geonames.org/2968815/ | |
| "DjNasty"^^xsd:string | http://img.jamendo.com/artists/d/djnasty.jpg | http://djnasty1.skyblog.com | http://sws.geonames.org/3023423/ |
| "Freizeit"^^xsd:string | http://img.jamendo.com/artists/f/freizeit.jpg | http://www.frische-musik.de | http://sws.geonames.org/2930484/ |
| "Slap Stick"^^xsd:string | http://img.jamendo.com/artists/s/slap.stick.gif | http://www.slap-stick-band.de | http://sws.geonames.org/2921044/ |
| "deied"^^xsd:string | http://img.jamendo.com/artists/d/deied.png | http://deied.de | http://sws.geonames.org/2264397/ |
| "Quassia"^^xsd:string | http://img.jamendo.com/artists/q/quassia.jpg | http://quassi.free.fr | http://sws.geonames.org/2973357/ |
| "Alpha Omega"^^xsd:string | http://img.jamendo.com/artists/a/alpha.omega.jpg | http://www.ozspace.com.au/alphaomega | http://sws.geonames.org/2077456/ |
| "theblisters"^^xsd:string | http://img.jamendo.com/artists/t/theblisters.jpg | http://myspace.com/theblistersbandfr | http://sws.geonames.org/2975249/ |
| "Cold fire"^^xsd:string | http://img.jamendo.com/artists/c/coldfire.gif | http://coldfireband.interfree.it | http://sws.geonames.org/3164526/ |
| "A-Killa"^^xsd:string | http://img.jamendo.com/artists/A/A-Killa.png | http://a-killa.musique.com | http://sws.geonames.org/3020781/ |
| "Missancha"^^xsd:string | http://img.jamendo.com/artists/M/Missancha.jpg | http://piednez.free.fr/missancha/index.html | http://sws.geonames.org/3029094/ |
| "Kalliopi"^^xsd:string | http://img.jamendo.com/artists/K/Kalliopi.gif | http://www.kalliopi.at | http://sws.geonames.org/2782113/ |
| "RAEMIM"^^xsd:string | http://raemim7.blogspot.com/ | http://sws.geonames.org/3932488/ | |
| "Degenerate Idol"^^xsd:string | http://img.jamendo.com/artists/d/degenerate.idol.jpg | http://www.degenerate-idol.com | http://sws.geonames.org/2921044/ |
| "tieryvan"^^xsd:string | http://img.jamendo.com/artists/t/tieryvan.jpg | http://sws.geonames.org/3012715/ | |
| "Alter-Ego"^^xsd:string | http://img.jamendo.com/artists/A/Alter_Ego_(5).jpg | http://alteregositeweb.site.voila.fr/ | http://sws.geonames.org/2990129/ |
| "Taxi Brouss'"^^xsd:string | http://img.jamendo.com/artists/t/taxi.brouss.jpg | http://www.myspace.com/taxibrouss | http://sws.geonames.org/3013767/ |
| "Prorock"^^xsd:string | http://img.jamendo.com/artists/p/prorock.jpg | http://prorock.cz | http://sws.geonames.org/2395170/ |
| "Thalyla"^^xsd:string | http://img.jamendo.com/artists/t/thalyla.jpg | http://\dementialcore.blogspot.com | http://sws.geonames.org/3182350/ |
| "Vincent Michel"^^xsd:string | http://img.jamendo.com/artists/v/vincent.michel.jpg | http://alkemiz.blogspot.com/ | http://sws.geonames.org/3038050/ |
| "C.J.ROGERS"^^xsd:string | http://img.jamendo.com/artists/c/c.j.rogers.jpg | http://cjrogersmusic.kilu.de/www/ | http://sws.geonames.org/2960313/ |
| "JaTaky"^^xsd:string | http://img.jamendo.com/artists/j/jataky.gif | http://jataky.wz.cz | http://sws.geonames.org/2395170/ |
| "CAYM"^^xsd:string | http://img.jamendo.com/artists/c/caym.jpg | file:///home/yves/jamendo/ww.mc-garden.ch | http://sws.geonames.org/2661603/ |
| "EcHo2K"^^xsd:string | http://img.jamendo.com/artists/E/EcHo2K.png | http://www.echo2k.com | http://sws.geonames.org/3166546/ |
| "Jennifer Avalon"^^xsd:string | http://img.jamendo.com/artists/j/jennifer.avalon.jpg | http://www.jenniferavalon.net | http://sws.geonames.org/6252001/ |
| "i-overdrive trio"^^xsd:string | http://img.jamendo.com/artists/i/i-overdrive.trio.jpg | http://p.gordiani.free.fr | http://sws.geonames.org/2987410/ |
| "Barnakústica"^^xsd:string | |||
| "Fury Tale"^^xsd:string | http://img.jamendo.com/artists/p/play.rock.jpg | http://www.myspace.com/yvalain31 | http://sws.geonames.org/3013767/ |
| "Jordanenko"^^xsd:string | http://img.jamendo.com/artists/J/Jordanenko.jpg | http://www.myspace.com/jordanenko | http://sws.geonames.org/2975246/ |
| "Beat Box Music"^^xsd:string | |||
| "SITT"^^xsd:string | http://img.jamendo.com/artists/S/SITT.jpg | http://aucun | http://sws.geonames.org/3016670/ |
| "Buskate la vida"^^xsd:string | http://img.jamendo.com/artists/B/Buskate_la_vida.jpg | http://www.buskatelavida.com | http://sws.geonames.org/2510769/ |
| "The Pharaos"^^xsd:string | http://img.jamendo.com/artists/T/The_Pharaos.gif | http://www.kryptonit.org | http://sws.geonames.org/2661886/ |
| "Galère"^^xsd:string | http://img.jamendo.com/artists/G/Galere.jpg | http://groff.canalblog.com/ | http://sws.geonames.org/3013719/ |
| "abstrackt particule"^^xsd:string | http://img.jamendo.com/artists/a/abstrackt_particule.jpg | http://sws.geonames.org/2975249/ | |
| "Amusia"^^xsd:string | http://img.jamendo.com/artists/A/Amusia.jpg | http://sws.geonames.org/3469034/ | |
| "Etherdust"^^xsd:string | http://img.jamendo.com/artists/E/Etherdust.jpg | http://www.etherdust.in | http://sws.geonames.org/1269750/ |
| "Yvalain"^^xsd:string | http://img.jamendo.com/artists/Y/Yvalain.jpg | http://www.myspace.com/yvalain31 | http://sws.geonames.org/3013767/ |
| "Dourven"^^xsd:string | http://sws.geonames.org/3023414/ | ||
| "guajiros del puerto"^^xsd:string | |||
| "Sick"^^xsd:string | |||
| "no@r"^^xsd:string | http://img.jamendo.com/artists/n/noar.png | http://sws.geonames.org/2975249/ | |
| "W. Elektro Projekt"^^xsd:string | http://img.jamendo.com/artists/W/W._Elektro_Projekt.jpg | http://welektroprojekt.blogspot.com/ | http://sws.geonames.org/3013500/ |
| "Jaugernaut"^^xsd:string | http://www.jaugernaut.com | http://sws.geonames.org/6252001/ | |
| "angeli missionari"^^xsd:string | |||
| "TRIBUMAN & Jammin' Orchestra"^^xsd:string | http://img.jamendo.com/artists/T/TRIBUMAN_Jammin'_Orchestra.jpg | http://www.patchworkproduction.fr/tribuman.html | http://sws.geonames.org/3034720/ |
| "Antonio Gervasoni"^^xsd:string | http://img.jamendo.com/artists/A/Antonio_Gervasoni.jpg | http://antoniogervasoni.tripod.com | http://sws.geonames.org/3932488/ |
| "Silas"^^xsd:string | |||
| "Giles Howe"^^xsd:string | http://www.myspace.com/turkishdelighttheopera | http://sws.geonames.org/2661886/ | |
| "kleiton"^^xsd:string | http://img.jamendo.com/artists/k/kleiton.jpg | http://sws.geonames.org/3996063/ | |
| "Kryos Project"^^xsd:string | http://sws.geonames.org/3175395/ | ||
| "kleiton"^^xsd:string | http://img.jamendo.com/artists/k/kleiton_(2).jpg | http://sws.geonames.org/3996063/ | |
| "indir.a"^^xsd:string | |||
| "ASSEK"^^xsd:string | http://img.jamendo.com/artists/A/ASSEK.jpg | http://sws.geonames.org/3013657/ | |
| "la sektion"^^xsd:string | |||
| "FAUSSE MONNAIE"^^xsd:string | http://sws.geonames.org/2994111/ | ||
| "Cromo"^^xsd:string | http://www.cromo.tk | http://sws.geonames.org/2522257/ | |
| "Wastelander0101"^^xsd:string | http://www.soundclick.com/bands/pagemusic.cfm?bandID=602554 | ||
| "Fabien Deville"^^xsd:string | http://img.jamendo.com/artists/F/Fabien_Deville.jpg | http://www.deville-lesite.com / | http://sws.geonames.org/2661886/ |
| "zweigeist"^^xsd:string | http://sws.geonames.org/3209442/ | ||
| "Feust"^^xsd:string | http://img.jamendo.com/artists/F/Feust.jpg | http://www.myspace.com/feust | http://sws.geonames.org/3012715/ |
| "Chernobyl Kid"^^xsd:string | http://img.jamendo.com/artists/C/Chernobyl_Kid.jpg | http://www.monkeyground.de | http://sws.geonames.org/2921044/ |
| "Mr_Smok"^^xsd:string | http://img.jamendo.com/artists/M/Mr_Smok.jpg | http://www.mr.smok.prv.pl | http://sws.geonames.org/798544/ |
| "open minds collective"^^xsd:string | http://img.jamendo.com/artists/o/open_minds_collective.jpg | http://www.myspace.com/openmindscollectivevariousartists | http://sws.geonames.org/2921044/ |
| "Antonio Jesús Mantis Benítez"^^xsd:string | |||
| "sphere"^^xsd:string | http://img.jamendo.com/artists/s/sphere_(5).jpg | http://sws.geonames.org/3213264/ | |
| "Tinook"^^xsd:string | http://img.jamendo.com/artists/T/Tinook.jpg | http://terra-tinook.blogspot.com/ | http://sws.geonames.org/2994111/ |
| "Bernard Pochet"^^xsd:string | http://sws.geonames.org/3013500/ | ||
| "raoul steckrübe"^^xsd:string | http://img.jamendo.com/artists/r/raoul_steckrube.jpg | http://www.motobol.de | http://sws.geonames.org/6557769/ |
| "Aube L"^^xsd:string | http://img.jamendo.com/artists/A/Aube_L.jpg | http://www.myspace.com/aubelalvee | http://sws.geonames.org/2975246/ |
| "Menneskevarg"^^xsd:string | http://img.jamendo.com/artists/M/Menneskevarg.png | ||
| "NiNeee"^^xsd:string | http://img.jamendo.com/artists/N/NiNeee.jpg | http://www.myspace.com/nineee | http://sws.geonames.org/2991879/ |
| "ANTOÑITO JIMENEZ"^^xsd:string | http://flamenkozaragoza2.blogspot.com/ | http://sws.geonames.org/2510769/ | |
| "Syztem"^^xsd:string | http://img.jamendo.com/artists/S/Syztem.gif | http://www.syztem.de.vu/ | http://sws.geonames.org/6556330/ |
| "Crux"^^xsd:string | http://img.jamendo.com/artists/C/Crux_(3).jpg | http://crux.yaseck.com/ | http://sws.geonames.org/798544/ |
| "ORCKON"^^xsd:string | http://img.jamendo.com/artists/O/ORCKON.jpg | http://www.myspace.com/orckon | http://sws.geonames.org/2994111/ |
| "Ludo et Rémi"^^xsd:string | http://sws.geonames.org/3012715/ | ||
| "Bastien Balt"^^xsd:string | http://img.jamendo.com/artists/B/Bastien_Balt.jpg | http://www.bastienbalt.com | http://sws.geonames.org/2991627/ |
| "Cyril Ayfer"^^xsd:string | http://sws.geonames.org/2987410/ | ||
| "MELIBEA"^^xsd:string | |||
| "Wilson Noble"^^xsd:string | |||
| "ANIMIC"^^xsd:string | file:///home/yves/jamendo/www.myspace.com/animicblog | http://sws.geonames.org/2510769/ | |
| "DMIS"^^xsd:string | http://img.jamendo.com/artists/D/DMIS.jpg | http://iplusplus-records.net | http://sws.geonames.org/2968815/ |
| "Beno Oscuro"^^xsd:string | |||
| "DELITO Y MEDIO"^^xsd:string | file:///home/yves/jamendo/www.delitoymedio.es | http://sws.geonames.org/2510769/ | |
| "Svullet Frenulum"^^xsd:string | |||
| "Handmade"^^xsd:string | http://www.12bars.heb.fr.colt.net/HAND/HANDMADE.htm | http://sws.geonames.org/2968815/ | |
| "adamo"^^xsd:string | http://img.jamendo.com/artists/a/adamo_(7).jpg | file:///home/yves/jamendo/mradamo.blogspot.com | http://sws.geonames.org/3169069/ |
| "THE BLACK BEARDS"^^xsd:string | file:///home/yves/jamendo/www.lacoctelera.com/theblackbeards | http://sws.geonames.org/6424360/ | |
| "A.L.K. DJ"^^xsd:string | http://img.jamendo.com/artists/A/A.L.K._DJ.jpg | file:///home/yves/jamendo/www.wihi.it | http://sws.geonames.org/3173434/ |
| "OnSlow"^^xsd:string | http://www.soundclick.com/bands/pageartist.cfm?bandID=633820 | http://sws.geonames.org/2921044/ | |
| "1.0"^^xsd:string | http://img.jamendo.com/artists/1/1.0.jpg | http://www.myspace.com/onepointzerospace | http://sws.geonames.org/2968815/ |
| "Laurent Pesteil"^^xsd:string | http://sws.geonames.org/2994111/ | ||
| "Moe-Sax"^^xsd:string | |||
| "Pablo Sciuto"^^xsd:string | http://img.jamendo.com/artists/P/Pablo_Sciuto.jpg | http://www.pablosciuto.com | http://sws.geonames.org/2510769/ |
| "SUNDAYERS"^^xsd:string | file:///home/yves/jamendo/www.sundayers.com | http://sws.geonames.org/2510769/ | |
| "sommer"^^xsd:string | http://img.jamendo.com/artists/s/sommer.jpg | http://sws.geonames.org/3114471/ | |
| "CARLOS VARGAS"^^xsd:string | http://img.jamendo.com/artists/C/CARLOS_VARGAS.jpg | file:///home/yves/jamendo/www.carlosvargas.org | http://sws.geonames.org/2510769/ |
| "Low Earth Orbit"^^xsd:string | |||
| "Milo Firewater"^^xsd:string | http://img.jamendo.com/artists/M/Milo_Firewater.jpg | http://www.milofirewater.co.uk | |
| "Emotions Of A Best Friend"^^xsd:string | http://img.jamendo.com/artists/E/Emotions_Of_A_Best_Friend.jpg | http://sws.geonames.org/2921044/ | |
| "Tiburk Sound System"^^xsd:string | http://onvibes.com/tss | http://sws.geonames.org/2997870/ | |
| "Dmd architect"^^xsd:string | http://img.jamendo.com/artists/D/Dmd_architect.jpg | http://sws.geonames.org/597427/ | |
| "DOGMA"^^xsd:string | file:///home/yves/jamendo/www.myspace.com/dogmahate | http://sws.geonames.org/2510769/ | |
| "Oursvince"^^xsd:string | http://img.jamendo.com/artists/O/Oursvince.jpg | http://www.vincentbernay.info | http://sws.geonames.org/2996663/ |
| "OFFENSE"^^xsd:string | http://offense.es/ | http://sws.geonames.org/2510769/ | |
| "Djoss"^^xsd:string | http://img.jamendo.com/artists/D/Djoss.jpg | http://sws.geonames.org/3012715/ | |
| "Melange de Promenade"^^xsd:string | http://img.jamendo.com/artists/M/Melange_de_Promenade.jpg | http://www.myspace.com/melangepromenade | http://sws.geonames.org/6252001/ |
| "dj"^^xsd:string | |||
| "MALA IDEA"^^xsd:string | file:///home/yves/jamendo/www.losmalaidea.com | http://sws.geonames.org/6355234/ | |
| "WE&DEM"^^xsd:string | file:///home/yves/jamendo/www.weandem.com | http://sws.geonames.org/2510769/ | |
| "MANIFA"^^xsd:string | file:///home/yves/jamendo/www.ruidodelbueno.com | http://sws.geonames.org/3104469/ | |
| "paradiz3"^^xsd:string | http://img.jamendo.com/artists/p/paradiz3.jpg | file:///home/yves/jamendo/www.myspace.com/paradiz3music | http://sws.geonames.org/2975246/ |
| "Piter"^^xsd:string | http://piter.neart.pl/ | http://sws.geonames.org/798544/ | |
| "Ilúvatar"^^xsd:string | |||
| "Canice"^^xsd:string | file:///home/yves/jamendo/www.canice.at | http://sws.geonames.org/2782113/ | |
| "Beatpick"^^xsd:string | http://img.jamendo.com/artists/B/Beatpick.jpg | file:///home/yves/jamendo/www.Beatpick.com | |
| "You and your lookalike friend"^^xsd:string | http://www.myspace.com/youandyourlookalikefriend | http://sws.geonames.org/3213264/ | |
| "Luke & Stevo"^^xsd:string | http://img.jamendo.com/artists/L/Luke_Stevo.jpg | http://www.luke-stevo.de.vu/ | http://sws.geonames.org/6557769/ |
| "patrice chala"^^xsd:string | http://img.jamendo.com/artists/p/patrice_chala_(2).jpg | file:///home/yves/jamendo/www.erepa85.com | http://sws.geonames.org/2970140/ |
| "Lvq"^^xsd:string | http://img.jamendo.com/artists/L/Lvq.jpg | file:///home/yves/jamendo/www.myspace.com/lvqband | http://sws.geonames.org/3164526/ |
| "julias dream"^^xsd:string | http://img.jamendo.com/artists/j/julias_dream.jpg | ||
| "Willbe"^^xsd:string | http://img.jamendo.com/artists/W/Willbe_(2).jpg | http://www.williamlamy.com | http://sws.geonames.org/3034720/ |
| "Beejay"^^xsd:string | http://img.jamendo.com/artists/B/Beejay.jpg | http://www.beejay.it/ | http://sws.geonames.org/3175395/ |
| "AlmaX B"^^xsd:string | http://almaxb.free.fr/ | http://sws.geonames.org/3013767/ | |
| "OBSESION FATAL"^^xsd:string | file:///home/yves/jamendo/www.obsesionfatal.com | http://sws.geonames.org/3104469/ | |
| "Simon et Quentin"^^xsd:string | |||
| "skadyll"^^xsd:string | http://sws.geonames.org/798544/ | ||
| "MEDINA SONORA Vol.6"^^xsd:string | file:///home/yves/jamendo/www.myspace.com/medinasonorafestival | http://sws.geonames.org/2510769/ | |
| "DJ GIALLU"^^xsd:string | |||
| "DJ GIALLU"^^xsd:string | |||
| "Los Intokables del Reggaeton"^^xsd:string | |||
| "Sinusoïde"^^xsd:string | http://img.jamendo.com/artists/S/Sinusoide.jpg | http://sinusoide.mp3.free.fr | http://sws.geonames.org/2968815/ |
| "atlantis milos pello"^^xsd:string | |||
| "K-R"^^xsd:string | http://img.jamendo.com/artists/K/K-R.jpg | http://www.myspace.com/dejamortcrew3 | http://sws.geonames.org/3013500/ |
| "A.P.U."^^xsd:string | |||
| "DJEdDiE"^^xsd:string | http://img.jamendo.com/artists/D/DJEdDiE.jpg | ||
| "O.S.T (original sound track)"^^xsd:string | http://sws.geonames.org/3017382/ | ||
| "yann synaeghel"^^xsd:string | http://sws.geonames.org/2990129/ | ||
| "Los Intokables del Reggaeton"^^xsd:string | |||
| "Space frequencies"^^xsd:string | http://sws.geonames.org/3013657/ | ||
| "extracto de lúpulo"^^xsd:string | http://img.jamendo.com/artists/e/extracto_de_lupulo.jpg | file:///home/yves/jamendo/www.extractodelupulo.net | http://sws.geonames.org/2510769/ |
| "Psicodèlic FunkilljazZ"^^xsd:string | file:///home/yves/jamendo/funkilljazz.blogspot.com | http://sws.geonames.org/2510769/ | |
| "aqmoolator"^^xsd:string | http://img.jamendo.com/artists/a/aqmoolator.jpg | http://aqmoolator.mp3.wp.pl/ | http://sws.geonames.org/798544/ |
| "J M F"^^xsd:string | http://img.jamendo.com/artists/J/J_M_F.jpg | http://sws.geonames.org/2997857/ | |
| "PhaZer"^^xsd:string | http://img.jamendo.com/artists/P/PhaZer_(2).jpg | http://www.gophazer.com | http://sws.geonames.org/2738782/ |
| "Predat aka le Predator"^^xsd:string | http://img.jamendo.com/artists/P/Predat_aka_le_Predator.jpg | ||
| "celso krause"^^xsd:string | |||
| "philippe deschamps"^^xsd:string | http://img.jamendo.com/artists/P/PHILIPPE_DESCHAMPS.jpg | file:///home/yves/jamendo/www.myspace.com/chauking | http://sws.geonames.org/2975248/ |
| "Les"^^xsd:string | |||
| "Sebast"^^xsd:string | http://img.jamendo.com/artists/S/Sebast.jpg | http://sws.geonames.org/798544/ | |
| "ZULU"^^xsd:string | http://img.jamendo.com/artists/Z/ZULU_(2).jpg | http://www.zulumusic.hu | http://sws.geonames.org/719819/ |
| "Walter Well"^^xsd:string | file:///home/yves/jamendo/www.the-well.nl | http://sws.geonames.org/2750405/ | |
| "Argotique"^^xsd:string | http://img.jamendo.com/artists/A/Argotique.jpg | http:/dementialcore.blogspot.com | http://sws.geonames.org/3182350/ |
| "Alberto Miller "The Traveler""^^xsd:string | |||
| "Pierrick Jasmin"^^xsd:string | http://img.jamendo.com/artists/P/Pierrick_Jasmin.jpg | file:///home/yves/jamendo/www.pierrickjasmin.com | |
| "G°°L Sampler"^^xsd:string | http://img.jamendo.com/artists/G/G_L_Sampler.jpg | file:///home/yves/jamendo/www.motobol.de | http://sws.geonames.org/2884161/ |
| "Naonem"^^xsd:string | http://img.jamendo.com/artists/N/Naonem.jpg | file:///home/yves/jamendo/www.myspace.com/naonem | http://sws.geonames.org/2987410/ |
| "Dub Lab"^^xsd:string | http://img.jamendo.com/artists/P/Picon_Dub.jpg | http://sws.geonames.org/3023423/ | |
| "Tommy Slax"^^xsd:string | |||
| "La Malle"^^xsd:string | http://img.jamendo.com/artists/L/La_Malle.jpg | http://www.lamalle.fr/ | http://sws.geonames.org/3034720/ |
| "Paul CREA"^^xsd:string | http://img.jamendo.com/artists/P/Paul_CREA.jpg | http://www.myspace.com/paulcrea | http://sws.geonames.org/3013736/ |
| "Dj H.Seres"^^xsd:string | file:///home/yves/jamendo/Coming Soon | http://sws.geonames.org/2750405/ | |
| "Kontrollzé"^^xsd:string | http://img.jamendo.com/artists/K/Kontrollze.jpg | file:///home/yves/jamendo/www.kontrollze.hu | http://sws.geonames.org/719819/ |
| "Mollah Sidi"^^xsd:string | |||
| "TIDAVLAND"^^xsd:string | http://www.myspace.com/tidavland | http://sws.geonames.org/2991879/ | |
| "Dusepo"^^xsd:string | http://www.freewebs.com/dusepo/ | ||
| "animaux de la lune"^^xsd:string | http://img.jamendo.com/artists/a/animaux_de_la_lune.jpg | http://jluis.no.sapo.pt/ | http://sws.geonames.org/2264397/ |
| "INSIDE ÁGAPE"^^xsd:string | http://img.jamendo.com/artists/I/INSIDE_AGAPE.jpg | http://myspace.com/insideagape | http://sws.geonames.org/3865483/ |
| "Leonardo Doldan"^^xsd:string | http://img.jamendo.com/artists/L/Leonardo_Doldan.jpg | file:///home/yves/jamendo/www.leonardodoldan.com.ar | http://sws.geonames.org/3865483/ |
| "Paul D. Miller aka Dj Spooky"^^xsd:string | http://img.jamendo.com/artists/D/DJ_spooky_(2).jpg | http://www.djspooky.com/hype.html | http://sws.geonames.org/6252001/ |
| "moloch"^^xsd:string | http://img.jamendo.com/artists/m/moloch_(2).jpg | http://sws.geonames.org/2987410/ | |
| "Déjà Mort Crew"^^xsd:string | http://blog.ifrance.com/dejamortcrew | http://sws.geonames.org/3017382/ | |
| "Anonym Project"^^xsd:string | http://img.jamendo.com/artists/A/Anonym_Project.jpg | file:///home/yves/jamendo/www.anonymproject.uw.hu | http://sws.geonames.org/719819/ |
| "Gyakusatsu"^^xsd:string | http://sws.geonames.org/2994111/ | ||
| "den makes music"^^xsd:string | http://img.jamendo.com/artists/d/den_makes_music.jpg | http://dqueffeulou.free.fr/musiques/ | http://sws.geonames.org/3012849/ |
| "BENI BLANCO & ZEGUA"^^xsd:string | |||
| "Misfilter"^^xsd:string | http://img.jamendo.com/artists/M/Misfilter.jpg | http://misfilterband.com/ | http://sws.geonames.org/6252001/ |
| "DopeVox"^^xsd:string | http://img.jamendo.com/artists/D/DopeVox.jpg | http://www.zombiedepot.com | http://sws.geonames.org/6252001/ |
| "ether ashe"^^xsd:string | |||
| "gritchouk"^^xsd:string | http://sdlcnet.info/ | http://sws.geonames.org/3029094/ | |
| "E.M.I.T.R"^^xsd:string | http://www.zentriertinsantlitz.de | http://sws.geonames.org/3213264/ | |
| "FLO LFO"^^xsd:string | http://img.jamendo.com/artists/F/FLO_LFO.jpg | http://www.myspace.com/flolfo | http://sws.geonames.org/3017382/ |
| "Zachary Flategraff"^^xsd:string | |||
| "Hipospadia"^^xsd:string | http://img.jamendo.com/artists/H/Hipospadia.jpg | http://www.danielbautista.com | http://sws.geonames.org/2515271/ |
| "Ivan Talarico"^^xsd:string | http://www.doppiosensouni.com | http://sws.geonames.org/3175395/ | |
| "CAJÓN DESASTRE"^^xsd:string | http://sws.geonames.org/2510769/ | ||
| "Levi"^^xsd:string | |||
| "Delta Agency"^^xsd:string | http://img.jamendo.com/artists/D/Delta_Agency.jpg | ||
| "Daily Grind"^^xsd:string | http://img.jamendo.com/artists/D/Daily_Grind.jpg | http://www.dailygrindband.com | http://sws.geonames.org/6556330/ |
| "Pulse of insight"^^xsd:string | http://img.jamendo.com/artists/P/Pulse_of_insight.jpg | file:///home/yves/jamendo/www.myspace.com/pulseofinsight | http://sws.geonames.org/3165523/ |
| "JC+GK"^^xsd:string | http://img.jamendo.com/artists/J/JCGK.jpg | file:///home/yves/jamendo/www.myspace.com/JCGKmusic | http://sws.geonames.org/2963597/ |
| "Post-Godzenbuth"^^xsd:string | http://img.jamendo.com/artists/P/Post-Godzenbuth.jpg | http://blog.myspace.com/godzenbuthparhervgodement | http://sws.geonames.org/3013657/ |
| "Peter David Anderson"^^xsd:string | http://img.jamendo.com/artists/P/Peter_David_Anderson.jpg | http://www.musiker-on.de/bands/75/music.php | http://sws.geonames.org/3213264/ |
| "will t"^^xsd:string | |||
| "Fly³"^^xsd:string | |||
| "Michu"^^xsd:string | http://img.jamendo.com/artists/M/Michu.jpg | file:///home/yves/jamendo/www.michu.es | http://sws.geonames.org/2514254/ |
| "F. JULIAN"^^xsd:string | http://www.musicromarin.com | http://sws.geonames.org/3013500/ | |
| "ROMARIN"^^xsd:string | http://www.musicromarin.com | http://sws.geonames.org/3013500/ | |
| "Blackberry"^^xsd:string | http://img.jamendo.com/artists/B/Blackberry_(2).jpg | http://www.blackberry-music.net | http://sws.geonames.org/2921044/ |
| "Zérocratie"^^xsd:string | http://img.jamendo.com/artists/Z/Zerocratie.jpg | http://zerocrate.free.fr | http://sws.geonames.org/2987410/ |
| "daco"^^xsd:string | http://img.jamendo.com/artists/d/daco.jpg | ||
| "AraKsas"^^xsd:string | http://perso.orange.fr/araksas/ | http://sws.geonames.org/3012804/ | |
| "muyolab"^^xsd:string | http://www.teppasoft.com/muyolab/ | http://sws.geonames.org/3182350/ | |
| "Gustavo Jobim"^^xsd:string | http://www.gustavojobim.com | http://sws.geonames.org/3469034/ | |
| "Peppe Cirino AKA Juself"^^xsd:string | |||
| "alice springs"^^xsd:string | http://sws.geonames.org/2976082/ | ||
| "Vacadam"^^xsd:string | file:///home/yves/jamendo/www.myspace.com/vacadam | http://sws.geonames.org/2971071/ | |
| "Peter David Anderson"^^xsd:string | |||
| "Arkady Michalik & MUSICOCOMPANY"^^xsd:string | http://img.jamendo.com/artists/A/Arkady_Michalik_MUSICOCOMPANY_(2).jpg | http://www.arkadymichalik.republika.pl | http://sws.geonames.org/798544/ |
| "Arkady Michalik & MUSICOCOMPANY"^^xsd:string | http://img.jamendo.com/artists/A/Arkady_Michalik_MUSICOCOMPANY_(3).jpg | http://arkadymichalik.republika.pl | http://sws.geonames.org/798544/ |
| "Brigitte Bop"^^xsd:string | http://img.jamendo.com/artists/B/Brigitte_Bop_(2).jpg | http://brigittebop.free.fr/ | http://sws.geonames.org/2997857/ |
| "VoG"^^xsd:string | http://sws.geonames.org/3057568/ | ||
| "Flash"^^xsd:string | http://sws.geonames.org/798544/ | ||
| "Dom The Bear"^^xsd:string | http://img.jamendo.com/artists/D/Dom_The_Bear.jpg | http://dombear.musicblog.fr | http://sws.geonames.org/2970749/ |
| "Albert Benzler"^^xsd:string | |||
| "mr. Pink"^^xsd:string | file:///home/yves/jamendo/www.myspace.com/mrpinkelectro | http://sws.geonames.org/3175395/ | |
| "kafune 2005"^^xsd:string | |||
| "blackjazzmaster"^^xsd:string | http://img.jamendo.com/artists/b/blackjazzmaster.jpg | http://blackjazzmaster.de | http://sws.geonames.org/2921044/ |
| "4c3"^^xsd:string | http://img.jamendo.com/artists/4/4c3.jpg | http://sws.geonames.org/3996063/ | |
| "bbabh"^^xsd:string | |||
| "ICHTIS"^^xsd:string | |||
| "Cliff Kilpatrick"^^xsd:string | http://img.jamendo.com/artists/C/Cliff_Kilpatrick.jpg | http://www.myspace.com/ckilpatrick1 | http://sws.geonames.org/6252001/ |
| "notier@work"^^xsd:string | file:///home/yves/jamendo/www.bodenseesyndrom.wb3.de | http://sws.geonames.org/3209442/ | |
| "sapiens fx"^^xsd:string | __jamendo-3.rdf#__Description3 | http://sws.geonames.org/3209442/ | |
| "Dana k"^^xsd:string | |||
| "Zouk"^^xsd:string | |||
| "Hickslayer"^^xsd:string | http://img.jamendo.com/artists/H/Hickslayer.jpg | file:///home/yves/jamendo/www.hickslayer.com | http://sws.geonames.org/6252001/ |
| "Compilation OLPC"^^xsd:string | http://img.jamendo.com/artists/C/Compilation_OLPC.jpg | ||
| "ETT"^^xsd:string | http://img.jamendo.com/artists/E/ETT.jpg | http://sws.geonames.org/3012804/ | |
| "sypheur"^^xsd:string | |||
| "MoShI-AsheR"^^xsd:string | |||
| "JION"^^xsd:string | file:///home/yves/jamendo/www.jion.it | http://sws.geonames.org/3169069/ | |
| "youcef"^^xsd:string | |||
| "THX"^^xsd:string | |||
| "Psychedelic Sun"^^xsd:string | http://img.jamendo.com/artists/P/Psydom_Recordz.jpg | file:///home/yves/jamendo/www.psydomtrance.blogspot.com | http://sws.geonames.org/3469034/ |
| "DJad"^^xsd:string | http://img.jamendo.com/artists/D/DJad.jpg | http://sws.geonames.org/272103/ | |
| "Renich"^^xsd:string | http://img.jamendo.com/artists/R/Renich.jpg | http://www.woralelandia.com/ | http://sws.geonames.org/3996063/ |
| "@n+0"^^xsd:string | |||
| "Dj Linux"^^xsd:string | http://img.jamendo.com/artists/D/Dj_Linux_(2).jpg | ||
| "Alberto Miller, Sam Miller, Jay Kayser, and Charles Huston"^^xsd:string | |||
| "TL"^^xsd:string | |||
| "Abricot"^^xsd:string | http://img.jamendo.com/artists/a/abricot.jpg | http://sws.geonames.org/3038111/ | |
| "Aublin"^^xsd:string | http://img.jamendo.com/artists/A/Aublin.jpg | file:///home/yves/jamendo/isidroaublin.blogspot.com | http://sws.geonames.org/2510769/ |
| "Black Holiday"^^xsd:string | http://perso.orange.fr/black.holiday | http://sws.geonames.org/3016670/ | |
| "flatmax"^^xsd:string | http://img.jamendo.com/artists/f/flatmax.jpg | ||
| "LyRone"^^xsd:string | http://lrlife.skyrock.fr | http://sws.geonames.org/3570311/ | |
| "nuonu"^^xsd:string | http://img.jamendo.com/artists/n/nuonu.jpg | http://www.nuonu.com | http://sws.geonames.org/6556330/ |
| "Koshon"^^xsd:string | |||
| "TriiSTAN ..x3"^^xsd:string | |||
| "Dario Júnior"^^xsd:string | http://img.jamendo.com/artists/D/Dario_Junior.jpg | http://dario_junior.sites.uol.com.br/ | http://sws.geonames.org/3469034/ |
| "Iben"^^xsd:string | http://img.jamendo.com/artists/I/Iben_(2).jpg | http://www.douchez.com | http://sws.geonames.org/2990129/ |
| "Ubjk"^^xsd:string | |||
| "Daniel Laufer"^^xsd:string | http://img.jamendo.com/artists/D/Daniel_Laufer_(2).jpg | http://www.daniel-laufer.de | http://sws.geonames.org/3209442/ |
| "gh05t90"^^xsd:string | |||
| "John Zealey"^^xsd:string | http://img.jamendo.com/artists/J/John_Zealey.jpg | http://www.zealey.co.uk | |
| "jocelyne dorian"^^xsd:string | http://img.jamendo.com/artists/j/jocelyne_dorian.jpg | file:///home/yves/jamendo/www.jocelynedorian.com | http://sws.geonames.org/2970140/ |
| "JD"^^xsd:string | http://img.jamendo.com/artists/J/JD_(2).jpg | http://sws.geonames.org/2971071/ | |
| "Warfloor"^^xsd:string | http://djdip.musicblog.fr | http://sws.geonames.org/3038049/ | |
| "Viuda Serrandez i Fills"^^xsd:string | file:///home/yves/jamendo/www.radiocactus.com | ||
| "rk!side"^^xsd:string | |||
| "Baron Baroff"^^xsd:string | http://sws.geonames.org/3017382/ | ||
| "Groop"^^xsd:string | http://img.jamendo.com/artists/G/Groop.jpg | ||
| "INERCIA"^^xsd:string | http://www.inercia.tk | http://sws.geonames.org/3895114/ | |
| "Kinetic Jane"^^xsd:string | |||
| "OPRACHINA"^^xsd:string | http://img.jamendo.com/artists/O/OPRACHINA.jpg | http://www.myspace.com/oprachina | http://sws.geonames.org/3169069/ |
| "Marco Della Noce"^^xsd:string | |||
| "Síndrome Rock"^^xsd:string | http://img.jamendo.com/artists/S/Sindrome_Rock.jpg | http://myspace.com/sindromeasturies | |
| "DJ Answer"^^xsd:string | http://sws.geonames.org/6290252/ | ||
| "Botany Bay"^^xsd:string | http://botanybay.ubisonic.de | http://sws.geonames.org/3213264/ | |
| "Dj H.Seres"^^xsd:string | http://img.jamendo.com/artists/D/Dj_H.Seres_(5).jpg | file:///home/yves/jamendo/Comming Soon | http://sws.geonames.org/2750405/ |
| "DJ LAURENT"^^xsd:string | |||
| "Hk"^^xsd:string | http://img.jamendo.com/artists/H/Hk.jpg | http://www.biomicid.fr | http://sws.geonames.org/3017382/ |
| "Michael Bartels"^^xsd:string | file:///home/yves/jamendo/MiBa-Piano.de | http://sws.geonames.org/2911297/ | |
| "Camerata Brasileira"^^xsd:string | http://www.cameratabrasileira.mus.br | http://sws.geonames.org/3469034/ | |
| "N'OR"^^xsd:string | http://img.jamendo.com/artists/N/N'OR.jpg | http://www.myspace.com/nor137 | http://sws.geonames.org/3031359/ |
| "Lékol Maloya"^^xsd:string | http://img.jamendo.com/artists/L/Lekol_Maloya.jpg | http://lekolmaloya.skyrock.fr | http://sws.geonames.org/935317/ |
| "Yoni Brigante"^^xsd:string | http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid=215896347 | ||
| "Tommy and Nord38"^^xsd:string | |||
| "Tommy and Nord38"^^xsd:string | http://sws.geonames.org/3585968/ | ||
| "Spronk"^^xsd:string | |||
| "17 Re"^^xsd:string | http://img.jamendo.com/artists/1/17_Re_(3).jpg | http://sws.geonames.org/3175444/ | |
| "Zumbido"^^xsd:string | http://img.jamendo.com/artists/Z/Zumbido.jpg | file:///home/yves/jamendo/www.myspace.com/zzumbido | http://sws.geonames.org/2510769/ |
| "Mamut"^^xsd:string | http://img.jamendo.com/artists/M/Mamut.jpg | file:///home/yves/jamendo/www.michu.es | http://sws.geonames.org/2510769/ |
| "Dhalius Music"^^xsd:string | http://dhaliusmx.blogspot.com | http://sws.geonames.org/3996063/ | |
| "Dhalius Music"^^xsd:string | http://dhaliusmx.blogspot.com | http://sws.geonames.org/3996063/ | |
| "Stck&Stn"^^xsd:string | http://img.jamendo.com/artists/S/Stck_Stn.jpg | file:///home/yves/jamendo/www.motobol.de | http://sws.geonames.org/2659752/ |
| "psy4"^^xsd:string | |||
| "ELLABI"^^xsd:string | http://img.jamendo.com/artists/E/ELLABI.jpg | http://www.ellabi.com | http://sws.geonames.org/719819/ |
| "Rein"^^xsd:string | http://img.jamendo.com/artists/R/Rein.jpg | file:///home/yves/jamendo/www.rein99.it | http://sws.geonames.org/3169069/ |
| "Christian GAUVRIT"^^xsd:string | http://img.jamendo.com/artists/C/Christian_GAUVRIT.jpg | http://www.erepa85.com/ http://cpproduction.spaces.live.com/ | http://sws.geonames.org/2970140/ |
| "DSA"^^xsd:string | http://sws.geonames.org/2968815/ | ||
| "THYL"^^xsd:string | http://img.jamendo.com/artists/T/THYL.jpg | http://www.myspace.com/groupethyl | http://sws.geonames.org/3013767/ |
| "Bagwell"^^xsd:string | |||
| "Sébastien GRAMOND"^^xsd:string | |||
| "Mike Feast"^^xsd:string | file:///home/yves/jamendo/www.mikefeast.blogspot.com | http://sws.geonames.org/4138106/ | |
| "A Jour"^^xsd:string | http://sws.geonames.org/2395170/ | ||
| "Dizzy"^^xsd:string | http://sws.geonames.org/6557769/ | ||
| "MUERTE DULCE"^^xsd:string | http://img.jamendo.com/artists/M/MUERTE_DULCE.jpg | file:///home/yves/jamendo/www.myspace.com/muertedulce | http://sws.geonames.org/6355233/ |
| "RVG"^^xsd:string | http://bluedusk.blogspot.com/ | http://sws.geonames.org/2971071/ | |
| "Julia Car"^^xsd:string | file:///home/yves/jamendo/www.juliacar.com | http://sws.geonames.org/3469034/ | |
| "Nadiejda"^^xsd:string | file:///home/yves/jamendo/www.nadworld-music.com | http://sws.geonames.org/3012849/ | |
| "Frithjof Brauer"^^xsd:string | http://img.jamendo.com/artists/F/Frithjof_Brauer.jpg | file:///home/yves/jamendo/www.mpia.de/homes/brauer/jazz.html | http://sws.geonames.org/3209442/ |
| "ATP"^^xsd:string | http://img.jamendo.com/artists/A/ATP.jpg | http://atp.zespol.w.interia.pl/ | http://sws.geonames.org/798544/ |
| "inconexia"^^xsd:string | http://img.jamendo.com/artists/i/inconexia_(2).jpg | http://inconexia.net | http://sws.geonames.org/3104469/ |
| "Wackes"^^xsd:string | http://leswackes.free.fr | http://sws.geonames.org/3013663/ | |
| "Daddy-G"^^xsd:string | http://img.jamendo.com/artists/D/Daddy-G.jpg | ||
| "Stonehenge"^^xsd:string | http://stonehenge.ouvaton.org/ | http://sws.geonames.org/3013767/ | |
| "AHARD"^^xsd:string | http://bandzone.cz/ahard | http://sws.geonames.org/2395170/ | |
| "Sun-J & Booggie"^^xsd:string | |||
| "Sun-J & Booggie"^^xsd:string | |||
| "vina"^^xsd:string | |||
| "AutoStrich"^^xsd:string | http://img.jamendo.com/artists/A/AutoStrich.jpg | http://sws.geonames.org/2930484/ | |
| "Nastyl Crooks"^^xsd:string | http://img.jamendo.com/artists/N/Nastyl_Crooks.jpg | http://nastyl-crooks.blogspot.com/ | http://sws.geonames.org/3029094/ |
| "GATA"^^xsd:string | |||
| "ViDA"^^xsd:string | file:///home/yves/jamendo/www.fotolog.net/vidarck | http://sws.geonames.org/3469034/ | |
| "amine "^^xsd:string | file:///home/yves/jamendo/www.thedevilishlove.skyrock.com | http://sws.geonames.org/2400553/ | |
| "Q ' s a l i v a"^^xsd:string | file:///home/yves/jamendo/www.qsaliva.com | http://sws.geonames.org/3469034/ | |
| "Jeremy McFader"^^xsd:string | http://img.jamendo.com/artists/J/Jeremy_McFader.jpg | ||
| "LetHal- - -B"^^xsd:string | http://sws.geonames.org/3018471/ | ||
| "the fabulous flying moles"^^xsd:string | |||
| "Esteban Monge"^^xsd:string | file:///home/yves/jamendo/www.esteban-monge.blogspot.com | http://sws.geonames.org/2287781/ | |
| "UNREAL"^^xsd:string | http://sws.geonames.org/2921044/ | ||
| "Sonuva"^^xsd:string | http://sws.geonames.org/2884161/ | ||
| "Chill Authority"^^xsd:string | |||
| "Aegon"^^xsd:string | http://img.jamendo.com/artists/A/Aegon.jpg | file:///home/yves/jamendo/www.myspace.com/aegon | http://sws.geonames.org/3164526/ |
| "Legofriendly"^^xsd:string | http://www.intervall-audio.com/artists/legofriendly.html | http://sws.geonames.org/1862047/ | |
| "THE NECOMS"^^xsd:string | http://img.jamendo.com/artists/T/THE_NECOMS.jpg | ||
| "lolo"^^xsd:string | |||
| "Mechanoflora"^^xsd:string | |||
| "Spine"^^xsd:string | http://img.jamendo.com/artists/S/Spine_(3).jpg | http://spine.com.pl | http://sws.geonames.org/798544/ |
| "Insurrection Crew"^^xsd:string | http://img.jamendo.com/artists/I/Insurrection_Crew.jpg | http://sws.geonames.org/2802361/ | |
| "D!4m4n7-Jr"^^xsd:string | |||
| "x-leo-tugais-x"^^xsd:string | |||
| "D.D.F"^^xsd:string | |||
| "BLATANT"^^xsd:string | http://sws.geonames.org/614540/ | ||
| "ovative"^^xsd:string | http://img.jamendo.com/artists/o/ovative.jpg | http://iplusplus-records.net | http://sws.geonames.org/2968815/ |
| "prolet"^^xsd:string | |||
| "MUTE"^^xsd:string | http://img.jamendo.com/artists/M/MUTE_(2).jpg | __jamendo-3.rdf#__Description4 | |
| "Giuseppe Mirabella"^^xsd:string | file:///home/yves/jamendo/www.giuseppemirabella.net | http://sws.geonames.org/2525065/ | |
| "EternalFull"^^xsd:string | http://img.jamendo.com/artists/E/EternalFull.jpg | http://www.eternalfull.tk | http://sws.geonames.org/798544/ |
| "nest rouve"^^xsd:string | http://img.jamendo.com/artists/n/nest_rouve.jpg | http://iplusplus-records.net | http://sws.geonames.org/2968815/ |
| "Calcio20"^^xsd:string | |||
| "DJEdDiE"^^xsd:string | |||
| "TIMY STYLE"^^xsd:string | http://sws.geonames.org/2510769/ | ||
| "LATEM"^^xsd:string | http://img.jamendo.com/artists/L/LATEM.jpg | file:///home/yves/jamendo/www.myspace.com/latemnet | http://sws.geonames.org/2524906/ |
| "Beedies Echo"^^xsd:string | http://img.jamendo.com/artists/B/Beedies_Echo.jpg | file:///home/yves/jamendo/www.beedies-echo.com | http://sws.geonames.org/3013500/ |
| "Jef Gosse"^^xsd:string | http://sws.geonames.org/3013719/ | ||
| "Big Lalune"^^xsd:string | http://img.jamendo.com/artists/B/Big_Lalune.jpg | ||
| "Wayl Sodwind"^^xsd:string | http://img.jamendo.com/artists/W/Wayl_Sodwind.jpg | http://wayl.wordpress.com | http://sws.geonames.org/2525471/ |
| "Lr"^^xsd:string | |||
| "samfire"^^xsd:string | |||
| "Chico Bala"^^xsd:string | http://img.jamendo.com/artists/C/Chico_Bala.jpg | http://www.chicobala.com | http://sws.geonames.org/2510769/ |
| "Ké"^^xsd:string | http://img.jamendo.com/artists/K/Ke_(2).jpg | http://elecmutec.com | http://sws.geonames.org/2970749/ |
| "Leonard"^^xsd:string | http://img.jamendo.com/artists/L/Leonard_(3).jpg | ||
| "Faëlide"^^xsd:string | |||
| "Faëlide"^^xsd:string | |||
| "Michael Daniel 75"^^xsd:string | http://sws.geonames.org/3077311/ | ||
| "The Nowheres"^^xsd:string | |||
| "Fusz"^^xsd:string | http://img.jamendo.com/artists/F/Fusz.jpg | file:///home/yves/jamendo/www.fusz.nl | http://sws.geonames.org/2750405/ |
| "SamFilm"^^xsd:string | http://img.jamendo.com/artists/S/SamFilm.jpg | http://www.sam-film.de/samfilm/ | http://sws.geonames.org/3209442/ |
| "Max Heros"^^xsd:string | |||
| "DJ Amy Moon"^^xsd:string | http://img.jamendo.com/artists/D/DJ_Amy_Moon.jpg | http://www.myspace.com/djamymoon | http://sws.geonames.org/2750405/ |
| "Philos Deploys"^^xsd:string | file:///home/yves/jamendo/www.philos-deploys.de | http://sws.geonames.org/2921044/ | |
| "Enden Wickers"^^xsd:string | http://img.jamendo.com/artists/E/Enden_Wickers.jpg | http://wayl.wordpress.com | http://sws.geonames.org/2525471/ |
| "Sweetch"^^xsd:string | http://img.jamendo.com/artists/S/Sweetch.jpg | http://www.sweetch.net | http://sws.geonames.org/3012849/ |
| "TAKEWON"^^xsd:string | http://img.jamendo.com/artists/T/TAKEWON.jpg | file:///home/yves/jamendo/www.myspace.com/Takewon | http://sws.geonames.org/2975517/ |
| "White Light Riot"^^xsd:string | http://img.jamendo.com/artists/W/White_Light_Riot.jpg | http://whitelightriot.com | http://sws.geonames.org/6252001/ |
| "even death dies"^^xsd:string | http://www.myspace.com/cristianoferranti | http://sws.geonames.org/3169069/ | |
| "Gen Noruego"^^xsd:string | |||
| "Dj Tibo"^^xsd:string | |||
| "Enrique Mateu"^^xsd:string | http://img.jamendo.com/artists/E/Enrique_Mateu.jpg | http://www.enriquemateu.com | http://sws.geonames.org/2515271/ |
| "The Wavers"^^xsd:string | http://img.jamendo.com/artists/T/The_Wavers.jpg | http://myspace.com/thewavers | http://sws.geonames.org/3178227/ |
| "DoubleMinds"^^xsd:string | http://img.jamendo.com/artists/D/DoubleMinds.jpg | http://www.doubleminds.com | http://sws.geonames.org/2984887/ |
| "Dude"^^xsd:string | |||
| "Xantia-Boys"^^xsd:string | Http://xantia-Boys.skyrock.com | http://sws.geonames.org/3031359/ | |
| "mr. jeey x (progetto novecento)"^^xsd:string | http://img.jamendo.com/artists/m/mr.jeey_x_(3).jpg | http://sws.geonames.org/2525471/ | |
| "arcaïde"^^xsd:string | http://img.jamendo.com/artists/a/arcaide.jpg | file:///home/yves/jamendo/www.myspace.com/arcaide | http://sws.geonames.org/3020781/ |
| "GeoSuPhat"^^xsd:string | http://img.jamendo.com/artists/G/GeoSuPhat.jpg | http://togeostudios.com/music/artists/geosuphat/ | http://sws.geonames.org/6556330/ |
| "whynotme"^^xsd:string | |||
| "COOLCHIC"^^xsd:string | http://www.musicromarin.com | http://sws.geonames.org/3013500/ | |
| "Moonshiners"^^xsd:string | http://img.jamendo.com/artists/m/moonshiners.gif | http://www.moonshiners.ze.cx | http://sws.geonames.org/2975248/ |
| "mindthings"^^xsd:string | http://img.jamendo.com/artists/m/mindthings.jpg | http://www.myspace.com/mindthings | http://sws.geonames.org/3015948/ |
| "M2afiozo"^^xsd:string | |||
| "Les Ecorchés"^^xsd:string | http://img.jamendo.com/artists/L/Les_Ecorches.jpg | http://www.les-ecorches.com/ | http://sws.geonames.org/2988430/ |
| "Kapelle Koralle"^^xsd:string | http://www.kapellekoralle.de | http://sws.geonames.org/2921044/ | |
| "Giorgos Stefanou"^^xsd:string | http://g-stefanou.blogspot.com/ | http://sws.geonames.org/390903/ | |
| "Gaël Brulin"^^xsd:string | http://sws.geonames.org/2975248/ | ||
| "DJLaser"^^xsd:string | http://img.jamendo.com/artists/D/DJLaser.jpg | http://www.reales.cc | http://sws.geonames.org/2520597/ |
| "kobil"^^xsd:string | |||
| "Elsinore"^^xsd:string | http://www.myspace.com/elsinoreband | http://sws.geonames.org/3173434/ | |
| "HUGOT JULIAN"^^xsd:string | |||
| "djniko62"^^xsd:string | http://img.jamendo.com/artists/d/djniko62.jpg | http://djniko62.skyrock.com/profil/ | http://sws.geonames.org/2988430/ |
| "DJDB"^^xsd:string | http://img.jamendo.com/artists/D/DJDB.jpg | http://djdb.co.nr | http://sws.geonames.org/390903/ |
| "Doune"^^xsd:string | http://img.jamendo.com/artists/D/Doune.jpg | file:///home/yves/jamendo/www.myspace.com/dounetheband | http://sws.geonames.org/2968815/ |
| "carloscopia"^^xsd:string | |||
| "Agamemnon"^^xsd:string | http://sws.geonames.org/2658182/ | ||
| "soja"^^xsd:string | |||
| "Davide Geraci"^^xsd:string | file:///home/yves/jamendo/www.celebritymovie.it | http://sws.geonames.org/3173767/ | |
| "Vaïan Olmes"^^xsd:string | |||
| "The Diletanters"^^xsd:string | http://img.jamendo.com/artists/T/The_Diletanters.jpg | http://myspace.com/thediletanterslegroupe | http://sws.geonames.org/2970749/ |
| "hélio"^^xsd:string | file:///home/yves/jamendo/... | http://sws.geonames.org/3012715/ | |
| "MARASM"^^xsd:string | |||
| "Agaetisly"^^xsd:string | http://sws.geonames.org/2994111/ | ||
| "Tirpunk"^^xsd:string | |||
| "Richard Harris"^^xsd:string | |||
| "Docteur Prépu"^^xsd:string | http://img.jamendo.com/artists/D/Docteur_Prepu_(2).jpg | http://www.docteurprepu.com | http://sws.geonames.org/3019599/ |
| "Mattia Giovanetti"^^xsd:string | http://img.jamendo.com/artists/M/Mattia_Giovanetti.jpg | http://xoomer.alice.it/naturaljazz/ | http://sws.geonames.org/3175395/ |
| "Dj H.Seres"^^xsd:string | |||
| "eliot ness"^^xsd:string | http://img.jamendo.com/artists/e/eliot_ness.jpg | http://www.eliotness.fr.tc | http://sws.geonames.org/3013767/ |
| "bert jerred"^^xsd:string | http://img.jamendo.com/artists/b/bert_jerred.jpg | file:///home/yves/jamendo/bertjerredmusic.googlepages.com | http://sws.geonames.org/6252001/ |
| "Jaufenpass"^^xsd:string | http://img.jamendo.com/artists/J/Jaufenpass.jpg | file:///home/yves/jamendo/www.jaufenpass.com | http://sws.geonames.org/3175395/ |
| "DJ_mat"^^xsd:string | |||
| "Tabolomegalo"^^xsd:string | http://sws.geonames.org/2997861/ | ||
| "SMG"^^xsd:string | http://img.jamendo.com/artists/M/Mudit_Sood.jpg | http://www.smgtheartist.blogspot.com/ | http://sws.geonames.org/1269750/ |
| "Nebula 444"^^xsd:string | |||
| "TAVOLA RUSTICA"^^xsd:string | http://img.jamendo.com/artists/T/TAVOLA_RUSTICA.jpg | http://www.myspace.com/classikdream | http://sws.geonames.org/3013500/ |
| "$ArnoDj13$"^^xsd:string | |||
| "zero"^^xsd:string | http://img.jamendo.com/artists/z/zero_(5).jpg | file:///home/yves/jamendo/www.myspace.com/zerotheband | http://sws.geonames.org/2884161/ |
| "Ristikiehtova"^^xsd:string | http://img.jamendo.com/artists/R/Ristikiehtova.jpg | http://sws.geonames.org/660013/ | |
| "This Broken Machine"^^xsd:string | http://img.jamendo.com/artists/T/This_Broken_Machine.jpg | file:///home/yves/jamendo/www.tbmband.com | http://sws.geonames.org/3173434/ |
| "Mofo Dispersion"^^xsd:string | file:///home/yves/jamendo/mofodispersion.com | http://sws.geonames.org/2658182/ | |
| "o0o"^^xsd:string | http://img.jamendo.com/artists/o/o0o.jpg | http://o0o-radio.blogspot.com/ | http://sws.geonames.org/2750405/ |
| "REQUIEM"^^xsd:string | http://img.jamendo.com/artists/R/REQUIEM_(7).jpg | http://www.myspace.com/requiemgrungemusic | http://sws.geonames.org/798544/ |
| "The Shamrock Stars"^^xsd:string | http://img.jamendo.com/artists/T/The_Shamrock_Stars.jpg | http://the-shamrock-stars.skyrock.com | http://sws.geonames.org/2984986/ |
| "Courboulès David"^^xsd:string | http://img.jamendo.com/artists/C/Courboules_David.jpg | file:///home/yves/jamendo/www.artfloid.com | http://sws.geonames.org/3015948/ |
| "Peter Schaefer"^^xsd:string | http://img.jamendo.com/artists/P/Peter_Schaefer.jpg | file:///home/yves/jamendo/www.schaefer-music.com | http://sws.geonames.org/3209442/ |
| "Callaz"^^xsd:string | http://www.ocg2.hit.bg | http://sws.geonames.org/6459163/ | |
| "Kitasen"^^xsd:string | http://sws.geonames.org/2990129/ | ||
| "mike trayo"^^xsd:string | |||
| "Internal Mix"^^xsd:string | http://www.17sons.com/articles.php?lng=en&pg=279 | http://sws.geonames.org/2968815/ | |
| "Blastom"^^xsd:string | http://blastommusic.free.fr | http://sws.geonames.org/2990129/ | |
| "bbidouf"^^xsd:string | http://img.jamendo.com/artists/b/bbidouf.jpg | ||
| "Benoit"^^xsd:string | http://www.osmozweb.eu | http://sws.geonames.org/2991627/ | |
| "Gonzo Bizarro"^^xsd:string | |||
| "Lohmé"^^xsd:string | http://img.jamendo.com/artists/L/Lohme.jpg | file:///home/yves/jamendo/www.myspace.com/lohme | http://sws.geonames.org/2968815/ |
| "Ekat"^^xsd:string | http://sws.geonames.org/3017382/ | ||
| "lru"^^xsd:string | http://sws.geonames.org/2971071/ | ||
| "sergeant_erazor"^^xsd:string | |||
| "cb"^^xsd:string | |||
| "perversion"^^xsd:string | |||
| "Patrick Chergui"^^xsd:string | http://img.jamendo.com/artists/P/Patrick_Chergui.jpg | http://fr.myspace.com/patrickchergui | http://sws.geonames.org/2968815/ |
| "V-DEKA"^^xsd:string | |||
| "lim"^^xsd:string | |||
| "cristiano ferranti"^^xsd:string | http://www.myspace.com/cristianoferranti | http://sws.geonames.org/3169069/ | |
| "jjmm"^^xsd:string | http://sws.geonames.org/2510769/ | ||
| "portAlegre"^^xsd:string | http://www.portalegre.it | http://sws.geonames.org/3165523/ | |
| "Electric Rainbow"^^xsd:string | http://img.jamendo.com/artists/E/Electric_Rainbow.jpg | ||
| "Noïzefer CWU"^^xsd:string | |||
| "outdoor in the trashcan"^^xsd:string | http://img.jamendo.com/artists/o/outdoor_in_the_trashcan.jpg | http://sws.geonames.org/2782113/ | |
| "E.Th.Orkester"^^xsd:string | http://img.jamendo.com/artists/E/E.Th.Orkester.jpg | http://www.mp3.onlinemediaservice.de/ | http://sws.geonames.org/3213264/ |
| "VibraWave"^^xsd:string | http://img.jamendo.com/artists/V/VibraWave.jpg | http://www.myspace.com/vibrawave | http://sws.geonames.org/3337511/ |
| "Emorej"^^xsd:string | http://img.jamendo.com/artists/E/Emorej.jpg | http://www.myspace.com/emorej | http://sws.geonames.org/1694008/ |
| "Dj Mistery"^^xsd:string | |||
| "NEEDS"^^xsd:string | |||
| "Four Oceans"^^xsd:string | http://img.jamendo.com/artists/F/Four_Oceans.jpg | http://www.jamendo.com/en/artist/Four_Oceans/ | http://sws.geonames.org/2884161/ |
| "Feveria"^^xsd:string | http://img.jamendo.com/artists/F/Feveria.jpg | http://www.feveria.neostrada.pl | http://sws.geonames.org/798544/ |
| "Andrey"^^xsd:string | |||
| "d-alternative"^^xsd:string | file:///home/yves/jamendo/www.d-alternative.pl | http://sws.geonames.org/798544/ | |
| "Atlantis.Milos Pello"^^xsd:string | http://img.jamendo.com/artists/A/Atlantis.Milos_Pello.jpg | file:///home/yves/jamendo/www.atlantis-mp.blogspot.com | http://sws.geonames.org/3057568/ |
| "Noah Rankins"^^xsd:string | |||
| "RD15k"^^xsd:string | http://img.jamendo.com/artists/R/RD15k.jpg | http://myspace.com/rd15k | http://sws.geonames.org/3017382/ |
| "Return Of Doctor Mabuse"^^xsd:string | http://img.jamendo.com/artists/R/Return_Of_Doctor_Mabuse.jpg | file:///home/yves/jamendo/www.myspace.com/returnofdrmabuse | http://sws.geonames.org/3175395/ |
| "Pieresis"^^xsd:string | http://img.jamendo.com/artists/P/Pieresis.jpg | http://www.youtube.com/Pieresis | http://sws.geonames.org/3182350/ |
| "Vomitt"^^xsd:string | http://img.jamendo.com/artists/V/Vomitt.jpg | http://sws.geonames.org/798544/ | |
| "ELOQUENZ"^^xsd:string | http://img.jamendo.com/artists/E/ELOQUENZ_(2).jpg | http://myspace.com/eloquenz | http://sws.geonames.org/3213264/ |
| "iRieTEAM"^^xsd:string | http://img.jamendo.com/artists/i/iRieTEAM.jpg | ||
| "BruneoDJ"^^xsd:string | |||
| "sonata electra"^^xsd:string | http://img.jamendo.com/artists/s/sonata_electra.jpg | http://sonata-electra.skyrock.com/ | http://sws.geonames.org/3038422/ |
| "Indepanda"^^xsd:string | file:///home/yves/jamendo/www.myspace.com/indepanda | http://sws.geonames.org/6251999/ | |
| "Hacesol"^^xsd:string | http://sws.geonames.org/2960313/ | ||
| "Chris Bast"^^xsd:string | |||
| "Angelic Unknown"^^xsd:string | http://img.jamendo.com/artists/A/Angelic_Unknown.jpg | http://sws.geonames.org/6251999/ | |
| "Bad_Aux"^^xsd:string | http://sws.geonames.org/798544/ | ||
| "SPLED"^^xsd:string | http://spled.musicblog.fr | http://sws.geonames.org/3019316/ | |
| "Olivier Malherbe"^^xsd:string | |||
| "Black Out"^^xsd:string | http://img.jamendo.com/artists/B/Black_Out_(2).jpg | file:///home/yves/jamendo/www.black-out.net | http://sws.geonames.org/2968815/ |
| "SIRUS Francky"^^xsd:string | http://img.jamendo.com/artists/S/SIRUS_Francky.jpg | http://arpege.musicblog.fr | http://sws.geonames.org/3016670/ |
| "Demorganique"^^xsd:string | http://sws.geonames.org/3017382/ | ||
| "Ściana Wschodnia"^^xsd:string | http://img.jamendo.com/artists/S/Sciana_Wschodnia.jpg | http://www.myspace.com/scianawschodnia | http://sws.geonames.org/798544/ |
| "Delph' sans les pattes"^^xsd:string | http://dede-en-bulle.0rg.fr | http://sws.geonames.org/3034720/ | |
| "UM"^^xsd:string | http://img.jamendo.com/artists/U/UM.jpg | http://sws.geonames.org/3017382/ | |
| "viitinsh"^^xsd:string | |||
| "Huete"^^xsd:string | http://img.jamendo.com/artists/H/Huete.jpg | file:///home/yves/jamendo/Huete | http://sws.geonames.org/2510769/ |
| "ppp"^^xsd:string | |||
| "pyratek"^^xsd:string | |||
| "Giacomo Scudellari & Band"^^xsd:string | http://sws.geonames.org/3169560/ | ||
| "Under The Table"^^xsd:string | http://sws.geonames.org/798544/ | ||
| "Messi'le"^^xsd:string | |||
| "Vasilis Samaras"^^xsd:string | http://www.myspace.com/Sam_from_Faltsaband | http://sws.geonames.org/390903/ | |
| "EXPREZOO"^^xsd:string | file:///home/yves/jamendo/www.exprezoo.com | http://sws.geonames.org/3175395/ | |
| "Vodny"^^xsd:string | |||
| "Lonely Planet Boy 1969"^^xsd:string | http://img.jamendo.com/artists/L/Lonely_Planet_Boy_1969.jpg | http://www.myspace.cn/1969lpb | http://sws.geonames.org/1794299/ |
| "Umkra"^^xsd:string | http://dfriche-tg.org/marasm/umkra/umkra.htm | http://sws.geonames.org/2971071/ | |
| "First"^^xsd:string | http://img.jamendo.com/artists/F/First.jpg | http://firstband.altervista.org | http://sws.geonames.org/3175395/ |
| "MannO by Rci-represente2 Max heros"^^xsd:string | |||
| "Jamendo 4 the World"^^xsd:string | |||
| "jean88210"^^xsd:string | file:///home/yves/jamendo/jean-marcgoudsmedt.com | http://sws.geonames.org/2967681/ | |
| "Cris"^^xsd:string | |||
| "Circles"^^xsd:string | http://sws.geonames.org/6557769/ | ||
| "SlogaN"^^xsd:string | http://img.jamendo.com/artists/S/SlogaN.jpg | file:///home/yves/jamendo/www.myspace.com/slogangroupe | http://sws.geonames.org/2997524/ |
| "Stellar Vector"^^xsd:string | http://img.jamendo.com/artists/S/Stellar_Vector.jpg | http://www.stellarvector.com | http://sws.geonames.org/6252001/ |
| "Dj Hypno"^^xsd:string | http://www.myspace.com/ludovicdjhypno | http://sws.geonames.org/3019599/ | |
| "PILL"^^xsd:string | http://www.fiberonline.com.br/pill | http://sws.geonames.org/3469034/ | |
| "Kari Mahdendal"^^xsd:string | |||
| "Ecnelis"^^xsd:string | http://sws.geonames.org/798544/ | ||
| "Rhythmdesigns"^^xsd:string | |||
| "iX"^^xsd:string | http://ix.vingava.cc | ||
| "Ici vous etes un touriste"^^xsd:string | http://www.iveut.com | http://sws.geonames.org/3013767/ | |
| "Degiheugi"^^xsd:string | http://img.jamendo.com/artists/D/Degiheugi.jpg | http://www.myspace.com/degiheugi | http://sws.geonames.org/2994932/ |
| "Mudit Sood"^^xsd:string | http://img.jamendo.com/artists/M/Mudit_Sood_(2).jpg | file:///home/yves/jamendo/www.smgtheband.blogspot.com | http://sws.geonames.org/1269750/ |
| "Mili"^^xsd:string | http://lemodi.com | http://sws.geonames.org/2984986/ | |
| "edgar"^^xsd:string | |||
| "Delectable Mosquito and the radioactive dreams"^^xsd:string | http://img.jamendo.com/artists/D/Delectable_Mosquito_and_the_radioactive_dreams.jpg | http://www.myspace.com/delectablemosquitoandtheradioactivedreams | http://sws.geonames.org/3213264/ |
| "Oniric"^^xsd:string | http://music.download.com/oniric | http://sws.geonames.org/2968815/ | |
| "GOTARD"^^xsd:string | http://img.jamendo.com/artists/G/GOTARD.jpg | file:///home/yves/jamendo/www.streemo.pl/GOTARD | http://sws.geonames.org/798544/ |
| "Suchtmaschine"^^xsd:string | http://img.jamendo.com/artists/S/Suchtmaschine.jpg | http://sws.geonames.org/3213264/ | |
| "BOCA FLOJA"^^xsd:string | |||
| "monstrum sanitus albus"^^xsd:string | http://sws.geonames.org/2017370/ | ||
| "my first latex dream"^^xsd:string | http://sws.geonames.org/798544/ | ||
| "Mathos"^^xsd:string | |||
| "horelles"^^xsd:string | http://img.jamendo.com/artists/h/horelles.jpg | http://horelles.free.fr/ | http://sws.geonames.org/3017382/ |
| "CyberKnife Rec."^^xsd:string | file:///home/yves/jamendo/www.industrialmove.org | http://sws.geonames.org/3175395/ | |
| "New world "^^xsd:string | http://img.jamendo.com/artists/N/New_world_(2).jpg | file:///home/yves/jamendo/www.dj-fab.net | http://sws.geonames.org/3017382/ |
| "The Poetize Code"^^xsd:string | http://img.jamendo.com/artists/T/The_Poetize_Code.jpg | http://www.myspace.com/poetizecode | http://sws.geonames.org/3469034/ |
| "Every Day"^^xsd:string | http://sws.geonames.org/3213264/ | ||
| "Beder K."^^xsd:string | |||
| "ARTIK (From The Next Label)"^^xsd:string | http://img.jamendo.com/artists/A/ARTIK.jpg | file:///home/yves/jamendo/www.myspace.com/artikwhy | http://sws.geonames.org/3019599/ |
| "dj PJ"^^xsd:string | |||
| "Akungba"^^xsd:string | |||
| "Don Vito"^^xsd:string | |||
| "Evil Inside"^^xsd:string | http://img.jamendo.com/artists/E/Evil_Inside.jpg | http://www.danielbautista.com | http://sws.geonames.org/2515271/ |
| "# NUTSHELL #"^^xsd:string | http://img.jamendo.com/artists/N/NUTSHELL.jpg | file:///home/yves/jamendo/www.nutshell.cba.pl | http://sws.geonames.org/798544/ |
| "Philippe STANO"^^xsd:string | http://img.jamendo.com/artists/P/Philippe_STANO.jpg | http://www.graphical-dream.com | http://sws.geonames.org/3017382/ |
| "Breeding Sonic Waves"^^xsd:string | http://img.jamendo.com/artists/B/Breeding_Sonic_Waves_(2).jpg | http://myspace.com/breedingsonicwaves | http://sws.geonames.org/2264397/ |
| "Lumpen"^^xsd:string | file:///home/yves/jamendo/www.lumpen.com.br | http://sws.geonames.org/3469034/ | |
| "DALLAZ WASH"^^xsd:string | |||
| "Dj KK7"^^xsd:string | http://img.jamendo.com/artists/D/Dj_KK7.jpg | ||
| "Detritis"^^xsd:string | http://sws.geonames.org/2802361/ | ||
| "Screw-Jay"^^xsd:string | http://img.jamendo.com/artists/S/Screw-Jay.jpg | http://www.screw-jay.com/ | http://sws.geonames.org/719819/ |
| "thEE L-OV-EE komando"^^xsd:string | |||
| "Homecoming Kings"^^xsd:string | http://img.jamendo.com/artists/H/Homecoming_Kings.jpg | http://www.homecomingkings.de | http://sws.geonames.org/2921044/ |
| "Fenrir"^^xsd:string | http://sws.geonames.org/2994111/ | ||
| "before tanen"^^xsd:string | file:///home/yves/jamendo/www.beforetanen.fr | http://sws.geonames.org/3018471/ | |
| "MANICURE"^^xsd:string | file:///home/yves/jamendo/www.manicureband.com | http://sws.geonames.org/798544/ | |
| "Griever"^^xsd:string | |||
| "Chemical DJ"^^xsd:string | |||
| "Marcus Rasseli"^^xsd:string | |||
| "Mind Split Effect"^^xsd:string | http://img.jamendo.com/artists/M/Mind_Split_Effect.jpg | http://www.mindspliteffect.tk | http://sws.geonames.org/3019599/ |
| "Fünf Freunde"^^xsd:string | |||
| "Veils of Perception"^^xsd:string | http://www.veilsofperception.com | http://sws.geonames.org/3013500/ | |
| "! M U H ?"^^xsd:string | |||
| "Calma Niño"^^xsd:string | |||
| "linfa"^^xsd:string | http://img.jamendo.com/artists/l/linfa.jpg | file:///home/yves/jamendo/www.myspace.com/linfaweb | http://sws.geonames.org/3173330/ |
| "musik zum duschen"^^xsd:string | http://img.jamendo.com/artists/m/musik_zum_duschen.jpg | file:///home/yves/jamendo/www.motobol.de | http://sws.geonames.org/2782113/ |
| "Inthecisos"^^xsd:string | |||
| "rydel"^^xsd:string | http://img.jamendo.com/artists/r/rydel.jpg | ||
| "Split"^^xsd:string | http://img.jamendo.com/artists/s/split_(2).jpg | http://www.tripwire.in/ | |
| "Rainvan"^^xsd:string | http://sws.geonames.org/1269750/ | ||
| "hi.mo"^^xsd:string | http://img.jamendo.com/artists/h/hi.mo.jpg | file:///home/yves/jamendo/www.myspace.com/highmode | http://sws.geonames.org/3165071/ |
| "BAJi-Productions"^^xsd:string | http://img.jamendo.com/artists/B/BAJi-Productions.jpg | ||
| "Henk"^^xsd:string | http://www.stardust-lyrics.de/stardust/home.html | http://sws.geonames.org/2884161/ | |
| "KARLO Kostic Lazar"^^xsd:string | http://img.jamendo.com/artists/K/KARLO_Kostic_Lazar.jpg | file:///home/yves/jamendo/www.freewebs.com/lazarkostic | http://sws.geonames.org/6251999/ |
| "Drôle de Drone"^^xsd:string | http://sws.geonames.org/2997524/ | ||
| "B.L.A.C.K jo"^^xsd:string | |||
| "Don Vincenzoo"^^xsd:string | http://img.jamendo.com/artists/D/Don_Vincenzoo.jpg | http://sws.geonames.org/2991627/ | |
| "Funambule"^^xsd:string | |||
| "Monsieur Sainton"^^xsd:string | http://www.myspace.com/tetproduction | http://sws.geonames.org/3031359/ | |
| "adl"^^xsd:string | |||
| "Deka"^^xsd:string | |||
| "Morphee Dereves"^^xsd:string | http://img.jamendo.com/artists/M/Morphee_Dereves.jpg | http://myspace.com/lescavistes | http://sws.geonames.org/2975249/ |
| "Dona Odete"^^xsd:string | |||
| "Baylicrew"^^xsd:string | |||
| "Belenteja"^^xsd:string | http://sws.geonames.org/6356991/ | ||
| "Piano Man"^^xsd:string | |||
| "Andrés P. Estrada"^^xsd:string | http://img.jamendo.com/artists/A/Andres_P._Estrada.jpg | http://sws.geonames.org/3865483/ | |
| "Crench"^^xsd:string | |||
| "Fanatik Harderstyles Krew"^^xsd:string | |||
| "Francis Barault"^^xsd:string | http://img.jamendo.com/artists/f/francis.barault.jpg | http://pas de site web/ | http://sws.geonames.org/2971071/ |
| "Ellissi nel Cerchio"^^xsd:string | http://img.jamendo.com/artists/e/ellissinelcerchio.jpg | http://www.ellissinelcerchio.net | http://sws.geonames.org/3173434/ |
| "MaelStröM"^^xsd:string | http://img.jamendo.com/artists/m/maelstrom.jpg | http://msm63.free.fr | http://sws.geonames.org/2997861/ |
| "kosvocore"^^xsd:string | http://img.jamendo.com/artists/k/kosvocore.jpg | http://kosvocore.asso.in | http://sws.geonames.org/2995603/ |
| "El Deyma"^^xsd:string | http://img.jamendo.com/artists/e/eldeyma.jpg | http://www.eldeyma.com | http://sws.geonames.org/3034720/ |
| "Robert Izard"^^xsd:string | http://img.jamendo.com/artists/r/robert.izard.jpg | http://robertmusique.hautetfort.com | http://sws.geonames.org/2984885/ |
| "Raven Crown"^^xsd:string | http://img.jamendo.com/artists/r/raven.crown.gif | http://www.burnog.com/raven_crown/ | http://sws.geonames.org/3038111/ |
| "kaceo"^^xsd:string | http://img.jamendo.com/artists/k/kaceo.jpg | http://www.kaceo.fr/ | http://sws.geonames.org/2989663/ |
| "Eology"^^xsd:string | http://img.jamendo.com/artists/e/eology.jpg | http://eology.free.fr | http://sws.geonames.org/2990129/ |
| "mandragor"^^xsd:string | http://img.jamendo.com/artists/m/mandragor.jpg | http://mandragor.e.free.fr/ | http://sws.geonames.org/2997861/ |
| "Whiteyes"^^xsd:string | http://img.jamendo.com/artists/w/whiteyes.png | http://whiteyes.1s.fr | http://sws.geonames.org/2997861/ |
| "Simon & Simone"^^xsd:string | http://img.jamendo.com/artists/l/lport.jpg | http://www.simonetsimone.fr | http://sws.geonames.org/3013767/ |
| "Phonethnics"^^xsd:string | http://img.jamendo.com/artists/p/phonethnics.jpg | http://phonethnics.free.fr | http://sws.geonames.org/2971071/ |
| "Lukas Prest!"^^xsd:string | http://img.jamendo.com/artists/l/lukasprest.png | http://www.mundurat.net/lukasprest | http://sws.geonames.org/3371123/ |
| "Heres"^^xsd:string | http://img.jamendo.com/artists/h/heres.jpg | http://www.heres-music.com | http://sws.geonames.org/2968815/ |
| "narcoz"^^xsd:string | http://img.jamendo.com/artists/n/narcoz.jpg | http://narcoz.skyblog.com | http://sws.geonames.org/2973362/ |
| "Ludo Marteau"^^xsd:string | http://img.jamendo.com/artists/m/marteau.ludovic.jpg | http://aucun | http://sws.geonames.org/2969280/ |
| "HGJ13/7e"^^xsd:string | http://img.jamendo.com/artists/h/hgj13.7e.jpg | http://www.hgj13.net | http://sws.geonames.org/6556330/ |
| "Jules"^^xsd:string | http://img.jamendo.com/artists/j/jules.jpg | http://blog.myspace.com/lazik2ju | http://sws.geonames.org/3012715/ |
| "Elkysia"^^xsd:string | http://img.jamendo.com/artists/e/elkysia.jpg | http://www.elkysia.org/ | http://sws.geonames.org/2997861/ |
| "LeuRre"^^xsd:string | http://img.jamendo.com/artists/l/leurre.jpg | http://www.myspace.com/leurre95 | http://sws.geonames.org/2971071/ |
| "darkmoon project"^^xsd:string | http://img.jamendo.com/artists/d/darkmoon.project.png | http://darkmoonproject.free.fr/ | http://sws.geonames.org/2968815/ |
| "atohm"^^xsd:string | http://img.jamendo.com/artists/a/atohm.jpg | http://www.atohm.free.fr | http://sws.geonames.org/2975249/ |
| "mes chansons chaussent du 24"^^xsd:string | http://img.jamendo.com/artists/m/mes.chansons.chaussent.du.24.jpg | http://ichantent.free.fr | http://sws.geonames.org/2994111/ |
| "No Más - La Banda"^^xsd:string | http://img.jamendo.com/artists/n/nomas-labanda.gif | http://www.no-mas.fr | http://sws.geonames.org/3012715/ |
| "NoNoetJunKy"^^xsd:string | http://img.jamendo.com/artists/n/nonoetjunky.jpg | http://nonoetjunky.free.fr/ | http://sws.geonames.org/3015948/ |
| "a broken moment"^^xsd:string | http://img.jamendo.com/artists/a/a.broken.moment.jpg | http://www.abrokenmoment.tk | http://sws.geonames.org/2967222/ |
| "Mike Rix"^^xsd:string | http://img.jamendo.com/artists/t/tv.od.jpg | http://--- | http://sws.geonames.org/2750405/ |
| "jet"^^xsd:string | http://img.jamendo.com/artists/j/jet.png | http://home.arcor.de/herr.lang/index.html | http://sws.geonames.org/6556330/ |
| "Gros Con Banal"^^xsd:string | http://img.jamendo.com/artists/g/gros.con.banal.jpg | http://www.yuriversaal.ht.cx | http://sws.geonames.org/2968815/ |
| "Da Klönschnack"^^xsd:string | http://img.jamendo.com/artists/d/dakloenschnack.gif | http://knoppaz.de | http://sws.geonames.org/2921044/ |
| "Drugged Killer"^^xsd:string | http://img.jamendo.com/artists/d/drugged.killer.gif | http://www.justonefixrecords.com | http://sws.geonames.org/6252001/ |
| "Atriplex"^^xsd:string | http://img.jamendo.com/artists/a/atriplex.jpg | http://slumbertone.awardspace.com/ | http://sws.geonames.org/2077456/ |
| "Eric Raillard"^^xsd:string | http://img.jamendo.com/artists/e/eric.raillard.png | http://eric.raillard.free.fr/ | http://sws.geonames.org/1699807/ |
| "Porno Diva"^^xsd:string | http://img.jamendo.com/artists/p/porno.diva.jpg | http://sws.geonames.org/3020989/ | |
| "stefuck"^^xsd:string | http://img.jamendo.com/artists/s/stefuck.jpg | http://stefuck.free.fr | http://sws.geonames.org/2968815/ |
| "askeladd"^^xsd:string | http://img.jamendo.com/artists/a/askeladd.gif | http://membres.lycos.fr/askeladd/ | http://sws.geonames.org/2968815/ |
| "Mi Rara Coleccion"^^xsd:string | http://img.jamendo.com/artists/m/mrc.gif | http://www.miraracoleccion.com/ | http://sws.geonames.org/2510910/ |
| "Gregcoccetta"^^xsd:string | http://img.jamendo.com/artists/g/gregcoccetta.png | http://gregcoccetta.free.fr/ | http://sws.geonames.org/2975517/ |
| "KantIk"^^xsd:string | http://img.jamendo.com/artists/k/kantik.jpg | http://www.myspace.com/kantik | http://sws.geonames.org/2968815/ |
| "kaim"^^xsd:string | http://img.jamendo.com/artists/k/kaim.jpg | http://kaimh.blogspot.com | http://sws.geonames.org/2968815/ |
| "Lzn02"^^xsd:string | http://img.jamendo.com/artists/l/lzn02.jpg | http://myspace.com/Lzn02music | http://sws.geonames.org/3016670/ |
| "Kemiso"^^xsd:string | http://img.jamendo.com/artists/k/kemiso.png | http://www.kemiso.com | http://sws.geonames.org/3031359/ |
| "RAZCHILAF"^^xsd:string | http://img.jamendo.com/artists/r/razchilaf.jpg | http://www.razchilaf.com | http://sws.geonames.org/3895114/ |
| "Damaged Gods"^^xsd:string | http://img.jamendo.com/artists/d/damaged.gods.jpg | http://homepage.ntlworld.com/tessa.corner1/AzizA-Music.html | |
| "nocreeps"^^xsd:string | http://img.jamendo.com/artists/n/nocreeps.jpg | http://www.nocreeps.de | http://sws.geonames.org/3209442/ |
| "djFRk"^^xsd:string | http://img.jamendo.com/artists/d/djfrk.jpg | http://www.myspace.com/djfrk42 | http://sws.geonames.org/2997870/ |
| "DJ.Qantum and DJ Big Beef"^^xsd:string | http://sws.geonames.org/6252001/ | ||
| "Electroconsept"^^xsd:string | http://img.jamendo.com/artists/e/electroconsept1.jpg | http://www.electroconsept.izihost.com/ | http://sws.geonames.org/2987410/ |
| "Black Venus"^^xsd:string | http://img.jamendo.com/artists/b/black.venus.gif | http://www.myspace.com/blackvenusmusic | http://sws.geonames.org/3021042/ |
| "Zaaland"^^xsd:string | http://img.jamendo.com/artists/z/zaaland.jpg | http://sws.geonames.org/2968815/ | |
| "eiohaki"^^xsd:string | http://img.jamendo.com/artists/e/eiohaki.jpg | http://www.eiohaki.blogspot.com | http://sws.geonames.org/3013657/ |
| "Minch in the From"^^xsd:string | http://img.jamendo.com/artists/m/minch.in.the.from.jpg | http://minchinthefrom.free.fr | http://sws.geonames.org/3015948/ |
| "Syd_Sax"^^xsd:string | http://img.jamendo.com/artists/s/syd.sax.jpg | http://www.sidneysacchi.net | http://sws.geonames.org/3172391/ |
| "thierry blanchard"^^xsd:string | http://img.jamendo.com/artists/t/thierry.blanchard.jpg | http://www.thierryblanchard.com | http://sws.geonames.org/2971090/ |
| "ELECTRONIC WORLD"^^xsd:string | http://img.jamendo.com/artists/e/electronic.world.jpg | http://electronicworld.hautetfort.com | http://sws.geonames.org/3013736/ |
| "CNNP"^^xsd:string | http://img.jamendo.com/artists/c/cnnp.png | http://marie-claire.choplair.org/?page=cnnp | http://sws.geonames.org/3013767/ |
| "Les Looz' Brothers"^^xsd:string | http://img.jamendo.com/artists/l/les.looz.brothers.jpg | http://inoxmetal.onlc.fr/ | http://sws.geonames.org/3007866/ |
| "xa"^^xsd:string | http://www.myspace.com/126364495 | http://sws.geonames.org/3017382/ | |
| "La Partie du Cerveau"^^xsd:string | http://img.jamendo.com/artists/l/la.partie.du.cerveau.jpg | http://www.sycomor.net/cerveau | http://sws.geonames.org/3017382/ |
| "Josselin"^^xsd:string | http://img.jamendo.com/artists/j/josselincommeonestloin.jpg | http://josselin.hautetfort.com | http://sws.geonames.org/3023423/ |
| "Acid Skunp"^^xsd:string | http://img.jamendo.com/artists/a/acid.skunp.png | http://www.tomatoesattack.org | http://sws.geonames.org/2970749/ |
| "SmoKing AFter"^^xsd:string | http://img.jamendo.com/artists/s/smoking.after.gif | http://www.smoking-after.com | http://sws.geonames.org/2968815/ |
| "CAEROU"^^xsd:string | http://img.jamendo.com/artists/c/caerou.jpg | http://caerou.free.fr/ | http://sws.geonames.org/3019599/ |
| "Pobl"^^xsd:string | http://img.jamendo.com/artists/p/pobl.jpg | http://www.pobl.info | http://sws.geonames.org/2750405/ |
| "Chatougri"^^xsd:string | http://img.jamendo.com/artists/c/chatougri.jpg | http://www.chatougri.com | http://sws.geonames.org/3012849/ |
| "Kenneth"^^xsd:string | http://img.jamendo.com/artists/k/kenneth.jpg | http://www.walkyriesmusic.com | http://sws.geonames.org/3013736/ |
| "Laura LiiS"^^xsd:string | http://img.jamendo.com/artists/l/laura.liis.jpg | http://www.liis.biz | http://sws.geonames.org/2968815/ |
| "The Orientalist"^^xsd:string | http://img.jamendo.com/artists/t/the.orientalist.jpg | http://freshpoulp.net/artists/the-orientalist.htm | http://sws.geonames.org/3017382/ |
| "e:o:nity"^^xsd:string | http://img.jamendo.com/artists/e/eonity.jpg | http://www.eonity.info/ | http://sws.geonames.org/3213264/ |
| "mc@b"^^xsd:string | http://img.jamendo.com/artists/m/mc.b.jpg | http://componewmusic.hautetfort.com | http://sws.geonames.org/3026644/ |
| "Aeron - rudolphe.michau@gmail.com"^^xsd:string | http://img.jamendo.com/artists/a/aeron.jpg | http://rudolphe.michau@gmail.com | http://sws.geonames.org/2968815/ |
| "Soulelec"^^xsd:string | http://img.jamendo.com/artists/s/soulelec.jpg | http://www.soulaya.be/soulelec | http://sws.geonames.org/2802361/ |
| "FOXAPET"^^xsd:string | http://foxapet.fr | http://sws.geonames.org/2975249/ | |
| "Wacky's Piazzo-Bunker"^^xsd:string | http://sws.geonames.org/3017382/ | ||
| "Pascalb"^^xsd:string | http://img.jamendo.com/artists/p/pascalb.jpg | http://www.myspace.com/pascalbhome | http://sws.geonames.org/3036420/ |
| "Emma PSYCHE"^^xsd:string | http://img.jamendo.com/artists/e/emmapsyche.jpg | http://emmapsyche.com | http://sws.geonames.org/2968815/ |
| "Maneros productions"^^xsd:string | http://img.jamendo.com/artists/m/maneros.productions.gif | http://www.myspace.com/maneros | http://sws.geonames.org/2139685/ |
| "benjamin moreau"^^xsd:string | http://img.jamendo.com/artists/b/benjaminmoreau.jpg | http://www.benjaminmoreau.com | http://sws.geonames.org/3012804/ |
| "cyborgjeff"^^xsd:string | http://img.jamendo.com/artists/c/cyborgjeff.jpg | http://www.cyborgjeff.com | http://sws.geonames.org/2802361/ |
| "Warforge"^^xsd:string | http://img.jamendo.com/artists/w/warforge.jpg | http://www.Warforge.net | http://sws.geonames.org/3213264/ |
| "kapadnoms"^^xsd:string | http://img.jamendo.com/artists/k/kapadnoms.jpg | http://pas encore dispo pour le moment/ | http://sws.geonames.org/2975246/ |
| "4Midges"^^xsd:string | http://img.jamendo.com/artists/4/4midges.jpg | http://www.4midges.net | http://sws.geonames.org/2990129/ |
| "Eveil"^^xsd:string | http://img.jamendo.com/artists/e/eveil.jpg | http://jeanphilippe.chataux.free.fr/ | http://sws.geonames.org/3019599/ |
| "Richard Z"^^xsd:string | http://img.jamendo.com/artists/r/richard.z.jpg | http://perso.wanadoo.fr/richard.serene/richard_z.htm | http://sws.geonames.org/2996663/ |
| "SouthSide"^^xsd:string | http://img.jamendo.com/artists/s/southside.jpg | http://www.myspace.com/southsidespace | http://sws.geonames.org/2984887/ |
| "kaapad"^^xsd:string | http://img.jamendo.com/artists/k/kaapad.png | http://www.myspace.com/kaapad | http://sws.geonames.org/2975248/ |
| "LarG Productions"^^xsd:string | http://img.jamendo.com/artists/l/larg.productions.jpg | http://www.largproductions.com | http://sws.geonames.org/6251999/ |
| "After Infinity (FRLacoustics)"^^xsd:string | http://img.jamendo.com/artists/a/afterinfinity.jpg | http://www.afterinfinitysessions.com | http://sws.geonames.org/3023532/ |
| "mikalabre06"^^xsd:string | http://img.jamendo.com/artists/m/mikalabre06.jpg | http://www.mikeul.com | http://sws.geonames.org/3038049/ |
| "Pompougnac Daniel"^^xsd:string | http://img.jamendo.com/artists/p/pompougnac.daniel.jpg | http://www.pompougnac-daniel.com | http://sws.geonames.org/3015948/ |
| "natlyea"^^xsd:string | http://img.jamendo.com/artists/n/natlyea.jpg | http://www.natlyea.tk | http://sws.geonames.org/3213264/ |
| "BUFFET FROID"^^xsd:string | http://www.buffetfroid.org | http://sws.geonames.org/3424932/ | |
| "Die drei Lenöre"^^xsd:string | http://img.jamendo.com/artists/d/die.drei.lenoere.jpg | http://www.lenoere.de | http://sws.geonames.org/3209442/ |
| "AL MA"^^xsd:string | http://img.jamendo.com/artists/a/al.ma.jpg | http://mamusique.hautetfort.com | http://sws.geonames.org/3012849/ |
| "Michele Wylen"^^xsd:string | http://img.jamendo.com/artists/m/michele.wylen.jpg | http://www.michelewylen.com | http://sws.geonames.org/6252001/ |
| "nkoemcee"^^xsd:string | http://img.jamendo.com/artists/n/nkoemcee.jpg | http://www.sindominio.net/adolflow/retales/nko_souchi_bboycoleando/ | http://sws.geonames.org/6355233/ |
| "Eftos"^^xsd:string | http://img.jamendo.com/artists/e/eftos.jpg | http://www.eftos.de | http://sws.geonames.org/6556330/ |
| "The incrediBle BuBBle Band"^^xsd:string | http://img.jamendo.com/artists/t/theibb.jpg | http://incrediblebubbleband.free.fr | http://sws.geonames.org/2976082/ |
| "Greater Boston Visionary Outpost"^^xsd:string | http://img.jamendo.com/artists/g/greater.boston.visionary.outpost.jpg | http://gbvo.iwarp.com/index_1.html | http://sws.geonames.org/6252001/ |
| "Maschina"^^xsd:string | http://www.myspace.com/maschinamusic | http://sws.geonames.org/3029094/ | |
| "Aured Hayet Duo (FRLacoustics)"^^xsd:string | http://img.jamendo.com/artists/a/auredhayetduo.jpg | http://sws.geonames.org/2984887/ | |
| "THE ATHLETES"^^xsd:string | http://img.jamendo.com/artists/t/the.athletes.jpg | http://HTTP://WWW.MYSPACE.COM/WORLDFAMOUSENT | http://sws.geonames.org/6252001/ |
| "sunset blvd"^^xsd:string | http://img.jamendo.com/artists/s/sunsetblvd.jpg | http://www.myspace.com/yeahsunsetblvd | http://sws.geonames.org/3164526/ |
| "Sara Lisa"^^xsd:string | http://img.jamendo.com/artists/s/sara.lisa.jpg | http://En construction.../ | http://sws.geonames.org/3038049/ |
| "guarapita"^^xsd:string | http://guarapita.net | http://sws.geonames.org/2971071/ | |
| "DJ Overdrive J.R."^^xsd:string | http://img.jamendo.com/artists/d/dj.overdrive.j.r.jpg | http://sws.geonames.org/2975248/ | |
| "aliencrime"^^xsd:string | http://img.jamendo.com/artists/a/aliencrime.jpg | http://www.aliencrime.blogspot.com | http://sws.geonames.org/3169069/ |
| "rozbit"^^xsd:string | http://img.jamendo.com/artists/r/rozbit.jpg | http://rozbit.com | http://sws.geonames.org/798544/ |
| "Guillaume"^^xsd:string | http://img.jamendo.com/artists/g/guillaume.jpg | http://perso.orange.fr/momo-compo/ | http://sws.geonames.org/2975248/ |
| "Oscar Fynn Rove"^^xsd:string | http://img.jamendo.com/artists/o/oscar.fynn.rove.gif | http://oscarfynnrove.hautetfort.com/ | http://sws.geonames.org/2968815/ |
| "pamela pril"^^xsd:string | http://img.jamendo.com/artists/p/pamela.pril.jpg | http://pamelapril.over-blog.com/ | http://sws.geonames.org/3034720/ |
| "osaeris"^^xsd:string | http://img.jamendo.com/artists/o/osaeris.gif | http://www.osaeris.com | |
| "ARMED"^^xsd:string | http://img.jamendo.com/artists/a/armed.jpg | http://armed.free.bg | http://sws.geonames.org/6459159/ |
| "Giac & Juan"^^xsd:string | http://img.jamendo.com/artists/g/giac.juan.jpg | http://giacjuan.blogspot.com/ | http://sws.geonames.org/2991627/ |
| "acrobat live"^^xsd:string | http://img.jamendo.com/artists/a/acrobat.gif | http://www.lecoinsono.com | http://sws.geonames.org/2991879/ |
| "Ancient Animals"^^xsd:string | http://img.jamendo.com/artists/a/ancient.animals.jpg | http://sws.geonames.org/3035691/ | |
| "Sylvain Piron"^^xsd:string | http://www.tradfrance.com | http://sws.geonames.org/3034720/ | |
| "Reféns da Cidade"^^xsd:string | http://img.jamendo.com/artists/r/refensdacidade.jpg | http://sws.geonames.org/3469034/ | |
| "Anamnesia"^^xsd:string | http://img.jamendo.com/artists/a/anamnesia1.jpg | http://anamnesia.free.fr | http://sws.geonames.org/2994111/ |
| "MontesProject"^^xsd:string | http://img.jamendo.com/artists/m/montesproject.jpg | http://montesproject.iespana.es | http://sws.geonames.org/2515271/ |
| "Désraison"^^xsd:string | http://desraison.free.fr | http://sws.geonames.org/2994111/ | |
| "ECTOPIC"^^xsd:string | http://img.jamendo.com/artists/e/ectopic.png | http://www.myspace.com/ectopicmusic | http://sws.geonames.org/3012849/ |
| "Eclectronic"^^xsd:string | http://img.jamendo.com/artists/e/eclectronic.jpg | http://billyx.blogspot.com | http://sws.geonames.org/2968815/ |
| "Acrotek"^^xsd:string | http://img.jamendo.com/artists/a/acrotek.jpg | http://www.acrotek.org/ | http://sws.geonames.org/2984986/ |
| "The Helldorados"^^xsd:string | http://img.jamendo.com/artists/h/helldorados.jpg | http://www.helldorados.de | http://sws.geonames.org/2921044/ |
| "YAM"^^xsd:string | http://img.jamendo.com/artists/y/yam.jpg | http://yamstaff.nuxit.net | http://sws.geonames.org/3015948/ |
| "Zywiolak"^^xsd:string | http://img.jamendo.com/artists/z/zywiolak.jpg | http://www.zywiolak.pl | http://sws.geonames.org/798544/ |
| "Rest ô Pont"^^xsd:string | http://img.jamendo.com/artists/r/restopont.jpg | http://sws.geonames.org/3020989/ | |
| "Whiteshoulders"^^xsd:string | http://img.jamendo.com/artists/w/white-shoulders.jpg | http://blackshoulders.hautetfort.com/ | http://sws.geonames.org/3019599/ |
| "Bruce H. McCosar"^^xsd:string | http://img.jamendo.com/artists/b/bruce.h.mccosar.png | http://bmccosar.wordpress.com/ | http://sws.geonames.org/6252001/ |
| "[...]"^^xsd:string | http://img.jamendo.com/artists/p/pointpointpoint.gif | http://pointpointpoint.free.fr | http://sws.geonames.org/2996663/ |
| "Bolchoï"^^xsd:string | http://img.jamendo.com/artists/b/bolchoi.jpg | http://bolchoi.propagande.org | http://sws.geonames.org/3013767/ |
| "Electro-Smog"^^xsd:string | http://img.jamendo.com/artists/e/electro-smog.jamendo.net.jpg | http://www.electro-smog.elf88.de | http://sws.geonames.org/2884161/ |
| "Turno de tarde"^^xsd:string | http://img.jamendo.com/artists/t/turnodetarde.jpg | http://turnodetarde.weboficial.com | http://sws.geonames.org/3104469/ |
| "O.S.A. & DJ cOŚtAm Project"^^xsd:string | http://img.jamendo.com/artists/d/djcostam.jpg | http://myspace.com/djcostam | http://sws.geonames.org/798544/ |
| "scal.g"^^xsd:string | http://img.jamendo.com/artists/s/scal.g.jpg | http://wahscal.blogspot.com/ | http://sws.geonames.org/2997523/ |
| "BENDUB"^^xsd:string | http://img.jamendo.com/artists/b/bendub.jpg | http://www.myspace.com/bendubs | http://sws.geonames.org/2968815/ |
| "Yoas Project"^^xsd:string | http://img.jamendo.com/artists/y/yoas.project.png | http://www.labuenanoticia.com/?q=node/639 | http://sws.geonames.org/2510769/ |
| "MOONDARK PROJECT"^^xsd:string | http://img.jamendo.com/artists/m/moondark.project.jpg | http://www.jamendo.com/fr/artist/moondark.project/admin/?edit=artist_infos | http://sws.geonames.org/3037147/ |
| "Monsieur Madame"^^xsd:string | http://img.jamendo.com/artists/m/monsieurmadame.jpg | http://monsieurmadame.reshape-music.com | http://sws.geonames.org/2968815/ |
| "CIACIA"^^xsd:string | http://img.jamendo.com/artists/c/ciacia.jpg | http://www.ciacialand.com | http://sws.geonames.org/2997861/ |
| "I Bonola"^^xsd:string | http://sws.geonames.org/3173434/ | ||
| "Kangaroo MusiQue"^^xsd:string | http://img.jamendo.com/artists/k/kangaroo.musique.gif | http://www.kangaroo.cmo.de | http://sws.geonames.org/3209442/ |
| "malorie"^^xsd:string | http://img.jamendo.com/artists/m/malorie.jpg | http://www.myspace.com/maloriefr | http://sws.geonames.org/2967196/ |
| "MAGWAMAN RIDDIM SECTION"^^xsd:string | http://img.jamendo.com/artists/m/magwaman.riddim.section.jpg | http://myspace.com/magwaman | http://sws.geonames.org/2984986/ |
| "Oui, Phi"^^xsd:string | http://img.jamendo.com/artists/o/oui.phi.jpg | http://ouiphi.club.fr | http://sws.geonames.org/3012715/ |
| "Frozen Silence"^^xsd:string | http://img.jamendo.com/artists/f/frozen.silence.jpg | http://www.mikseri.net/frozensilence | http://sws.geonames.org/660013/ |
| "Le Collectif Unifié de la Crécelle"^^xsd:string | http://img.jamendo.com/artists/l/le.collectif.unifie.de.la.crecelle.jpg | http://lacrecelle.free.fr | http://sws.geonames.org/2971090/ |
| "Robson, Sax, Garritt & Goodheart"^^xsd:string | http://img.jamendo.com/artists/r/robson.sax.garritt.goodheart.jpg | http://rsgginblog.wordpress.com | http://sws.geonames.org/3172391/ |
| "Street spirit"^^xsd:string | http://img.jamendo.com/artists/z/zaxxxx.jpg | http://sws.geonames.org/2968815/ | |
| "AJ"^^xsd:string | http://img.jamendo.com/artists/a/aj.jpg | http://jeffalain.blogspot.com | http://sws.geonames.org/2968815/ |
| "Artemisia"^^xsd:string | http://img.jamendo.com/artists/a/artemisia.png | http://artemisia.tuxfamily.org | http://sws.geonames.org/3012715/ |
| "StrangeZero"^^xsd:string | http://img.jamendo.com/artists/s/strangezero.jpg | http://www.strangezero.gr | http://sws.geonames.org/390903/ |
| "13-31"^^xsd:string | http://www.esm-prod.fr/13-31.htm | http://sws.geonames.org/3031359/ | |
| "Micheal O'Finn & Bloody Popes"^^xsd:string | http://img.jamendo.com/artists/m/micheal.o.finn.jpg | http://www.myspace.com/michealofinn | http://sws.geonames.org/660013/ |
| "Historia"^^xsd:string | http://img.jamendo.com/artists/h/historia.jpg | http://www.historiametal.com | http://sws.geonames.org/3174004/ |
| "Mil"^^xsd:string | http://www.myspace.com/milousefb | http://sws.geonames.org/2802361/ | |
| "The Starving Time"^^xsd:string | http://img.jamendo.com/artists/t/the.starving.time.jpg | http://sws.geonames.org/6252001/ | |
| "franckmoon"^^xsd:string | http://img.jamendo.com/artists/f/franckmoon.jpg | http://www.jamendo.com/fr/artist/franckmoon/admin/?edit=artist_infos | http://sws.geonames.org/3012715/ |
| "L'AXE LOURD"^^xsd:string | http://img.jamendo.com/artists/l/l.axe.lourd.jpg | http://www.myspace.com/axelourd | http://sws.geonames.org/3017382/ |
| "Noodles"^^xsd:string | http://img.jamendo.com/artists/n/noodles1.jpg | http://the.noodles.free.fr | http://sws.geonames.org/3026644/ |
| "dirty dishes"^^xsd:string | http://sws.geonames.org/3023423/ | ||
| "Eau Forte"^^xsd:string | http://img.jamendo.com/artists/e/eau.forte.jpg | http://eauforte2.blogspot.com/ | http://sws.geonames.org/2991627/ |
| "Jonah Dempcy"^^xsd:string | http://www.jonahdempcy.com | http://sws.geonames.org/6252001/ | |
| "fixia"^^xsd:string | http://img.jamendo.com/artists/f/fixia.jpg | __jamendo-3.rdf#__Description5 | http://sws.geonames.org/2510769/ |
| "Etyën+A"^^xsd:string | http://img.jamendo.com/artists/e/etyen-plus-a.jpg | http://www.etyen-plus-a.com | http://sws.geonames.org/2968815/ |
| "Essiar"^^xsd:string | http://img.jamendo.com/artists/e/essiar.gif | http://cyrille.fraisse.9online.fr/Essiar.html | http://sws.geonames.org/3013500/ |
| "wollam"^^xsd:string | http://img.jamendo.com/artists/w/wollam.jpg | http://www.wollam.org | http://sws.geonames.org/3013657/ |
| "Gars Trans"^^xsd:string | http://img.jamendo.com/artists/g/gars.trans.png | http://les-blogues.com/GarsTrans | http://sws.geonames.org/6251999/ |
| "Brigade Neurale"^^xsd:string | http://img.jamendo.com/artists/b/brigade.neurale.jpg | http://www.brigadeneurale.org | http://sws.geonames.org/3017382/ |
| "OCNOTES"^^xsd:string | http://img.jamendo.com/artists/o/ocnotes.jpg | http://www.myspace.com/ocnotes | http://sws.geonames.org/6252001/ |
| "muybuenolabonita"^^xsd:string | http://img.jamendo.com/artists/m/muybuenolabonita.jpg | http://membres.lycos.fr/heu/ | http://sws.geonames.org/2996663/ |
| "Besos Robados"^^xsd:string | http://img.jamendo.com/artists/b/besos.robados.gif | http://\\besosrobados.iespana.es | http://sws.geonames.org/2510910/ |
| "JJGang"^^xsd:string | http://img.jamendo.com/artists/j/jjgang.jpg | http://sws.geonames.org/2991627/ | |
| "Ojos de Lobo"^^xsd:string | http://img.jamendo.com/artists/o/ojos.de.lobo.jpg | http://joansola.blogspot.com | http://sws.geonames.org/2510769/ |
| "Café Nadar"^^xsd:string | http://img.jamendo.com/artists/c/cafenadar.jpg | http://cafenadar.com | http://sws.geonames.org/2994111/ |
| "FONKADELIK"^^xsd:string | http://img.jamendo.com/artists/f/funkadelik.jpg | http://createursnes.blogspot.com/ | http://sws.geonames.org/2997857/ |
| "Sortie15"^^xsd:string | http://img.jamendo.com/artists/s/sortie15.jpg | http://www.myspace.com/sortie15 | http://sws.geonames.org/3013767/ |
| "LARGO02"^^xsd:string | http://img.jamendo.com/artists/l/largo02.jpg | http://larg02.over-blog.com | http://sws.geonames.org/3012715/ |
| "Insula Dulcamara"^^xsd:string | http://img.jamendo.com/artists/i/insula.dulcamara.gif | http://www.insuladulcamara.it | http://sws.geonames.org/3172391/ |
| "Nonsense"^^xsd:string | http://img.jamendo.com/artists/n/nonsense.jpg | http://www.nonsensehardcore.com | http://sws.geonames.org/3034720/ |
| "Jampy"^^xsd:string | http://img.jamendo.com/artists/j/jampy.jpg | http://jampy.wordpress.com | http://sws.geonames.org/3172391/ |
| "Scury"^^xsd:string | http://img.jamendo.com/artists/s/scury.jpg | http://sws.geonames.org/3013500/ | |
| "forp"^^xsd:string | http://img.jamendo.com/artists/f/forp1.jpg | http://www.forp-mustang.com | http://sws.geonames.org/2884161/ |
| "Petit Homme"^^xsd:string | http://img.jamendo.com/artists/p/petit.homme.gif | http://www.petithomme.org | http://sws.geonames.org/3019599/ |
| "NeLaS"^^xsd:string | http://img.jamendo.com/artists/n/nelas.png | http://www.organelas.com/ | http://sws.geonames.org/3469034/ |
| "dolores"^^xsd:string | http://img.jamendo.com/artists/d/dolores.jpg | http://www.myspace.com/dolorestheband | http://sws.geonames.org/2989663/ |
| "saru"^^xsd:string | http://img.jamendo.com/artists/s/saru.jpg | http://www.saru-art.com | http://sws.geonames.org/2990129/ |
| "Euterpe Archipelago"^^xsd:string | http://img.jamendo.com/artists/e/euterpe.archipelago.jpg | http://www.myspace.com/euterpearchipelago | http://sws.geonames.org/6252001/ |
| "Sharp"^^xsd:string | http://img.jamendo.com/artists/s/sharp.jpg | http://sharph.net/ | http://sws.geonames.org/6252001/ |
| "jacky.daniel"^^xsd:string | http://img.jamendo.com/artists/j/jackydaniel.jpg | http://www.jackydaniel.be | http://sws.geonames.org/2802361/ |
| "Par d'ssus la jambe"^^xsd:string | http://img.jamendo.com/artists/p/pardssuslajambe.jpg | http://www.pardssuslajambe.com | http://sws.geonames.org/2987410/ |
| "Remote Controlled"^^xsd:string | http://img.jamendo.com/artists/r/remote.controlled.jpg | http://www.remote-controlled.org/ | http://sws.geonames.org/2911297/ |
| "Rund Funk"^^xsd:string | http://img.jamendo.com/artists/r/rundfunk.jpg | http://rogiervandenbrink.typepad.com/rogier_van_den_brink/ | http://sws.geonames.org/2750405/ |
| "les troglodytes of alabama"^^xsd:string | http://img.jamendo.com/artists/l/les.troglodytes.jpg | http://troglodytes.blog.com/ | http://sws.geonames.org/2991879/ |
| "raindog"^^xsd:string | http://img.jamendo.com/artists/r/raindog.jpg | http://www.raindog.de | http://sws.geonames.org/2921044/ |
| "Luis Rueda"^^xsd:string | http://img.jamendo.com/artists/l/luisrueda.jpg | http://www.myspace.com/luisruedaelferoztrenexpreso | http://sws.geonames.org/3658394/ |
| "Futuria"^^xsd:string | http://img.jamendo.com/artists/f/futuria.jpg | http://www.myspace.com/0futuria0 | http://sws.geonames.org/3013736/ |
| "les chiens noirs du mexique"^^xsd:string | http://img.jamendo.com/artists/l/leschiensnoirsdumexique.gif | http://www.leschiensnoirsdumexique.com | http://sws.geonames.org/3013500/ |
| "Matti Paalanen"^^xsd:string | http://img.jamendo.com/artists/m/matti.paalanen.jpg | http://www.mikseri.net/users/?id=61143 | http://sws.geonames.org/660013/ |
| "Your Crazy B-day"^^xsd:string | http://img.jamendo.com/artists/y/your.crazy.b-day.jpg | http://sws.geonames.org/3209442/ | |
| "Morad Stars"^^xsd:string | http://img.jamendo.com/artists/m/moradstars.jpg | http://www.myspace.com/moradstars | http://sws.geonames.org/2990129/ |
| "L'âge d'or"^^xsd:string | http://img.jamendo.com/artists/l/l.age.d.or.jpg | http://www.lagedor.splinder.com | http://sws.geonames.org/3173434/ |
| "Plasman"^^xsd:string | http://img.jamendo.com/artists/p/plasman.jpg | http://www.plasman.fr.st | http://sws.geonames.org/2988430/ |
| "Improject"^^xsd:string | http://img.jamendo.com/artists/i/improject.jpg | http://labuenanoticia.com/improject | http://sws.geonames.org/2510769/ |
| "Richard Bee"^^xsd:string | http://img.jamendo.com/artists/r/richard.bee.jpg | http://www.bleu-creation.com/richardbee.htm | http://sws.geonames.org/2968815/ |
| "Sirup"^^xsd:string | http://img.jamendo.com/artists/s/sirup.jpg | http://www.sirup.info | http://sws.geonames.org/2884161/ |
| "kavekanum"^^xsd:string | http://img.jamendo.com/artists/k/kavekanum.jpg | http://www.kavekanum.zik.mu | http://sws.geonames.org/2975249/ |
| "#2 Orchestra"^^xsd:string | http://img.jamendo.com/artists/2/2orchestra.jpg | http://www.myspace.com/2orchestra | http://sws.geonames.org/3017382/ |
| "Ikebana"^^xsd:string | http://img.jamendo.com/artists/i/ikebana.gif | http://www.ikebana.in | http://sws.geonames.org/2994111/ |
| "crumblewane"^^xsd:string | http://img.jamendo.com/artists/c/crumblewane.jpg | http://www.crumblewane.net/ | http://sws.geonames.org/2970554/ |
| "KINGARSUS"^^xsd:string | http://img.jamendo.com/artists/k/kingarsus.jpg | http://www.kingarsus.net | http://sws.geonames.org/3017382/ |
| "Jom"^^xsd:string | http://img.jamendo.com/artists/j/jom.jpg | http://sws.geonames.org/3035691/ | |
| "J-M Dauphy"^^xsd:string | http://img.jamendo.com/artists/j/j-m.dauphy.jpg | http://www.auteur-compositeur.fr/ | http://sws.geonames.org/2967196/ |
| "Narcolepsy"^^xsd:string | http://img.jamendo.com/artists/n/narcolepsy.jpg | http://www.paultakahashi.com | http://sws.geonames.org/2987410/ |
| "MATT"^^xsd:string | http://img.jamendo.com/artists/m/matt.jpg | http://www.myspace.com/brknmus | http://sws.geonames.org/2968815/ |
| "Atma Bhajan Band"^^xsd:string | http://img.jamendo.com/artists/a/atma.bhajan.band.jpg | http://www.atmayoga.com.au | http://sws.geonames.org/2077456/ |
| "Rom1"^^xsd:string | http://img.jamendo.com/artists/r/rom1.jpg | http://romain.compositions.free.fr/ | http://sws.geonames.org/2996663/ |
| "Guido Segni"^^xsd:string | http://img.jamendo.com/artists/g/guido.segni.jpg | http://www.alterazione.net/n/?page_id=26 | http://sws.geonames.org/6539668/ |
| "Shamil"^^xsd:string | http://homepage.internet.lu/Shamil/ | http://sws.geonames.org/2960313/ | |
| "Big-mikE"^^xsd:string | http://img.jamendo.com/artists/b/big-mike.jpg | http://www.myspace.com/bigmikealone | http://sws.geonames.org/2994111/ |
| "polter"^^xsd:string | http://img.jamendo.com/artists/p/polter.jpg | http://www.polter.fr.cx | http://sws.geonames.org/3038050/ |
| "tabako trio"^^xsd:string | http://img.jamendo.com/artists/t/tabako.trio.jpg | http://www.tabakomusic.com | http://sws.geonames.org/390903/ |
| "Sol Carlus"^^xsd:string | http://img.jamendo.com/artists/s/solcarlus.jpg | http://www.solcarlus.com | http://sws.geonames.org/2971071/ |
| "Jean-David"^^xsd:string | http://img.jamendo.com/artists/j/jean-david.jpg | http://www.idfolles.com | http://sws.geonames.org/2976082/ |
| "Darren Lock"^^xsd:string | http://img.jamendo.com/artists/l/lock.jpg | http://www.darrenlock.com | |
| "Jeremie Beul"^^xsd:string | http://img.jamendo.com/artists/b/beul.jpg | http://sws.geonames.org/2967196/ | |
| "Camelot"^^xsd:string | http://img.jamendo.com/artists/c/camelot.jpg | http://www.camelot-rock.de | http://sws.geonames.org/2930484/ |
| "Cola Idol"^^xsd:string | http://www.17sons.com/articles.php?lng=en&pg=137 | http://sws.geonames.org/3017382/ | |
| "Rafael Villegas"^^xsd:string | http://img.jamendo.com/artists/r/rafael.villegas.tenor.jpg | http://www.rafaelvillegastenor.com | http://sws.geonames.org/3865483/ |
| "Soy Bomb"^^xsd:string | http://img.jamendo.com/artists/s/soybomb.jpg | http://www.purevolume.com/soybombtampa | http://sws.geonames.org/6252001/ |
| "My Poor Ida"^^xsd:string | http://img.jamendo.com/artists/m/mypoorida.jpg | http://\\www.mypoorida.com | http://sws.geonames.org/2884161/ |
| "Illusionary World"^^xsd:string | http://img.jamendo.com/artists/i/iw.gif | http://www.myspace.com/illusionaryworld | http://sws.geonames.org/798544/ |
| "Comandante-em-Chefe"^^xsd:string | http://img.jamendo.com/artists/c/comandante.jpg | http://www.comandante-em-chefe.info | http://sws.geonames.org/2593105/ |
| "SharashkA"^^xsd:string | http://img.jamendo.com/artists/s/sharashka.jpg | http://www.myspace.com/sharashkamusic | http://sws.geonames.org/6252001/ |
| "KraftiM"^^xsd:string | http://img.jamendo.com/artists/k/kraftim.jpg | http://www.myspace.com/kraftim | http://sws.geonames.org/2750405/ |
| "Sam Santana"^^xsd:string | http://img.jamendo.com/artists/b/bobcedmaniac.gif | http://bobmusik.sup.fr | http://sws.geonames.org/2984986/ |
| "Omkara"^^xsd:string | http://img.jamendo.com/artists/o/omkara.jpg | http://www.omkara.pl | http://sws.geonames.org/798544/ |
| "Plastic Alibi"^^xsd:string | http://img.jamendo.com/artists/t/thomsenb.png | http://thomsenb.googlepages.com | http://sws.geonames.org/6252001/ |
| "Dj's Team Project"^^xsd:string | http://img.jamendo.com/artists/d/djsteamproject.jpg | http://artistes.autoproduction.net/Djs_Team_project | http://sws.geonames.org/2975248/ |
| "Sound-Ra"^^xsd:string | http://img.jamendo.com/artists/s/sound-ra.gif | http://www.myspace.com/soundra | http://sws.geonames.org/2991627/ |
| "Dodge city outlaws"^^xsd:string | http://img.jamendo.com/artists/d/dodge.city.outlaws.jpg | http://www.dodgecityoutlaws.com | http://sws.geonames.org/3020989/ |
| "Mister Electric Demon"^^xsd:string | http://img.jamendo.com/artists/m/med.jpg | http://medcg.free.fr | http://sws.geonames.org/2975246/ |
| "Scarcity"^^xsd:string | http://img.jamendo.com/artists/s/scarcity.jpg | http://www.myspace.com/4scarcity | http://sws.geonames.org/3023532/ |
| "Charles Fenollosa "^^xsd:string | http://img.jamendo.com/artists/c/charles.f.orenga.jpg | http://www.myspace.com/charlesfenollosa | http://sws.geonames.org/6355240/ |
| "Efrain Inclan"^^xsd:string | http://img.jamendo.com/artists/e/efraininclan.jpg | http://www.efraininclan.com | http://sws.geonames.org/3996063/ |
| "DBIT"^^xsd:string | http://img.jamendo.com/artists/d/dbit.jpg | http://www.dbit.es | http://sws.geonames.org/2510769/ |
| "Gnark Sombre"^^xsd:string | http://img.jamendo.com/artists/g/gnarksombre.jpg | http://www.gnarksombre.siteperso.net | http://sws.geonames.org/2997857/ |
| "Say It Again Lucas"^^xsd:string | http://img.jamendo.com/artists/s/sayitagainlucas.jpg | http://www.purevolume.com/sayitagainlucas | http://sws.geonames.org/6252001/ |
| "Smoke Fish"^^xsd:string | http://img.jamendo.com/artists/s/smokefish.jpg | http://www.myspace.com/smokefish | http://sws.geonames.org/3018471/ |
| "Lake"^^xsd:string | http://img.jamendo.com/artists/l/lake.jpg | http://www.myspace.com/musiclake2 | http://sws.geonames.org/2987410/ |
| "SGX"^^xsd:string | http://img.jamendo.com/artists/s/sgx.jpg | http://www.sgxmusic.com | http://sws.geonames.org/6252001/ |
| "PropheXy"^^xsd:string | http://img.jamendo.com/artists/p/prophexy.jpg | http://www.prophexy.com | http://sws.geonames.org/3181927/ |
| "Meguiddo"^^xsd:string | http://img.jamendo.com/artists/m/meguiddo.png | http://www.meguiddo.be | http://sws.geonames.org/2802361/ |
| "ED3-STUDIO"^^xsd:string | http://img.jamendo.com/artists/e/ede-studio.png | http://www.ede-studio.com | http://sws.geonames.org/2984887/ |
| "j.fred"^^xsd:string | http://img.jamendo.com/artists/j/j.fred.jpg | http://sws.geonames.org/3034720/ | |
| "Bep"^^xsd:string | http://img.jamendo.com/artists/b/bep.jpg | http://perso.wanadoo.fr/bepo | http://sws.geonames.org/3016194/ |
| "Free Admission"^^xsd:string | http://joshdick.net/music | http://sws.geonames.org/6252001/ | |
| "Alunas"^^xsd:string | http://img.jamendo.com/artists/a/alunas.jpg | http://bordeauxmassages.hautetfort.com/ | http://sws.geonames.org/3015948/ |
| "Senn"^^xsd:string | http://img.jamendo.com/artists/s/senn.png | http://www.raisingwaves.com | |
| "Knight Sounder"^^xsd:string | http://img.jamendo.com/artists/k/knight.sounder.jpg | http://sws.geonames.org/2987410/ | |
| "S."^^xsd:string | http://img.jamendo.com/artists/s/scommesuper.jpg | http://www.myspace.com/poucevert | http://sws.geonames.org/2987410/ |
| "AkerUi"^^xsd:string | http://img.jamendo.com/artists/a/akerui.jpg | http://yafsug.itiopi.com/mediaz.php | http://sws.geonames.org/6252001/ |
| "Macroform"^^xsd:string | http://img.jamendo.com/artists/m/macroform.jpg | http://macroform.co.nr | http://sws.geonames.org/6252001/ |
| "Ernesto Fracaso"^^xsd:string | http://img.jamendo.com/artists/e/ernestofracaso.jpg | http://ernestofracaso.blogspot.com | http://sws.geonames.org/3104469/ |
| "SUR"^^xsd:string | http://img.jamendo.com/artists/s/sur.jpg | http://www.sur.si | http://sws.geonames.org/3239110/ |
| "Powder French"^^xsd:string | http://img.jamendo.com/artists/p/powder.french.jpg | http://home.earthlink.net/~gjp/id3.html | http://sws.geonames.org/6252001/ |
| "Boco"^^xsd:string | http://img.jamendo.com/artists/b/boco.jpg | http://bogdaboco.blogspot.com/ | http://sws.geonames.org/2968815/ |
| "Truculent"^^xsd:string | http://img.jamendo.com/artists/t/truculent.jpg | http://www.truculent.fr | http://sws.geonames.org/2971090/ |
| "DJ Sooflet"^^xsd:string | http://img.jamendo.com/artists/d/dj-sooflet.gif | http://www.djsooflet.com | http://sws.geonames.org/798544/ |
| "AngelisD"^^xsd:string | http://img.jamendo.com/artists/a/angelisd.jpg | http://www.angelisdigitalstudio.com/music/ | http://sws.geonames.org/6252001/ |
| "Epoxia"^^xsd:string | http://img.jamendo.com/artists/e/epoxia.jpg | http://epoxia.vate.com.mx | http://sws.geonames.org/3996063/ |
| "Sulatus"^^xsd:string | http://img.jamendo.com/artists/s/sulatus.jpg | http://www.sulatus.cba.pl | http://sws.geonames.org/798544/ |
| "Eternal Tango"^^xsd:string | http://img.jamendo.com/artists/e/eternaltango.jpg | http://www.eternaltango.net | http://sws.geonames.org/2960313/ |
| "Embryonica"^^xsd:string | http://img.jamendo.com/artists/e/embryonica.jpg | http://www.embryonica.com | http://sws.geonames.org/6252001/ |
| "TUD"^^xsd:string | http://img.jamendo.com/artists/t/tud.jpg | http://www.tud.me.uk | http://sws.geonames.org/3182163/ |
| "Ananta"^^xsd:string | http://img.jamendo.com/artists/a/ananta.jpg | http://www.anantamusic.yoyo.pl | http://sws.geonames.org/798544/ |
| "Ježíš Revival"^^xsd:string | http://img.jamendo.com/artists/j/jezis.revival.jpg | http://sws.geonames.org/2395170/ | |
| "Dan'S"^^xsd:string | http://img.jamendo.com/artists/d/dan.s.jpg | http://dan-s.hautetfort.com/ | http://sws.geonames.org/2994111/ |
| "umbriel rising"^^xsd:string | http://img.jamendo.com/artists/u/umbriel.rising.jpg | http://www.distinguishedrecordings.com | http://sws.geonames.org/6251999/ |
| "Caminos del Sonido"^^xsd:string | http://img.jamendo.com/artists/w/willyamwarner.jpg | http://caminosdelsonido.blogspot.com/ | http://sws.geonames.org/3104469/ |
| "Distimia"^^xsd:string | http://img.jamendo.com/artists/d/distimia.jpg | http://distimiamusical.blogspot.com/ | http://sws.geonames.org/3104469/ |
| "Harry Field"^^xsd:string | http://img.jamendo.com/artists/h/harry.field.jpg | http://harryfield.blogspot.com | http://sws.geonames.org/2802361/ |
| "Quantica"^^xsd:string | http://img.jamendo.com/artists/q/quantica.jpg | http://www.quantica.eu | http://sws.geonames.org/6424360/ |
| "Per Boysen"^^xsd:string | http://img.jamendo.com/artists/p/per.boysen.jpg | http://www.looproom.com | http://sws.geonames.org/2661886/ |
| "etZetera"^^xsd:string | http://img.jamendo.com/artists/e/etzetera.jpg | http://www.myspace.com/etzeteragrupo | http://sws.geonames.org/2517115/ |
| "Esoterik Eskort"^^xsd:string | http://img.jamendo.com/artists/e/esoterik.eskort.jpg | http://www.esoterikeskort.com | http://sws.geonames.org/2991627/ |
| "SATIS"^^xsd:string | http://img.jamendo.com/artists/s/satis.gif | http://www.apim.wordpress.com | http://sws.geonames.org/798544/ |
| "wSh"^^xsd:string | http://wsh.hibernate.us | http://sws.geonames.org/798544/ | |
| "LONDON SOFA"^^xsd:string | http://img.jamendo.com/artists/s/sofa.jpg | http://www.myspace.com/sofapopmusic | http://sws.geonames.org/2991627/ |
| "Adam Certamen Bownik"^^xsd:string | http://img.jamendo.com/artists/a/adam.certamen.bownik.jpg | http://bownik.w.interia.pl | http://sws.geonames.org/798544/ |
| "fex"^^xsd:string | http://img.jamendo.com/artists/f/fex.jpg | http://fexko.blogspot.com | http://sws.geonames.org/2782113/ |
| "Anthony"^^xsd:string | http://img.jamendo.com/artists/a/anthony.jpg | http://anthony.over-blog.net | http://sws.geonames.org/2991627/ |
| "musetta"^^xsd:string | http://img.jamendo.com/artists/m/musetta.jpg | http://musetta.co.uk | http://sws.geonames.org/3173434/ |
| "Toj 36"^^xsd:string | http://img.jamendo.com/artists/t/toj36.jpg | http://tojmusic.free.fr/toj36/ | http://sws.geonames.org/2991627/ |
| "Lordz"^^xsd:string | http://img.jamendo.com/artists/l/lordz.jpg | http://www.eternalwaves.com/ | http://sws.geonames.org/3013657/ |
| "Le Zaarth"^^xsd:string | http://img.jamendo.com/artists/l/le.zaarth.jpg | http://www.myspace.com/lezaarth | http://sws.geonames.org/3209442/ |
| "ISKRY"^^xsd:string | http://img.jamendo.com/artists/i/iskry.gif | http://www.iskry.net | http://sws.geonames.org/798544/ |
| "DEF1"^^xsd:string | http://img.jamendo.com/artists/d/def1.jpg | http://www.def1.c.la | http://sws.geonames.org/3021501/ |
| "School in Parapsichico"^^xsd:string | http://img.jamendo.com/artists/s/school.in.parapsichico.jpg | http://sipband.wordpress.com | http://sws.geonames.org/3172391/ |
| "Nathanaël"^^xsd:string | http://img.jamendo.com/artists/n/nathanael.jpg | http://xxsighxx.free.fr | http://sws.geonames.org/3034720/ |
| "Satellite Splinter"^^xsd:string | http://img.jamendo.com/artists/s/satellite.splinter.jpg | http://www.duhproject.com/SatelliteSplinter.html | http://sws.geonames.org/6252001/ |
| "Blunt"^^xsd:string | http://img.jamendo.com/artists/b/blunt.jpg | http://perso.orange.fr/punkblunt/ | http://sws.geonames.org/1699807/ |
| "FaZE"^^xsd:string | http://img.jamendo.com/artists/f/faze.jpg | http://www.myspace.com/fazecircus | http://sws.geonames.org/2510769/ |
| "[dK]"^^xsd:string | http://img.jamendo.com/artists/d/dk.jpg | http://www.endk.com | http://sws.geonames.org/3165523/ |
| "Ghostown"^^xsd:string | http://img.jamendo.com/artists/g/ghostown.jpg | http://www.myspace.com/raelsghostown | http://sws.geonames.org/3013500/ |
| "KAMDER"^^xsd:string | http://img.jamendo.com/artists/k/kamder.jpg | http://kamdermusicstory.blogspot.com/ | http://sws.geonames.org/2987410/ |
| "The Vegetarians"^^xsd:string | http://img.jamendo.com/artists/t/the.vegetarians.jpg | http://www.annellssongs.com | http://sws.geonames.org/2661886/ |
| "Astral Quest"^^xsd:string | http://img.jamendo.com/artists/a/astralquest.jpg | http://www.myspace.com/astralquestgroup | http://sws.geonames.org/3012051/ |
| "Ben Johnson"^^xsd:string | http://img.jamendo.com/artists/b/benjohnsonmusic.jpg | http://www.myspace.com/benjohnsonsteeldog | http://sws.geonames.org/6252001/ |
| "Au Lit les Mômes"^^xsd:string | http://img.jamendo.com/artists/a/au.lit.les.momes.gif | http://sws.geonames.org/2997857/ | |
| "Erik y Shally"^^xsd:string | http://img.jamendo.com/artists/e/erikyshally.jpg | http://www.erikyshally.com | http://sws.geonames.org/3113208/ |
| "KillaNation"^^xsd:string | http://img.jamendo.com/artists/k/killanation.jpg | http://www.myspace.com/killanation | http://sws.geonames.org/3173434/ |
| "Julipan"^^xsd:string | http://img.jamendo.com/artists/j/julipan.png | http://www.julipan.org | http://sws.geonames.org/3137400/ |
| "DR LOVE"^^xsd:string | http://img.jamendo.com/artists/d/dr.love.jamendo.net.jpg | http://drlove.hautetfort.com/archive/2007/01/31/dr-love.html | http://sws.geonames.org/3012849/ |
| "Inesperado"^^xsd:string | http://img.jamendo.com/artists/i/inesperado.jpg | http://www.inesperado.es | http://sws.geonames.org/2510769/ |
| "la Flore acoustique"^^xsd:string | http://img.jamendo.com/artists/f/flore.acoustique.jpg | http://sws.geonames.org/3017382/ | |
| "Dyvan le Terrible"^^xsd:string | http://img.jamendo.com/artists/d/dyvanleterrible.jpg | http://www.dyvanleterrible.fr | http://sws.geonames.org/3023414/ |
| "Cesta"^^xsd:string | http://img.jamendo.com/artists/c/cesta.jpg | http://caracprod.fr.nf | http://sws.geonames.org/2975246/ |
| "Jeff Hentschel"^^xsd:string | http://img.jamendo.com/artists/j/jeffaudio.gif | http://jeffaudio.com | http://sws.geonames.org/6252001/ |
| "Kostas Vomvolos"^^xsd:string | http://img.jamendo.com/artists/k/kostas.vomvolos.jpg | http://www.kostasvomvolos.com | http://sws.geonames.org/390903/ |
| "patada con giro"^^xsd:string | http://img.jamendo.com/artists/p/patada.con.giro.jpg | http://patadacongiro.blogspot.com/ | http://sws.geonames.org/2522257/ |
| "Jamick"^^xsd:string | http://img.jamendo.com/artists/j/jamick.jpg | http://jamick.a-fw.net/ | http://sws.geonames.org/798544/ |
| "SCHUTZ LOIC"^^xsd:string | http://img.jamendo.com/artists/s/schutz.loic.jpg | http://makemeelektro.skyblog.com/ | http://sws.geonames.org/3013736/ |
| "The Bloody Mary's"^^xsd:string | http://img.jamendo.com/artists/t/the.bloody.mary.s.jpg | http://www.micko.blogspot.com | http://sws.geonames.org/2510769/ |
| "zoop"^^xsd:string | http://img.jamendo.com/artists/z/zoop.jpg | http://www.zoop.ru | http://sws.geonames.org/2017370/ |
| "Psilodump"^^xsd:string | http://img.jamendo.com/artists/p/psilodump.jpg | http://www.psilodump.com | http://sws.geonames.org/2661886/ |
| "yannick f"^^xsd:string | http://img.jamendo.com/artists/y/yannick.f.gif | http://www.gabyan.net/ | http://sws.geonames.org/2970749/ |
| "AS 777"^^xsd:string | http://img.jamendo.com/artists/a/as777.jpg | http://as777.hitmuse.com | http://sws.geonames.org/2995603/ |
| "Fenêtres Ouvertes"^^xsd:string | http://img.jamendo.com/artists/f/fen.tres.ouvertes.jpg | http://fenetresouvertes.fr | http://sws.geonames.org/2994106/ |
| "D."^^xsd:string | http://img.jamendo.com/artists/d/d-music.jpg | http://www.d-music.de | http://sws.geonames.org/6557769/ |
| "Sur Non"^^xsd:string | http://img.jamendo.com/artists/s/sur.non.jpg | http://surnon.blox.pl | http://sws.geonames.org/798544/ |
| "Palindrome"^^xsd:string | http://img.jamendo.com/artists/p/palindrome.jpg | http://sws.geonames.org/2997861/ | |
| "Exkrément"^^xsd:string | http://img.jamendo.com/artists/e/exkrement.gif | http://www.exkrement.fr.fm | http://sws.geonames.org/2994111/ |
| "Markus Macht Musik"^^xsd:string | http://img.jamendo.com/artists/m/markus.1744.jpg | http://www.hab.keine.de | http://sws.geonames.org/6557769/ |
| "Les Résidus Plasmiques"^^xsd:string | http://img.jamendo.com/artists/l/les.residus.plasmiques.jpg | http://www.famillecg.com | http://sws.geonames.org/6251999/ |
| "Definitiv Fett"^^xsd:string | http://img.jamendo.com/artists/d/definitiv.fett.jpg | http://www.dfett.de | http://sws.geonames.org/3209442/ |
| "Ghost Notes"^^xsd:string | http://img.jamendo.com/artists/g/ghostnotes.jpg | http://ghostnotesproduxion.blogspot.com/ | http://sws.geonames.org/734075/ |
| "Clayton Derricks"^^xsd:string | http://img.jamendo.com/artists/c/clayton.derricks.jpg | http://clayton.derricks.free.fr/ | http://sws.geonames.org/2990129/ |
| "Alquimia"^^xsd:string | http://img.jamendo.com/artists/a/alquimia.jpg | http://www.alquimiarock.com | http://sws.geonames.org/2510769/ |
| "Your Spoken Horoscope"^^xsd:string | http://img.jamendo.com/artists/l/lucille21.jpg | http://www.myspace.com/yourspokenhoroscope | http://sws.geonames.org/3017382/ |
| "Luminous Flesh Giants (LFG)"^^xsd:string | http://img.jamendo.com/artists/l/lfg.png | http://lfg.republika.pl | http://sws.geonames.org/798544/ |
| "Dealmantis"^^xsd:string | http://img.jamendo.com/artists/d/dealmantis.jpg | http://www.myspace.com/dealmantis | http://sws.geonames.org/2967681/ |
| "Bluebox Sampler"^^xsd:string | http://img.jamendo.com/artists/b/bluebox.sampler.jpg | http://www.bluebox-sampler.de | http://sws.geonames.org/3209442/ |
| "Jawl Keed"^^xsd:string | http://img.jamendo.com/artists/j/jawl.keed.png | http://www.jawlkeed.com | http://sws.geonames.org/2991627/ |
| "Les Ailes du Gazon"^^xsd:string | http://img.jamendo.com/artists/l/les.ailes.du.gazon.jpg | http://ailesdugazon.free.fr | http://sws.geonames.org/3038422/ |
| "radmusic"^^xsd:string | http://img.jamendo.com/artists/r/radmusic.jpg | http://www.radmusic.com.pl | http://sws.geonames.org/798544/ |
| "Musiciens de Surface"^^xsd:string | http://img.jamendo.com/artists/m/musiciensdesurface.jpg | http://www.musiciensdesurface.be | http://sws.geonames.org/2802361/ |
| "The 462nd Zinnias"^^xsd:string | http://img.jamendo.com/artists/t/the.462nd.zinnias.jpg | http://besace.free.fr | http://sws.geonames.org/2991879/ |
| "Dj Saryon feat Sory"^^xsd:string | http://img.jamendo.com/artists/d/dj.saryon.jpg | http://djsaryon.blogspot.com | http://sws.geonames.org/2510769/ |
| "Alaze"^^xsd:string | http://img.jamendo.com/artists/a/alaze.jpg | http://alaze.us | http://sws.geonames.org/6252001/ |
| "Root"^^xsd:string | http://img.jamendo.com/artists/r/root.jpg | http://www.rootband.com/ | http://sws.geonames.org/798544/ |
| "Chevreuils Psychédéliques"^^xsd:string | http://img.jamendo.com/artists/c/chevreuils.psychedeliques.gif | http://chevreuils.psy.free.fr | http://sws.geonames.org/3017382/ |
| "Elektrubadur"^^xsd:string | http://img.jamendo.com/artists/e/elektrubadur.png | http://elektrubadur.se/ | http://sws.geonames.org/2661886/ |
| "Organic Despair"^^xsd:string | http://img.jamendo.com/artists/o/organic.despair.jpg | http://dissonancemaster.free.fr/ | http://sws.geonames.org/3013500/ |
| "Arkyne"^^xsd:string | http://img.jamendo.com/artists/a/arkyne.png | http://arkyne.metal3d.org | http://sws.geonames.org/3012715/ |
| "Eugénie"^^xsd:string | http://img.jamendo.com/artists/e/eugenie.jpg | http://www.myspace.com/eugenieband | http://sws.geonames.org/3181912/ |
| "Habitación Zero"^^xsd:string | http://img.jamendo.com/artists/h/habitacionzero.jpg | http://www.habitacionzero.com | http://sws.geonames.org/2510769/ |
| "LES CORPS SANS ORGANES"^^xsd:string | http://img.jamendo.com/artists/l/les-corps-sans-organes.jpg | http://www.les-corps-sans-organes.org | http://sws.geonames.org/3175395/ |
| "jcw"^^xsd:string | http://img.jamendo.com/artists/j/jcw.jpg | http://www.myspace.com/jcwofficialpage | http://sws.geonames.org/3013657/ |
| "Lost-Minded"^^xsd:string | http://img.jamendo.com/artists/l/lostminded.jpg | http://www.myspace.com/thelostmindedband | http://sws.geonames.org/3017382/ |
| "Saceda"^^xsd:string | http://img.jamendo.com/artists/s/saceda.jpg | http://lasbalsicas.info | http://sws.geonames.org/3104469/ |
| "Kray Van Kirk"^^xsd:string | http://img.jamendo.com/artists/k/krayvankirk.jpg | http://www.krayvankirk.com | http://sws.geonames.org/6252001/ |
| "Daniele Torelli"^^xsd:string | http://img.jamendo.com/artists/d/daniele.torelli.jpg | http://www.danieletorelli.net | http://sws.geonames.org/3175395/ |
| "dsy"^^xsd:string | http://img.jamendo.com/artists/d/dsy.jpg | http://dsy.online.fr | http://sws.geonames.org/2967196/ |
| "Sans Nom"^^xsd:string | http://img.jamendo.com/artists/s/sans.nom.jpg | http://leblogdesansnom.blogspot.com/ | http://sws.geonames.org/3026644/ |
| "Secret Side"^^xsd:string | http://img.jamendo.com/artists/s/secret.side.jpg | http://secretside.free.fr | http://sws.geonames.org/2971090/ |
| "julienpop"^^xsd:string | http://img.jamendo.com/artists/j/julienpop.jpg | http://www.myspace.com/julienbrandwijk | http://sws.geonames.org/3013767/ |
| "Circus Marcus"^^xsd:string | http://img.jamendo.com/artists/c/circus.marcus.jpg | http://circusmarcus.googlepages.com | http://sws.geonames.org/2802361/ |
| "Baler"^^xsd:string | http://img.jamendo.com/artists/b/baler.jpg | file:///home/yves/jamendo/www.PORfamilia.streemo.pl/Baler | http://sws.geonames.org/798544/ |
| "Bit Crusher"^^xsd:string | http://img.jamendo.com/artists/b/bitcrusher.png | http://bitcrusher.free.fr | http://sws.geonames.org/2884161/ |
| "Outsider"^^xsd:string | http://img.jamendo.com/artists/o/outsider.jpg | http://outstacja.cba.pl | http://sws.geonames.org/798544/ |
| "XeMa"^^xsd:string | http://img.jamendo.com/artists/x/xema.jpg | http://www.chez-xema.com | http://sws.geonames.org/2991627/ |
| "Incroyable"^^xsd:string | http://img.jamendo.com/artists/i/incroyable.jpg | http://zikamefu.free.fr/incroyable | http://sws.geonames.org/3013500/ |
| "SheeHad"^^xsd:string | http://img.jamendo.com/artists/s/sheehad.jpg | http://www.myspace.com/dechia | http://sws.geonames.org/2968815/ |
| "1 Ohm Facile"^^xsd:string | http://img.jamendo.com/artists/1/1ohmfacile.jpg | http://1ohmfacile.free.fr/ | http://sws.geonames.org/2968815/ |
| "Mahalab"^^xsd:string | http://img.jamendo.com/artists/m/mahalab.jpg | http://mahalab.blogspot.com | http://sws.geonames.org/3469034/ |
| "Afterglow"^^xsd:string | http://img.jamendo.com/artists/a/afterglow.jpg | http://www.afterglow.prv.pl | http://sws.geonames.org/798544/ |
| "David Dorae DMT"^^xsd:string | http://img.jamendo.com/artists/d/daviddorae.jpg | http://sws.geonames.org/2510769/ | |
| "nsa"^^xsd:string | http://img.jamendo.com/artists/n/nsa38.jpg | http://axiomusik.free.fr/ | http://sws.geonames.org/3012715/ |
| "stasis101"^^xsd:string | http://img.jamendo.com/artists/s/stasis101.jpg | http://www.myspace.com/stasis101music | http://sws.geonames.org/2750405/ |
| "pamauni"^^xsd:string | http://img.jamendo.com/artists/p/pamauni.jpg | http://sws.geonames.org/2996663/ | |
| "Eine Cliq"^^xsd:string | http://www.einecliq.de | http://sws.geonames.org/3209442/ | |
| "Marauders"^^xsd:string | http://img.jamendo.com/artists/m/marauders.png | http://marauders.online.fr | http://sws.geonames.org/3034720/ |
| "Samplastik"^^xsd:string | http://img.jamendo.com/artists/s/samplastik.jpg | http://www.samplastik.ovh.org | http://sws.geonames.org/798544/ |
| "Audiogram"^^xsd:string | http://img.jamendo.com/artists/a/audiogram.jpg | http://www.audiogram.ovh.org | http://sws.geonames.org/798544/ |
| "MisTerB"^^xsd:string | http://img.jamendo.com/artists/m/misterb.jpg | http://www.myspace.com/misterbdj | http://sws.geonames.org/3012849/ |
| "seiurte"^^xsd:string | http://img.jamendo.com/artists/s/seiurte.jpg | http://www.seiurte.com | http://sws.geonames.org/2510769/ |
| "Can"^^xsd:string | http://img.jamendo.com/artists/c/can.jpg | http://www.can-frk.de.tl | http://sws.geonames.org/3209442/ |
| "les cavistes"^^xsd:string | http://img.jamendo.com/artists/l/les.cavistes.jpg | http://www.zecavistes.com | http://sws.geonames.org/3013738/ |
| "ümlaut"^^xsd:string | http://img.jamendo.com/artists/u/umlaut.jpg | http://www.myspace.com/umlauturec | http://sws.geonames.org/2970749/ |
| "Kernem"^^xsd:string | http://img.jamendo.com/artists/k/kernem.jpg | http://fr.myspace.com/kernem | http://sws.geonames.org/3017382/ |
| "Tergal"^^xsd:string | http://img.jamendo.com/artists/t/tergal.jpg | http://tergal.zik.mu | http://sws.geonames.org/2997861/ |
| "SOAN.B"^^xsd:string | http://img.jamendo.com/artists/s/soan.b.jpg | http://www.myspace.com/soanb | http://sws.geonames.org/3038049/ |
| "Sevish"^^xsd:string | http://img.jamendo.com/artists/s/sevish.png | http://sevish.co.uk | |
| "Franck J"^^xsd:string | http://img.jamendo.com/artists/f/franck.j.jpg | http://jamendo.com | http://sws.geonames.org/3028791/ |
| "Delacrem"^^xsd:string | http://img.jamendo.com/artists/d/delacrem1.jpg | http://www.delacrem.com | http://sws.geonames.org/2802361/ |
| "Apatride?"^^xsd:string | http://img.jamendo.com/artists/a/apatrides.jpg | http://amniotik.blogspot.com | http://sws.geonames.org/3015948/ |
| "Millou"^^xsd:string | http://img.jamendo.com/artists/m/millou.jpg | http://millou-millou.blogspot.com | http://sws.geonames.org/2984986/ |
| "Gilou"^^xsd:string | http://img.jamendo.com/artists/g/gilou.png | http://gil.69.free.fr | http://sws.geonames.org/3012849/ |
| "K-nalo"^^xsd:string | http://img.jamendo.com/artists/k/k-nalo.jpg | http://giacjuan.blogspot.com/ | http://sws.geonames.org/2991627/ |
| "LES PÊCHEURS DE LUNE"^^xsd:string | http://img.jamendo.com/artists/l/lespecheursdelune.jpg | http://www.lespecheursdelune.fr | http://sws.geonames.org/2997524/ |
| "DJ Davidouille"^^xsd:string | http://img.jamendo.com/artists/d/dj.davidouille.jpg | http://djdavidouille.over-blog.com/article-5340018-6.html#anchorComment | http://sws.geonames.org/3038111/ |
| "Benjamin Liefeld"^^xsd:string | http://img.jamendo.com/artists/b/bliefeld.gif | http://www.myspace.com/bliefeld | http://sws.geonames.org/3015948/ |
| "Sekula Wieslaw"^^xsd:string | http://img.jamendo.com/artists/s/sekula.wieslaw.jpg | http://chomikuj.pl/wiesio2701 | http://sws.geonames.org/798544/ |
| "Los Muflos"^^xsd:string | http://img.jamendo.com/artists/l/los.muflos.jpg | http://perso.numerivable.fr/~losmuflos | http://sws.geonames.org/3017382/ |
| "PHOS4"^^xsd:string | http://img.jamendo.com/artists/p/phos4.jpg | http://www.beepworld.de/members/phos4music | http://sws.geonames.org/6557769/ |
| "Kristof"^^xsd:string | http://ouvert prochainement/ | http://sws.geonames.org/2994106/ | |
| "javagore"^^xsd:string | http://img.jamendo.com/artists/j/javagore.jpg | http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendID=177061504 | http://sws.geonames.org/2971090/ |
| "K-Onix"^^xsd:string | http://img.jamendo.com/artists/6/6konix.jpg | http://sws.geonames.org/3013663/ | |
| "malad souljah"^^xsd:string | http://img.jamendo.com/artists/m/malad.souljah.jpg | http://sws.geonames.org/2967196/ | |
| "soundamantium"^^xsd:string | http://img.jamendo.com/artists/s/soundamantium.jpg | http://www.myspace.com/phonethnics ou http://phonethnics.free.fr | http://sws.geonames.org/2967196/ |
| "LA PETITE MORT"^^xsd:string | http://img.jamendo.com/artists/l/lapetitemort.jpg | http://www.lapetitemort.fr | http://sws.geonames.org/2991879/ |
| "Raising Kaine"^^xsd:string | http://img.jamendo.com/artists/r/raising.kaine.jpg | http://homepage.ntlworld.com/tessa.corner1/AzizA-Main.html | |
| "Fragile New Virus"^^xsd:string | http://img.jamendo.com/artists/f/fragilenewvirus.jpg | http://www.fnv-sucks.de | http://sws.geonames.org/2930484/ |
| "HEAVYWEIGHT"^^xsd:string | http://img.jamendo.com/artists/h/heavyweight.jpg | http://www.heavyweight.art.pl | http://sws.geonames.org/798544/ |
| "Stephan Kulla"^^xsd:string | http://img.jamendo.com/artists/s/stephan.kulla.jpg | http://www.kullafrance.net | http://sws.geonames.org/3015948/ |
| "Maló"^^xsd:string | http://www.caffemantova.it/dis001.html | http://sws.geonames.org/3174050/ | |
| "Y21"^^xsd:string | http://img.jamendo.com/artists/y/y21.jpg | http://www.y21.fr.st | http://sws.geonames.org/2994111/ |
| "KPHB"^^xsd:string | http://img.jamendo.com/artists/k/kphb.jpg | http://katarakt.free.fr | http://sws.geonames.org/3012849/ |
| "bmd prod."^^xsd:string | http://img.jamendo.com/artists/b/bmd.jpg | __jamendo-3.rdf#__Description6 | http://sws.geonames.org/2994111/ |
| "ZEN-ZEN-ZEN"^^xsd:string | http://img.jamendo.com/artists/z/zen-zen-zen.jpg | http://www.zenzenzen.ru/ | http://sws.geonames.org/2017370/ |
| "Prostiputes"^^xsd:string | http://pas encore/ | http://sws.geonames.org/2968815/ | |
| "Aor Agni"^^xsd:string | http://img.jamendo.com/artists/a/aor.agni.jpg | http://www.myspace.com/aoragni | http://sws.geonames.org/2991627/ |
| "i"^^xsd:string | http://img.jamendo.com/artists/d/dj-6-tem.jpg | http://www.Theisound.com | http://sws.geonames.org/3013663/ |
| "VOLDENBERG"^^xsd:string | http://img.jamendo.com/artists/v/voldenberg.jpg | http://www.voldenberg.art.pl | http://sws.geonames.org/798544/ |
| "Romain B."^^xsd:string | http://img.jamendo.com/artists/r/romain.bodineau.jpg | http://romain-bodineau.magix.net/website | http://sws.geonames.org/2996268/ |
| "Surko"^^xsd:string | http://img.jamendo.com/artists/s/surko.jpg | http://www.surko.com | http://sws.geonames.org/2510769/ |
| "schéol"^^xsd:string | http://img.jamendo.com/artists/s/scheol.jpg | http://www.scheol.com | http://sws.geonames.org/2984885/ |
| "Do Ut Des"^^xsd:string | http://img.jamendo.com/artists/d/do.ut.des.jpg | http://www.doutdesrock.it | http://sws.geonames.org/3169069/ |
| "1984"^^xsd:string | http://img.jamendo.com/artists/1/1984.jpg | http://www.myspace.com/band1984 | http://sws.geonames.org/3034720/ |
| "Xam"^^xsd:string | http://img.jamendo.com/artists/x/xam.jpg | http://sws.geonames.org/2975926/ | |
| "Tante Adèle et la Famille"^^xsd:string | http://img.jamendo.com/artists/t/taf.jpg | http://www.tante-adele.com | http://sws.geonames.org/1699807/ |
| "Cipri"^^xsd:string | http://img.jamendo.com/artists/c/cipri.jpg | http://ciprimusica.iespana.es | http://sws.geonames.org/2510769/ |
| "Laura Helde"^^xsd:string | http://img.jamendo.com/artists/l/laurahelde.jpg | http://www.myspace.com/laurahelde | http://sws.geonames.org/6252001/ |
| "Losteen"^^xsd:string | http://img.jamendo.com/artists/l/losteen.jpg | http://www.losteen.com | http://sws.geonames.org/3013737/ |
| "sachandgo"^^xsd:string | http://img.jamendo.com/artists/s/sachandgo.jpg | http://www.sachandgo.com | http://sws.geonames.org/3013657/ |
| "SOFAROJO"^^xsd:string | http://img.jamendo.com/artists/s/sofarojo.jpg | http://www.sofarojo.com | http://sws.geonames.org/2517115/ |
| "Atozio"^^xsd:string | http://img.jamendo.com/artists/a/atozio.jpg | http://www.tonioworld.com | http://sws.geonames.org/2997857/ |
| "SICKNESS"^^xsd:string | http://img.jamendo.com/artists/s/sickness.jpg | http://sws.geonames.org/3016194/ | |
| "Hubbub Orchestra"^^xsd:string | http://img.jamendo.com/artists/h/hubbub.orchestra.jpg | http://sws.geonames.org/3031359/ | |
| "WANNAbe"^^xsd:string | http://img.jamendo.com/artists/w/wannabe.jpg | http://www.wannabe-band.yi.org | http://sws.geonames.org/2968815/ |
| "Mike Link/Harvey Taylor"^^xsd:string | http://img.jamendo.com/artists/m/mike.link.harvey.taylor.jpg | http://www.cdbaby.com/cd/linktaylor | http://sws.geonames.org/6252001/ |
| "Jean-Louis Le Breton"^^xsd:string | http://img.jamendo.com/artists/j/jean-louis.le.breton.jpg | http://rocbo.net/lebreton/ | http://sws.geonames.org/3037147/ |
| "Les missionnaires de Jeanne B."^^xsd:string | http://membres.lycos.fr/missionnaires/ | http://sws.geonames.org/3013767/ | |
| "Номады"^^xsd:string | http://sws.geonames.org/1522867/ | ||
| "Terremoto"^^xsd:string | http://img.jamendo.com/artists/t/terremoto.png | http://www.angelfire.com/rebellion2/terremoto/tioli.html | http://sws.geonames.org/6252001/ |
| "Vulcan Mindmeld"^^xsd:string | http://img.jamendo.com/artists/v/vulcanmindmeld.jpg | http://www.myspace.com/vulcanmindmeld | http://sws.geonames.org/6252001/ |
| "Reno"^^xsd:string | http://img.jamendo.com/artists/r/reno.jpg | http://in costruzione/ | http://sws.geonames.org/3172391/ |
| "Flex Blur"^^xsd:string | http://img.jamendo.com/artists/f/flex.blur.jpg | http://www.freewebs.com/flexblur | http://sws.geonames.org/2976082/ |
| "Dédales"^^xsd:string | http://img.jamendo.com/artists/d/dedales.jpg | http://perso.orange.fr/dedales-projet/ | http://sws.geonames.org/3029094/ |
| "Havok"^^xsd:string | http://img.jamendo.com/artists/h/havok.jpg | http://www.havok.se | http://sws.geonames.org/2661886/ |
| "Sehene"^^xsd:string | http://img.jamendo.com/artists/s/sehene.jpg | http://www.myspace.com/sehene | http://sws.geonames.org/2987410/ |
| "Crapman Sacramento"^^xsd:string | http://img.jamendo.com/artists/c/crapman.jpg | http://www.crapman.net | http://sws.geonames.org/6251999/ |
| "ANUG"^^xsd:string | http://img.jamendo.com/artists/a/anug.jpg | http://sws.geonames.org/2562770/ | |
| "Marker Beacon"^^xsd:string | http://img.jamendo.com/artists/m/marker.beacon.jpg | http://marker.beacon.free.fr | http://sws.geonames.org/3013657/ |
| "The Old Time Jitterbug Orchestra"^^xsd:string | http://www.myspace.com/shoottheband | http://sws.geonames.org/6251999/ | |
| "DJ Ghozt"^^xsd:string | http://img.jamendo.com/artists/d/djghozt.jpg | http://djghozt.blogspot.com/ | http://sws.geonames.org/2930484/ |
| "Zodio"^^xsd:string | http://img.jamendo.com/artists/z/zodio.jpg | http://sws.geonames.org/3175395/ | |
| "Unborn Fish"^^xsd:string | http://img.jamendo.com/artists/u/unborn.fish.jpg | http://sws.geonames.org/2970749/ | |
| "Rosko"^^xsd:string | http://img.jamendo.com/artists/r/rosko.jpg | http://www.myspace.com/roskolewis | |
| "Röntgenschall"^^xsd:string | http://img.jamendo.com/artists/r/rontgenschall.jpg | http://www.rontgenschall.com | http://sws.geonames.org/2921044/ |
| "Traffic In My Head"^^xsd:string | http://img.jamendo.com/artists/t/traffic.in.my.head.jpg | http://www.traffic.zgora.pl | http://sws.geonames.org/798544/ |
| "Les Asskronotes"^^xsd:string | http://img.jamendo.com/artists/a/asskronotes.jpg | http://asskros.free.fr/ | http://sws.geonames.org/3013767/ |
| "Ttable Why"^^xsd:string | http://img.jamendo.com/artists/t/ttable.why.jpg | http://www.myspace.com/ttablewhy | http://sws.geonames.org/2963597/ |
| "sunken"^^xsd:string | http://img.jamendo.com/artists/s/sunken.jpg | http://www.sunken-music.com | http://sws.geonames.org/3017382/ |
| "Direct Raption"^^xsd:string | http://img.jamendo.com/artists/d/directraption.png | http://directraption.ch | http://sws.geonames.org/2658434/ |
| "walkyries"^^xsd:string | http://img.jamendo.com/artists/w/walkyries.jpg | http://www.walkyriesmusic.com | http://sws.geonames.org/3013736/ |
| "Esperanza"^^xsd:string | http://img.jamendo.com/artists/e/esperanza.jpg | http://myspace.com/esperanzaproyect | http://sws.geonames.org/3865483/ |
| "Topology"^^xsd:string | http://img.jamendo.com/artists/t/topology.jpg | http://www.topologymusic.com/ | http://sws.geonames.org/2077456/ |
| "The Hollow"^^xsd:string | http://img.jamendo.com/artists/t/thehollow.jpg | http://www.thehollowxixon.com | http://sws.geonames.org/2510769/ |
| "Darkened Escape"^^xsd:string | http://img.jamendo.com/artists/d/darkened.escape.jpg | http://www.myspace.com/darkenedescape | http://sws.geonames.org/2989663/ |
| "kaodenuit"^^xsd:string | http://img.jamendo.com/artists/k/kaodenuit.jpg | http://kaodenuit.free.fr/kao/?page_id=21 | http://sws.geonames.org/2987410/ |
| "François Ville/Missives"^^xsd:string | http://img.jamendo.com/artists/m/missives.jpg | http://www.wat.tv/francoisville | http://sws.geonames.org/2976082/ |
| "Whispering Johnson"^^xsd:string | http://img.jamendo.com/artists/w/whispering.johnson.jpg | http://www.whisperingj.addr.com | http://sws.geonames.org/6252001/ |
| "Mirek Krawczyk"^^xsd:string | http://mirekkrawczyk-jrotten.blogspot.com/ | http://sws.geonames.org/798544/ | |
| "Moondogs Blues Party"^^xsd:string | http://img.jamendo.com/artists/m/moondogs.blues.party.jpg | http://moondogsbluesparty.blogspot.com | http://sws.geonames.org/2510769/ |
| "V Traversa"^^xsd:string | http://img.jamendo.com/artists/v/v.traversa.jpg | http://www.vtraversa.blogspot.com | http://sws.geonames.org/3169560/ |
| "CIRC"^^xsd:string | http://img.jamendo.com/artists/c/circ.jpg | http://www.myspace.com/c1rc | http://sws.geonames.org/2996663/ |
| "Predator"^^xsd:string | http://img.jamendo.com/artists/p/predator.jpg | http://predatorsvenskpunk.dinstudio.se/text1_1.html | http://sws.geonames.org/2661886/ |
| "DJ NoS-K"^^xsd:string | http://img.jamendo.com/artists/n/nosk.jpg | http://www.myspace.com/djnosk | http://sws.geonames.org/3019599/ |
| "Viam"^^xsd:string | http://img.jamendo.com/artists/v/viam.jpg | http://www.musimpros.canalblog.com | http://sws.geonames.org/3013719/ |
| "Music is Love"^^xsd:string | http://img.jamendo.com/artists/d/devajoshua.jpg | http://www.music-is-love.com | http://sws.geonames.org/3172391/ |
| "DIXIT"^^xsd:string | http://img.jamendo.com/artists/d/dixit.jpg | http://dixit2008.blogspot.com/ | http://sws.geonames.org/3031359/ |
| "COELHO DE MORAES"^^xsd:string | http://img.jamendo.com/artists/c/coelho.de.moraes.jpg | http://www.produtoresindependentes.zip.net | http://sws.geonames.org/3469034/ |
| "bang!"^^xsd:string | http://img.jamendo.com/artists/b/bang.jpg | http://sws.geonames.org/3037147/ | |
| "Rstyle"^^xsd:string | http://img.jamendo.com/artists/r/rstyle.jpg | http://sws.geonames.org/2971090/ | |
| "DJ Didi"^^xsd:string | http://img.jamendo.com/artists/d/dj.didi.jpg | http://dj.didi.over-blog.com | http://sws.geonames.org/2967196/ |
| "Myriades"^^xsd:string | http://img.jamendo.com/artists/m/myriades.jpg | http://www.myriades.net | http://sws.geonames.org/2970749/ |
| "Suhanov / Maklakova / Kryshen"^^xsd:string | http://kadamba.onego.ru/ | http://sws.geonames.org/1835841/ | |
| "Maxa"^^xsd:string | http://img.jamendo.com/artists/m/maxa.jpg | http://www.music-is-love.com | http://sws.geonames.org/3172391/ |
| "JEM"^^xsd:string | http://img.jamendo.com/artists/j/jem.jpg | http://www.eternal-blaze.org/jem/jem.html | http://sws.geonames.org/2971090/ |
| "Nepenthes"^^xsd:string | http://img.jamendo.com/artists/n/nepenthes.jpg | http://nepenthes-rock.com | http://sws.geonames.org/3013663/ |
| "Erin Anderson"^^xsd:string | http://img.jamendo.com/artists/e/erin.anderson.jpg | http://sws.geonames.org/798549/ | |
| "Tony Bernardo"^^xsd:string | http://img.jamendo.com/artists/t/tonybernardo.jpg | http://www.AnimaRecordings.com | |
| "SIZ'L"^^xsd:string | http://img.jamendo.com/artists/s/siz-l.jpg | http://www.myspace.com/sizl7215 | http://sws.geonames.org/3012849/ |
| "Re-Birth"^^xsd:string | http://img.jamendo.com/artists/r/re-birth.jpg | http://www.Re-Birth.fr/ | http://sws.geonames.org/3013500/ |
| "T.F.M"^^xsd:string | http://img.jamendo.com/artists/t/t.f.m.jpg | http://www.tfm.de.gg | http://sws.geonames.org/2921044/ |
| "Freedom's children"^^xsd:string | http://img.jamendo.com/artists/f/freedomchildren.jpg | http://lederniervagabond.free.fr | http://sws.geonames.org/3013767/ |
| "Hangar18"^^xsd:string | http://img.jamendo.com/artists/h/hangar18.jpg | http://www.hangar18.fr | http://sws.geonames.org/2973357/ |
| "Diskorde"^^xsd:string | http://img.jamendo.com/artists/d/diskorde.jpg | http://www.diskorde.com | http://sws.geonames.org/2995603/ |
| "smokingband"^^xsd:string | http://img.jamendo.com/artists/s/smokingband.jpg | http://www.dracart.com/smokingband | http://sws.geonames.org/2510769/ |
| "AlcorMusic"^^xsd:string | http://img.jamendo.com/artists/a/alcormusic.jpg | http://alcormusic.com | http://sws.geonames.org/2968815/ |
| "LENIZION"^^xsd:string | http://img.jamendo.com/artists/l/lenizion.jpg | http://www.myspace.com/lenizion | http://sws.geonames.org/2510769/ |
| "The Holy Nut's Sons"^^xsd:string | http://img.jamendo.com/artists/t/the.holy.nutsons.jpg | http://theholynutsons.free.fr/ | http://sws.geonames.org/3023532/ |
| "Lubalyne"^^xsd:string | http://img.jamendo.com/artists/l/lubalyne.jpg | http://www.myspace.com/lubalyne | http://sws.geonames.org/3013736/ |
| "THE NEXT LEVeL..."^^xsd:string | http://img.jamendo.com/artists/t/the.next.level.jpg | http://www.thenextlevel.fr.nf | http://sws.geonames.org/2996663/ |
| "STEEP"^^xsd:string | http://img.jamendo.com/artists/s/steep.jpg | http://www.steep-music.de | http://sws.geonames.org/6556330/ |
| "7BZH"^^xsd:string | http://img.jamendo.com/artists/7/7bzh.jpg | http://www.7bzh.com | http://sws.geonames.org/3017382/ |
| "Durch Dick und Dünn"^^xsd:string | http://img.jamendo.com/artists/d/durch.dick.und.duenn.jpg | http://www.ddd-musik.de/ | http://sws.geonames.org/2884161/ |
| "Mister Jairo"^^xsd:string | http://www.lazyknob.blogspot.com | http://sws.geonames.org/2510769/ | |
| "Nazwa Zespoła"^^xsd:string | http://img.jamendo.com/artists/n/nazwazespola.jpg | http://student.twp.olsztyn.pl/~stabbb/NZ/strona.html | http://sws.geonames.org/798544/ |
| "Kornelia de l'Ange"^^xsd:string | http://img.jamendo.com/artists/k/k2a.jpg | http://sws.geonames.org/2975249/ | |
| "ninomilone.tk"^^xsd:string | http://img.jamendo.com/artists/n/ninomilone.tk.jpg | http://www.ninomilone.tk | http://sws.geonames.org/2510769/ |
| "Zenkman"^^xsd:string | http://img.jamendo.com/artists/z/zenkman.jpg | http://b.zenker@yahoo.de | http://sws.geonames.org/3213264/ |
| "MoiJe"^^xsd:string | http://img.jamendo.com/artists/m/moije.jpg | http://www.moije.net | http://sws.geonames.org/3013657/ |
| "MC303 heroes"^^xsd:string | http://img.jamendo.com/artists/m/mc303.heroes.png | http://sws.geonames.org/3017382/ | |
| "JEAN LUC VALERIO"^^xsd:string | http://img.jamendo.com/artists/j/jean.luc.valerio.jpg | http://jlvalerio.blogspot.com | http://sws.geonames.org/3036420/ |
| "Aeternam"^^xsd:string | http://img.jamendo.com/artists/m/mc.pechot.jpg | http://aeternam-aeternam.blogspot.com/ | http://sws.geonames.org/3020989/ |
| "Boeko"^^xsd:string | http://img.jamendo.com/artists/b/boeko.jpg | http://www.subtlerecordings.com/ | http://sws.geonames.org/6251999/ |
| "The Scientist Monkeys"^^xsd:string | http://img.jamendo.com/artists/t/the.scientist.monkey.jpg | http://www.scientistmonkey.com/ | http://sws.geonames.org/3023423/ |
| "Poing Comme"^^xsd:string | http://img.jamendo.com/artists/p/poing.comme.jpg | http://terra-tinook.blogspot.com/ | http://sws.geonames.org/2994111/ |
| "SaReGaMa"^^xsd:string | http://img.jamendo.com/artists/s/saregama.jpg | http://saregamatheartist.blogspot.com/ | |
| "Klangwerk"^^xsd:string | http://img.jamendo.com/artists/k/klangwerk.jpg | http://sws.geonames.org/2921044/ | |
| "Spaug"^^xsd:string | http://img.jamendo.com/artists/s/spaug.jpg | http://www.spaug.nl | http://sws.geonames.org/2750405/ |
| "SoulNap"^^xsd:string | http://img.jamendo.com/artists/s/soulnap.jpg | http://www.myspace.com/soulnap | http://sws.geonames.org/390903/ |
| "Boom Boom Beckett"^^xsd:string | http://img.jamendo.com/artists/b/boomboombeckett.jpg | http://boomboombeckett.blogspot.com | http://sws.geonames.org/3165523/ |
| "SAKTO"^^xsd:string | http://img.jamendo.com/artists/s/sakto-nin.jpg | http://www.patrick-aknin.book.fr | http://sws.geonames.org/3013500/ |
| "Andrea Barone"^^xsd:string | http://img.jamendo.com/artists/a/andrea.barone.jpg | http://www.myspace.com/andreabarone | http://sws.geonames.org/3177088/ |
| "JanLik"^^xsd:string | http://img.jamendo.com/artists/j/janlik.jpg | http://blogodo-blog.blogspot.com/ | http://sws.geonames.org/2975249/ |
| "Alteranti"^^xsd:string | http://img.jamendo.com/artists/a/alteranti.jpg | http://blog.myspace.com/alteranti | http://sws.geonames.org/3017382/ |
| "POLYCHROME"^^xsd:string | http://img.jamendo.com/artists/p/polychrome.jpg | http://polychrome-lautrepays.blogspot.com/ | http://sws.geonames.org/2975246/ |
| "bigmo"^^xsd:string | http://img.jamendo.com/artists/b/bigmo.jpg | http://membres.lycos.fr/mohamedessabri/ | http://sws.geonames.org/2989663/ |
| "narkaor"^^xsd:string | |||
| "TEMPUS FUGIT"^^xsd:string | http://img.jamendo.com/artists/t/tempus.fugit.jpg | http://tempfu.free.fr | http://sws.geonames.org/2984986/ |
| "WhiteRoom"^^xsd:string | http://img.jamendo.com/artists/o/officialwhiteroom.jpg | http://www.whiteroom.ca | http://sws.geonames.org/6251999/ |
| "Vamp In A Box"^^xsd:string | http://img.jamendo.com/artists/v/vamp.in.a.box.jpg | http://scaryprincess.bravehost.com/ | http://sws.geonames.org/390903/ |
| "Amalfi"^^xsd:string | http://sws.geonames.org/3034720/ | ||
| "FRK"^^xsd:string | http://img.jamendo.com/artists/f/frk.jpg | http://goodtek.free.fr | http://sws.geonames.org/3031359/ |
| "Nobody"^^xsd:string | http://img.jamendo.com/artists/n/nobody.jpg | http://sws.geonames.org/2930484/ | |
| "X3mpt"^^xsd:string | http://img.jamendo.com/artists/x/x3mpt.jpg | http://x3mptmusic.blogspot.com/ | http://sws.geonames.org/3177088/ |
| "Dark Dew"^^xsd:string | http://img.jamendo.com/artists/d/darkdew.jpg | http://www.darkdew.it | http://sws.geonames.org/3173434/ |
| "Moodstarrr Productions"^^xsd:string | http://img.jamendo.com/artists/m/moodstarrr.jpg | http://www.moodstarrr.com | http://sws.geonames.org/6557769/ |
| "Laïxa"^^xsd:string | http://img.jamendo.com/artists/l/laixa.jpg | http://www.myspace.com/musiquelaixa | http://sws.geonames.org/3013719/ |
| "DRDJEKILL"^^xsd:string | http://spaces.msn.com/members/DRDJEKILL/ | http://sws.geonames.org/2967196/ | |
| "djblaster"^^xsd:string | http://img.jamendo.com/artists/d/djblaster.jpg | http://www.djbla.com | http://sws.geonames.org/3175395/ |
| "Francesco"^^xsd:string | http://img.jamendo.com/artists/f/francesco.jpg | http://com1ami.blogspot.com/ | http://sws.geonames.org/3019599/ |
| "neantprod"^^xsd:string | http://img.jamendo.com/artists/n/neantprod.jpg | ||
| "Célibatfighters"^^xsd:string | http://img.jamendo.com/artists/c/celibatfighters.jpg | http://www.celibatfighters.com | http://sws.geonames.org/3037147/ |
| "Paolo Crivellaro"^^xsd:string | http://img.jamendo.com/artists/p/paolo.crivellaro.jpg | http://sws.geonames.org/3164526/ | |
| "VZero"^^xsd:string | http://img.jamendo.com/artists/v/vzero.jpg | http://uvezero.blogspot.com/ | http://sws.geonames.org/3113208/ |
| "Sunchase"^^xsd:string | http://img.jamendo.com/artists/s/sunchase.jpg | http://www.sunchase.new.fr | http://sws.geonames.org/2968815/ |
| "henri.petterson"^^xsd:string | http://img.jamendo.com/artists/h/henri.petterson.jpg | http://www.digitalvibes.org | http://sws.geonames.org/2921044/ |
| "Will Liam"^^xsd:string | http://img.jamendo.com/artists/w/will.liam.jpg | http://riffhifi.skyblog.com/ | http://sws.geonames.org/2970749/ |
| "Arnau Vilardebò"^^xsd:string | http://img.jamendo.com/artists/a/arnau.vilardebo.gif | http://arnaumarato.blogspot.com/ | http://sws.geonames.org/2510769/ |
| "La Diarrhée Verbale"^^xsd:string | http://img.jamendo.com/artists/d/didier.et.vivien.jpg | http://voa1.free.fr/didiervivien | http://sws.geonames.org/3020989/ |
| "softwhitebreasts"^^xsd:string | http://img.jamendo.com/artists/s/softwhitebreasts.jpg | http://www.myspace.com/edelweiss777swb | http://sws.geonames.org/3013663/ |
| "Shades of dream"^^xsd:string | http://img.jamendo.com/artists/s/shadesofdream.jpg | http://www.shadesofdream.com | http://sws.geonames.org/3012715/ |
| "cüül"^^xsd:string | http://img.jamendo.com/artists/c/cuul.jpg | http://www.cuul.ch | http://sws.geonames.org/2657895/ |
| "dRagin"^^xsd:string | http://img.jamendo.com/artists/d/dragin.jpg | http://dragin-music.bloog.pl/?q=1 | http://sws.geonames.org/798544/ |
| "outsounds"^^xsd:string | http://img.jamendo.com/artists/o/outsounds.jpg | http://outer-impressions.blogspot.com/ | http://sws.geonames.org/3169069/ |
| "drs+"^^xsd:string | http://img.jamendo.com/artists/u/unreleazed.gif | http://nokaut.cult.bg | http://sws.geonames.org/6459163/ |
| "crossingate"^^xsd:string | http://img.jamendo.com/artists/c/crossingate.jpg | http://www.crossingate.fr | http://sws.geonames.org/3020989/ |
| "Jaroslaw OBCY Gumowski"^^xsd:string | http://sws.geonames.org/798544/ | ||
| "SuperNova"^^xsd:string | http://img.jamendo.com/artists/s/supernova.gif | http://www.supernova-music.eu | http://sws.geonames.org/3182350/ |
| "amélie"^^xsd:string | http://img.jamendo.com/artists/a/amelie.jpg | http://www.amelieweb.com | http://sws.geonames.org/3173330/ |
| "daduk"^^xsd:string | http://img.jamendo.com/artists/d/daduk.gif | http://ietm.club.fr/etapres.html | |
| "Ades Vapor"^^xsd:string | http://img.jamendo.com/artists/a/ades.vapor.jpg | http://adesvapor.fr.nf | http://sws.geonames.org/2989663/ |
| "Brent Hugh"^^xsd:string | http://brenthugh.com | http://sws.geonames.org/6252001/ | |
| "elanbase"^^xsd:string | http://img.jamendo.com/artists/e/elanbase.gif | http://monokom.org | http://sws.geonames.org/6459163/ |
| "aquavitae"^^xsd:string | http://img.jamendo.com/artists/a/aquavitae.jpg | http://www.myspace.com/aquavitaeband | http://sws.geonames.org/2990129/ |
| "Cirilo Adriazola Salas"^^xsd:string | http://img.jamendo.com/artists/c/cirilo.adriazola.salas.jpg | http://www.corazon-musica.de | http://sws.geonames.org/2884161/ |
| "DDA"^^xsd:string | http://img.jamendo.com/artists/d/dda.jpg | __jamendo-3.rdf#__Description7 | http://sws.geonames.org/2973357/ |
| "nokaut"^^xsd:string | http://img.jamendo.com/artists/n/nokaut.jpg | http://nokaut.cult.bg | http://sws.geonames.org/6459163/ |
| "Joe Valentino"^^xsd:string | http://img.jamendo.com/artists/j/joe.valentino.jpg | http://www.joevalentino blogspot.com/ | http://sws.geonames.org/3023423/ |
| "Emanuele Marchi"^^xsd:string | http://emanuelemarchi.altervista.org | http://sws.geonames.org/3168842/ | |
| "euforia"^^xsd:string | http://img.jamendo.com/artists/e/euforia.jpg | http://www.micuadrillica.com/blog/02/07/euforia/ | http://sws.geonames.org/3114471/ |
| "The Ease Down"^^xsd:string | http://img.jamendo.com/artists/t/theeasedown.jpg | http://www.theeasedown.com | http://sws.geonames.org/6251999/ |
| "Antonio M. Navas"^^xsd:string | http://img.jamendo.com/artists/a/antoniomnavas.jpg | http://tpnavas.blogspot.com/ | http://sws.geonames.org/2510769/ |
| "LessCupid"^^xsd:string | http://img.jamendo.com/artists/l/lesscupid.jpg | http://www.myspace.com/lesscupid | http://sws.geonames.org/2921044/ |
| "tty0"^^xsd:string | http://img.jamendo.com/artists/t/tty0.jpg | http://www.tty0.com.ar | http://sws.geonames.org/3865483/ |
| "Raphaël Badawi"^^xsd:string | http://img.jamendo.com/artists/r/raphael.badawi.jpg | http://raphaelbadawi.hautetfort.com | http://sws.geonames.org/2969280/ |
| "ASPHALT"^^xsd:string | http://img.jamendo.com/artists/a/asphalt.jpg | http://asphalt-91.skyblog.com/ | http://sws.geonames.org/3019599/ |
| "X-Perimental"^^xsd:string | http://sws.geonames.org/6459162/ | ||
| "White Owl"^^xsd:string | http://img.jamendo.com/artists/w/white.owl.jpg | http://www.myspace.com/whiteowlru | http://sws.geonames.org/2017370/ |
| "NDNM"^^xsd:string | http://img.jamendo.com/artists/n/ndnm.jpg | http://www.myspace.com/mineurdemots | http://sws.geonames.org/3026644/ |
| "dope reach squad"^^xsd:string | http://img.jamendo.com/artists/d/dope.reach.squad.jpg | http://nokaut.cult.bg | http://sws.geonames.org/6459163/ |
| "ajk"^^xsd:string | http://ajklandia.blogspot.com | http://sws.geonames.org/798544/ | |
| "Shaëna"^^xsd:string | http://img.jamendo.com/artists/s/shaena.jpg | http://www.shaena.fr.nf | http://sws.geonames.org/3013500/ |
| "X-in"^^xsd:string | http://img.jamendo.com/artists/x/x-in.gif | http://www.myspace.com/xinmy | http://sws.geonames.org/3172391/ |
| "GroNaZz"^^xsd:string | http://img.jamendo.com/artists/g/gronazz.jpg | http://djgronazz.free.fr | http://sws.geonames.org/3013767/ |
| "BoX"^^xsd:string | http://img.jamendo.com/artists/b/box.jpg | http://www.box-music.net | http://sws.geonames.org/2968815/ |
| "Benjamin Voumard"^^xsd:string | http://img.jamendo.com/artists/b/benjamin.voumard.jpg | http://sws.geonames.org/2661551/ | |
| "BsnKs"^^xsd:string | http://img.jamendo.com/artists/b/bsnks.gif | http://pages.videotron.com/bsnks/ | http://sws.geonames.org/6251999/ |
| "Sébastien Damery"^^xsd:string | http://img.jamendo.com/artists/s/sebastien.damery.jpg | http://sebastien.damery.com | http://sws.geonames.org/3031359/ |
| "Both"^^xsd:string | http://img.jamendo.com/artists/b/both.jpg | http://www.both-world.com | http://sws.geonames.org/2991627/ |
| "Mihidea"^^xsd:string | http://www.17sons.com/articles.php?lng=en&pg=50 | http://sws.geonames.org/3017382/ | |
| "Beppu Nights by AWAKEN"^^xsd:string | http://img.jamendo.com/artists/b/beppu.nights.by.awaken.jpg | http://www.awaken.be | http://sws.geonames.org/2802361/ |
| "PhiNx"^^xsd:string | http://img.jamendo.com/artists/p/phinx.jpg | http://www.myspace.com/thephinx | http://sws.geonames.org/3164418/ |
| "Old bear"^^xsd:string | http://img.jamendo.com/artists/o/oldbear.jpg | http://www.oldbear.fr.fm | http://sws.geonames.org/2968815/ |
| "Bad Punchline"^^xsd:string | http://img.jamendo.com/artists/b/bad.punchline.jpg | http://www.bad-punchline.de | http://sws.geonames.org/6550508/ |
| "Victor Khaze"^^xsd:string | http://img.jamendo.com/artists/v/victor.khaze.jpg | http://www.victorkhaze.com | http://sws.geonames.org/6252001/ |
| "Le Capharnaüm"^^xsd:string | http://img.jamendo.com/artists/l/lecapharnaum.png | http://www.lecapharnaum.org | http://sws.geonames.org/3017382/ |
| "Ashley"^^xsd:string | http://img.jamendo.com/artists/a/ashley.jpg | http://alonewithashley.free.fr/ | http://sws.geonames.org/3031359/ |
| "Hakim"^^xsd:string | http://img.jamendo.com/artists/h/hakim.jpg | http://sws.geonames.org/3013663/ | |
| "Emergency Bloodshed"^^xsd:string | http://img.jamendo.com/artists/e/emergencybloodshed.jpg | http://www.myspace.com/emergencybloodshed | http://sws.geonames.org/2990129/ |
| "Christophe Lecoq"^^xsd:string | http://img.jamendo.com/artists/c/christophe.lecoq.jpg | http://www.myspace.com/clecoq | http://sws.geonames.org/2968815/ |
| "Fanny Denni"^^xsd:string | http://img.jamendo.com/artists/c/cc.jpg | http:// | http://sws.geonames.org/2994111/ |
| "Melanculia"^^xsd:string | http://img.jamendo.com/artists/m/melanculia.gif | http://www.melanculia.de | http://sws.geonames.org/3213264/ |
| "Flip Her Babies"^^xsd:string | http://img.jamendo.com/artists/f/flipherbabies.png | http://www.flipherbabies.org | http://sws.geonames.org/3019599/ |
| "Andrés Puppo"^^xsd:string | http://img.jamendo.com/artists/a/andrespuppo.jpg | http://andrespuppo.wordpress.com | http://sws.geonames.org/3439705/ |
| "placid"^^xsd:string | http://img.jamendo.com/artists/p/placid.jpg | http://placid-music.blogspot.com/ | http://sws.geonames.org/6557769/ |
| "Nayes"^^xsd:string | http://arcanes1.free.fr | http://sws.geonames.org/2629691/ | |
| "SLÄYD"^^xsd:string | http://img.jamendo.com/artists/s/slayd.jpg | http://www.1slayd.com | http://sws.geonames.org/2984986/ |
| "Thud."^^xsd:string | http://img.jamendo.com/artists/t/thud.jpg | http://sws.geonames.org/3017382/ | |
| "PARADOX!"^^xsd:string | http://img.jamendo.com/artists/p/paradox.jpg | http://www.paradox.net.pl | http://sws.geonames.org/798544/ |
| "val blurock"^^xsd:string | http://img.jamendo.com/artists/v/val.blurock.jpg | http://sws.geonames.org/3013719/ | |
| "Bunker Sessions"^^xsd:string | http://img.jamendo.com/artists/b/bunkersessions.jpg | http://www.myspace.com/bunkersessions | http://sws.geonames.org/2802361/ |
| "Sub Sin"^^xsd:string | http://img.jamendo.com/artists/s/subsin.png | http://www.subsin.be | http://sws.geonames.org/2802361/ |
| "Rafiralfiro"^^xsd:string | http://img.jamendo.com/artists/r/rafiralfiro.jpg | http://rafiralfiro.free.fr/ | http://sws.geonames.org/2971071/ |
| "Retrigger"^^xsd:string | http://img.jamendo.com/artists/r/retrigger.gif | http://www.retrigger.net | http://sws.geonames.org/3469034/ |
| "Project System 12"^^xsd:string | http://img.jamendo.com/artists/p/project.system.12.jpg | http://home.comcast.net/~projectsystem12/Project-System-12.htm | http://sws.geonames.org/6252001/ |
| "Magic Tong Family"^^xsd:string | http://img.jamendo.com/artists/m/magic.tong.family.jpg | http://www.magictongfamily.com | http://sws.geonames.org/3013767/ |
| "Robby MARINI"^^xsd:string | http://img.jamendo.com/artists/r/robby.marini.jpg | ||
| "to-m"^^xsd:string | http://img.jamendo.com/artists/t/to-m.jpg | http://hautetfort.com | http://sws.geonames.org/3013736/ |
| "andré le charcutier"^^xsd:string | http://img.jamendo.com/artists/a/andre.le.charcutier.jpg | http://andrelecharcutier.musique.com/ | http://sws.geonames.org/3013767/ |
| "Cyanure"^^xsd:string | http://img.jamendo.com/artists/c/cyanure.jpg | http://www.cyanure.fr | http://sws.geonames.org/2994111/ |
| "Juanjo Pacheco"^^xsd:string | http://img.jamendo.com/artists/j/juanjo.pacheco.jpg | http://www.lasbalsicas.blogcindario.com | http://sws.geonames.org/2510769/ |
| "HYPE"^^xsd:string | http://img.jamendo.com/artists/h/hype.jpg | http://www.myspace.com/hypemusic | http://sws.geonames.org/2968815/ |
| "mXsProject"^^xsd:string | http://img.jamendo.com/artists/m/mxsproject.jpg | http://mxsProject.blogspot.com | http://sws.geonames.org/3175395/ |
| "DaCapo"^^xsd:string | http://img.jamendo.com/artists/d/dacapo.jpg | http://. | http://sws.geonames.org/3025480/ |
| "Mark.Nine"^^xsd:string | http://img.jamendo.com/artists/m/mark.nine.jpg | http://www.marknine.com | http://sws.geonames.org/6252001/ |
| "Fish Man"^^xsd:string | http://img.jamendo.com/artists/f/fish.man.gif | http://fishman5487.blogspot.com/ | http://sws.geonames.org/6252001/ |
| "Rebolt"^^xsd:string | http://img.jamendo.com/artists/r/rebolt.jpg | http://www.myspace.com/reboltrock | http://sws.geonames.org/3144096/ |
| "Wire Moves"^^xsd:string | http://img.jamendo.com/artists/w/wiremoves.jpg | http://www.wiremoves.com | http://sws.geonames.org/2661886/ |
| "Sirio"^^xsd:string | http://img.jamendo.com/artists/s/sirio.jpg | http://www.jamendo.com/es/artist/sirio | http://sws.geonames.org/2514254/ |
| "Cruz Kers"^^xsd:string | http://img.jamendo.com/artists/c/cruz.kers.jpg | http://cruzkers.blogspot.com/ | http://sws.geonames.org/2971071/ |
| "Hunt Club"^^xsd:string | http://img.jamendo.com/artists/h/huntclub.jpg | http://www.myspace.com/huntclubmusic | http://sws.geonames.org/6252001/ |
| "eNoz"^^xsd:string | http://img.jamendo.com/artists/e/enoz.jpg | http://enoz.free.fr | http://sws.geonames.org/3012849/ |
| "LES2VAINS"^^xsd:string | http://img.jamendo.com/artists/l/les2vains.jpg | http://www.les2vains.com | http://sws.geonames.org/2990129/ |
| "DJRollo"^^xsd:string | http://img.jamendo.com/artists/d/djrollo.jpg | http://www.djrollo.de | http://sws.geonames.org/2930484/ |
| "-mystery-"^^xsd:string | http://img.jamendo.com/artists/m/mystery.jpg | http://www.theartofmystery.com | http://sws.geonames.org/2987410/ |
| "EndZeit-Effekt"^^xsd:string | http://img.jamendo.com/artists/e/endzeit-effekt.jpg | http://www.endzeit-effekt.de | http://sws.geonames.org/2921044/ |
| "Wortschatz"^^xsd:string | http://img.jamendo.com/artists/w/wortschatz-music.de.jpg | http://www.wortschatz-music.de | http://sws.geonames.org/6557769/ |
| "Staraya Derevnya"^^xsd:string | http://img.jamendo.com/artists/s/starder.jpg | http://www.starayaderevnya.co.uk | http://sws.geonames.org/294640/ |
| "Stéphane R."^^xsd:string | http://img.jamendo.com/artists/s/stephane.r.jpg | http://sws.geonames.org/3013767/ | |
| "Delên"^^xsd:string | http://img.jamendo.com/artists/d/delen.jpg | http://www.delenmusic.blogspot.com | http://sws.geonames.org/6424360/ |
| "lupus"^^xsd:string | http://img.jamendo.com/artists/l/lupus.jpg | http://www.myspace.com/lupusprod | http://sws.geonames.org/3013657/ |
| "béa"^^xsd:string | http://img.jamendo.com/artists/b/bea.jpg | http://sws.geonames.org/2994106/ | |
| "Anorquidia"^^xsd:string | http://img.jamendo.com/artists/a/anorquidia.jpg | http://www.lasbalsicas.blogcindario.com | http://sws.geonames.org/3104469/ |
| "The Pencil-Case"^^xsd:string | http://img.jamendo.com/artists/t/the.pencil-case.gif | http://www.thepencilcase.net | http://sws.geonames.org/3012849/ |
| "groupefugitif"^^xsd:string | http://img.jamendo.com/artists/g/groupefugitif.gif | http://www.groupefugitif.com | http://sws.geonames.org/2994111/ |
| "dagel Flavor"^^xsd:string | http://sws.geonames.org/3013500/ | ||
| "Saevio"^^xsd:string | http://img.jamendo.com/artists/s/saevio.jpg | http://saevio.info | http://sws.geonames.org/3012804/ |
| "RUN"^^xsd:string | http://img.jamendo.com/artists/r/run.jpg | http://sws.geonames.org/2994111/ | |
| "[package radio]"^^xsd:string | http://img.jamendo.com/artists/p/package.radio.jpg | http://www.packageradio.com | http://sws.geonames.org/3209442/ |
| "timurkosma"^^xsd:string | http://timurkosma.ru/ | http://sws.geonames.org/2017370/ | |
| "Pioneiros"^^xsd:string | |||
| "Poxfil"^^xsd:string | http://www.poxfil.net | http://sws.geonames.org/2990129/ | |
| "Adam Brożyński"^^xsd:string | http://img.jamendo.com/artists/d/dunder.jpg | http://dunder.pl | http://sws.geonames.org/798544/ |
| "gjjo"^^xsd:string | http://img.jamendo.com/artists/g/gjjo.jpg | http://gjjo.blogspot.com/ | http://sws.geonames.org/3019599/ |
| "HYPNOIDsound"^^xsd:string | http://img.jamendo.com/artists/h/hypnoidsound.jpg | http://www.myspace.com/hypnoidsound63 | http://sws.geonames.org/2994111/ |
| "Yann Reversat"^^xsd:string | http://img.jamendo.com/artists/y/yann.reversat.gif | http://www.yannreversat.fr | http://sws.geonames.org/2968815/ |
| "Mel's"^^xsd:string | http://img.jamendo.com/artists/m/mel.s.jpg | http://mels.hautetfort.com | http://sws.geonames.org/2970749/ |
| "drunken butterfly"^^xsd:string | http://img.jamendo.com/artists/d/drunken.butterfly.jpg | http://myspace.com/thedrunkenbutterfly | http://sws.geonames.org/2991879/ |
| "Jazin"^^xsd:string | http://img.jamendo.com/artists/j/jazin.jpg | http://www.wortschatz-music.de | http://sws.geonames.org/6557769/ |
| "Frenchy Bob"^^xsd:string | http://img.jamendo.com/artists/f/frenchy.bob.jpg | http://www.music-of-the-month.com | http://sws.geonames.org/2970554/ |
| "ghostfog"^^xsd:string | http://img.jamendo.com/artists/g/ghostfog.jpg | http://www.ghostfog.de | http://sws.geonames.org/3213264/ |
| "Thufir_Hawat"^^xsd:string | http://img.jamendo.com/artists/t/titusthefox.jpg | http://musicamusicaemusicamanonsolo.blogspot.com/ | http://sws.geonames.org/3173434/ |
| "75 Clan"^^xsd:string | http://img.jamendo.com/artists/f/family.did.png | http://www.75clan.com | http://sws.geonames.org/2968815/ |
| "Acid Reflux"^^xsd:string | http://img.jamendo.com/artists/a/acid.reflux.jpg | http://sws.geonames.org/6252001/ | |
| "Phonophobia 70"^^xsd:string | http://img.jamendo.com/artists/p/phonophobia70.jpg | http://phonophobia70.blogspot.com | http://sws.geonames.org/2884161/ |
| "Jarhead"^^xsd:string | http://img.jamendo.com/artists/j/jarhead.jpg | http://jarhead.over-blog.net/ | http://sws.geonames.org/2968815/ |
| "Jean La Nouille"^^xsd:string | http://maybe one day.../ | http://sws.geonames.org/2968815/ | |
| "Simon Hartcher - Audiophile"^^xsd:string | http://img.jamendo.com/artists/a/audiophile.jpg | http://www.myspace.com/simonhartcher | http://sws.geonames.org/2077456/ |
| "alvarsovy"^^xsd:string | http://img.jamendo.com/artists/a/alvarsovy.jpg | http://alvarsovy.ifrance.com | http://sws.geonames.org/3017382/ |
| "Dj-G0liATh"^^xsd:string | http://img.jamendo.com/artists/d/dj-g0liath.gif | http://leparadisxx.spaces.live.com/ | http://sws.geonames.org/2802361/ |
| "SicknessOfMind"^^xsd:string | http://img.jamendo.com/artists/s/som.jpg | http://www.myspace.com/sicknessofmind01 | http://sws.geonames.org/6251999/ |
| "June Curtsey"^^xsd:string | http://img.jamendo.com/artists/j/june.curtsey.jpg | http://www.myspace.com/officialjunecurtsey | http://sws.geonames.org/2997861/ |
| "DJ FTC"^^xsd:string | http://img.jamendo.com/artists/d/djftc.gif | http://www.djftc.com | http://sws.geonames.org/3013736/ |
| "Melophon"^^xsd:string | http://img.jamendo.com/artists/m/melophon.jpg | http://www.gebert-hh.de/melophon/index.htm | http://sws.geonames.org/2911297/ |
| "jazzcomputer.org"^^xsd:string | http://img.jamendo.com/artists/j/jazzcomputer.org.jpg | http://www.jazzcomputer.org/ | http://sws.geonames.org/2968815/ |
| "The Vector Approach"^^xsd:string | http://img.jamendo.com/artists/t/thevectorapproach.png | http://thevectorapproach.110mb.com/ | http://sws.geonames.org/6252001/ |
| "Dreamer"^^xsd:string | http://img.jamendo.com/artists/d/dreamer.jpg | http://spaces.msn.com/dreamerisalive/ | http://sws.geonames.org/2970140/ |
| "Quai-G"^^xsd:string | http://img.jamendo.com/artists/q/quai-g.jpg | http://www.myspace.com/quaigmusic | http://sws.geonames.org/3023423/ |
| "Tha Silent Partner"^^xsd:string | http://img.jamendo.com/artists/t/tha.silent.partner.jpg | http://www.thasilentpartner.net | http://sws.geonames.org/6252001/ |
| "Les 3 Singes"^^xsd:string | http://img.jamendo.com/artists/l/les3singes.jpg | http://www.les3singes.net | http://sws.geonames.org/2968815/ |
| "NICOCO"^^xsd:string | http://img.jamendo.com/artists/n/nicoco.jpg | http://nicoco007.free.fr | http://sws.geonames.org/2968815/ |
| "FLYING SAUCERS INDUSTRY"^^xsd:string | http://img.jamendo.com/artists/f/fsimusic.jpg | http://www.fsimusic.net | http://sws.geonames.org/2990129/ |
| "Heptapop (FRLacoustics)"^^xsd:string | http://img.jamendo.com/artists/h/heptapop.jpg | http://sws.geonames.org/3007866/ | |
| "Thierry de Massia"^^xsd:string | http://img.jamendo.com/artists/t/tdemassia.jpg | http://www.t3dm.fr | http://sws.geonames.org/3038049/ |
| "The Chameleon Orchestra"^^xsd:string | http://img.jamendo.com/artists/t/the.chameleon.orchestra.jpg | http://synlabor.depublications/chameleonorchestra | http://sws.geonames.org/2921044/ |
| "Of The I"^^xsd:string | http://img.jamendo.com/artists/o/ofthei.jpg | http://www.myspace.com/ofthei | |
| "rika"^^xsd:string | http://img.jamendo.com/artists/r/rika.jpg | http://rika.at.tt | http://sws.geonames.org/2782113/ |
| "WpHoMe"^^xsd:string | http://img.jamendo.com/artists/w/wphome.jpg | http://wphome.site.voila.fr/ | http://sws.geonames.org/2969280/ |
| "Juanitos"^^xsd:string | http://img.jamendo.com/artists/j/juanitos.png | http://www.juanitos.net | http://sws.geonames.org/2975517/ |
| "LaJawz"^^xsd:string | http://img.jamendo.com/artists/l/lajawz.jpg | http://lajawz.blogspot.com/ | http://sws.geonames.org/3013500/ |
| "Jon Wayne"^^xsd:string | http://img.jamendo.com/artists/j/jon.wayne.jpg | http://captaincookie.blogspot.com/ | http://sws.geonames.org/6252001/ |
| "Last Sunday"^^xsd:string | http://img.jamendo.com/artists/l/lastsunday.jpg | http://www.asb-entertainment.de | http://sws.geonames.org/2884161/ |
| "Aitor Burgos"^^xsd:string | http://img.jamendo.com/artists/a/aitor.burgos.jpg | http://aitorburgos.blogspot.com/ | http://sws.geonames.org/3104469/ |
| "3tronik"^^xsd:string | http://img.jamendo.com/artists/3/3tronik.gif | http://www.3tronik.net | http://sws.geonames.org/2990129/ |
| "Marieva's Project"^^xsd:string | http://img.jamendo.com/artists/m/marieva.project.jpg | http://www.e-monsite.com/marieva-project | http://sws.geonames.org/2997861/ |
| "K-wah"^^xsd:string | http://img.jamendo.com/artists/k/k-wah.jpg | http://kwah.free.fr/ | http://sws.geonames.org/3029094/ |
| "deathstar"^^xsd:string | http://img.jamendo.com/artists/d/deathstar.jpg | http://www.myspace.com/adventureinnewlowfi | http://sws.geonames.org/3012715/ |
| "Contreband"^^xsd:string | http://img.jamendo.com/artists/c/contreband.jpg | http://www.contreband.cjb.net | http://sws.geonames.org/2968815/ |
| "Liquid concept"^^xsd:string | http://www.17sons.com/articles.php?lng=en&pg=55 | http://sws.geonames.org/3017382/ | |
| "Alexandre Quarz"^^xsd:string | http://img.jamendo.com/artists/a/alexandre.quarz.jpg | http://sws.geonames.org/2987410/ | |
| "Dr Pombo"^^xsd:string | http://img.jamendo.com/artists/d/drpombo.jpg | http://doctorpombo.blogia.com | http://sws.geonames.org/2510769/ |
| "Kasbah"^^xsd:string | http://img.jamendo.com/artists/k/kasbah.jpg | http://www.lasbalsicas.info | http://sws.geonames.org/3129138/ |
| "Negative Trip"^^xsd:string | http://img.jamendo.com/artists/n/negative.trip.jpg | http://www.negativetrip.com | http://sws.geonames.org/2657895/ |
| "Bayern Webern"^^xsd:string | http://img.jamendo.com/artists/b/bayern.webern.jpg | http://sws.geonames.org/2521883/ | |
| "Luzinda Warrior"^^xsd:string | http://img.jamendo.com/artists/l/luzinda.warrior.jpg | http://lasbalsicas.info | http://sws.geonames.org/3129138/ |
| "humeka"^^xsd:string | http://img.jamendo.com/artists/h/humeka.jpg | http://www.myspace.com/humeka | http://sws.geonames.org/2968815/ |
| "Amnesie"^^xsd:string | http://img.jamendo.com/artists/a/amnesie.gif | http://www.mygrindcore.de | http://sws.geonames.org/2921044/ |
| "Kleï"^^xsd:string | http://img.jamendo.com/artists/k/klei.jpg | http://www.klei-online.com/ | http://sws.geonames.org/2968815/ |
| "paolo di sabatino"^^xsd:string | http://img.jamendo.com/artists/p/paolo.di.sabatino.jpg | http://www.paolodisabatino.it | http://sws.geonames.org/3165802/ |
| "&ND"^^xsd:string | http://img.jamendo.com/artists/8/8nd.jpg | http://www.myspace.com/8nd | http://sws.geonames.org/2968815/ |
| "Limbo deluxe"^^xsd:string | http://img.jamendo.com/artists/l/limbo.deluxe.jpg | http://www.limbo-deluxe.com | http://sws.geonames.org/2975517/ |
| "100 Sens Sur"^^xsd:string | http://img.jamendo.com/artists/1/100.sens.sur.jpg | http://100.Le-GA.com | http://sws.geonames.org/6251999/ |
| "Shakâlakah"^^xsd:string | http://img.jamendo.com/artists/s/shakalakah.gif | http://shakalakah.free.fr | http://sws.geonames.org/3015948/ |
| "Franck Mouzon"^^xsd:string | http://img.jamendo.com/artists/f/franck.mouzon.jpg | http://untourchezfranck.blogspot.com/ | http://sws.geonames.org/2970554/ |
| "COUCOU"^^xsd:string | http://img.jamendo.com/artists/c/coucou.jpg | http://gjandot.free.fr/musique.html | http://sws.geonames.org/2967196/ |
| "John Holden"^^xsd:string | http://img.jamendo.com/artists/j/john.holden.jpg | http://www.detrimentalinformation.com | http://sws.geonames.org/6252001/ |
| "Benshmark"^^xsd:string | http://img.jamendo.com/artists/b/benshmark.jpg | http://benshmark.blogspot.com/2007/03/benshmark.html | http://sws.geonames.org/6556330/ |
| "Moving sand"^^xsd:string | http://img.jamendo.com/artists/m/moving.sand.jpg | http://movingsand.unblog.fr/ | http://sws.geonames.org/2802361/ |
| "Nikila"^^xsd:string | http://nikilart.blogspot.com/ | http://sws.geonames.org/3012715/ | |
| "Samuel"^^xsd:string | http://img.jamendo.com/artists/s/samuel.jpg | http://www.myspace.com/uponeternity | http://sws.geonames.org/2971090/ |
| "Die with Dignity"^^xsd:string | http://img.jamendo.com/artists/d/die.with.dignity.jpg | http://www.die-with-dignity.de | http://sws.geonames.org/3213264/ |
| "cometa"^^xsd:string | http://img.jamendo.com/artists/c/cometa_(Jamendo).jpg | __jamendo-3.rdf#__Description8 | http://sws.geonames.org/3175395/ |
| "Miss Emma"^^xsd:string | http://img.jamendo.com/artists/m/miss.emma.jpg | http://profile.myspace.com/emmanaveira | http://sws.geonames.org/2975517/ |
| "DjPac"^^xsd:string | http://img.jamendo.com/artists/d/djpac.png | http://www.agolhon.com | http://sws.geonames.org/742865/ |
| "#NarNaoud#"^^xsd:string | http://img.jamendo.com/artists/n/narnaoud1.jpg | http://www.boxson.net/telechargement.php?id=924 | http://sws.geonames.org/3015948/ |
| "do-up"^^xsd:string | http://img.jamendo.com/artists/d/do-up.png | http://do-up.ru/ | http://sws.geonames.org/2017370/ |
| "Giorgio Campagnano"^^xsd:string | http://img.jamendo.com/artists/g/giorgio.campagnano.jpg | http://www.myspace.com/giorgiocampagnano | http://sws.geonames.org/3169069/ |
| "Marc Reeves"^^xsd:string | http://img.jamendo.com/artists/m/marc.reeves.jpg | http://www.myspace.com/mjronline | |
| "Habemus Punk"^^xsd:string | http://img.jamendo.com/artists/h/habemus.punk.jpg | http://www.myspace.com/habemuspunk | http://sws.geonames.org/3173434/ |
| "Nicolas Kern"^^xsd:string | http://img.jamendo.com/artists/n/nicolas.kern.jpg | http://www.nicolaskern.free.fr | http://sws.geonames.org/3031359/ |
| "GOLDEN BOY (FOSPASSIN)"^^xsd:string | http://img.jamendo.com/artists/g/golden.boy.fospassin.jpg | http://isound.com/golden_boy_fospassin | http://sws.geonames.org/6252001/ |
| "Pedro Novoa"^^xsd:string | http://img.jamendo.com/artists/p/pedro.novoa.jpg | http://pedronovoa.septimacuerda.com/ | http://sws.geonames.org/3932488/ |
| "ISItheDreaMakeR"^^xsd:string | http://img.jamendo.com/artists/i/isithedreamaker.jpg | http://isithedreamaker.altervista.org | http://sws.geonames.org/3175531/ |
| "Xera"^^xsd:string | http://img.jamendo.com/artists/x/xera.png | http://xera.com.es | http://sws.geonames.org/2510769/ |
| "daniel roca"^^xsd:string | http://img.jamendo.com/artists/d/daniel.roca.jpg | http://danroca.blog4ever.com | http://sws.geonames.org/2967196/ |
| "Thalion"^^xsd:string | http://img.jamendo.com/artists/t/thalion.jpg | http://sws.geonames.org/2987410/ | |
| "A.n.K.h"^^xsd:string | http://img.jamendo.com/artists/a/a.n.k.h.jpg | http://www.myspace.com/ankhelectro | http://sws.geonames.org/3013500/ |
| "Kolektyw Etopiryna"^^xsd:string | http://img.jamendo.com/artists/k/kolektyw.etopiryna.jpg | http://etopiryna.altpro.net | http://sws.geonames.org/798544/ |
| "J.Blasco"^^xsd:string | http://img.jamendo.com/artists/j/j.blasco.jpg | http://jaopticamusic.blogspot.com/ | http://sws.geonames.org/2511173/ |
| "Elias Damian"^^xsd:string | http://img.jamendo.com/artists/e/eliasdamian.jpg | http://www.myspace.com/eliasdamian | http://sws.geonames.org/3213264/ |
| "Los Intokables del reggaeton"^^xsd:string | http://img.jamendo.com/artists/l/los.intokables.del.reggaeton.jpg | http://www.myspace.com/losintokablesdelreggaeton | http://sws.geonames.org/2395170/ |
| "Ptub"^^xsd:string | http://img.jamendo.com/artists/p/ptub.jpg | http://myspace.com/ptub | http://sws.geonames.org/798544/ |
| "Proun"^^xsd:string | http://img.jamendo.com/artists/p/proun.jpg | http://www.myspace.com/proyectoproun | http://sws.geonames.org/3117813/ |
| "Kapela na Dobry Dzień"^^xsd:string | http://img.jamendo.com/artists/k/k.n.d.d.jpg | http://kapelanadobrydzien.blogspot.com/ | http://sws.geonames.org/798544/ |
| "DOLLSEX"^^xsd:string | http://img.jamendo.com/artists/p/psik6.jpg | http://www.dollsex.be | http://sws.geonames.org/2802361/ |
| "FRED FERRACCI"^^xsd:string | http://img.jamendo.com/artists/f/fred.ferracci.jpg | http://NEANT | http://sws.geonames.org/3031359/ |
| "FAHORO MEI"^^xsd:string | http://img.jamendo.com/artists/f/fahoromei.jpg | http://www.myspace.com/fahoromei | http://sws.geonames.org/2975246/ |
| "Low Cost Music"^^xsd:string | http://img.jamendo.com/artists/l/lowcostmusic.jpg | http://www.myspace.com/lowcostmusic | http://sws.geonames.org/2990129/ |
| "Radio Latinos"^^xsd:string | http://img.jamendo.com/artists/r/radio.latinos.jpg | http://radiolatinos.blogspot.com | http://sws.geonames.org/3996063/ |
| "le 31 février..."^^xsd:string | http://img.jamendo.com/artists/l/le.31.fevrier.jpg | http://bientôt/ | http://sws.geonames.org/2264397/ |
| "XL Ant"^^xsd:string | http://img.jamendo.com/artists/x/xl.ant.jpg | http://saregamatheartist.blogspot.com/ | |
| "Pedritito"^^xsd:string | http://img.jamendo.com/artists/p/pedritito.jpg | http://www.pedritito.com/ | http://sws.geonames.org/1699807/ |
| "sergio capretti"^^xsd:string | http://img.jamendo.com/artists/s/sergio.capretti.jpg | http://capretti-sergio.blogspot.com/ | http://sws.geonames.org/3037136/ |
| "Lull"^^xsd:string | http://img.jamendo.com/artists/l/lull.jpg | http://www.myspace.com/lull4 | http://sws.geonames.org/2968815/ |
| "Androide Paranoiaque"^^xsd:string | http://img.jamendo.com/artists/a/androide.paranoiaque.jpg | http://www.thenationalanthem.net/ap/ | http://sws.geonames.org/2802361/ |
| "Feld"^^xsd:string | http://img.jamendo.com/artists/f/feld.gif | http://www.feldall.de | http://sws.geonames.org/6557769/ |
| "LéYàK"^^xsd:string | http://img.jamendo.com/artists/t/tom.leyak.gif | http://leyak.blogspot.com/index.html | http://sws.geonames.org/2968815/ |
| "nenad romic za novyi byte"^^xsd:string | http://img.jamendo.com/artists/n/nenad.romic.za.novyi.byte.jpg | http://ki.ber.kom.uni.st/novyibyte | http://sws.geonames.org/3337511/ |
| "XXX"^^xsd:string | http://img.jamendo.com/artists/x/xxx.jpg | http://www.xxx-music.de/ | http://sws.geonames.org/3213264/ |
| "Ysé"^^xsd:string | http://img.jamendo.com/artists/y/yse.jpg | http://www.yseweb.net | http://sws.geonames.org/2968815/ |
| "MISERY"^^xsd:string | http://img.jamendo.com/artists/m/misery.jpg | http://www.myspace.com/hananmisery | http://sws.geonames.org/2510769/ |
| "Carlos Rives"^^xsd:string | http://img.jamendo.com/artists/c/carlos.rives.jpg | http://interludere.blogspot.com/ | http://sws.geonames.org/6424360/ |
| "FOSPASSIN"^^xsd:string | http://img.jamendo.com/artists/f/fospassin.jpg | http://myspace.com/goldenboyf | http://sws.geonames.org/6252001/ |
| "Alex Cyan"^^xsd:string | http://img.jamendo.com/artists/a/alex.cyan.jpg | http://www.cyanure.fr | http://sws.geonames.org/2994111/ |
| "Juan Shamán"^^xsd:string | http://img.jamendo.com/artists/j/juanshaman.jpg | http://www.juanshaman.com | http://sws.geonames.org/3624060/ |
| "Keemiyo"^^xsd:string | http://img.jamendo.com/artists/k/keemiyo.jpg | http://musica.aiamproject.com/index.php?option=com_content&task=view&id=17&Itemid=42 | http://sws.geonames.org/2510769/ |
| "da Noise Maker"^^xsd:string | http://img.jamendo.com/artists/d/da.noise.maker.jpg | http://www.myspace.com/makedanoise | http://sws.geonames.org/3013657/ |
| "OCEBE"^^xsd:string | http://www.fotolog.com/ocebe | http://sws.geonames.org/3895114/ | |
| "DJ Blackwidow"^^xsd:string | http://img.jamendo.com/artists/d/dj.blackwidow.jpg | http://www.myspace.com/djblackwidow8000 | http://sws.geonames.org/6252001/ |
| "misere&cordes"^^xsd:string | http://site.voila.fr/miseretcordes | http://sws.geonames.org/2991879/ | |
| "Ray Grant"^^xsd:string | http://img.jamendo.com/artists/r/raygrant.jpg | http://www.raygrant.com | http://sws.geonames.org/2750405/ |
| "Focolitus"^^xsd:string | http://img.jamendo.com/artists/f/focolitus.jpg | http://focolitus.no.sapo.pt | http://sws.geonames.org/2738782/ |
| "FRONTSIDE"^^xsd:string | http://img.jamendo.com/artists/f/frontside.jpg | http://frontsidemetal.free.fr/ | http://sws.geonames.org/3013663/ |
| "SognoLucido"^^xsd:string | http://img.jamendo.com/artists/s/sognolucido.jpg | http://sognolucido-poprock.blogspot.com | http://sws.geonames.org/2523918/ |
| "Peri Mental"^^xsd:string | http://img.jamendo.com/artists/d/dance.jpg | http://www.myspace.com/dancecoreunited | http://sws.geonames.org/2017370/ |
| "...with sad adieus"^^xsd:string | http://img.jamendo.com/artists/w/with.sad.adieus.jpg | http://withsadadieus.blogspot.com/ | http://sws.geonames.org/798544/ |
| "Delko"^^xsd:string | http://img.jamendo.com/artists/d/delko.jpg | http://www.delko.org | http://sws.geonames.org/3013760/ |
| "aRAPiata"^^xsd:string | http://img.jamendo.com/artists/a/arapiata.jpg | http://sws.geonames.org/2661602/ | |
| "Sentido Inverso"^^xsd:string | http://img.jamendo.com/artists/s/sentidoinverso.jpg | http://www.sentidoinverso.com.br | http://sws.geonames.org/3469034/ |
| "Tchaï Bom"^^xsd:string | http://img.jamendo.com/artists/t/tchai.bom.jpg | http://www.tchaibom.com | http://sws.geonames.org/3038050/ |
| "kwhyos"^^xsd:string | http://img.jamendo.com/artists/k/kwhyos.jpg | http://www.myspace.com/kwhyOS | http://sws.geonames.org/1269750/ |
| "iool"^^xsd:string | http://img.jamendo.com/artists/i/iool.jpg | http://xilecitta.tumblr.com | http://sws.geonames.org/2510769/ |
| "Talco"^^xsd:string | http://img.jamendo.com/artists/t/talco.jpg | http://www.talcoska.it | http://sws.geonames.org/3164600/ |
| "MONOLITHE"^^xsd:string | http://img.jamendo.com/artists/m/monolithe.jpg | http://www.monolithe.free.fr | http://sws.geonames.org/2968815/ |
| "Guy Courtine"^^xsd:string | http://img.jamendo.com/artists/g/guy.courtine.jpg | http://www.guycourtine.ch | http://sws.geonames.org/2659752/ |
| "Chrysalide"^^xsd:string | http://img.jamendo.com/artists/c/chrysalide.jpg | http://www.apreslachute.com | http://sws.geonames.org/3015948/ |
| "masss"^^xsd:string | http://img.jamendo.com/artists/m/masss.jpg | http://mpxplayer.pl | http://sws.geonames.org/798544/ |
| "Kyhogina"^^xsd:string | http://img.jamendo.com/artists/k/kyhogina.jpg | http://www.myspace.com/kyhogina | http://sws.geonames.org/2782113/ |
| "LES CULS IVRES"^^xsd:string | http://img.jamendo.com/artists/l/les.culs.ivres.jpg | http://www.lesculsivres.com | http://sws.geonames.org/2976082/ |
| "RIDDIMPERIALISM"^^xsd:string | http://img.jamendo.com/artists/r/riddimperialism.jpg | http://www.myspace.com/riddimperialism | http://sws.geonames.org/2994111/ |
| "Anima"^^xsd:string | http://img.jamendo.com/artists/a/anima.jpg | http://www.myspace.com/animaontheweb | http://sws.geonames.org/2975249/ |
| "dust|box"^^xsd:string | http://img.jamendo.com/artists/d/dustbox.jpg | http://www.dustbox.org | http://sws.geonames.org/798544/ |
| "mr nico"^^xsd:string | http://img.jamendo.com/artists/m/mr.nico.jpg | http://www.mr-nico.com | http://sws.geonames.org/3031359/ |
| "Gazebo Penguins"^^xsd:string | http://img.jamendo.com/artists/g/gazebo.penguins.gif | http://www.gazebopenguins.com | http://sws.geonames.org/6540088/ |
| "Szpital"^^xsd:string | http://img.jamendo.com/artists/s/szpital.png | http://www.szpital.witryna.info/ | http://sws.geonames.org/858791/ |
| "BlackStripes"^^xsd:string | http://img.jamendo.com/artists/b/blackstripes.gif | http://www.blackstripes.de | http://sws.geonames.org/2921044/ |
| "Rody Sousa"^^xsd:string | http://img.jamendo.com/artists/r/rodysousa.jpg | http://www.soundclick.com/rodysousa | http://sws.geonames.org/2510910/ |
| "Area 51"^^xsd:string | http://img.jamendo.com/artists/a/area51.jpg | http://www.jamendo.com/es/artist/area51 | http://sws.geonames.org/2287781/ |
| "Goiko"^^xsd:string | http://img.jamendo.com/artists/g/goiko.jpg | http://www.myspace.com/goikomusic | http://sws.geonames.org/2510769/ |
| "PATTI"^^xsd:string | http://img.jamendo.com/artists/p/patti.jpg | http://J AI PAS DE SITE/ | http://sws.geonames.org/3031359/ |
| "Sevenfire PhoeniX"^^xsd:string | http://img.jamendo.com/artists/s/sevenfire.phoenix.jpg | http://www.sevenfaya.com | http://sws.geonames.org/3570311/ |
| "Outta Limits"^^xsd:string | http://img.jamendo.com/artists/o/outtalimits.gif | http://www.outtalimits.de | http://sws.geonames.org/3213264/ |
| "bianconiglio"^^xsd:string | http://img.jamendo.com/artists/b/bianconiglio.jpg | http://sws.geonames.org/3174050/ | |
| "Pasquale Tufano"^^xsd:string | http://qpilpianoforte.altervista.org/ | http://sws.geonames.org/3172391/ | |
| "Motocontínuo"^^xsd:string | http://img.jamendo.com/artists/m/motocontinuo.png | http://www.motocontinuo.net | http://sws.geonames.org/3469034/ |
| "The Taylors of Harrogate"^^xsd:string | http://img.jamendo.com/artists/t/toh.png | http://sws.geonames.org/2971090/ | |
| "Fjin Zout "^^xsd:string | http://img.jamendo.com/artists/a/ab200tw.jpg | http://sws.geonames.org/3020989/ | |
| "Koji"^^xsd:string | http://img.jamendo.com/artists/k/koji.jpg | http://www.myspace.com/kojisound | http://sws.geonames.org/2970749/ |
| "eXp"^^xsd:string | http://www.NEPASGERBER.fr | http://sws.geonames.org/2967681/ | |
| "Miscere"^^xsd:string | http://img.jamendo.com/artists/m/miscere.jpg | http://yothcatharsis.free.fr | http://sws.geonames.org/3017382/ |
| "Liscus"^^xsd:string | http://img.jamendo.com/artists/l/liscus.jpg | http://www.myspace.com/liscus | http://sws.geonames.org/3169069/ |
| "Andreas Hammer"^^xsd:string | http://img.jamendo.com/artists/a/andreas.hammer.jpg | http://www.myspace.com/jem777guitarist | http://sws.geonames.org/6556330/ |
| "Fiddle"^^xsd:string | http://img.jamendo.com/artists/f/fiddle.jpg | http://suprema.fr | http://sws.geonames.org/3019317/ |
| "Grégoire Lourme"^^xsd:string | http://www.weisy-productions.tk/ | http://sws.geonames.org/3013767/ | |
| "Sir Hunger"^^xsd:string | http://img.jamendo.com/artists/s/sir.hunger.jpg | http://keine | http://sws.geonames.org/2657895/ |
| "The Flykicks"^^xsd:string | http://img.jamendo.com/artists/t/the.flykicks.jpg | http://flykicks.mosebok.org/ | http://sws.geonames.org/2661886/ |
| "djill"^^xsd:string | http://sws.geonames.org/3013767/ | ||
| "Il Silenzio di Ghisa"^^xsd:string | http://img.jamendo.com/artists/i/ilsilenziodighisa.gif | http://www.myspace.com/ilsilenziodighisa | http://sws.geonames.org/3169069/ |
| "Bessonn&sa"^^xsd:string | http://sws.geonames.org/2017370/ | ||
| "Marko"^^xsd:string | http://img.jamendo.com/artists/m/marko57.jpg | http://www.marko-musique.new.fr | http://sws.geonames.org/2991627/ |
| "Trick Seventeen"^^xsd:string | http://img.jamendo.com/artists/t/trick.seventeen.png | http://www.myspace.com/trickseventeen | http://sws.geonames.org/2930484/ |
| "Distemper"^^xsd:string | http://img.jamendo.com/artists/d/distemper.jpg | http://myspace.com/distempermoscow | http://sws.geonames.org/2017370/ |
| "Rehearsal Jazz"^^xsd:string | http://img.jamendo.com/artists/r/rejazz.jpg | http://www.rejazz.pl | http://sws.geonames.org/798544/ |
| "Sajtrus"^^xsd:string | http://img.jamendo.com/artists/s/sajtrus.jpg | http://sws.geonames.org/798544/ | |
| "Sweet Remain"^^xsd:string | http://sws.geonames.org/3017382/ | ||
| "Koss"^^xsd:string | http://img.jamendo.com/artists/k/koss.jpg | http://sws.geonames.org/2510769/ | |
| "Focolitz"^^xsd:string | http://img.jamendo.com/artists/f/focolitz.jpg | http://focolitz.no.sapo.pt | http://sws.geonames.org/2738782/ |
| "shytek"^^xsd:string | http://img.jamendo.com/artists/s/shytek.jpg | http://benjaminbarthelemy.com/shytek.html | http://sws.geonames.org/2968815/ |
| "Death 777"^^xsd:string | http://img.jamendo.com/artists/d/death.777.jpg | http://death777.free.fr/v2/ | http://sws.geonames.org/2971090/ |
| "Otaké"^^xsd:string | http://img.jamendo.com/artists/o/otake.gif | http://www.myspace.com/otake | http://sws.geonames.org/3013500/ |
| "JiME"^^xsd:string | http://img.jamendo.com/artists/j/jime.jpg | http://www.tomatoesattack.org | http://sws.geonames.org/2970749/ |
| "Johane Alexie"^^xsd:string | http://img.jamendo.com/artists/j/johane.alexie.jpg | http://www.zouk-love.net | http://sws.geonames.org/3019599/ |
| "Nerious"^^xsd:string | http://img.jamendo.com/artists/n/nerious.png | http://www.nerious.webpark.pl | http://sws.geonames.org/798544/ |
| "lithium"^^xsd:string | http://img.jamendo.com/artists/l/lithium.jpg | http://distortions.skyblog.com | http://sws.geonames.org/2991627/ |
| "Yann "Syks " S "^^xsd:string | http://img.jamendo.com/artists/y/yann.syks.s.jpg | http://www.wat.TV/syks | http://sws.geonames.org/3023532/ |
| "Hobby Horse"^^xsd:string | http://img.jamendo.com/artists/h/hobby.horse.jpg | http://www.myspace.com/hobbyhorseband | http://sws.geonames.org/2967196/ |
| "Windpearl"^^xsd:string | http://img.jamendo.com/artists/w/windpearl.jpg | http://gabriel.hautclocq.free.fr/index.php#windpearl-accueil?page=windpearl-accueil | http://sws.geonames.org/3021501/ |
| "Cui Bono"^^xsd:string | http://img.jamendo.com/artists/c/cui.bono.jpg | http://old-hardrock.blogspot.com/ | http://sws.geonames.org/2661886/ |
| "BUREAU DES FLUIDES"^^xsd:string | http://img.jamendo.com/artists/b/bureau.des.fluides.jpg | http://bdf.ersatz.fr | http://sws.geonames.org/3017382/ |
| "Rock Against Sarko"^^xsd:string | http://img.jamendo.com/artists/r/rock.against.sarko.jpg | http://rockagainstsarko.breizhzion.com | http://sws.geonames.org/2968815/ |
| "Carton"^^xsd:string | http://img.jamendo.com/artists/c/carton.jpg | http://cartonpate.com | http://sws.geonames.org/2802361/ |
| "Michael Moore"^^xsd:string | http://img.jamendo.com/artists/m/michael.gif | http://www.Vewgle.com | http://sws.geonames.org/6252001/ |
| "FoxpHire"^^xsd:string | http://img.jamendo.com/artists/f/foxphire.jpg | http://www.myspace.com/fargoband1 | http://sws.geonames.org/6252001/ |
| "Magnetar"^^xsd:string | http://img.jamendo.com/artists/m/magnetar.jpg | http://www.myspace.com/lagrange4 | http://sws.geonames.org/6252001/ |
| "engeo"^^xsd:string | http://img.jamendo.com/artists/e/engeo.png | http://www.engeo.co.uk | |
| "debector"^^xsd:string | http://img.jamendo.com/artists/d/debector.jpg | http://sws.geonames.org/3038049/ | |
| "Rezydent S & Garaż Bogiego"^^xsd:string | http://img.jamendo.com/artists/t/toller.jpg | http://toller-rsgb.blogspot.com/ | http://sws.geonames.org/798544/ |
| "Paragraff"^^xsd:string | http://img.jamendo.com/artists/p/paragraff.jpg | http://www.paragraff.net | http://sws.geonames.org/2995603/ |
| "Eric Baccala"^^xsd:string | http://img.jamendo.com/artists/e/eric.baccala.jpg | http://sws.geonames.org/2967196/ | |
| "Sonocore Records"^^xsd:string | http://img.jamendo.com/artists/s/sonocore.records.jpg | http://sonocore.records.xooit.com | http://sws.geonames.org/2802361/ |
| "Connor O'Brien"^^xsd:string | http://img.jamendo.com/artists/c/connorobrien.jpg | http://www.connorobrien.com | http://sws.geonames.org/6252001/ |
| "Oksid"^^xsd:string | http://img.jamendo.com/artists/o/oksid.jpg | http://oksidmusic.blogspot.com | http://sws.geonames.org/3031359/ |
| "Delldongo"^^xsd:string | http://img.jamendo.com/artists/d/delldongo.jpg | http://delldongo.free.fr | http://sws.geonames.org/3023423/ |
| "INDOO"^^xsd:string | http://img.jamendo.com/artists/i/indoo.jpg | http://www.indoo.be | http://sws.geonames.org/2802361/ |
| "Escape"^^xsd:string | http://img.jamendo.com/artists/e/escape.jpg | http://www.escape-officiel.com | http://sws.geonames.org/3015948/ |
| "Meat Machine"^^xsd:string | http://img.jamendo.com/artists/m/meat.machine.jpg | http://meatmachine.blogspot.com | http://sws.geonames.org/6252001/ |
| "poste.break"^^xsd:string | http://img.jamendo.com/artists/p/poste.break.jpg | http://poste.break.free.fr | http://sws.geonames.org/2968815/ |
| "Julien PETITJEAN"^^xsd:string | http://img.jamendo.com/artists/j/julien.petitjean.jpg | http://petitjean.julien.free.fr | http://sws.geonames.org/2991627/ |
| "John John Maman"^^xsd:string | http://www.myspace.com/whiteobscurity | http://sws.geonames.org/2968815/ | |
| "Gruppo Crudo"^^xsd:string | http://img.jamendo.com/artists/g/gruppocrudo.jpg | http://www.myspace.com/gruppocrudo | http://sws.geonames.org/3167021/ |
| "The League"^^xsd:string | http://img.jamendo.com/artists/t/theleague.jpg | http://www.theleaguemusic.net | http://sws.geonames.org/2968815/ |
| "reza"^^xsd:string | http://img.jamendo.com/artists/r/reza.jpg | http://www.reza-music.com | http://sws.geonames.org/2968815/ |
| "matbro"^^xsd:string | http://img.jamendo.com/artists/m/matbro.jpg | http://sws.geonames.org/2997857/ | |
| "K.Os Rhymes"^^xsd:string | http://img.jamendo.com/artists/k/k.os.rhymes.jpg | http://www.myspace.com/kosrhymes | http://sws.geonames.org/2884161/ |
| "Les Gotik Anarchystes De Satan"^^xsd:string | http://img.jamendo.com/artists/l/lgads.gif | http://lgads.free.fr | http://sws.geonames.org/2997857/ |
| "2Inventions"^^xsd:string | http://img.jamendo.com/artists/2/2invention.jpg | http://mnc.ugu.pl | http://sws.geonames.org/798544/ |
| "BlackJaq"^^xsd:string | http://img.jamendo.com/artists/b/blackjaq.gif | http://www.myspace.com/blackjaq | http://sws.geonames.org/6252001/ |
| "thelinks"^^xsd:string | http://img.jamendo.com/artists/t/thelinks.jpg | http://maleoman.blogspot.com | http://sws.geonames.org/2660717/ |
| "Krayne"^^xsd:string | http://img.jamendo.com/artists/k/krayne.png | http://sws.geonames.org/6252001/ | |
| "Unit:416/bkhl"^^xsd:string | http://img.jamendo.com/artists/u/unit416.bkhl.png | http://sws.geonames.org/2661886/ | |
| "Fredo Begnon"^^xsd:string | http://img.jamendo.com/artists/f/fredo.begnon.jpg | http://fredolechanteur.blogspot.com/ | http://sws.geonames.org/2970140/ |
| "Nehoryn"^^xsd:string | http://img.jamendo.com/artists/n/nehoryn.jpg | http://www.nehoryn.com | http://sws.geonames.org/2997861/ |
| "Spirograph"^^xsd:string | http://img.jamendo.com/artists/s/spirograph.png | http://www.spirographonline.com | http://sws.geonames.org/6252001/ |
| "Funkyproject"^^xsd:string | http://img.jamendo.com/artists/f/funkyproject.jpg | http://www.funkyproject.fr | http://sws.geonames.org/2990129/ |
| "Blaize"^^xsd:string | http://img.jamendo.com/artists/3/33629.jpg | http://www.myspace.com/blaizearea | http://sws.geonames.org/3019599/ |
| "Staircase Wisp"^^xsd:string | http://img.jamendo.com/artists/s/staircase.wisp.jpg | http://www.staircasewisp.com | http://sws.geonames.org/2968815/ |
| "statuslab"^^xsd:string | http://img.jamendo.com/artists/s/statuslab.jpg | http://statuslab.msk.ru | http://sws.geonames.org/2017370/ |
| "Looping Staff"^^xsd:string | http://img.jamendo.com/artists/l/looping.staff.jpg | http://oksidmusic.blogspot.com/ | http://sws.geonames.org/3031359/ |
| "Enneri Blaka"^^xsd:string | http://img.jamendo.com/artists/e/enneriblaka.gif | http://www.enneriblaka.com | http://sws.geonames.org/3034720/ |
| "Philippe Axel"^^xsd:string | http://img.jamendo.com/artists/p/philaxel.jpg | http://www.philaxel.com | http://sws.geonames.org/3013500/ |
| "Tarodomo (FRLacoustics)"^^xsd:string | http://img.jamendo.com/artists/t/tarodomo.jpg | http://sws.geonames.org/1862047/ | |
| "The G&M Project"^^xsd:string | http://img.jamendo.com/artists/t/the.g.m.project.jpg | http://www.thegmproject.blog.cz | http://sws.geonames.org/2395170/ |
| "FLUNKY"^^xsd:string | http://img.jamendo.com/artists/f/flunky.jpg | http://www.flunky-web.com | http://sws.geonames.org/2991627/ |
| "16% of happiness"^^xsd:string | http://img.jamendo.com/artists/1/16.of.happiness.jpg | http://www.myspace.com/16percentofhappiness | http://sws.geonames.org/2017370/ |
| "Robert Stafford"^^xsd:string | http://img.jamendo.com/artists/r/robert.stafford.jpg | http://www.myspace.com/moogboyres | http://sws.geonames.org/6251999/ |
| "Drawn From The Past"^^xsd:string | http://img.jamendo.com/artists/d/drawnfromthepast.jpg | http://www.drawnfromthepast.com | http://sws.geonames.org/3029094/ |
| "It-Alien"^^xsd:string | http://img.jamendo.com/artists/i/it-alien.jpg | http://napodano.com | http://sws.geonames.org/3182649/ |
| "STYGMATE"^^xsd:string | http://img.jamendo.com/artists/s/stygmate.jpg | http://stygmate.propagande.org | http://sws.geonames.org/2968815/ |
| "sherpa"^^xsd:string | http://img.jamendo.com/artists/s/sherpa.jpg | http://www.myspace.com/pierpalosherpa | http://sws.geonames.org/3175395/ |
| "La Mula"^^xsd:string | http://img.jamendo.com/artists/l/lamula.png | http://www.lamula.com | http://sws.geonames.org/3932488/ |
| "Inborn"^^xsd:string | http://www.inborn.lu | http://sws.geonames.org/2960313/ | |
| "Jaime Heras"^^xsd:string | http://img.jamendo.com/artists/j/jaime.heras.jpg | http://jaime-heras.blogspot.com/ | http://sws.geonames.org/6355234/ |
| "U.N.O. - Unidentified Noisy Object"^^xsd:string | http://img.jamendo.com/artists/u/u.n.o.-.unidentified.noisy.object.jpg | http://www.unopertutti.net | http://sws.geonames.org/3169069/ |
| "layra"^^xsd:string | http://img.jamendo.com/artists/l/layra.gif | http://www.layra.it | http://sws.geonames.org/3169069/ |
| "mickylords"^^xsd:string | http://img.jamendo.com/artists/m/mickylords.jpg | http://mickylords.tripod.com | http://sws.geonames.org/2802361/ |
| "SimonB"^^xsd:string | http://img.jamendo.com/artists/s/simonb.png | http://sblandford.blog.co.uk/ | |
| "DJ Authush"^^xsd:string | http://img.jamendo.com/artists/d/dj.authush.jpg | http://www.free-blog.in/authush/ | http://sws.geonames.org/2782113/ |
| "sousX"^^xsd:string | http://img.jamendo.com/artists/s/sousx.gif | http://sousxlegroupe.free.fr | http://sws.geonames.org/3015948/ |
| "EVA MARIA"^^xsd:string | http://img.jamendo.com/artists/e/eva.maria.jpg | http://rasecominter.blogdpot.com | http://sws.geonames.org/3996063/ |
| "EVA MARIA (COUNTRY)"^^xsd:string | http://img.jamendo.com/artists/e/eva.maria1.jpg | http://rasecominter.blogdpot.com | http://sws.geonames.org/3996063/ |
| "EVA MARIA (BALADA RANCHERA)"^^xsd:string | http://img.jamendo.com/artists/e/eva.maria2.jpg | http://rasecominter19.blogspot.com/ | http://sws.geonames.org/3996063/ |
| "dite G swaf"^^xsd:string | http://img.jamendo.com/artists/d/dite.g.swaf.gif | http://ditegswaf.blog.fr | http://sws.geonames.org/2991879/ |
| "untied"^^xsd:string | http://img.jamendo.com/artists/u/untied.png | http://untied.dk | http://sws.geonames.org/2623032/ |
| "Zabaniet"^^xsd:string | http://img.jamendo.com/artists/z/zabaniet.jpg | http://www.zabaniet.com | http://sws.geonames.org/2984986/ |
| "Symon€"^^xsd:string | http://img.jamendo.com/artists/s/simon.hanot.jpg | http://symonemusic.blogspot.com/2007/04/jamendo.html | http://sws.geonames.org/3013736/ |
| "Moroko"^^xsd:string | http://img.jamendo.com/artists/m/moroko.jpg | http://morokodjrach.skyblog.com | http://sws.geonames.org/3036264/ |
| "Vincent JOST"^^xsd:string | http://img.jamendo.com/artists/v/vincent.jost.jpg | http://www.inlibroveritas.net/auteur911.html | http://sws.geonames.org/2991627/ |
| "DJ Silberwald"^^xsd:string | http://img.jamendo.com/artists/d/dj.silberwald.jpg | http://djsilberwald.blogspot.com/ | http://sws.geonames.org/2782113/ |
| "(own+line)"^^xsd:string | http://img.jamendo.com/artists/o/ownline.jpg | http://www.myspace.com/ownlinemusic | http://sws.geonames.org/3017382/ |
| "Guy Johnston"^^xsd:string | http://img.jamendo.com/artists/g/guy.johnston.jpg | http://www.soundclick.com/guyjohnston | |
| "ADC LEVEL"^^xsd:string | http://img.jamendo.com/artists/a/adc.level.jpg | http://adclevel.hautetfort.com/ | http://sws.geonames.org/2971090/ |
| "DJMG marlon"^^xsd:string | http://img.jamendo.com/artists/d/djmg.marlon.gif | http://compositeurmg.blogspot.com | http://sws.geonames.org/2802361/ |
| "Velhos e Usados"^^xsd:string | http://img.jamendo.com/artists/v/velhoseusados.jpg | http://sws.geonames.org/3469034/ | |
| "Even no fear"^^xsd:string | http://img.jamendo.com/artists/e/evennofear.jpg | http://www.myspace.com/evennofear | http://sws.geonames.org/3013767/ |
| "Xihilisk"^^xsd:string | http://img.jamendo.com/artists/x/xihilisk.jpg | http://one.xthost.info/xihilisk/ | |
| "Ironlung"^^xsd:string | http://img.jamendo.com/artists/i/ironlung.jpg | http://myspace.com/ironlungnoise | http://sws.geonames.org/798544/ |
| "mathias"^^xsd:string | http://img.jamendo.com/artists/m/mathiasbros.jpg | http://mathiasbros.co.nr/ | http://sws.geonames.org/3175395/ |
| "Little (K)"^^xsd:string | http://img.jamendo.com/artists/l/little.k.jpg | http://www.myspace.com/electrolittlek | http://sws.geonames.org/2968815/ |
| "NOME7"^^xsd:string | http://img.jamendo.com/artists/n/nome7.jpg | http://blog.myspace.com/index.cfm?fuseaction=blog&pop=1&ping=1&indicate=1 | http://sws.geonames.org/2990129/ |
| "Dubmoket"^^xsd:string | http://img.jamendo.com/artists/d/dubmoket.jpg | http://gpnouest.supersite.fr | http://sws.geonames.org/2997861/ |
| "Futurabanda Punk Rock"^^xsd:string | http://img.jamendo.com/artists/f/futurabanda.jpg | http://www.futurabanda.com.ar | http://sws.geonames.org/3865483/ |
| "Bronco"^^xsd:string | http://img.jamendo.com/artists/b/bronco.gif | http://www.broncosound.de | http://sws.geonames.org/3213264/ |
| "MackaRonny Iceberg"^^xsd:string | http://img.jamendo.com/artists/i/iceberg.jpg | http://omicron.leftist.net/?q=blog/19 | http://sws.geonames.org/3137400/ |
| "P.O.BOX"^^xsd:string | http://img.jamendo.com/artists/p/p.o.box.jpg | http://www.pobox-band.com | http://sws.geonames.org/2994111/ |
| "kiosque"^^xsd:string | http://img.jamendo.com/artists/k/kiosque.jpg | http://kiosque.skyblog.com | http://sws.geonames.org/3013736/ |
| "Dabis Camero"^^xsd:string | http://www.myspace.com/dabiscameroband | http://sws.geonames.org/6252001/ | |
| "solcarlus"^^xsd:string | http://img.jamendo.com/artists/s/solcarlus1.jpg | http://solcarlusweb.free.fr/ | http://sws.geonames.org/3019599/ |
| "orchid"^^xsd:string | http://img.jamendo.com/artists/o/orchid.jpg | http://www.orchid.end.pl | http://sws.geonames.org/798544/ |
| "Coarse Coding"^^xsd:string | http://img.jamendo.com/artists/c/coarse.coding.jpg | http://www.coarsecoding.de | http://sws.geonames.org/2930484/ |
| "538"^^xsd:string | http://img.jamendo.com/artists/5/538.jpg | http://myspace.com/the538worlds | http://sws.geonames.org/2987410/ |
| "El Proyecto Brundel-mosca"^^xsd:string | http://img.jamendo.com/artists/e/el.proyecto.brundel-mosca.jpg | http://sws.geonames.org/3104469/ | |
| "James Mullan"^^xsd:string | http://img.jamendo.com/artists/j/jamesmullan.gif | http://www.jamesmullanmusic.com | |
| "Les Connards Boiteux"^^xsd:string | http://img.jamendo.com/artists/l/les.connards.boiteux.gif | http://www.lesconnardsboiteux.fr | http://sws.geonames.org/2971090/ |
| "Action Faust"^^xsd:string | http://img.jamendo.com/artists/a/action.faust.jpg | http://www.myspace.com/actionfaust | http://sws.geonames.org/3029094/ |
| "Just' in Space"^^xsd:string | http://img.jamendo.com/artists/j/just.in.space.jpg | http://just-in-space.blogspot.com | http://sws.geonames.org/3037136/ |
| "El Manu"^^xsd:string | http://img.jamendo.com/artists/e/elmanu.jpg | http://www.elmanu.com | http://sws.geonames.org/3031359/ |
| "MoeJay"^^xsd:string | http://img.jamendo.com/artists/m/moejay.jpg | http://moejay.20six.de/ | http://sws.geonames.org/2921044/ |
| "Alien Speesh"^^xsd:string | http://img.jamendo.com/artists/a/alien.speesh.jpg | http://Upcoming | http://sws.geonames.org/2661886/ |
| "Hot Load"^^xsd:string | http://img.jamendo.com/artists/h/hotload.gif | http://hotload.fr | http://sws.geonames.org/3026644/ |
| "KeroDean"^^xsd:string | http://img.jamendo.com/artists/k/kerodean.jpg | http://myspace.com/kerodeanband | |
| "Adalbertus Gabriel"^^xsd:string | http://img.jamendo.com/artists/a/adalbertus.gabriel.jpg | http://wyobraznia.wordpress.com | http://sws.geonames.org/798544/ |
| "QJon"^^xsd:string | http://img.jamendo.com/artists/q/qjon.jpg | http://labqt.blogspot.com | http://sws.geonames.org/798544/ |
| "Gerador Zero"^^xsd:string | http://img.jamendo.com/artists/g/geradorzero.png | http://www.geradorzero.com | http://sws.geonames.org/3469034/ |
| "Paracetamol"^^xsd:string | http://img.jamendo.com/artists/p/paracetamol.gif | http://bitcrusher.free.fr/index.php?page=paracetamol | http://sws.geonames.org/2884161/ |
| "The circuits breaker"^^xsd:string | http://img.jamendo.com/artists/t/the.circuits.breaker.jpg | http://bitcrusher.free.fr | http://sws.geonames.org/2884161/ |
| "Konstruktor.K"^^xsd:string | http://img.jamendo.com/artists/k/konstruktor.k.jpg | http://www.last.fm/music/Konstruktor+aka.+Christoffer | http://sws.geonames.org/2661886/ |
| "Thrown"^^xsd:string | http://img.jamendo.com/artists/t/thrown2.jpg | http://www.myspace.com/konstruktor2 | http://sws.geonames.org/2661886/ |
| "Whise"^^xsd:string | http://img.jamendo.com/artists/w/whise.jpg | http://whisemusic.blogspot.com/ | http://sws.geonames.org/2017370/ |
| "Jim N'Goonh"^^xsd:string | http://img.jamendo.com/artists/j/jim.n.goonh.jpg | http://sws.geonames.org/2802361/ | |
| "traummaschine"^^xsd:string | http://img.jamendo.com/artists/t/traummaschine.jpg | http://es.geocities.com/traummaschine0/ | http://sws.geonames.org/2510769/ |
| "Scarecrows"^^xsd:string | http://img.jamendo.com/artists/s/scarecrows.jpg | http://scarecrows64.skyblog.com | http://sws.geonames.org/2984887/ |
| "Paco Coutino"^^xsd:string | http://img.jamendo.com/artists/c/coutino.jpg | http://www.myspace.com/coutino | |
| "ENCHANTMENT"^^xsd:string | http://img.jamendo.com/artists/e/enchantment.jpg | http://www.enchantmentband.com | http://sws.geonames.org/6355234/ |
| "Westing*House"^^xsd:string | http://web.archive.org/web/20010814230248/westinghouse.free.fr/800/index.htm | http://sws.geonames.org/2991627/ | |
| "JP Papy"^^xsd:string | http://www.blane-est.net/jppapy/ | http://sws.geonames.org/2802361/ | |
| "JCL"^^xsd:string | http://www.jclmusic.co.uk | ||
| "proyectopoint"^^xsd:string | http://img.jamendo.com/artists/p/proyectopoint.jpg | http://www.myspace.com/pr0yect0point | http://sws.geonames.org/3865483/ |
| "Cosmic Cat"^^xsd:string | http://img.jamendo.com/artists/c/cosmic.cat.jpg | http://www.myspace.com/nicholasdamico | http://sws.geonames.org/6252001/ |
| "Charles Sommer"^^xsd:string | http://img.jamendo.com/artists/c/charles.sommer.jpg | http://csbaalbek.blogspot.com/ | http://sws.geonames.org/3209442/ |
| "cold evocation"^^xsd:string | http://img.jamendo.com/artists/c/cold.evocation.jpg | http://coldevocationmetal.blogspot.com | http://sws.geonames.org/3686110/ |
| "Pete-B"^^xsd:string | http://img.jamendo.com/artists/p/pete-b.jpg | http://www.djpeteb.net | http://sws.geonames.org/2782113/ |
| "Vanitee"^^xsd:string | http://img.jamendo.com/artists/v/vanitee.jpg | http://www.myspace.com/vaniteee | |
| "soulriddim"^^xsd:string | http://img.jamendo.com/artists/s/soulriddim.jpg | http://www.soulriddim.com | http://sws.geonames.org/3012715/ |
| "Ecart LeSon"^^xsd:string | http://img.jamendo.com/artists/e/ecart.le.son.jpg | http://ecartleson.blogspot.com | http://sws.geonames.org/2884161/ |
| "St Adam"^^xsd:string | http://img.jamendo.com/artists/s/stadam.jpg | http://marc.extra.hu/papmesz.html | http://sws.geonames.org/719819/ |
| "NanowaR"^^xsd:string | http://img.jamendo.com/artists/n/nanowar.jpg | http://www.nanowar.it | http://sws.geonames.org/3169069/ |
| "Noize-R"^^xsd:string | http://img.jamendo.com/artists/n/noize-r.gif | http://perso.orange.fr/noize-r/ | http://sws.geonames.org/2989663/ |
| "SouPeX"^^xsd:string | http://img.jamendo.com/artists/s/soupex.gif | http://www.soupex.c.la | http://sws.geonames.org/3013767/ |
| "Alfonso Tregua"^^xsd:string | http://img.jamendo.com/artists/a/alfonso.tregua.jpg | http://www.myspace.com/alfonsotregua | http://sws.geonames.org/3172391/ |
| "Biluè"^^xsd:string | http://img.jamendo.com/artists/b/bilue.jpg | http://www.bilue.it | http://sws.geonames.org/3182882/ |
| "musicforcap"^^xsd:string | http://img.jamendo.com/artists/m/musicforcap.png | http://musicforcap.free.fr | http://sws.geonames.org/3017382/ |
| "Govannon"^^xsd:string | http://img.jamendo.com/artists/g/govannon.jpg | http://www.govannon.es | http://sws.geonames.org/6355240/ |
| "projet vertigo"^^xsd:string | http://img.jamendo.com/artists/p/projet.vertigo.jpg | http://www.myspace.com/leprojetvertigo | http://sws.geonames.org/3023423/ |
| "Other View"^^xsd:string | http://img.jamendo.com/artists/o/otherview.jpg | http://www.otherviewband.com | http://sws.geonames.org/3173434/ |
| "crashconverter"^^xsd:string | http://img.jamendo.com/artists/c/crashconverter.gif | http://www.crashconverter.com | http://sws.geonames.org/3023423/ |
| "Kowalskis K.O."^^xsd:string | http://img.jamendo.com/artists/k/kowalskisko.png | http://www.kowalskisko.net | |
| "Behind The Screen"^^xsd:string | http://img.jamendo.com/artists/b/behind.the.screen.jpg | http://www.behindthescreen.it/ | http://sws.geonames.org/3182996/ |
| "L.T.D.M.S."^^xsd:string | http://img.jamendo.com/artists/l/l.t.d.m.s.jpg | http://www.ltdms.be | http://sws.geonames.org/2802361/ |
| "Cynical Sense"^^xsd:string | http://img.jamendo.com/artists/c/cynicalsense.jpg | http://www.myspace.com/thelostmindedband | http://sws.geonames.org/2968815/ |
| "alienazione"^^xsd:string | http://img.jamendo.com/artists/a/alienazione.jpg | http://www.myspace.com/alienazione | http://sws.geonames.org/3165241/ |
| "Skapadakà"^^xsd:string | http://www.skapadaka.com/ | http://sws.geonames.org/3182996/ | |
| "JeF"^^xsd:string | http://img.jamendo.com/artists/j/jef.jpg | http://www.lemondedejef.com | http://sws.geonames.org/3013657/ |
| "jerome sevestre"^^xsd:string | http://img.jamendo.com/artists/j/jerome.sevestre.png | http://jerome.sevestre.free.fr | http://sws.geonames.org/2975246/ |
| "likantropika"^^xsd:string | http://img.jamendo.com/artists/l/likantropika.jpg | http://www.myspace.com/likantropika1 | http://sws.geonames.org/3041565/ |
| "totosh-n-ko"^^xsd:string | http://img.jamendo.com/artists/t/totosh-n-ko.jpg | http://blogs.blogator.net/totosh-n-ko/ | http://sws.geonames.org/2975926/ |
| "Young Blood Undertakers"^^xsd:string | http://sws.geonames.org/2510769/ | ||
| "Kinédeudé"^^xsd:string | http://img.jamendo.com/artists/k/kinedeude.jpg | http://www.kinedeude.fr.st | http://sws.geonames.org/2968815/ |
| "Allison Crowe"^^xsd:string | http://img.jamendo.com/artists/a/allison.crowe.jpg | http://www.allisoncrowe.com | http://sws.geonames.org/6251999/ |
| "Lo Fi Lazer"^^xsd:string | http://img.jamendo.com/artists/l/lo.fi.lazer.jpg | http://www.looproom.com/lofilazer | http://sws.geonames.org/2661886/ |
| "JAFA"^^xsd:string | http://img.jamendo.com/artists/j/jafa.jpg | http://jafamusic.free.fr | http://sws.geonames.org/3017382/ |
| "Maf"^^xsd:string | http://img.jamendo.com/artists/m/maf.jpg | http://maf464.free.fr | http://sws.geonames.org/3020989/ |
| "Scott Alexander"^^xsd:string | http://img.jamendo.com/artists/s/scott.alexander.jpg | http://scottalexandermusic.com | http://sws.geonames.org/6252001/ |
| "Starlight"^^xsd:string | http://img.jamendo.com/artists/s/starlight.jpg | http://sun-rain-sky-moon-star.blogspot.com/ | http://sws.geonames.org/2967196/ |
| "KEMI"^^xsd:string | http://img.jamendo.com/artists/k/kemi.jpg | http://kemilive.hautetfort.com/ | http://sws.geonames.org/3038111/ |
| "flo"^^xsd:string | http://img.jamendo.com/artists/f/flo.jpg | http://www.myspace.com/flormidable | http://sws.geonames.org/3031359/ |
| "Croxing"^^xsd:string | http://img.jamendo.com/artists/c/croxing.jpg | http://www.croxing.org | http://sws.geonames.org/3164418/ |
| "Sauce"^^xsd:string | http://img.jamendo.com/artists/s/sauce.png | http://www.saucast.net | http://sws.geonames.org/3895114/ |
| "ACH_SO_JA"^^xsd:string | http://img.jamendo.com/artists/a/achsoja.jpg | http://www.oui-oui.org/gaspard/ | http://sws.geonames.org/2984887/ |
| "hOly"^^xsd:string | http://img.jamendo.com/artists/h/holy.png | http://www.andreasbohland.info | http://sws.geonames.org/3209442/ |
| "A.K.1974"^^xsd:string | http://img.jamendo.com/artists/a/a.k.1974.jpg | http://ak1974.blogspot.com/ | http://sws.geonames.org/2510769/ |
| "les papy tabayo"^^xsd:string | http://img.jamendo.com/artists/l/les.papy.tabayo.jpg | http://papytabayo.skyblog.com | http://sws.geonames.org/2997861/ |
| "Gråsuggorna"^^xsd:string | http://img.jamendo.com/artists/g/grasuggorna.jpg | http://grasuggorna.page.tl/ | http://sws.geonames.org/2661886/ |
| "Shtrafilclux"^^xsd:string | http://img.jamendo.com/artists/s/shtrafilclux.jpg | http://sws.geonames.org/3013767/ | |
| "deEjAyWaRnEr"^^xsd:string | http://img.jamendo.com/artists/d/deejaywarner.jpg | http://sws.geonames.org/2968815/ | |
| "Ren van Hirk"^^xsd:string | http://img.jamendo.com/artists/r/ren.van.hirk.jpg | http://www.kruehner.de | http://sws.geonames.org/2921044/ |
| "H.A.N.D."^^xsd:string | http://img.jamendo.com/artists/h/h.a.n.d.jpg | http://www.myspace.com/handpower | http://sws.geonames.org/3171179/ |
| "Psychocean"^^xsd:string | http://img.jamendo.com/artists/p/psychocean.jpg | file:///home/yves/jamendo/www.psychocean.org | http://sws.geonames.org/2525065/ |
| "Throw panda bat"^^xsd:string | http://img.jamendo.com/artists/t/throwpandabat.jpg | http://throwpandabat.free.fr | http://sws.geonames.org/3019599/ |
| "prinCE niCE"^^xsd:string | http://img.jamendo.com/artists/p/princenice.png | http://myspace.com/princenice | http://sws.geonames.org/2884161/ |
| "Halogènes Insecticides"^^xsd:string | http://www.halogenesinsecticides.org | http://sws.geonames.org/2987410/ | |
| "Rémi Brassié"^^xsd:string | http://img.jamendo.com/artists/r/remi.brassie.gif | http://sonograf.free.fr | http://sws.geonames.org/2973362/ |
| "TitiMoby"^^xsd:string | http://img.jamendo.com/artists/t/titimoby.jpg | http://www.myspace.com/titimoby | http://sws.geonames.org/2987410/ |
| "Ben Akusto"^^xsd:string | http://img.jamendo.com/artists/b/ben.akusto.png | http://www.confuture.net/akusto | http://sws.geonames.org/660013/ |
| "Sirko Steinhäuser"^^xsd:string | http://img.jamendo.com/artists/s/sirko.steinhauser.png | http://www.kzom.tk | http://sws.geonames.org/2884161/ |
| "Sam Miller"^^xsd:string | http://img.jamendo.com/artists/s/satchitananda.jpg | http://sws.geonames.org/6252001/ | |
| "Anderson Chokolate"^^xsd:string | http://img.jamendo.com/artists/a/anderson.chokolate.jpg | http://www.chokolate.com.br | http://sws.geonames.org/3469034/ |
| "PJ Skyman"^^xsd:string | http://img.jamendo.com/artists/p/pjskyman.jpg | http://www.pjskyman.fr | http://sws.geonames.org/2997857/ |
| "Doc"^^xsd:string | http://img.jamendo.com/artists/d/doc.jpg | http://www.musictrade.info | http://sws.geonames.org/660013/ |
| "SeMeS"^^xsd:string | http://img.jamendo.com/artists/s/semes.png | http://semes.acoustique.free.fr | http://sws.geonames.org/3034720/ |
| "Life.Renegade."^^xsd:string | http://img.jamendo.com/artists/l/life.renegade.jpg | http://nksinternational.free.fr/Life.Renegadetxt.htm | http://sws.geonames.org/2975246/ |
| "Lil Bro"^^xsd:string | http://img.jamendo.com/artists/l/lil.bro.jpg | http://myspace.com/lil39bro | http://sws.geonames.org/3209442/ |
| "Agent Mortalus"^^xsd:string | http://img.jamendo.com/artists/a/agent.mortalus.jpg | http://www.Delta-Agency.c.la | http://sws.geonames.org/3019599/ |
| "Skampis"^^xsd:string | http://img.jamendo.com/artists/s/skampis.png | http://www.skampis.de | http://sws.geonames.org/3213264/ |
| "Thomaz"^^xsd:string | http://img.jamendo.com/artists/t/thomaz.jpg | http://sws.geonames.org/2661886/ | |
| "Paza Rahm"^^xsd:string | http://img.jamendo.com/artists/p/paza.rahm.gif | http://www.pazarahm.com | http://sws.geonames.org/2661886/ |
| "Earl Grey and The Legomen"^^xsd:string | http://img.jamendo.com/artists/e/earl.grey.and.the.legomen.jpg | http://www.myspace.com/eglm | |
| "Arne Pahlke"^^xsd:string | http://img.jamendo.com/artists/a/arne.pahlke.jpg | http://www.windzug.de | http://sws.geonames.org/2911297/ |
| "Skunk"^^xsd:string | http://img.jamendo.com/artists/s/skunk.jpg | http://sws.geonames.org/2971090/ | |
| "Godzenbuth"^^xsd:string | http://img.jamendo.com/artists/g/godzenbuth.jpg | http://blog.myspace.com/godzenbuthparhervgodement | http://sws.geonames.org/3013657/ |
| "P.U.T.A."^^xsd:string | http://img.jamendo.com/artists/p/p.u.t.a.jpg | http://eugostodeputa.blogspot.com | http://sws.geonames.org/3469034/ |
| "Sweet Ohm"^^xsd:string | http://img.jamendo.com/artists/s/sweetohm.jpg | http://www.sweetohm.info/ | http://sws.geonames.org/2987410/ |
| "jibHaine"^^xsd:string | http://img.jamendo.com/artists/j/jibhaine.jpg | http://www.jibhaine.fr | http://sws.geonames.org/3012849/ |
| "Jammin-Inc"^^xsd:string | http://img.jamendo.com/artists/j/jammin-inc.jpg | http://www.jammin-inc.de | http://sws.geonames.org/2930484/ |
| "The Commod's"^^xsd:string | http://thecommods.free.fr | http://sws.geonames.org/2991627/ | |
| "Spiriti Stanchi"^^xsd:string | http://img.jamendo.com/artists/s/spiritistanchi.jpg | http://www.myspace.com/spiritistanchi | http://sws.geonames.org/3173434/ |
| "Le monde de Cupidon"^^xsd:string | http://img.jamendo.com/artists/l/le.monde.de.cupidon.jpg | http://sws.geonames.org/3036965/ | |
| "ECLECTEK"^^xsd:string | http://img.jamendo.com/artists/e/eclectek.jpg | http://www.myspace.com/eghttpmyspacecomeclectek | http://sws.geonames.org/2990129/ |
| "Skating Teenagers"^^xsd:string | http://img.jamendo.com/artists/s/skating.teenagers.jpg | http://www.skatingteenagers.be | http://sws.geonames.org/2802361/ |
| "Plug and play"^^xsd:string | http://img.jamendo.com/artists/p/plugandplay.jpg | http://www.myspace.com/plugandplayband | http://sws.geonames.org/798544/ |
| "Throng"^^xsd:string | http://img.jamendo.com/artists/t/throng.jpg | http://www.throngmusic.com/ | http://sws.geonames.org/6252001/ |
| "Strangers know more"^^xsd:string | http://img.jamendo.com/artists/s/strangers.know.more.jpg | http://www.strangersknowmore.fr | http://sws.geonames.org/2976082/ |
| "Stromble Fix"^^xsd:string | http://img.jamendo.com/artists/s/stromble.fix.jpg | http://www.stromblefix.de | http://sws.geonames.org/3213264/ |
| "oscestra"^^xsd:string | http://img.jamendo.com/artists/o/oscestra.jpg | http://oscestra.net | http://sws.geonames.org/2921044/ |
| "Mister M"^^xsd:string | http://img.jamendo.com/artists/m/mister.m.jpg | http://www.myspace.com/morphoghost | http://sws.geonames.org/2971071/ |
| "Alma Livre "^^xsd:string | http://img.jamendo.com/artists/a/alma.livre.jpg | http://www.bandalmalivre.com.br | http://sws.geonames.org/3469034/ |
| "DevonMiles"^^xsd:string | http://img.jamendo.com/artists/d/devonmiles.jpg | http://www.devonmiles.com | http://sws.geonames.org/2997857/ |
| "halluciphile"^^xsd:string | http://img.jamendo.com/artists/h/halluciphile.gif | http://www.psi-isp.com/spectralucinari | http://sws.geonames.org/6252001/ |
| "Buddy Barabas"^^xsd:string | http://img.jamendo.com/artists/b/buddy.barabas.jpg | http://loudnoise-buddybarabas.blogspot.com/ | http://sws.geonames.org/3209442/ |
| "Bronson Norris"^^xsd:string | http://img.jamendo.com/artists/b/bronson.norris.jpg | http://www.bronson-norris.de | http://sws.geonames.org/2921044/ |
| "Five Step Path"^^xsd:string | http://www.fivesteppath.co.nr | http://sws.geonames.org/6252001/ | |
| "Leveler"^^xsd:string | http://img.jamendo.com/artists/l/leveler.jpg | http://sws.geonames.org/1814991/ | |
| "tief hinein"^^xsd:string | http://img.jamendo.com/artists/t/tief.hinein.jpg | http://rateaudegazon.skyblog.com | http://sws.geonames.org/3013767/ |
| "Fluydo"^^xsd:string | http://img.jamendo.com/artists/f/fluydo.gif | http://www.fluydo.com | http://sws.geonames.org/3169069/ |
| "cupix"^^xsd:string | http://img.jamendo.com/artists/c/cupix.jpg | http://www.cupix.ch | http://sws.geonames.org/2657895/ |
| "DementialCore"^^xsd:string | http://img.jamendo.com/artists/d/dementialcore.jpg | http://dementialcore.blogspot.com/ | http://sws.geonames.org/3182350/ |
| "SostanzaSicula"^^xsd:string | http://img.jamendo.com/artists/s/sostanzasicula.jpg | http://www.myspace.com/sostanzasicula | http://sws.geonames.org/2523649/ |
| "dj Vortex"^^xsd:string | http://img.jamendo.com/artists/d/dj.vortex.jpg | http://dj-vortex.skyrock.com | http://sws.geonames.org/2802361/ |
| "Art Rose"^^xsd:string | http://img.jamendo.com/artists/a/artrose.jpg | http://www.myspace.com/artrose37 | http://sws.geonames.org/3012804/ |
| "La Vérue"^^xsd:string | http://img.jamendo.com/artists/l/laverue.jpg | http://laverue.free.fr | http://sws.geonames.org/3012715/ |
| "Kaos Axiom"^^xsd:string | http://www.kaosaxiom.com | http://sws.geonames.org/2510769/ | |
| "Epsylon"^^xsd:string | http://img.jamendo.com/artists/e/epsylon.jpg | http://www.myspace.com/epsylonfrance | http://sws.geonames.org/3021042/ |
| "DeadSheep"^^xsd:string | http://img.jamendo.com/artists/d/deadsheep.jpg | file:///home/yves/jamendo/www.deadsheep.org | http://sws.geonames.org/3013738/ |
| "Corogopi"^^xsd:string | http://img.jamendo.com/artists/c/corogopi.jpg | http://www.myspace.com/corogopi | http://sws.geonames.org/2968815/ |
| "e.z.Y"^^xsd:string | http://www.ezy.republika.pl/ | http://sws.geonames.org/798544/ | |
| "Max Hilaire"^^xsd:string | http://img.jamendo.com/artists/m/max.hilaire.jpg | http://www.myspace.com/maxhilaire | http://sws.geonames.org/3012804/ |
| "Dark Shrimp"^^xsd:string | http://img.jamendo.com/artists/d/dark.shrimp.jpg | http://www.darkshrimp.com | http://sws.geonames.org/2968815/ |
| "Hevius"^^xsd:string | http://img.jamendo.com/artists/h/hevius.jpg | http://www.myspace.com/hevius | http://sws.geonames.org/2968815/ |
| "Fanfan l'éléphant"^^xsd:string | http://img.jamendo.com/artists/f/fanfan.l.elephant.gif | http://fanfanlelephant.blogspot.com | http://sws.geonames.org/3026644/ |
| "Lemur Concept"^^xsd:string | http://img.jamendo.com/artists/l/lemur.concept.jpg | http://crocmain.info | http://sws.geonames.org/2802361/ |
| "Snetbudy"^^xsd:string | http://img.jamendo.com/artists/s/snetbudy.jpg | http://www.goodyl.com | http://sws.geonames.org/3020989/ |
| "Kaptain Bigg"^^xsd:string | http://img.jamendo.com/artists/k/kaptain.bigg.jpg | http://kaptain.bigg.free.fr | http://sws.geonames.org/3013767/ |
| "karhu"^^xsd:string | http://img.jamendo.com/artists/k/karhu.png | http://karhumusic.org | http://sws.geonames.org/6556330/ |
| "Shake Da Booty"^^xsd:string | http://www.myspace.com/shakefromnrv | http://sws.geonames.org/3013719/ | |
| "Hubbub Hum"^^xsd:string | http://img.jamendo.com/artists/h/hubbubhum.gif | http://hubbubhum.free.fr | http://sws.geonames.org/3029094/ |
| "Schellingen"^^xsd:string | http://img.jamendo.com/artists/s/schellingen.jpg | http://secrets.hautetfort.com/ | http://sws.geonames.org/2971090/ |
| "Pato Deskontrol"^^xsd:string | http://img.jamendo.com/artists/p/patodeskontrol.jpg | http://www.patodeskontrol.do.nu | http://sws.geonames.org/2510769/ |
| "www.softbuster.de"^^xsd:string | http://img.jamendo.com/artists/w/www.softbuster.de.gif | http://www.softbuster.de | http://sws.geonames.org/2884161/ |
| "Kageybox"^^xsd:string | http://img.jamendo.com/artists/k/kageybox.jpg | http://www.myspace.com/kageybox | http://sws.geonames.org/2995603/ |
| "lucien-jean cannibal"^^xsd:string | http://img.jamendo.com/artists/l/lucienjeancannibal.jpg | http://lookatmekid.org | http://sws.geonames.org/2802361/ |
| "Revolutzzer"^^xsd:string | http://img.jamendo.com/artists/r/revolutzzer.jpg | http://www.myspace.com/revolutzzer | http://sws.geonames.org/2841464/ |
| "Stevo González"^^xsd:string | http://img.jamendo.com/artists/s/stevo.gonzalez.jpg | http://www.bash-productions.de.vu/ | http://sws.geonames.org/6557769/ |
| "THE DUO"^^xsd:string | http://img.jamendo.com/artists/t/theduo.jpg | http://perso.orange.fr/theduo | http://sws.geonames.org/2968815/ |
| "SkirtsUp"^^xsd:string | http://img.jamendo.com/artists/s/skirtsup.png | http://www.skirtsup.de | http://sws.geonames.org/3213264/ |
| "Daniel Cohen"^^xsd:string | http://img.jamendo.com/artists/d/danielcohen.jpg | http://danielcohen.110mb.com | http://sws.geonames.org/3895114/ |
| "Albert B"^^xsd:string | http://img.jamendo.com/artists/a/albert.b.jpg | http://www.myspace.com/asmodeusk | http://sws.geonames.org/3041565/ |
| "convidat"^^xsd:string | http://img.jamendo.com/artists/c/convidat.jpg | http://www.convidat.net | http://sws.geonames.org/2510769/ |
| "MANHE"^^xsd:string | http://img.jamendo.com/artists/m/manhe.jpg | http://www.emauxderoscoff.com | http://sws.geonames.org/3018471/ |
| "Idea Sospesa"^^xsd:string | http://img.jamendo.com/artists/i/idea.sospesa.jpg | http://www.myspace.com/ideasospesa | http://sws.geonames.org/6539668/ |
| "Livio A.Cech"^^xsd:string | http://img.jamendo.com/artists/l/livio.a.cech.jpg | http://ahmad469972.splinder.com | http://sws.geonames.org/3164526/ |
| "Mapi Molina"^^xsd:string | http://img.jamendo.com/artists/m/mapi.molina.jpg | http://www.myspace.com/mapimolinamusic | http://sws.geonames.org/2514254/ |
| "Quik-Dark"^^xsd:string | http://img.jamendo.com/artists/q/quik-dark.jpg | http://www.rarburning.net | http://sws.geonames.org/3020781/ |
| "Double|)"^^xsd:string | http://img.jamendo.com/artists/d/doubled.jpg | http://www.DoubleDMix.org | |
| "Philibert Ier"^^xsd:string | http://img.jamendo.com/artists/p/philibert.ier.jpg | http://bracagazus.free.fr/philibertier/ | http://sws.geonames.org/2967196/ |
| "zircon"^^xsd:string | http://img.jamendo.com/artists/z/zircon.jpg | http://www.zirconstudios.com | http://sws.geonames.org/6252001/ |
| "DIY-note"^^xsd:string | http://img.jamendo.com/artists/d/diy-note.jpg | http://diynote.free.fr/ | http://sws.geonames.org/2994111/ |
| "Crido"^^xsd:string | http://img.jamendo.com/artists/c/crido.jpg | http://www.myspace.com/crido | http://sws.geonames.org/3895114/ |
| "MARK & CO"^^xsd:string | http://img.jamendo.com/artists/m/mark.co.jpg | http://sws.geonames.org/3031359/ | |
| "Antonio Sacco"^^xsd:string | http://img.jamendo.com/artists/a/antonio.sacco.jpg | http://www.antoniosacco.com | http://sws.geonames.org/3169411/ |
| "rob divide"^^xsd:string | http://img.jamendo.com/artists/r/robdivide.jpg | http://www.myspace.com/robdivide | http://sws.geonames.org/2884161/ |
| "Innvivo"^^xsd:string | http://img.jamendo.com/artists/i/innvivo.jpg | http://bigserver.homedns.org/innvivo | http://sws.geonames.org/3015948/ |
| "Brunette Models"^^xsd:string | http://img.jamendo.com/artists/b/brunette.models.jpg | http://www.anadyomene-records.com | http://sws.geonames.org/146411/ |
| "ARTSomerville"^^xsd:string | http://img.jamendo.com/artists/a/artsomerville.gif | http://www.artsomerville.org/ | http://sws.geonames.org/6252001/ |
| "Mr Muffin"^^xsd:string | http://img.jamendo.com/artists/m/mr.muffin.jpg | http://www.muffin.be | http://sws.geonames.org/2802361/ |
| "Die promovierten Praktikanten"^^xsd:string | http://img.jamendo.com/artists/p/praktikanten.jpg | http://wiki.luftschiff.org/index.php?title=Die_Promovierten_Praktikanten | http://sws.geonames.org/3213264/ |
| "Die blonden Burschen"^^xsd:string | http://img.jamendo.com/artists/b/burschen.jpg | http://wiki.luftschiff.org/index.php?title=Die_Blonden_Burschen | http://sws.geonames.org/3213264/ |
| "Piège à Rêves"^^xsd:string | http://img.jamendo.com/artists/p/piegeareves.jpg | http://www.piegeareves.fr | http://sws.geonames.org/3013736/ |
| "Joe Patai"^^xsd:string | http://img.jamendo.com/artists/j/joe.patai.jpg | http://sws.geonames.org/719819/ | |
| "3°2+"^^xsd:string | http://img.jamendo.com/artists/t/trois.degrees.de.plus.jpg | http://3degres2plus.blogspot.com/ | http://sws.geonames.org/3013767/ |
| "Plafagh"^^xsd:string | http://img.jamendo.com/artists/p/plafagh.gif | http://www.myspace.com/plafagh | http://sws.geonames.org/6556330/ |
| "Tenchi_Shin"^^xsd:string | http://www.myspace.com/tenchishin | http://sws.geonames.org/3015948/ | |
| "chichabass"^^xsd:string | http://img.jamendo.com/artists/c/chichabass.jpg | http://www.muffin.be | http://sws.geonames.org/2802361/ |
| "Les Tongues Roses"^^xsd:string | http://img.jamendo.com/artists/l/les.tongues.roses.jpg | http://www.lestonguesroses.fr.st | http://sws.geonames.org/3033789/ |
| "Fangbaby"^^xsd:string | http://img.jamendo.com/artists/f/fangbaby.jpg | http://fangbaby.com | http://sws.geonames.org/6252001/ |
| "Deus"^^xsd:string | http://www.myspace.com/deusking | http://sws.geonames.org/2287781/ | |
| "Paniak"^^xsd:string | http://img.jamendo.com/artists/p/paniak.jpg | http://sws.geonames.org/3019317/ | |
| "DOGMA"^^xsd:string | http://img.jamendo.com/artists/d/dogma.jpg | http://www.myspace.com/spaziodogma | http://sws.geonames.org/3164418/ |
| ":tiziano:milani:"^^xsd:string | http://img.jamendo.com/artists/t/tiziano.milani.jpg | http://www.setoladimaiale.net / | http://sws.geonames.org/6458616/ |
| "Steven Testelin"^^xsd:string | http://www.schlagvuck.canalblog.com | http://sws.geonames.org/2994111/ | |
| "Born of Sin"^^xsd:string | http://img.jamendo.com/artists/b/bornofsin.jpg | http://www.bornofsin.net | http://sws.geonames.org/2661886/ |
| "Mad Mush"^^xsd:string | http://img.jamendo.com/artists/m/mad.mush.jpg | http://www.madmush.net | |
| "Ini"^^xsd:string | http://img.jamendo.com/artists/i/ini.jpg | http://www.orkut.com/Community.aspx?cmm=875755 | http://sws.geonames.org/3469034/ |
| "shirkers"^^xsd:string | http://img.jamendo.com/artists/s/shirkers.jpg | http://www.shirkers.fr | http://sws.geonames.org/2967196/ |
| "K.I.DD."^^xsd:string | http://perso.wanadoo.fr/k.i.d.d./ | http://sws.geonames.org/2968815/ | |
| "Mark Van den Borre"^^xsd:string | http://markvdb.be | http://sws.geonames.org/2802361/ | |
| "m2X"^^xsd:string | http://img.jamendo.com/artists/m/m2x.jpg | http://www.m2x.clan.pro | http://sws.geonames.org/2921044/ |
| "GdP"^^xsd:string | http://img.jamendo.com/artists/g/gdp.jpg | http://www.giulianodipaolo.com | http://sws.geonames.org/3173434/ |
| "Romain"^^xsd:string | http://romain.compositions.free.fr/ | http://sws.geonames.org/2988430/ | |
| "edelschwarzkopf"^^xsd:string | http://img.jamendo.com/artists/e/edelschwarzkopf.jpg | http://sws.geonames.org/2975246/ | |
| "Aleph"^^xsd:string | http://img.jamendo.com/artists/a/aleph.jpg | http://labelaubois.free.fr | http://sws.geonames.org/3013657/ |
| "The Disclaimers"^^xsd:string | http://img.jamendo.com/artists/d/disclaimersthe.jpg | http://sws.geonames.org/6252001/ | |
| "Chrys Fair Light"^^xsd:string | http://img.jamendo.com/artists/c/chrysfairlight.jpg | http://www.chrysfairlight.com | http://sws.geonames.org/3023414/ |
| "Foutrio"^^xsd:string | http://img.jamendo.com/artists/f/foutrio.jpg | http://foutrio.online.fr/ | http://sws.geonames.org/3038049/ |
| "Anti melodic Assault"^^xsd:string | http://img.jamendo.com/artists/a/antimelodicassault.jpg | http://antimelodicassault.blogg.se/ | http://sws.geonames.org/2661886/ |
| "Polo"^^xsd:string | http://img.jamendo.com/artists/p/pol.jpg | http://www.palawet.com | http://sws.geonames.org/3020989/ |
| "BONTEMPS"^^xsd:string | http://img.jamendo.com/artists/b/bontemps.jpg | http://www.meublessurmesure.fr | http://sws.geonames.org/2991879/ |
| "haroldo torrecilha"^^xsd:string | http://img.jamendo.com/artists/h/haroldo.torrecilha.jpg | http://www.haroldotorrecilha.com | http://sws.geonames.org/3469034/ |
| "brokenkites"^^xsd:string | http://img.jamendo.com/artists/b/brokenkites.jpg | http://brokenkites.com | http://sws.geonames.org/3371123/ |
| "starfirefive"^^xsd:string | http://img.jamendo.com/artists/s/starfirefive.jpg | http://starfirefive.com | http://sws.geonames.org/6252001/ |
| "Trent"^^xsd:string | http://img.jamendo.com/artists/t/trent.jpg | http://trent.propagande.org | http://sws.geonames.org/2996663/ |
| "Radiant"^^xsd:string | http://img.jamendo.com/artists/r/radiant.jpg | http://www.radiant-music.de | http://sws.geonames.org/2930484/ |
| "lo"^^xsd:string | http://img.jamendo.com/artists/l/loest.jpg | http://jamendo-lo.blogspot.com/ | http://sws.geonames.org/2984885/ |
| "DJ iPep's"^^xsd:string | http://img.jamendo.com/artists/d/djipeps.jpg | http://ipeps.skyblog.com | http://sws.geonames.org/3019317/ |
| "yabuti"^^xsd:string | http://img.jamendo.com/artists/y/yabuti.jpg | http://www.yabuti.de | http://sws.geonames.org/6556330/ |
| "ZERKA"^^xsd:string | http://img.jamendo.com/artists/m/michael.zerka.jpg | http://www.zerka.net | http://sws.geonames.org/2968815/ |
| "The Snoops"^^xsd:string | http://img.jamendo.com/artists/t/thesnoops.jpg | http://myspace.com/thesnoopslegroupe | http://sws.geonames.org/2997861/ |
| "Andy Blurry"^^xsd:string | http://img.jamendo.com/artists/a/andy.blurry.jpg | http://www.purevolume.com/andyblurry | http://sws.geonames.org/2968815/ |
| "Accomplished Acoustic Alchemy"^^xsd:string | http://img.jamendo.com/artists/a/accomplished.acoustic.alchemy.jpg | http://accomplishedacousticalchemy.free.bg | http://sws.geonames.org/732800/ |
| "Apeface and Crumplezone"^^xsd:string | http://img.jamendo.com/artists/a/apefaceandcrumplezone.jpg | http://www.myspace.com/apefaceandcrumplezone | http://sws.geonames.org/6252001/ |
| "Alternitro"^^xsd:string | http://img.jamendo.com/artists/a/alternitro1.jpg | http://www.myspace.com/alternitro, www.alternitro.new.fr | http://sws.geonames.org/2990129/ |
| "Colver"^^xsd:string | http://sws.geonames.org/3019599/ | ||
| "Siegfried Gautier"^^xsd:string | http://img.jamendo.com/artists/s/siegfried.gautier.jpg | http://incaudavenenum.label.free.fr/artistes/siegfriedgautier/ | http://sws.geonames.org/2975246/ |
| "benjamin lalalala"^^xsd:string | http://img.jamendo.com/artists/b/benjamin.lalalala.jpg | http://benjamin.lalalala.ifrance.com/ | http://sws.geonames.org/3017382/ |
| "Jose Mesa Y Los Presentes"^^xsd:string | http://img.jamendo.com/artists/j/jose.mesa.y.los.presentes.jpg | http://www.myspace.com/josemesaylospresentes | http://sws.geonames.org/2511173/ |
| "Turkish Delight The Opera"^^xsd:string | http://img.jamendo.com/artists/t/turkish.delight.the.opera.jpg | http://www.myspace.com/turkishdelighttheopera | http://sws.geonames.org/2661886/ |
| "Desombres"^^xsd:string | http://img.jamendo.com/artists/d/desombres.jpg | http://www.myspace.com/desombres | http://sws.geonames.org/3019316/ |
| "M*F"^^xsd:string | http://img.jamendo.com/artists/m/m.f.jpg | http://sws.geonames.org/3031359/ | |
| "Sweet Cayman"^^xsd:string | http://img.jamendo.com/artists/s/sweet.cayman.jpg | http://sweetcayman.blogspot.com/ | http://sws.geonames.org/6355234/ |
| "The Verandas"^^xsd:string | http://img.jamendo.com/artists/t/the.verandas.jpg | __jamendo-3.rdf#__Description9 | http://sws.geonames.org/3213264/ |
| "BENITO QUINTANA"^^xsd:string | http://img.jamendo.com/artists/b/benito.quintana.jpg | file:///home/yves/jamendo/http;//www.myspace.com/benitotana | http://sws.geonames.org/2510769/ |
| "PIMP"^^xsd:string | http://img.jamendo.com/artists/p/pimp.jpg | http://www.pimp.be.cx | http://sws.geonames.org/2802361/ |
| "Jérémie Petit"^^xsd:string | http://img.jamendo.com/artists/j/jeremie.petit.png | http://myspace.com/jeremiepetit | http://sws.geonames.org/2968815/ |
| "Psydom Recordz"^^xsd:string | http://img.jamendo.com/artists/p/psydom.jpg | file:///home/yves/jamendo/www.psydomtrance.blogspot.com | http://sws.geonames.org/3469034/ |
| "il maniscalco maldestro"^^xsd:string | http://img.jamendo.com/artists/i/ilmaniscalcomaldestro.png | http://www.ilmaniscalcomaldestro.com | http://sws.geonames.org/3170646/ |
| "Brush the Doll"^^xsd:string | http://img.jamendo.com/artists/b/brush.the.doll.jpg | http://www.grupocore.cl/brushthedoll | http://sws.geonames.org/3895114/ |
| "Momentary Prophets"^^xsd:string | http://img.jamendo.com/artists/m/momentary.prophets.gif | http://www.myspace.com/momentaryprophets | http://sws.geonames.org/6252001/ |
| "Bertrand Ollé, Carillonneur de Toulouse"^^xsd:string | http://img.jamendo.com/artists/n/nip.jpg | http://carillon.avenue-du.net | http://sws.geonames.org/3013767/ |
| "SeTh"^^xsd:string | http://img.jamendo.com/artists/s/seth.jpg | http://rageofseth.hautetfort.com | http://sws.geonames.org/3013767/ |
| "JUST A FAKE"^^xsd:string | http://img.jamendo.com/artists/j/just.a.fake.jpg | http://justafake.free.fr | http://sws.geonames.org/2991627/ |
| "Gottschalk"^^xsd:string | http://img.jamendo.com/artists/g/gottschalk.gif | http://nksinternational.free.fr/Gottschalk.html | http://sws.geonames.org/3013767/ |
| "Big Fat Lukum"^^xsd:string | http://img.jamendo.com/artists/b/bigfatlukum.jpg | http://www.big-fat-lukum.be | http://sws.geonames.org/2802361/ |
| "sChens Sampler"^^xsd:string | http://img.jamendo.com/artists/s/schens.sampler.jpg | http://www.bobblespace.de/sampler | http://sws.geonames.org/6556330/ |
| "Icarus Wings"^^xsd:string | http://img.jamendo.com/artists/i/icaruswings.jpg | http://www.myspace.com/theicaruswings | http://sws.geonames.org/3171364/ |
| "Tycho Brahé"^^xsd:string | http://img.jamendo.com/artists/t/tycho.brahe.jpg | http://tycho.brahe.music.free.fr/ | http://sws.geonames.org/2994111/ |
| "The James Quintet"^^xsd:string | http://img.jamendo.com/artists/t/the.james.quintet.jpg | http://www.jamendo.com/en/artist/the.james.quintet | http://sws.geonames.org/6252001/ |
| "LSP"^^xsd:string | http://img.jamendo.com/artists/l/lsp.jpg | http://www.lesiffletpublic.it | http://sws.geonames.org/3164526/ |
| "GenteStranaPosse"^^xsd:string | http://img.jamendo.com/artists/g/gentestranaposse.gif | http://www.gentestranaposse.net | http://sws.geonames.org/2523918/ |
| "Sascha Mersch"^^xsd:string | http://img.jamendo.com/artists/s/sascha.mersch.jpg | http://www.sascha-mersch.de | http://sws.geonames.org/2884161/ |
| "Blue Haired Girl"^^xsd:string | http://img.jamendo.com/artists/b/blue.haired.girl.jpg | http://blue.haired.girl.free.fr/ | http://sws.geonames.org/2994111/ |
| "Jai Colore Ma Tristesse"^^xsd:string | http://img.jamendo.com/artists/j/jai.colore.ma.tristesse.jpg | http://www.myspace.com/jaicolormatristesse | http://sws.geonames.org/3996063/ |
| "Teilzeitdenker"^^xsd:string | http://img.jamendo.com/artists/t/teilzeitdenker.jpg | http://www.teilzeitdenker.de | http://sws.geonames.org/6556330/ |
| "DIENLOX VEIN"^^xsd:string | http://img.jamendo.com/artists/d/dog.soldiers.gif | http://dienloxvein.free.fr | http://sws.geonames.org/2968815/ |
| "el_vis"^^xsd:string | http://img.jamendo.com/artists/e/el.vis.jpg | http://www.elmania.prv.pl | http://sws.geonames.org/798544/ |
| "Gryfonheart"^^xsd:string | http://img.jamendo.com/artists/g/gryfonheart.jpg | http://gryfonhearock.blogspot.com | http://sws.geonames.org/6537067/ |
| "Orhand"^^xsd:string | http://img.jamendo.com/artists/o/orhand.jpg | http://www.myspace.com/orhand | http://sws.geonames.org/2969280/ |
| "Night Talers"^^xsd:string | http://img.jamendo.com/artists/n/night.talers.jpg | http://nighttalers.ifrance.com | http://sws.geonames.org/2975249/ |
| "Guilherme Primata"^^xsd:string | http://img.jamendo.com/artists/p/primata.jpg | http://www.myspace.com/projetoprimata | http://sws.geonames.org/3469034/ |
| "lucabombatomica"^^xsd:string | http://img.jamendo.com/artists/l/lucabombatomica.jpg | http://lucabombatomica.blogspot.com | http://sws.geonames.org/3171456/ |
| "PUCH"^^xsd:string | http://img.jamendo.com/artists/p/puch1.jpg | http://www.puch.net.pl | http://sws.geonames.org/798544/ |
| "Plaster Caster"^^xsd:string | http://img.jamendo.com/artists/p/plastercaster.jpg | http://www.theplastercastershow.com | http://sws.geonames.org/3181927/ |
| "ALEXANDRE CHALON"^^xsd:string | http://img.jamendo.com/artists/a/alexandre.chalon.jpg | http://web.mac.com/alexandre.chalon | http://sws.geonames.org/3012715/ |
| "Cool Cavemen"^^xsd:string | http://img.jamendo.com/artists/c/cool.cavemen.jpg | http://www.coolcavemen.com | http://sws.geonames.org/2990129/ |
| "mid from pils"^^xsd:string | http://img.jamendo.com/artists/m/mid.from.pils.jpg | http://www.myspace.com/midfrompils | http://sws.geonames.org/3012804/ |
| "no ease"^^xsd:string | http://img.jamendo.com/artists/n/no.ease.jpg | http://aucun | http://sws.geonames.org/2988430/ |
| "FACE MY RAGE"^^xsd:string | http://img.jamendo.com/artists/f/face.my.rage.jpg | http://industries.trexsound.com/facemyrage.php | http://sws.geonames.org/3017382/ |
| "mkbf"^^xsd:string | http://img.jamendo.com/artists/m/mkbf.gif | http://makumba.neuf.fr/ | http://sws.geonames.org/3031359/ |
| "AMON"^^xsd:string | http://img.jamendo.com/artists/a/amon.jpg | http://www.myspace.com/amon001 | http://sws.geonames.org/2968815/ |
| "Kay Syr"^^xsd:string | http://img.jamendo.com/artists/k/kay.syr.jpg | http://sws.geonames.org/2921044/ | |
| "french collective"^^xsd:string | http://img.jamendo.com/artists/f/french.collective.jpg | http://collective.moonove.com/ | http://sws.geonames.org/2968815/ |
| "Kay Syr"^^xsd:string | http://img.jamendo.com/artists/k/kay.syr1.jpg | ||
| "Thomaz & Micke"^^xsd:string | http://img.jamendo.com/artists/t/thomaz.micke.jpg | http://sws.geonames.org/2661886/ | |
| "Piso"^^xsd:string | http://img.jamendo.com/artists/p/piso.jpg | http://www.myspace.com/mypiso | http://sws.geonames.org/3182163/ |
| "(((Niko)))"^^xsd:string | http://img.jamendo.com/artists/i/ilniko.jpg | http://rivistabbcc.blogspot.com | http://sws.geonames.org/3172391/ |
| "0x17"^^xsd:string | http://img.jamendo.com/artists/0/0x17.jpg | http://myspace.com/0x17 | http://sws.geonames.org/2930484/ |
| "Iur Snitram"^^xsd:string | http://img.jamendo.com/artists/i/iursnitram.jpg | http://is.no.sapo.pt/ | http://sws.geonames.org/2738782/ |
| "Gen-X"^^xsd:string | http://img.jamendo.com/artists/g/genx.gif | http://www.onemix.de | http://sws.geonames.org/3213264/ |
| "Bruno de Pasquale"^^xsd:string | http://img.jamendo.com/artists/b/bruno.de.pasquale.jpg | http://www.laboutiqueauxchansons.blogspot.com | http://sws.geonames.org/3038049/ |
| "Dariusz Makowski"^^xsd:string | http://img.jamendo.com/artists/d/dariusz.makowski.jpg | http://smok-osx.jogger.pl | http://sws.geonames.org/798544/ |
| "Israel Calzada"^^xsd:string | http://img.jamendo.com/artists/i/israel.calzada.jpg | http://sws.geonames.org/2510769/ | |
| "Pedro Collares"^^xsd:string | http://img.jamendo.com/artists/p/pedro.collares.gif | http://www.healingsound.multiply.com | http://sws.geonames.org/3469034/ |
| "Sikior"^^xsd:string | http://img.jamendo.com/artists/s/sikior.jpg | http://sikior.atspace.com | http://sws.geonames.org/3932488/ |
| "Thezarus"^^xsd:string | http://img.jamendo.com/artists/t/thezarus.jpg | http://sws.geonames.org/3012051/ | |
| "Louis Tanguay"^^xsd:string | http://img.jamendo.com/artists/l/louis.tanguay.jpg | http://marsey.org/louis/ | http://sws.geonames.org/6251999/ |
| "PIT"^^xsd:string | http://img.jamendo.com/artists/p/pit.jpg | http://auloinlesoleil.free.fr | http://sws.geonames.org/3023423/ |
| "project world"^^xsd:string | http://pancore.de/project | ||
| "V E R R O N"^^xsd:string | http://img.jamendo.com/artists/v/verron.jpg | http://www.verron-musique.fr | http://sws.geonames.org/2968815/ |
| "Appleseed"^^xsd:string | http://img.jamendo.com/artists/a/appleseed.jpg | http://www.appleseed.pl / | http://sws.geonames.org/798544/ |
| "Psychonada"^^xsd:string | http://img.jamendo.com/artists/p/psychonada.jpg | http://incaudavenenum.label.free.fr/artistes/psychonada | http://sws.geonames.org/2975246/ |
| "Ivan Suardi"^^xsd:string | http://img.jamendo.com/artists/t/trendaudio.gif | http://www.trendaudio.com | http://sws.geonames.org/3182163/ |
| "marcoski"^^xsd:string | http://img.jamendo.com/artists/m/marcoski.jpg | http://marcoski.sottosuono.info/blog | http://sws.geonames.org/3181927/ |
| "Liquid Frame"^^xsd:string | http://img.jamendo.com/artists/l/liquid.frame.jpg | http://www.liquidworld.net | http://sws.geonames.org/3177837/ |
| "Guardiani Dell'Albero"^^xsd:string | http://img.jamendo.com/artists/g/guardiani.dell.albero.jpg | http://www.guardianidellalbero.it | http://sws.geonames.org/3164600/ |
| "Rafael Lenz"^^xsd:string | http://img.jamendo.com/artists/r/rafael.lenz.jpg | http://www.myspace.com/rafaellenz | http://sws.geonames.org/3169069/ |
| "BINETTI"^^xsd:string | http://img.jamendo.com/artists/b/binetti.jpg | http://www.myspace.com/jcbinetti | http://sws.geonames.org/2884161/ |
| "Crème Brûlée"^^xsd:string | http://img.jamendo.com/artists/c/cremebrulee.jpg | http://incaudavenenum.label.free.fr/artistes/cremebrulee/ | http://sws.geonames.org/2968815/ |
| "Conjugate Metamorphosis"^^xsd:string | http://img.jamendo.com/artists/c/conjugatemetamorphosis.jpg | http://www.myspace.com/conjugatemetamorphosis | http://sws.geonames.org/2963597/ |
| "nEUROLAND™"^^xsd:string | http://img.jamendo.com/artists/n/neuroland.jpg | http://agenceneuroland.lalibreblogs.be/ | http://sws.geonames.org/2802361/ |
| "the cousins"^^xsd:string | http://img.jamendo.com/artists/t/the.cousins.jpg | http://www.myspace.com/thecousinstapesounds | http://sws.geonames.org/2997861/ |
| "Bandidos' Band"^^xsd:string | http://img.jamendo.com/artists/b/bandidos.band.jpg | http://sws.geonames.org/2738782/ | |
| "Nilo"^^xsd:string | http://img.jamendo.com/artists/n/nilo.sciarrone.jpg | http://www.nilowebsite.it | http://sws.geonames.org/3172391/ |
| "magiKwave"^^xsd:string | http://img.jamendo.com/artists/m/magikwave.jpg | http://magikwave.blogspot.com/ | http://sws.geonames.org/3031359/ |
| "MATRAKAGE"^^xsd:string | http://img.jamendo.com/artists/m/matrakage.jpg | http://sws.geonames.org/2970140/ | |
| "Gawin"^^xsd:string | http://img.jamendo.com/artists/g/gawin.jpg | http://www.gawinmusic.com | http://sws.geonames.org/2997861/ |
| "General Purpose"^^xsd:string | http://img.jamendo.com/artists/g/general-purpose.jpg | http://www.wat.tv/generalpurpose | http://sws.geonames.org/2968815/ |
| "expresso 411"^^xsd:string | http://img.jamendo.com/artists/e/expresso4.11.jpg | http://www.myspace.com/expresso411 | http://sws.geonames.org/3469034/ |
| "Prodak"^^xsd:string | http://img.jamendo.com/artists/p/prodak.jpg | http://www.e-djs.gr/ws/bands/15/index.php | http://sws.geonames.org/390903/ |
| "Svald"^^xsd:string | http://img.jamendo.com/artists/s/svald.jpg | http://www.svald.fr | http://sws.geonames.org/2990129/ |
| "2MaTao"^^xsd:string | http://img.jamendo.com/artists/2/2matao.jpg | http://www.2MaTao.za.pl | http://sws.geonames.org/798544/ |
| "ketamas"^^xsd:string | http://img.jamendo.com/artists/k/ketamas.jpg | http://www.myspace.com/ketamas | http://sws.geonames.org/3173434/ |
| "dj ambriosa"^^xsd:string | http://img.jamendo.com/artists/d/dj.ambriosa.jpg | http://sws.geonames.org/2657895/ | |
| "Paolo e chiarO"^^xsd:string | http://img.jamendo.com/artists/p/paoloechiaro.png | http://www.paoloechiaro.net | http://sws.geonames.org/3175395/ |
| "Ardecan"^^xsd:string | http://img.jamendo.com/artists/a/ardecan.jpg | file:///home/yves/jamendo/ardecan.magicrpm.com | http://sws.geonames.org/2984986/ |
| "Malou"^^xsd:string | http://malou.zouig.org | http://sws.geonames.org/2997861/ | |
| "eL yUyO"^^xsd:string | http://img.jamendo.com/artists/e/el.yuyo.jpg | http://www.yuyo.tk | http://sws.geonames.org/2510769/ |
| "cyberdread"^^xsd:string | http://img.jamendo.com/artists/c/cyberdread.png | http://www.cyberdread.it | http://sws.geonames.org/3165523/ |
| "Cyril Pereira"^^xsd:string | http://img.jamendo.com/artists/c/cyril.pereira.jpg | http://medcg.free.fr | http://sws.geonames.org/2975246/ |
| "Lava303"^^xsd:string | http://img.jamendo.com/artists/l/lava303.gif | http://www.acidrocknroll.org | http://sws.geonames.org/6557769/ |
| "Stryknine"^^xsd:string | http://img.jamendo.com/artists/s/stryknine.jpg | http://stryknine.blogspot.com/ | http://sws.geonames.org/3015948/ |
| "KonG"^^xsd:string | http://img.jamendo.com/artists/k/kong.jpg | http://sws.geonames.org/2968815/ | |
| "SRX"^^xsd:string | http://img.jamendo.com/artists/s/srx.jpg | http://srx-srx.blogspot.com | http://sws.geonames.org/2510769/ |
| "otepsia"^^xsd:string | http://img.jamendo.com/artists/o/otepsia.jpg | http://otepsia.free.fr | http://sws.geonames.org/1699807/ |
| "Natural Sheen"^^xsd:string | http://img.jamendo.com/artists/n/naturalsheen.jpg | http://naturalsheen.free.fr | http://sws.geonames.org/2990129/ |
| "The Gay Romeos"^^xsd:string | http://img.jamendo.com/artists/t/the.gay.romeos.png | http://www.windzug.de | http://sws.geonames.org/2911297/ |
| "Chris@lpha"^^xsd:string | http://img.jamendo.com/artists/c/chris.lpha.jpg | http://aczland.spaces.live.com/ | http://sws.geonames.org/3013757/ |
| "Fabio Basile"^^xsd:string | http://img.jamendo.com/artists/f/fabio.basile.jpg | http://myspace.com/fabiobasile | http://sws.geonames.org/3175395/ |
| "Lover303"^^xsd:string | http://img.jamendo.com/artists/l/lover303.jpg | http://www.acidrocknroll.org | http://sws.geonames.org/6557769/ |
| "Francesco Lettera"^^xsd:string | http://img.jamendo.com/artists/f/francesco.lettera.jpg | http://www.cacofonie.it | http://sws.geonames.org/3175395/ |
| "George Mileson"^^xsd:string | http://img.jamendo.com/artists/g/georgemileson.jpg | http://www.georgemileson.com | http://sws.geonames.org/2510769/ |
| "FKPLUS2CLASSE"^^xsd:string | http://img.jamendo.com/artists/f/fkplus2classe.jpg | http://www.myspace.com/fkplus2classe | http://sws.geonames.org/3019599/ |
| "Heridas de K"^^xsd:string | http://img.jamendo.com/artists/h/heridas.de.k.jpg | http://www.bajo-cero.org | http://sws.geonames.org/2510769/ |
| "Asamblea"^^xsd:string | http://img.jamendo.com/artists/a/asamblea.jpg | http://www.bajo-cero.org | http://sws.geonames.org/2510769/ |
| "Hikikomori"^^xsd:string | http://img.jamendo.com/artists/h/hikikomori.jpg | http://myspace.com/hikiko | http://sws.geonames.org/2510769/ |
| "Reflector (Madrid)"^^xsd:string | http://img.jamendo.com/artists/r/reflector.madrid.png | http://www.bajo-cero.org | http://sws.geonames.org/2510769/ |
| "Apisonadora (grind)"^^xsd:string | http://img.jamendo.com/artists/a/apisonadora.grind.jpg | http://www.bajo-cero.org | http://sws.geonames.org/2510769/ |
| "Lágrimas en la Lluvia"^^xsd:string | http://img.jamendo.com/artists/l/lagrimas.en.la.lluvia1.jpg | http://www.bajo-cero.org | http://sws.geonames.org/2510769/ |
| "LoltH"^^xsd:string | http://img.jamendo.com/artists/l/lolth.jpg | http://www.myspace.com/lolth2 | http://sws.geonames.org/3175395/ |
| "Le Collectif Slappytoyable"^^xsd:string | http://img.jamendo.com/artists/c/collectif.slappytoyable.jpg | http://tabula.r.free.fr/instant%20experimental/instantExperimental.htm | http://sws.geonames.org/2990129/ |
| "Tom La Meche"^^xsd:string | http://lameche.zique.free.fr | http://sws.geonames.org/3013657/ | |
| "Cap'tain Phil"^^xsd:string | http://img.jamendo.com/artists/c/captain.phil.jpg | http://captainphil.blogspot.com/ | http://sws.geonames.org/3016670/ |
| "YinD"^^xsd:string | http://img.jamendo.com/artists/y/yind.jpg | http://www.myspace.com/yomisnotdead | http://sws.geonames.org/3012715/ |
| "fine before you came"^^xsd:string | http://img.jamendo.com/artists/f/finebeforeyoucame.jpg | http://www.myspace.com/finebeforeyoucamerock | http://sws.geonames.org/3173434/ |
| "Pacoalvarez"^^xsd:string | http://img.jamendo.com/artists/p/pacoalvarez.jpg | http://www.dharmasound.com/biography.asp?id=14 | http://sws.geonames.org/3175395/ |
| "olivier dour"^^xsd:string | http://sws.geonames.org/2991627/ | ||
| "Meridiano Zero"^^xsd:string | http://img.jamendo.com/artists/m/meridianozero.jpg | http://www.dharmasound.com/biography.asp?id=8 | http://sws.geonames.org/3175395/ |
| "DJ SPHINX"^^xsd:string | http://img.jamendo.com/artists/d/dj-sphinx.jpg | http://www.djsphinx.skyblog.com | http://sws.geonames.org/2997288/ |
| "Silent Rebels"^^xsd:string | http://img.jamendo.com/artists/s/silent.rebels.png | http://www.silentrebels.com | http://sws.geonames.org/2997861/ |
| "dona boar"^^xsd:string | http://img.jamendo.com/artists/d/dona.boar.jpg | http://www.davidtmx.com | http://sws.geonames.org/2991627/ |
| "Convey"^^xsd:string | http://img.jamendo.com/artists/c/convey.jpg | http://conveymusic.com | http://sws.geonames.org/6252001/ |
| "Killing Jazz"^^xsd:string | http://img.jamendo.com/artists/k/killing.jazz.jpg | http://www.killingjazz.com | http://sws.geonames.org/2510769/ |
| "Brain Control"^^xsd:string | http://img.jamendo.com/artists/b/brain.control.jpg | http://www.enrico-carmenia.de | http://sws.geonames.org/2921044/ |
| "Yen Given"^^xsd:string | http://img.jamendo.com/artists/y/yengiven.jpg | http://sws.geonames.org/2921044/ | |
| "Julls"^^xsd:string | http://img.jamendo.com/artists/j/julls.jpg | http://sws.geonames.org/2967196/ | |
| "SPLaTeH'"^^xsd:string | http://img.jamendo.com/artists/s/splateh.jpg | http://splateh.free.fr/zik/ | http://sws.geonames.org/3019317/ |
| "grain:gnome"^^xsd:string | http://img.jamendo.com/artists/g/graingnome.jpg | http://www.dharmasound.com/biography.asp?id=35 | http://sws.geonames.org/3169069/ |
| "Kursed"^^xsd:string | http://img.jamendo.com/artists/k/kursed.jpg | http://kursed3.free.fr | http://sws.geonames.org/3013500/ |
| "TriFace"^^xsd:string | http://img.jamendo.com/artists/t/triface.jpg | http://www.triface.net/ | http://sws.geonames.org/2991627/ |
| "Nosphares"^^xsd:string | http://img.jamendo.com/artists/n/nosphares.jpg | http://nosphares.chez.tiscali.fr | http://sws.geonames.org/2991627/ |
| "ENDORPHINE"^^xsd:string | http://img.jamendo.com/artists/e/endorphine_(Jamendo).gif | http://www.endorphine.prv.pl | http://sws.geonames.org/798544/ |
| "COLECTRO"^^xsd:string | http://img.jamendo.com/artists/c/colectro.jpg | http://www.colectro.blogspot.com | http://sws.geonames.org/3686110/ |
| "Freshhh a.k.a. Padre P-Yo"^^xsd:string | http://img.jamendo.com/artists/p/padrepyo.jpg | http://www.myspace.com/padrepyamelo | http://sws.geonames.org/3175057/ |
| "Tedjosya Fila Kazi"^^xsd:string | http://img.jamendo.com/artists/t/tedjosya.fila.kazi.jpg | http://tedjosya.com | http://sws.geonames.org/2975248/ |
| "Kawa Ijen"^^xsd:string | http://img.jamendo.com/artists/k/kawa.ijen.jpg | http://www.termites-music.com/prod/kawaijen.html | http://sws.geonames.org/2968815/ |
| "TreeMouth"^^xsd:string | http://img.jamendo.com/artists/t/treemouth.png | http://www.treemouth.com | http://sws.geonames.org/2975249/ |
| "Holzweg"^^xsd:string | http://sws.geonames.org/2017370/ | ||
| "Zozzoni De Noantri"^^xsd:string | http://img.jamendo.com/artists/z/zozzoni.jpg | http://www.myspace.com/zozzoni | http://sws.geonames.org/3175057/ |
| "dj malackk"^^xsd:string | http://img.jamendo.com/artists/d/dj.malackk.jpg | http://www.dj-malackk.com | http://sws.geonames.org/3031359/ |
| "mortad hell"^^xsd:string | http://img.jamendo.com/artists/m/mortad.hell.jpg | http://www.davidtmx.com | http://sws.geonames.org/2994111/ |
| "NISULA"^^xsd:string | http://img.jamendo.com/artists/n/nisula.jpg | http://www.myspace.com/nisula75 | http://sws.geonames.org/3013657/ |
| "Zerfall"^^xsd:string | http://img.jamendo.com/artists/z/zerfall.jpg | http://sws.geonames.org/2661876/ | |
| "Gruenanlage.com"^^xsd:string | http://img.jamendo.com/artists/g/gruenanlage.jpg | http://www.gruenanlage.com | http://sws.geonames.org/2884161/ |
| "Lord Henry Wotton"^^xsd:string | http://img.jamendo.com/artists/l/lord.henry.wotton.jpg | http://wottonhenrylord.blogspot.com | http://sws.geonames.org/3209442/ |
| "DANIEL DUROY"^^xsd:string | http://img.jamendo.com/artists/d/daniel.duroy1.jpg | http://daniel.duroy@hotmail.fr | http://sws.geonames.org/3018471/ |
| "Annie"^^xsd:string | http://img.jamendo.com/artists/a/annie.jpg | http://polentarecords.blogspot.com | http://sws.geonames.org/3034720/ |
| "MAD73751"^^xsd:string | http://img.jamendo.com/artists/m/mad73751.jpg | http://mad73751.blogspot.com/ | http://sws.geonames.org/2968815/ |
| "Circuit Noir"^^xsd:string | http://img.jamendo.com/artists/c/circuit.noir.png | http://www.virb.com/circuitnoir | http://sws.geonames.org/2884161/ |
| "Michele Nucciotti"^^xsd:string | http://img.jamendo.com/artists/m/michele.nucciotti.jpg | http://www.myspace.com/michelenucciotti | http://sws.geonames.org/3169069/ |
| "AirBorne"^^xsd:string | http://img.jamendo.com/artists/a/airborne.gif | http://www.myspace.com/rborne | http://sws.geonames.org/3015948/ |
| "STaN le colporteur"^^xsd:string | http://img.jamendo.com/artists/s/stan.le.colporteur.gif | http://www.artenberg.info | http://sws.geonames.org/2997523/ |
| "ALAIN GAUDIN"^^xsd:string | http://img.jamendo.com/artists/a/alain.gaudin.jpg | http://agliu61prty45bt.blog.fr/ | http://sws.geonames.org/2969280/ |
| "Grünemusik"^^xsd:string | http://www.nankado.jp/index.php?EnglishFrontPage | http://sws.geonames.org/1862047/ | |
| "ARONDEALE 2"^^xsd:string | http://img.jamendo.com/artists/a/arondeale.jpg | http://www.wat.tv/arondeale | http://sws.geonames.org/2987410/ |
| "dj rush"^^xsd:string | http://img.jamendo.com/artists/d/dj.rush.jpg | http://www.myspace.com/djrushoreillesdependantes | http://sws.geonames.org/3012849/ |
| "Les Vieilles Salopes"^^xsd:string | http://img.jamendo.com/artists/l/les.vieilles.salopes.jpg | http://lachips.free.fr/ | http://sws.geonames.org/2968815/ |
| "mixher"^^xsd:string | http://img.jamendo.com/artists/m/mixher.jpg | http://www.mixher.fr | http://sws.geonames.org/2968815/ |
| "fresh body shop"^^xsd:string | http://img.jamendo.com/artists/f/freshbodyshop.jpg | http://www.myspace.com/133439871 | http://sws.geonames.org/2997861/ |
| "jpfmband"^^xsd:string | http://img.jamendo.com/artists/j/jpfmband.jpg | http://www.jpfmband.com | http://sws.geonames.org/3013657/ |
| "GIANT SQUID MARCH ON WASHINGTON"^^xsd:string | http://img.jamendo.com/artists/g/giantsquidmarchonwashington.jpg | http://www.myspace.com/giantsquidmarchonwashington | http://sws.geonames.org/6251999/ |
| "DOUG the Eagle"^^xsd:string | http://img.jamendo.com/artists/d/dougtheeagle.png | http://www.dougtheeagle.com | |
| "mr.twiggles"^^xsd:string | http://img.jamendo.com/artists/m/mr.twiggles.jpg | http://www.mrtwiggles.de | http://sws.geonames.org/6556330/ |
| "Der tollwütige Kasper"^^xsd:string | http://img.jamendo.com/artists/d/der.tollwuetige.kasper.jpg | http://www.windzug.de | http://sws.geonames.org/2911297/ |
| "el cantaitor"^^xsd:string | http://img.jamendo.com/artists/e/elcantaitor.jpg | http://elcantaitor.blogspot.com | http://sws.geonames.org/3127460/ |
| "Aide Auditive"^^xsd:string | http://img.jamendo.com/artists/a/aideauditive.png | http://aide.auditive.free.fr | http://sws.geonames.org/3031359/ |
| "ICAR"^^xsd:string | http://img.jamendo.com/artists/a/arci.jpg | http://sws.geonames.org/2994111/ | |
| "One Night Band"^^xsd:string | http://img.jamendo.com/artists/o/onenightband.png | http://www.onenightweb.com | http://sws.geonames.org/3171057/ |
| "general fuzz"^^xsd:string | http://img.jamendo.com/artists/g/generalfuzz.jpg | http://www.generalfuzz.net | http://sws.geonames.org/6252001/ |
| "smoo"^^xsd:string | http://img.jamendo.com/artists/s/smoo.jpg | http://smoo-music.blogspot.com/ | http://sws.geonames.org/719819/ |
| "Mad in H"^^xsd:string | http://img.jamendo.com/artists/m/madinh.jpg | http://www.madinh.com | http://sws.geonames.org/2994111/ |
| "Tyr"^^xsd:string | http://img.jamendo.com/artists/t/tyr1.jpg | http://tyr-zic.blogspot.com/ | http://sws.geonames.org/2975246/ |
| "Dirty Fondation"^^xsd:string | http://img.jamendo.com/artists/d/dirty.fondation.jpg | http://polentarecords.blogspot.com/ | http://sws.geonames.org/3034720/ |
| "museliere"^^xsd:string | http://img.jamendo.com/artists/m/museliere.jpg | http://sws.geonames.org/3017382/ | |
| "haïku"^^xsd:string | http://img.jamendo.com/artists/h/haiku.jpg | http://virb.com/greenriver | http://sws.geonames.org/3013500/ |
| "keus"^^xsd:string | http://img.jamendo.com/artists/k/keus.jpg | http://keus.musicblog.fr | http://sws.geonames.org/2968815/ |
| "Rams"^^xsd:string | http://img.jamendo.com/artists/r/rams.jpg | http://en construction/ | http://sws.geonames.org/3016670/ |
| "gilx p"^^xsd:string | http://img.jamendo.com/artists/g/gilx.p.jpg | http://gilxp.musique.com/home/ | http://sws.geonames.org/2997861/ |
| "Ramp"^^xsd:string | http://img.jamendo.com/artists/r/ramp.jpg | http://www.ramp-music.net | http://sws.geonames.org/6251999/ |
| "Laventure"^^xsd:string | http://img.jamendo.com/artists/l/laventure.jpg | http://sws.geonames.org/3029094/ | |
| "DjFastmove"^^xsd:string | http://img.jamendo.com/artists/d/djfastmove.jpg | http://www.djfastmove.com | http://sws.geonames.org/2270984/ |
| "error"^^xsd:string | http://idiotech.free.fr | http://sws.geonames.org/3033789/ | |
| "Babiroussa"^^xsd:string | http://img.jamendo.com/artists/b/babiroussa.jpg | http://www.babiroussa.net | http://sws.geonames.org/2997861/ |
| "HOTEL 7"^^xsd:string | http://img.jamendo.com/artists/h/hotel-7.jpg | http://www.myspace.com/hotelseven | http://sws.geonames.org/3173434/ |
| "sONIFr"^^xsd:string | http://img.jamendo.com/artists/s/sonifr.jpg | http://sws.geonames.org/3026644/ | |
| "Christian DALMONT"^^xsd:string | http://chrisdalmusic.unblog.fr | http://sws.geonames.org/2975248/ | |
| "zmoc"^^xsd:string | http://img.jamendo.com/artists/z/zmoc.jpg | http://zmoc.blogspot.com/ | http://sws.geonames.org/3038049/ |
| "Tapage Nocturne"^^xsd:string | |||
| "Squatter"^^xsd:string | http://img.jamendo.com/artists/s/squatter.jpg | http://www.squattershouse.co.uk | |
| "delgarma"^^xsd:string | http://img.jamendo.com/artists/d/delgarma.jpg | http://delgarma.free.fr | http://sws.geonames.org/2987410/ |
| "DJ GregDP"^^xsd:string | http://img.jamendo.com/artists/d/djgregdp.jpg | http://djgregdp.hostarea.org | http://sws.geonames.org/2802361/ |
| "Dj Tubi"^^xsd:string | http://img.jamendo.com/artists/d/dj.tubi.jpg | http://www.xdjtubix.yoyo.pl | http://sws.geonames.org/798544/ |
| "Voiker Fullcarp"^^xsd:string | http://img.jamendo.com/artists/v/voiker.fullcarp.jpg | http://www.wiwilbaryu.blogspot.com | http://sws.geonames.org/2990129/ |
| "John Lee Jones"^^xsd:string | http://img.jamendo.com/artists/j/john-lee-jones.jpg | http://www.myspace.com/dbmanb | http://sws.geonames.org/2967196/ |
| "PATROUILLE"^^xsd:string | http://img.jamendo.com/artists/p/patrouille.jpg | http://www.patrouille.de | http://sws.geonames.org/2884161/ |
| "nicozik"^^xsd:string | http://img.jamendo.com/artists/n/nicozik.jpg | http://nicozik.hautetfort.com/ | http://sws.geonames.org/3012849/ |
| "Dan Masquelier"^^xsd:string | http://img.jamendo.com/artists/d/dan.masquelier.jpg | http://dmasq.blogspot.com | http://sws.geonames.org/6252001/ |
| "PieRreF"^^xsd:string | http://img.jamendo.com/artists/p/pierref.jpg | http://www.last.fm/music/pierref | http://sws.geonames.org/3169069/ |
| "Rudmain"^^xsd:string | http://img.jamendo.com/artists/r/rudmain.jpg | http://www.rudmain.org | http://sws.geonames.org/798544/ |
| "Ward Bones"^^xsd:string | http://img.jamendo.com/artists/w/ward.bones.jpg | http://members.cox.net/betamax | http://sws.geonames.org/6252001/ |
| "Space Child 7th"^^xsd:string | http://img.jamendo.com/artists/s/space.child.7th.jpg | http://no site at this time!/ | http://sws.geonames.org/3031359/ |
| "Jaimina Johnston"^^xsd:string | http://img.jamendo.com/artists/j/jaimina.johnston.jpg | http://jaimina.blogspot.com/ | |
| "Moabi"^^xsd:string | http://img.jamendo.com/artists/m/moabi.jpg | http://www.myspace.com/moabi | http://sws.geonames.org/3013767/ |
| "Turmoil"^^xsd:string | http://img.jamendo.com/artists/t/turmoil.jpg | http://turmoil.4t.com | http://sws.geonames.org/6252001/ |
| "Rose Red"^^xsd:string | http://img.jamendo.com/artists/r/rose.red.jpg | http://amdusciasrecords.4t.com | http://sws.geonames.org/6252001/ |
| "Bubble-U-Boeuff"^^xsd:string | http://www.bubbleuboeuff.nl | http://sws.geonames.org/2750405/ | |
| "Terry Way & Désespérément optimiste"^^xsd:string | http://img.jamendo.com/artists/t/terry.way.desesperement.optimiste.jpg | http://www.terryway.be | http://sws.geonames.org/2802361/ |
| "Professor TooMuch"^^xsd:string | http://img.jamendo.com/artists/p/professor.toomuch.jpg | http://www.webalice.it/antolo66 | http://sws.geonames.org/2523918/ |
| "C¤L¤U¤S¤T¤E¤R"^^xsd:string | http://img.jamendo.com/artists/c/c.l.u.s.t.e.r.jpg | http://www.jamendo.com/fr/artist/c.l.u.s.t.e.r/ | http://sws.geonames.org/2994111/ |
| "The Home Phonema"^^xsd:string | http://img.jamendo.com/artists/t/the.home.phonema.jpg | http://www.thehomephonema.tk | http://sws.geonames.org/2510769/ |
| "Dzynek"^^xsd:string | http://img.jamendo.com/artists/d/dzynek.jpg | http://www.e-success.pl/dj_dzynek | http://sws.geonames.org/798544/ |
| "XTN"^^xsd:string | http://img.jamendo.com/artists/x/xtn.jpg | http://pastisset.blogspot.com/ | http://sws.geonames.org/2510769/ |
| "FAST4WARD"^^xsd:string | http://img.jamendo.com/artists/f/fast4ward.jpg | http://pastisset.blogspot.com/ | http://sws.geonames.org/2510769/ |
| "FREDDY NOIS"^^xsd:string | http://pastisset.blogspot.com/ | http://sws.geonames.org/2510769/ | |
| "Psi Active"^^xsd:string | http://img.jamendo.com/artists/p/psi-active.jpg | http://twistedsessions.com/psi_active | http://sws.geonames.org/2017370/ |
| "EMP"^^xsd:string | http://img.jamendo.com/artists/e/emp.png | http://emp.buzzworks.com | http://sws.geonames.org/2268404/ |
| "* Q u i r y *"^^xsd:string | http://img.jamendo.com/artists/q/quiry.jpg | http://quirymusic.canalblog.com/ | http://sws.geonames.org/2968815/ |
| "Kelly Allyn"^^xsd:string | http://img.jamendo.com/artists/k/kelly.allyn.jpg | http://www.KellyAllyn.com | http://sws.geonames.org/6252001/ |
| "Igon Strane"^^xsd:string | http://img.jamendo.com/artists/i/igonstrane.jpg | http://igonstrane.free.fr | http://sws.geonames.org/2997870/ |
| "AWAKEN"^^xsd:string | http://img.jamendo.com/artists/a/awaken.jpg | http://www.awaken.be | http://sws.geonames.org/2802361/ |
| "DROP ALIVE"^^xsd:string | http://img.jamendo.com/artists/d/dropalive.jpg | http://www.dropalive.com | http://sws.geonames.org/3175395/ |
| "NEBEL"^^xsd:string | http://img.jamendo.com/artists/n/nebel1.jpg | http://www.myspace.com/nebelindus | http://sws.geonames.org/2984986/ |
| "moop"^^xsd:string | http://img.jamendo.com/artists/m/moop.jpg | http://www.myspace.com/moopalors | http://sws.geonames.org/2987410/ |
| "Nikita"^^xsd:string | http://img.jamendo.com/artists/n/nikita.jpg | http://www.myspace.com/nikitalegroupe | http://sws.geonames.org/2975246/ |
| "docweaselband"^^xsd:string | http://img.jamendo.com/artists/d/docweaselband.png | http://docweaselband.com | http://sws.geonames.org/6252001/ |
| "Moe2Smoke"^^xsd:string | http://img.jamendo.com/artists/m/moe2smoke.jpg | http://www.myspace.com/Moe2Smoke | http://sws.geonames.org/6252001/ |
| "Dj Ma3x"^^xsd:string | http://img.jamendo.com/artists/d/dj.ma3x.gif | http://www.myspace.com/ma3xhunter | http://sws.geonames.org/2975248/ |
| "Tony HW"^^xsd:string | http://img.jamendo.com/artists/t/tonyhw.jpg | http://www.myspace.com/sampleuretsansreproche | http://sws.geonames.org/2994932/ |
| "Palestina"^^xsd:string | http://www.myspace.com/palestina77 | http://sws.geonames.org/2269513/ | |
| "Andrej B."^^xsd:string | http://img.jamendo.com/artists/a/andrejb.jpg | http://www.myspace.com/andrejb | http://sws.geonames.org/2921044/ |
| "TRENT"^^xsd:string | http://img.jamendo.com/artists/t/trent-rock.jpg | http://www.trent-rock.com | http://sws.geonames.org/2995603/ |
| "Danforth"^^xsd:string | http://img.jamendo.com/artists/d/danforth.jpg | http://www.myspace.com/hxcdanforth | http://sws.geonames.org/2968815/ |
| "LN et Léa"^^xsd:string | http://img.jamendo.com/artists/l/lnlea.jpg | http://lnlea.wifeo.com | http://sws.geonames.org/3023414/ |
| "Fanny Farts"^^xsd:string | http://img.jamendo.com/artists/f/fanny.farts.jpg | http://www.myspace.com/fannyfarts3 | http://sws.geonames.org/3171456/ |
| "tabaches"^^xsd:string | http://img.jamendo.com/artists/t/tabache.jpg | http://www.tabache.altervista.org | http://sws.geonames.org/3169560/ |
| "los joplin"^^xsd:string | http://img.jamendo.com/artists/l/losjoplin.jpg | http://www.myspace.com/losjoplin | http://sws.geonames.org/3686110/ |
| "QLHEAD"^^xsd:string | http://img.jamendo.com/artists/q/qlhead.jpg | http://QLHEAD.BLOGSPOT.COM | http://sws.geonames.org/798544/ |
| "Natural Mystik"^^xsd:string | http://img.jamendo.com/artists/n/naturalmystik.jpg | file:///home/yves/jamendo/naturalmystik.free.fr | http://sws.geonames.org/2975246/ |
| "Fake Plastic Heads"^^xsd:string | http://img.jamendo.com/artists/f/fakeplasticheads.jpg | http://www.fakeplasticheads.net | http://sws.geonames.org/3213264/ |
| "azhyria"^^xsd:string | http://img.jamendo.com/artists/a/azhyria.jpg | http://www.azhyria.com | http://sws.geonames.org/3034720/ |
| "Project Radar"^^xsd:string | http://img.jamendo.com/artists/w/williamsradar.jpg | http://www.myspace.com/projectradar | http://sws.geonames.org/3213264/ |
| "KazH"^^xsd:string | http://img.jamendo.com/artists/k/kazh.jpg | http://catsoustudio.chez-alice.fr | http://sws.geonames.org/2967196/ |
| "FunkyFlo"^^xsd:string | http://img.jamendo.com/artists/f/funkyflo.jpg | http://www.funkyflo.at | http://sws.geonames.org/2782113/ |
| "Unama"^^xsd:string | http://img.jamendo.com/artists/u/unama.jpg | http://www.unama.net | http://sws.geonames.org/2984887/ |
| "RAÏBEL"^^xsd:string | http://img.jamendo.com/artists/r/raibel.jpg | http://sws.geonames.org/3029094/ | |
| "fuck Jesus! ta(gl) conor"^^xsd:string | http://img.jamendo.com/artists/f/fjtc.jpg | http://www.ourpunkrock.org | http://sws.geonames.org/3174050/ |
| "Bosques de mi Mente"^^xsd:string | http://img.jamendo.com/artists/b/bosquesdemimente.jpg | http://www.myspace.com/bosquesdemimente | http://sws.geonames.org/2510769/ |
| "Mad Creudo"^^xsd:string | http://img.jamendo.com/artists/m/madcreudo.jpg | http://www.myspace.com/madcreudo | http://sws.geonames.org/3181553/ |
| "Laurent ST JAC"^^xsd:string | http://img.jamendo.com/artists/l/laurentstjac.jpg | http://www.laurentstjac.com | http://sws.geonames.org/2976082/ |
| "PH.CAINE"^^xsd:string | http://img.jamendo.com/artists/p/ph.caine.jpg | http://caineland.blogspot.com | http://sws.geonames.org/3012715/ |
| "MSK"^^xsd:string | http://img.jamendo.com/artists/m/msk.jpg | http://www.msk.fm | http://sws.geonames.org/3169069/ |
| "Les Minouch' Naouak"^^xsd:string | http://img.jamendo.com/artists/l/les.minouch.naouak.jpg | http://minouchnaouak.free.fr | http://sws.geonames.org/2996663/ |
| "Fabrice Collette"^^xsd:string | http://img.jamendo.com/artists/f/fabrice.collette.jpg | http://www.fabricecollette.com | http://sws.geonames.org/2968815/ |
| "host beg suffer!"^^xsd:string | http://img.jamendo.com/artists/h/hostbegsuffer.jpg | http://www.myspace.com/hostbegsuffer | http://sws.geonames.org/3213264/ |
| "Mestica Artigianale"^^xsd:string | http://img.jamendo.com/artists/m/mestica.artigianale.jpg | http://renzovovia.blogspot.com/ | http://sws.geonames.org/2658370/ |
| "ShadowDancer"^^xsd:string | http://img.jamendo.com/artists/s/shadowdancer.jpg | http://www.myspace.com/shadowdancerband | http://sws.geonames.org/3165523/ |
| "Unfinished Business"^^xsd:string | http://img.jamendo.com/artists/u/unfinished.business.jpg | http://www.unfinished-business.co.uk | http://sws.geonames.org/2510769/ |
| "BLOUTSOS ILIAS"^^xsd:string | http://img.jamendo.com/artists/m/mploytsos.hlias.jpg | http://bloutsosilias.blogspot.com/ | http://sws.geonames.org/254353/ |
| "Cabaret Sauvage"^^xsd:string | http://img.jamendo.com/artists/c/cabaretsauvage.jpg | http://www.myspace.com/cabaretsauvage06 | http://sws.geonames.org/3165523/ |
| "lem0nade"^^xsd:string | http://img.jamendo.com/artists/l/lem0nade.jpg | http://linux-nerd.com/music | http://sws.geonames.org/2968815/ |
| "Daniel Brandell"^^xsd:string | http://sws.geonames.org/2661886/ | ||
| "GagáMusicEU"^^xsd:string | http://img.jamendo.com/artists/g/gagamusiceu.jpg | ||
| "butumbaba"^^xsd:string | http://img.jamendo.com/artists/b/butumbaba.jpg | http://www.butumbaba.com.ar | http://sws.geonames.org/3865483/ |
| "Burdello"^^xsd:string | http://img.jamendo.com/artists/b/burdello.gif | http://www.burdello.com | http://sws.geonames.org/3164526/ |
| "Radical substance"^^xsd:string | http://www.17sons.com/articles.php?lng=en&pg=216 | http://sws.geonames.org/3017382/ | |
| "pierecall"^^xsd:string | http://img.jamendo.com/artists/p/pierecall.jpg | http://myspace.com/pierecal | http://sws.geonames.org/3172391/ |
| "XP-43"^^xsd:string | http://img.jamendo.com/artists/x/xp-43.jpg | http://www.myspace.com/xp43 | http://sws.geonames.org/2802361/ |
| "Cartel"^^xsd:string | http://img.jamendo.com/artists/c/cartel.jpg | http://www.hoodgrownrecords.com | http://sws.geonames.org/6252001/ |
| "The Sunflowers"^^xsd:string | http://img.jamendo.com/artists/t/the.sunflowers.jpg | http://www.the-sunflowers.com | http://sws.geonames.org/2968815/ |
| "Isidro Aublin"^^xsd:string | http://www.isidroaublin.blogspot.com | http://sws.geonames.org/2510769/ | |
| "The Neo Tabou Project"^^xsd:string | http://img.jamendo.com/artists/n/neo.tabou.project.jpg | http://www.myspace.com/theneotabouproject | http://sws.geonames.org/3015948/ |
| "Nationale2"^^xsd:string | http://img.jamendo.com/artists/n/nationale2.jpg | http://franck.ntwo.chez-alice.fr/ | http://sws.geonames.org/3038375/ |
| "Sick Dogs"^^xsd:string | http://img.jamendo.com/artists/s/sick.dogs.jpg | http://sickdogs.noblogs.org | http://sws.geonames.org/3171364/ |
| "Picari"^^xsd:string | http://img.jamendo.com/artists/p/picari.jpg | http://utenti.lycos.it/ipicari/ | http://sws.geonames.org/3181927/ |
| "Hektor Thillet"^^xsd:string | http://img.jamendo.com/artists/h/hektor.thillet.jpg | http://www.myspace | http://sws.geonames.org/6252001/ |
| "Methiss Killah"^^xsd:string | http://img.jamendo.com/artists/m/methiss.killah.png | http://www.mk76.com | http://sws.geonames.org/2975248/ |
| "Eric M."^^xsd:string | http://img.jamendo.com/artists/e/eric.m.jpg | http://www.myspace.com/mericoi | http://sws.geonames.org/3013767/ |
| "Jeff Fermon"^^xsd:string | http://img.jamendo.com/artists/j/jeff.fermon.jpg | http://zuben3.blogspot.com/ | http://sws.geonames.org/6252001/ |
| "SACAGE"^^xsd:string | http://img.jamendo.com/artists/s/sacage.jpg | http://sws.geonames.org/3012805/ | |
| "Silvia O"^^xsd:string | http://img.jamendo.com/artists/s/silvia.o.jpg | http://silviao.com/ | http://sws.geonames.org/3686110/ |
| "DJFALTRON"^^xsd:string | http://img.jamendo.com/artists/f/faltron.jpg | http://djfaltron.wordpress.com/ | http://sws.geonames.org/2510769/ |
| "d1sh1tu"^^xsd:string | http://img.jamendo.com/artists/d/d1sh1tu.jpg | http://home.arcor.de/dish/index.html | http://sws.geonames.org/2921044/ |
| "HYNNNER Vs HANT1S3"^^xsd:string | http://img.jamendo.com/artists/h/hynnnervshant1s3.jpg | http://www.HvsH.net | http://sws.geonames.org/1699807/ |
| ".·´´¯`··.Otoshi·´´¯`··."^^xsd:string | http://img.jamendo.com/artists/o/otoshi.jpg | http://otoshiii.spaces.live.com/ | http://sws.geonames.org/2802361/ |
| "Jaunt"^^xsd:string | http://img.jamendo.com/artists/j/jaunt.jpg | http://jaunt.free.fr/ | http://sws.geonames.org/3012849/ |
| "egnouf"^^xsd:string | http://music.egnouf.free.fr | http://sws.geonames.org/3017382/ | |
| "Clingart"^^xsd:string | http://img.jamendo.com/artists/c/clingart.jpg | http://sws.geonames.org/2971090/ | |
| "Vladivostok"^^xsd:string | http://img.jamendo.com/artists/v/vladivostoknantes.jpg | http://vladivoscope.free.fr | http://sws.geonames.org/2997861/ |
| "PowerPulsomatic"^^xsd:string | http://img.jamendo.com/artists/p/powerpulsomatic.jpg | http://www.myspace.com/powerpulso | http://sws.geonames.org/2991879/ |
| "Jesus first christ"^^xsd:string | http://img.jamendo.com/artists/j/jesus.first.christ.jpg | http://www.myspace.com/organic_despair | http://sws.geonames.org/3013500/ |
| "derf00.com"^^xsd:string | http://img.jamendo.com/artists/d/derf00.com.jpg | http://www.derf00.com/mp3 | http://sws.geonames.org/6251999/ |
| "Contraptions"^^xsd:string | http://img.jamendo.com/artists/c/compilneurologik.jpg | http://www.myspace.com/eycontraptions | http://sws.geonames.org/3015948/ |
| "The Love Dictators"^^xsd:string | http://img.jamendo.com/artists/t/thelovedictators.jpg | http://www.thelovedictators.com | http://sws.geonames.org/706482/ |
| "Miss Hélium"^^xsd:string | http://img.jamendo.com/artists/m/miss.helium.jpg | http://diogene.ch | http://sws.geonames.org/2968815/ |
| "Bobolink"^^xsd:string | http://img.jamendo.com/artists/b/bobolink.jpg | http://www.geocities.com/bpinto3 | http://sws.geonames.org/6252001/ |
| "Julien Salomez"^^xsd:string | http://www.bleu-media.com/julien/ | http://sws.geonames.org/2971071/ | |
| "Joakim YAMA"^^xsd:string | http://img.jamendo.com/artists/j/joakimyama.jpg | http://www.bioxyd.com | http://sws.geonames.org/2987410/ |
| "DomSlave"^^xsd:string | http://img.jamendo.com/artists/d/domslave.jpg | http://rdpsoft.free.fr/lacaveadom.htm | http://sws.geonames.org/2990129/ |
| "Cheerleader"^^xsd:string | http://img.jamendo.com/artists/c/cheerleader.jpg | http://cheerleader.free.fr/ | http://sws.geonames.org/2968815/ |
| "People Eye"^^xsd:string | http://img.jamendo.com/artists/p/peopleeye.jpg | http://warman06.online.fr/viewforum.php?id=5 | http://sws.geonames.org/2987410/ |
| "Harem"^^xsd:string | http://img.jamendo.com/artists/h/harem.jpg | http://www.harem.ra.it | http://sws.geonames.org/3169560/ |
| "Buzz T"^^xsd:string | http://img.jamendo.com/artists/b/buzz.t.jpg | http://sws.geonames.org/6556330/ | |
| "Blood Ruby"^^xsd:string | http://img.jamendo.com/artists/b/blood.ruby.jpg | http://www.bloodruby.com | http://sws.geonames.org/6252001/ |
| "Vidde (Johanna Julén)"^^xsd:string | http://img.jamendo.com/artists/v/vidde.jpg | http://vidde.org | http://sws.geonames.org/2661886/ |
| "DJAY KHY"^^xsd:string | http://img.jamendo.com/artists/d/djay.khy.jpg | http://khy.musique.com/ | http://sws.geonames.org/2990129/ |
| "Titee"^^xsd:string | http://img.jamendo.com/artists/t/titee.jpg | http://tonytokyo0.tripod.com/ | http://sws.geonames.org/2077456/ |
| "-=Kwada=-"^^xsd:string | http://img.jamendo.com/artists/k/kwada.jpg | http://www.kwada-groupe.com | http://sws.geonames.org/3013767/ |
| "Charbane"^^xsd:string | http://img.jamendo.com/artists/c/charbane.jpg | http://sws.geonames.org/2969280/ | |
| "Azertopia"^^xsd:string | http://img.jamendo.com/artists/a/azertopia.png | http://sws.geonames.org/3034720/ | |
| "The Melchiades Estrada Band"^^xsd:string | http://img.jamendo.com/artists/t/the.melchiades.estrada.band.jpg | http://www.myspace.com/themelchiadesestradaband | http://sws.geonames.org/2802361/ |
| "Eletrocactus"^^xsd:string | http://img.jamendo.com/artists/e/eletrocactus.jpg | http://eletrocactus.blogueisso.com | http://sws.geonames.org/3469034/ |
| "4n1s (MARCO FORNONI)"^^xsd:string | http://img.jamendo.com/artists/4/4n1s.png | http://www.makeinstall.it | http://sws.geonames.org/3173434/ |
| "Distorsión Gon"^^xsd:string | http://sws.geonames.org/2510769/ | ||
| "Voltage"^^xsd:string | http://img.jamendo.com/artists/v/voltage.png | http://www.moonbreak.net/voltage/ | http://sws.geonames.org/3012849/ |
| "Still Nameless"^^xsd:string | http://img.jamendo.com/artists/s/still.nameless.jpg | http://www.stillweb.it | http://sws.geonames.org/2522875/ |
| "Wobinidan"^^xsd:string | http://img.jamendo.com/artists/w/wobinidan.jpg | http://www.wobinidan.com | http://sws.geonames.org/2750405/ |
| "RedChili"^^xsd:string | http://img.jamendo.com/artists/r/redchili.jpg | http://www.dobrzyniecki.one.pl | http://sws.geonames.org/798544/ |
| "Liryc"^^xsd:string | http://img.jamendo.com/artists/l/liryc.jpg | http://www.liryc.club-blog.fr | http://sws.geonames.org/3015948/ |
| "the keko jones band"^^xsd:string | http://img.jamendo.com/artists/t/the.keko.jones.band.jpg | http://thekekojonesband.googlepages.com | http://sws.geonames.org/2510769/ |
| "Sans Bagage"^^xsd:string | http://img.jamendo.com/artists/s/sansbagage.jpg | http://www.sansbagage.com | http://sws.geonames.org/3019599/ |
| "BASTIEN VILLON"^^xsd:string | http://img.jamendo.com/artists/b/bastien.villon.jpg | http://www.bastienvillon@blogspot.com | http://sws.geonames.org/3012715/ |
| "Marc ANDRÉ"^^xsd:string | http://img.jamendo.com/artists/m/marc.andre.jpg | http://marcandreauteurcompositeur.hautetfort.com/ | http://sws.geonames.org/2996663/ |
| "Krazeedream"^^xsd:string | http://img.jamendo.com/artists/k/krazeedream.jpg | http://sws.geonames.org/2996663/ | |
| "cdrikcroll"^^xsd:string | http://img.jamendo.com/artists/c/cdrikcroll.jpg | http://myspace.com/cdrikcroll | http://sws.geonames.org/2976082/ |
| "vIrTuAl ImAgE"^^xsd:string | http://img.jamendo.com/artists/v/virtual.image.jpg | http://fiberonline.uol.com.br/virtual_image | http://sws.geonames.org/3469034/ |
| "The Zoorganize"^^xsd:string | http://img.jamendo.com/artists/t/the.zoorganize.jpg | http://www.thezoorganize.blogspot.com | http://sws.geonames.org/2264397/ |
| "Patient 99"^^xsd:string | http://img.jamendo.com/artists/p/patient99.gif | http://www.myspace.com/patient99 | http://sws.geonames.org/6252001/ |
| "Madjester"^^xsd:string | http://img.jamendo.com/artists/m/madjester.jpg | http://www.madjester.org | http://sws.geonames.org/2997870/ |
| "Loon Attic"^^xsd:string | http://img.jamendo.com/artists/l/loonattic.png | http://www.portalatino.com/loonattic | http://sws.geonames.org/2514254/ |
| "sapiens fx"^^xsd:string | http://img.jamendo.com/artists/s/sapiens.fx.jpg | http://www.myspace.com/29111972 | http://sws.geonames.org/3209442/ |
| "Sins n Bliss"^^xsd:string | http://img.jamendo.com/artists/s/sinsnbliss.jpg | http://www.myspace.com/sinsnbliss | http://sws.geonames.org/2968815/ |
| "Pinks in the Garden"^^xsd:string | http://img.jamendo.com/artists/p/pinks.in.the.garden.jpg | http://www.myspace.com/pinksinthegarden | http://sws.geonames.org/2510769/ |
| "rachel baz"^^xsd:string | http://img.jamendo.com/artists/r/rachelbaz.jpg | http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendID=182234480 | http://sws.geonames.org/3013767/ |
| "Xavier DESSANE"^^xsd:string | http://img.jamendo.com/artists/x/xavier.dessane.jpg | http://quentincg.free.fr/musique.gratuite.xavier.php | http://sws.geonames.org/2971071/ |
| "Sonotone Impérial"^^xsd:string | http://img.jamendo.com/artists/s/sonotone.imperial.jpg | http://sonotoneimperial.free.fr | http://sws.geonames.org/3017382/ |
| "RUSTY NAILS"^^xsd:string | http://img.jamendo.com/artists/r/rusty.nails.gif | http://www.myspace.com-rustynailsfr | http://sws.geonames.org/3012849/ |
| "zeFiF"^^xsd:string | http://www.zefif.com | http://sws.geonames.org/3034720/ | |
| "AlFa"^^xsd:string | http://img.jamendo.com/artists/a/alfa.jpg | http://www.myspace.com/alinfini | http://sws.geonames.org/3034720/ |
| "DJ CONCUEROR"^^xsd:string | http://img.jamendo.com/artists/d/dj.concueror.jpg | http://www.djconcueror.yoyo.pl/ | http://sws.geonames.org/798544/ |
| "phon"^^xsd:string | http://img.jamendo.com/artists/p/phon.jpg | http://www.wittypedia.com/Phon | |
| "KRACH40"^^xsd:string | http://img.jamendo.com/artists/k/krach40.jpg | http://www.krach40.net | http://sws.geonames.org/2987410/ |
| "Adam Lwo"^^xsd:string | http://img.jamendo.com/artists/a/adam.lwo.jpg | http://adamlwo.free.fr | http://sws.geonames.org/3017382/ |
| "papa dada"^^xsd:string | http://img.jamendo.com/artists/p/papadada.gif | http://www.papadadamusic.com | http://sws.geonames.org/2802361/ |
| "Gruth"^^xsd:string | http://img.jamendo.com/artists/g/gruth.jpg | http://sws.geonames.org/2975246/ | |
| "Eleanor L.Vault"^^xsd:string | http://sws.geonames.org/2971090/ | ||
| "Nyls"^^xsd:string | http://img.jamendo.com/artists/n/nyls.jpg | http://lemondeestaeux.superforum.fr | http://sws.geonames.org/2991627/ |
| "Bern Li"^^xsd:string | http://img.jamendo.com/artists/b/bern.li.jpg | http://www.bernli.be | http://sws.geonames.org/2802361/ |
| "Outselling of Lies"^^xsd:string | http://img.jamendo.com/artists/o/outselling.of.lies.jpg | http://www.bandzone.cz/outsellingoflies | http://sws.geonames.org/3057568/ |
| "Julian Eriksun"^^xsd:string | http://img.jamendo.com/artists/j/julian.eriksun.jpg | http://myspace.com/julianeriksun | http://sws.geonames.org/6252001/ |
| "Dementia 99"^^xsd:string | http://img.jamendo.com/artists/d/dementia.99.jpg | http://www.myspace.com/dementia99 | http://sws.geonames.org/2510769/ |
| "Nilakash"^^xsd:string | http://www.nilakash.de | http://sws.geonames.org/2921044/ | |
| "Psypherium"^^xsd:string | http://img.jamendo.com/artists/p/psypherium.jpg | http://psypherium.googlepages.com/ | http://sws.geonames.org/2077456/ |
| "Pierre de La Galite"^^xsd:string | http://img.jamendo.com/artists/p/pierredelagalite.jpg | http://www.chansons-pour-enfants.com/ | http://sws.geonames.org/2968815/ |
| "Dj Thony"^^xsd:string | http://img.jamendo.com/artists/d/dj.thony.jpg | http://djdesmont44.skyblog.com | http://sws.geonames.org/2997861/ |
| "Serakina"^^xsd:string | http://img.jamendo.com/artists/s/serakina.jpg | http://www.serakina.com | http://sws.geonames.org/2661602/ |
| "Projekt-Klangform"^^xsd:string | http://img.jamendo.com/artists/p/projekt-klangform.jpg | http://sws.geonames.org/2921044/ | |
| "Lafusa"^^xsd:string | http://img.jamendo.com/artists/l/lafusa.jpg | http://www.lafusa.net | http://sws.geonames.org/3469034/ |
| "Nosebone inc."^^xsd:string | http://img.jamendo.com/artists/n/nosebone.jpg | http://www.myspace.com/noseboneinc | http://sws.geonames.org/2971090/ |
| "celso krause"^^xsd:string | |||
| "free little king"^^xsd:string | http://img.jamendo.com/artists/f/free.little.king.jpg | http://freelittleking.free.fr | http://sws.geonames.org/3013657/ |
| "Ferentino by Night"^^xsd:string | http://img.jamendo.com/artists/f/ferentino.by.night.jpg | http://www.ferentino.tk | http://sws.geonames.org/3176513/ |
| "Phaser"^^xsd:string | http://img.jamendo.com/artists/p/phaser.png | http://dont have any/ | http://sws.geonames.org/2661886/ |
| "Ruined Machines"^^xsd:string | http://img.jamendo.com/artists/r/ruinedmachines.jpg | http://www.ruinedmachines.com | http://sws.geonames.org/6252001/ |
| "mmb digidesigns"^^xsd:string | http://img.jamendo.com/artists/m/mmb.digidesigns.jpg | http://marc-bosche.pros.orange.fr/ | http://sws.geonames.org/2984986/ |
| "9Lies"^^xsd:string | http://img.jamendo.com/artists/9/9lies.gif | http://www.9Lies.net | |
| "Malmonde"^^xsd:string | http://img.jamendo.com/artists/m/malmonde.jpg | http://www.malmonde.fr | http://sws.geonames.org/2968815/ |
| "EsprieM"^^xsd:string | http://img.jamendo.com/artists/e/espriem.jpg | http://espriem.free.fr | http://sws.geonames.org/3013767/ |
| "The Gildas Experience"^^xsd:string | http://img.jamendo.com/artists/t/thegildasexperience.jpg | http://www.myspace.com/thegildasexperience | http://sws.geonames.org/3036420/ |
| "Nakaor Hordecall"^^xsd:string | http://sws.geonames.org/3013500/ | ||
| "Alex B"^^xsd:string | http://img.jamendo.com/artists/a/alex.bailey.jpg | http://www.last.fm/music/Alex+Bailey | http://sws.geonames.org/6252001/ |
| "Juan Galié"^^xsd:string | http://img.jamendo.com/artists/j/juan.galie.jpg | http://www.myspace.com/juangalie | http://sws.geonames.org/3865483/ |
| "Monsieur Z"^^xsd:string | http://img.jamendo.com/artists/m/monsieurz.jpg | http://www.monsieurz.org/ | http://sws.geonames.org/3020989/ |
| "Quarters and Men"^^xsd:string | http://www.myspace.com/quartersandmen | http://sws.geonames.org/6252001/ | |
| "Decadence Death"^^xsd:string | http://img.jamendo.com/artists/d/decadencedeath.jpg | http://www.decadencedeath.com | http://sws.geonames.org/3165523/ |
| "ESS"^^xsd:string | http://img.jamendo.com/artists/e/ess.jpg | http://www.myspace.com/essnofun | http://sws.geonames.org/3031359/ |
| "Fading Ways"^^xsd:string | http://www.fadingways.co.uk | ||
| "Phyloxera / PHST Prod."^^xsd:string | http://img.jamendo.com/artists/p/phyloxera.phst.prod.jpg | http://phyloxera1982.spaces.live.com | http://sws.geonames.org/2995603/ |
| "Baster"^^xsd:string | http://img.jamendo.com/artists/b/baster.jpg | http://www.ciphra.net/baster | http://sws.geonames.org/6355234/ |
| "steve.e!"^^xsd:string | http://img.jamendo.com/artists/s/steve.e.jpg | http://www.myspace.com/stevee1dr | http://sws.geonames.org/2921044/ |
| "Legend at Home"^^xsd:string | http://img.jamendo.com/artists/l/legend.at.home.jpg | http://www.myspace.com/legendathome | http://sws.geonames.org/6252001/ |
| "Tafkam"^^xsd:string | http://img.jamendo.com/artists/t/tafkam.jpg | http://www.tafkam.ch.vu | http://sws.geonames.org/2661602/ |
| "Stéphane Prince"^^xsd:string | http://img.jamendo.com/artists/s/stephane.prince.jpg | http://incaudavenenum.label.free.fr/artistes/stephaneprince/ | http://sws.geonames.org/2975246/ |
| "Rainman"^^xsd:string | http://img.jamendo.com/artists/r/rainman.jpg | http://sws.geonames.org/2921044/ | |
| "Nkrypto"^^xsd:string | http://img.jamendo.com/artists/n/nkrypto.jpg | http://www.myspace.com/nkrypto | http://sws.geonames.org/390903/ |
| "The shining men"^^xsd:string | http://www.17sons.com/articles.php?lng=en&pg=59 | http://sws.geonames.org/3017382/ | |
| "Emmanuel Plouzeau"^^xsd:string | http://perso.orange.fr/Emmanuel.Plouzeau/ | http://sws.geonames.org/2975926/ | |
| "NaBob"^^xsd:string | http://img.jamendo.com/artists/n/nabob.jpg | https://home.hccnet.nl/ | http://sws.geonames.org/2750405/ |
| "diarmo"^^xsd:string | http://img.jamendo.com/artists/d/diarmo.jpg | http://www.myspace.com/diarmo | |
| "22,5 Octobres Dissous"^^xsd:string | http://img.jamendo.com/artists/2/225octobresdissous.jpg | http://www.myspace.com/225octobresdissous | http://sws.geonames.org/2976082/ |
| "catanius"^^xsd:string | http://img.jamendo.com/artists/c/catanius.jpg | http://www.myspace.com/catanius | http://sws.geonames.org/2395170/ |
| "lerio"^^xsd:string | http://img.jamendo.com/artists/l/lerio.jpg | http://www.myspace.com/lerio | http://sws.geonames.org/3175395/ |
| "day one a porno"^^xsd:string | http://img.jamendo.com/artists/d/doap.jpg | http://www.dayoneaporno.com | http://sws.geonames.org/2990129/ |
| "76 Mróz"^^xsd:string | http://img.jamendo.com/artists/7/76mroz.jpg | http://www.myspace.com/76mroz | http://sws.geonames.org/798544/ |
| "Vincent Bernay"^^xsd:string | http://img.jamendo.com/artists/v/vincent.bernay.jpg | http://www.vincentbernay.info | http://sws.geonames.org/2996663/ |
| "DeJota Theron"^^xsd:string | http://www.dejota.theron.jamendo.net | http://sws.geonames.org/2510769/ | |
| "ANTROPIK"^^xsd:string | http://img.jamendo.com/artists/a/antropik.jpg | http://www.telemakfilms.info | http://sws.geonames.org/2987410/ |
| "Les Sabaticains"^^xsd:string | http://img.jamendo.com/artists/l/lessabaticains.jpg | http://membres.lycos.fr/kalyoken/ | http://sws.geonames.org/2984986/ |
| "Sol Niger"^^xsd:string | http://img.jamendo.com/artists/s/solniger.jpg | http://www.solniger.fr.cx | http://sws.geonames.org/2984887/ |
| "引き篭り"^^xsd:string | http://img.jamendo.com/artists/h/hikikomorimetal.jpg | http://www.hikikomori.com.ar | http://sws.geonames.org/3865483/ |
| "Matthijs Vos"^^xsd:string | http://img.jamendo.com/artists/m/matthijs.vos.gif | http://www.matthijsvos.org | http://sws.geonames.org/2750405/ |
| "Adelino"^^xsd:string | http://img.jamendo.com/artists/a/adelino.jpg | http://sws.geonames.org/2987410/ | |
| "Reisegruppe Z"^^xsd:string | http://img.jamendo.com/artists/r/reisegruppe-z.jpg | http://rgz.nowhereman.de | http://sws.geonames.org/6550508/ |
| "danska [désormais : "DARIO"]"^^xsd:string | http://img.jamendo.com/artists/d/danska.jpg | http://www.myspace.com/darioespace | http://sws.geonames.org/3029094/ |
| "Mikirurka"^^xsd:string | http://img.jamendo.com/artists/m/mikirurka.jpg | http://www.mikirurka.com | http://sws.geonames.org/798544/ |
| "Sebastian"^^xsd:string | http://img.jamendo.com/artists/s/sebastian.png | http://www.segil.at | http://sws.geonames.org/2782113/ |
| "Pascal"^^xsd:string | http://img.jamendo.com/artists/p/pascal.jpg | http://sws.geonames.org/2921044/ | |
| "ALONE IN THE CHAOS"^^xsd:string | http://img.jamendo.com/artists/a/alone.in.the.chaos.jpg | http://www.dogmazic.net/ALONE_IN_THE_CHAOS | http://sws.geonames.org/2802361/ |
| "DJ Spake"^^xsd:string | http://img.jamendo.com/artists/d/dj.spake.jpg | http://sws.geonames.org/3013736/ | |
| "bluegirl-Tina"^^xsd:string | http://img.jamendo.com/artists/b/bluegirl-tina.jpg | http://bluegirl-tina.mypafnet.de | http://sws.geonames.org/6556330/ |
| "fiffdimension"^^xsd:string | http://img.jamendo.com/artists/f/fiffdimension.jpg | http://www.fiffdimension.co.nz | http://sws.geonames.org/1835841/ |
| "Josemaki Grind Orchestra"^^xsd:string | http://img.jamendo.com/artists/j/josemaki.grind.orchestra.jpg | http://www.myspace.com/josemaki | http://sws.geonames.org/2510769/ |
| "elbrujo"^^xsd:string | http://img.jamendo.com/artists/e/elbrujo.jpg | http://elbrujo185.skyrock.com | http://sws.geonames.org/2510769/ |
| "programyst"^^xsd:string | http://img.jamendo.com/artists/p/programyst.png | http://www.archive.org/details/PROGRAMYST | http://sws.geonames.org/3996063/ |
| "aoriste"^^xsd:string | http://img.jamendo.com/artists/a/aoriste.jpg | http://aoriste.free.fr/ | http://sws.geonames.org/2987410/ |
| "Happy Accidents"^^xsd:string | http://img.jamendo.com/artists/h/happy.accidents.jpg | http://sws.geonames.org/6557769/ | |
| "T.A.S"^^xsd:string | http://img.jamendo.com/artists/t/t.a.s.jpg | http://www.tasrock.net | http://sws.geonames.org/6355234/ |
| "Josant"^^xsd:string | http://img.jamendo.com/artists/j/josant.jpg | http://www.myspace.com/mcjosant | http://sws.geonames.org/2510910/ |
| "Luminares"^^xsd:string | http://img.jamendo.com/artists/l/luminares.jpg | http://www.alegreluminar.blogspot.com/ | http://sws.geonames.org/3865483/ |
| "Take The Bus Project"^^xsd:string | http://img.jamendo.com/artists/t/take.the.bus.project.jpg | http://www.philippechavaroche.com/ttbp/ | http://sws.geonames.org/3017382/ |
| "Matthieu"^^xsd:string | http://img.jamendo.com/artists/m/matthiew.jpg | http://sws.geonames.org/2971071/ | |
| "atlantis"^^xsd:string | http://img.jamendo.com/artists/a/atlantis.jpg | http://www.atlantis-mp.blogspot.com | http://sws.geonames.org/3057568/ |
| "AL-FAMI"^^xsd:string | http://img.jamendo.com/artists/a/al-fami.jpg | http://www.oddsource.fr | http://sws.geonames.org/2971090/ |
| "Bazooka"^^xsd:string | http://img.jamendo.com/artists/b/bazooka.jpg | http://www.frenchyrecords.com | http://sws.geonames.org/2984885/ |
| "TimeVibes"^^xsd:string | http://img.jamendo.com/artists/t/timevibes.jpg | http://www.myspace.com/timevibes | http://sws.geonames.org/2750405/ |
| "Karash"^^xsd:string | http://img.jamendo.com/artists/k/karash.jpg | http://www.myspace.com/karash4u | http://sws.geonames.org/3209442/ |
| "GONZO GONZALES"^^xsd:string | http://img.jamendo.com/artists/g/gonzo.gonzales.jpg | http://www.myspace.com/gonzogonzalestheband | http://sws.geonames.org/3209442/ |
| "Nearpoint"^^xsd:string | http://img.jamendo.com/artists/n/nearpoint.jpg | http://www.nearpointmusic.com | http://sws.geonames.org/6252001/ |
| "Regard du Nord"^^xsd:string | http://img.jamendo.com/artists/r/regarddunord.jpg | http://www.regarddunord.com | http://sws.geonames.org/2660717/ |
| "Carmina"^^xsd:string | http://img.jamendo.com/artists/c/carmina.jpg | http://myspace.com/carminagrind | http://sws.geonames.org/2967196/ |
| "MdG Dj"^^xsd:string | http://img.jamendo.com/artists/m/mdg.dj.jpg | http://www.myspace.com/mdgdj | http://sws.geonames.org/3173434/ |
| "Audio_Out"^^xsd:string | http://img.jamendo.com/artists/a/audio.out.jpg | http://www.myspace.com/audioout23 | http://sws.geonames.org/3013726/ |
| "Trixy"^^xsd:string | http://img.jamendo.com/artists/t/trixy.jpg | http://trixy.hautetfort.com/ | http://sws.geonames.org/3025480/ |
| "El Klan de los DeDeTe"^^xsd:string | http://img.jamendo.com/artists/d/dedete.jpg | http://www.dedete.es | http://sws.geonames.org/6355234/ |
| "Le fils a Monique orchestra"^^xsd:string | http://img.jamendo.com/artists/l/le.fils.a.monique.orchestra1.jpg | http://www.myspace.com/lefilsamoniqueorchestra | http://sws.geonames.org/2975248/ |
| "WaK"^^xsd:string | http://img.jamendo.com/artists/l/leswak.jpg | http://wak.propagande.org | http://sws.geonames.org/2975248/ |
| "Sconce"^^xsd:string | http://img.jamendo.com/artists/s/sconce.jpg | http://metallarissa.multiply.com | http://sws.geonames.org/6252001/ |
| "Silence Abstrait"^^xsd:string | http://img.jamendo.com/artists/s/silence.abstrait.jpg | http://saelynh.hautetfort.com/silence_abstrait/ | http://sws.geonames.org/3013657/ |
| "Sta a Sente"^^xsd:string | http://img.jamendo.com/artists/s/sta.a.sente.jpg | http://sta.a.sente.free.fr | http://sws.geonames.org/3031359/ |
| "Venediam"^^xsd:string | http://img.jamendo.com/artists/v/venediam.jpg | http://www.myspace.com/venediam | http://sws.geonames.org/3182649/ |
| "Daniel Král"^^xsd:string | http://img.jamendo.com/artists/d/danielkral.jpg | http://blizsipruzkum.sblog.cz | http://sws.geonames.org/2395170/ |
| "The Framitts"^^xsd:string | http://img.jamendo.com/artists/t/the.framitts.png | http://www.theframitts.com/wp | http://sws.geonames.org/2510769/ |
| "Dr Mush"^^xsd:string | http://img.jamendo.com/artists/d/dr.mush.jpg | http://art-kor.blogspot.com/ | http://sws.geonames.org/935317/ |
| "VANDA."^^xsd:string | http://img.jamendo.com/artists/v/vanda.jpg | http://www.vanda-music.de | http://sws.geonames.org/2921044/ |
| "ethiopians"^^xsd:string | http://img.jamendo.com/artists/e/ethiopians.jpg | http://ethiopians.free.fr/ | http://sws.geonames.org/2975246/ |
| "fa:b"^^xsd:string | http://img.jamendo.com/artists/f/fabimusic.jpg | http://www.fa-b.net/music/renaissance | http://sws.geonames.org/3037147/ |
| "SIRIUS"^^xsd:string | http://img.jamendo.com/artists/s/sirius.jpg | http://Aucun | http://sws.geonames.org/2989663/ |
| "Tchoi"^^xsd:string | http://img.jamendo.com/artists/t/tchoi.jpg | http://www.tchoimusic.fr | http://sws.geonames.org/3031359/ |
| "Schizyfos"^^xsd:string | http://img.jamendo.com/artists/s/schizyfos.jpg | http://www.baltay.blog.sme.sk | http://sws.geonames.org/3057568/ |
| "Michael David Crawford"^^xsd:string | http://img.jamendo.com/artists/m/michael.david.crawford.png | http://www.geometricvisions.com/ | http://sws.geonames.org/6252001/ |
| "elfes"^^xsd:string | http://img.jamendo.com/artists/e/elfes.jpg | http://elfes.tv | http://sws.geonames.org/3013500/ |
| "Julien"^^xsd:string | http://img.jamendo.com/artists/j/julien13.jpg | http://www.myspace.com/julienrsolo | http://sws.geonames.org/3031359/ |
| "Rod"^^xsd:string | http://img.jamendo.com/artists/r/rod.jpg | http://rod-noises.info | http://sws.geonames.org/2997857/ |
| "t davis"^^xsd:string | http://img.jamendo.com/artists/t/t.davis.png | http://www.terrydavis.org/lost.html | http://sws.geonames.org/6252001/ |
| "david"^^xsd:string | http://img.jamendo.com/artists/d/david.jpg | http://www.myspace.com/davidchapel | http://sws.geonames.org/2968815/ |
| "832"^^xsd:string | http://img.jamendo.com/artists/8/832.jpg | http://832.musicblog.fr | http://sws.geonames.org/2988430/ |
| "Alasèv"^^xsd:string | http://img.jamendo.com/artists/a/alasev.jpg | http://alaseve.free.fr | http://sws.geonames.org/2990129/ |
| "Projekt Furche"^^xsd:string | http://img.jamendo.com/artists/p/projekt.furche.jpg | http://www.projekt-furche.at.tt | http://sws.geonames.org/2782113/ |
| "Miguel Prod"^^xsd:string | http://img.jamendo.com/artists/m/miguel.prod.jpg | http://www.myspace.com/miguelprod | http://sws.geonames.org/3169069/ |
| "nutra nuggets"^^xsd:string | http://img.jamendo.com/artists/n/nutra.nuggets.jpg | http://www.myspace.com/nutranuggets | http://sws.geonames.org/3174050/ |
| "verte couverture"^^xsd:string | http://img.jamendo.com/artists/v/verte.couverture.jpg | http://www.myspace.com/vertecouverture | http://sws.geonames.org/3017382/ |
| "Ananda"^^xsd:string | http://img.jamendo.com/artists/a/ananda.jpg | http://myspace.com/Ananda | http://sws.geonames.org/2967196/ |
| "babal"^^xsd:string | http://img.jamendo.com/artists/b/babal.jpg | http://djbabal.ifrance.com | http://sws.geonames.org/3018471/ |
| "synteticboy"^^xsd:string | http://img.jamendo.com/artists/s/synteticboy.gif | http://sws.geonames.org/798549/ | |
| "Icaro"^^xsd:string | http://img.jamendo.com/artists/i/icaro.jpg | http://www.myspace.com/maximortal | http://sws.geonames.org/3165071/ |
| "TLivre"^^xsd:string | |||
| "Catherine Sarrazin"^^xsd:string | http://img.jamendo.com/artists/c/catherine.sarrazin.jpg | http://sws.geonames.org/2802361/ | |
| "Out of Tune"^^xsd:string | http://img.jamendo.com/artists/o/out.of.tune.png | http://www.out-of-tune.net | http://sws.geonames.org/660013/ |
| "Zentriert ins Antlitz"^^xsd:string | http://img.jamendo.com/artists/z/zentriert.ins.antlitz.gif | http://www.zentriertinsantlitz.de | http://sws.geonames.org/3213264/ |
| "Arktos"^^xsd:string | http://img.jamendo.com/artists/a/arktos.jpg | http://taptemedlem.blogspot.com/ | http://sws.geonames.org/3163480/ |
| "Jazz'fixie"^^xsd:string | http://img.jamendo.com/artists/j/jazzfixie.jpg | http://jazzfixie.com | http://sws.geonames.org/2658182/ |
| "Ataraxia Rebel Force"^^xsd:string | http://www.17sons.com/articles.php?lng=en&pg=141 | http://sws.geonames.org/3017382/ | |
| "Osira"^^xsd:string | http://img.jamendo.com/artists/o/osira.jpg | http://osira.fr | http://sws.geonames.org/2987410/ |
| "Jordan's Folk"^^xsd:string | http://img.jamendo.com/artists/p/purpleapple.jpg | http://www.purpleapple.skyblog.com | http://sws.geonames.org/2997861/ |
| "Aesthetic Evidence"^^xsd:string | http://img.jamendo.com/artists/a/aevidence.jpg | http://www.aevidence.com/wav.html | http://sws.geonames.org/6252001/ |
| "AnalBeats"^^xsd:string | http://img.jamendo.com/artists/a/analbeats.gif | http://sws.geonames.org/6355240/ | |
| "Enemies of Enormity"^^xsd:string | http://img.jamendo.com/artists/e/eoe.jpg | http://www.enemiesofenormity.com | http://sws.geonames.org/6252001/ |
| "Afghan Banana Stand"^^xsd:string | http://img.jamendo.com/artists/a/afghan.banana.stand.jpg | http://www.myspace.com/afghanbananastand | http://sws.geonames.org/6252001/ |
| "Frank Jarret"^^xsd:string | http://lainquietatentacion.blogspot.com | http://sws.geonames.org/2510769/ | |
| "Chaman"^^xsd:string | http://img.jamendo.com/artists/c/chaman.jpg | http://www.chaman-music.com/ | http://sws.geonames.org/3019599/ |
| "Futuro"^^xsd:string | http://img.jamendo.com/artists/f/futuro.jpg | http://www.zespolfuturo.kutno.pl | http://sws.geonames.org/798544/ |
| "MinimalisM"^^xsd:string | http://sws.geonames.org/3164418/ | ||
| "BUG"^^xsd:string | http://img.jamendo.com/artists/b/bug.jpg | http://www.myspace.com/groupebug | http://sws.geonames.org/2975248/ |
| "The Rodeo Five"^^xsd:string | http://img.jamendo.com/artists/r/rodeo5.jpg | http://www.therodeofive.com | http://sws.geonames.org/2911297/ |
| "Systylé"^^xsd:string | http://img.jamendo.com/artists/s/systyle.gif | http://www.systyle.org | http://sws.geonames.org/3012715/ |
| "Isado"^^xsd:string | http://img.jamendo.com/artists/i/isado.jpg | http://sws.geonames.org/2996663/ | |
| "Alik Project"^^xsd:string | http://img.jamendo.com/artists/a/alik.project.jpg | http://www.myspace.com/alikblog | http://sws.geonames.org/3013737/ |
| "Over All Brothers"^^xsd:string | http://img.jamendo.com/artists/o/overallbrothers.jpg | http://perso.orange.fr/overallbrothers/ | http://sws.geonames.org/2967196/ |
| "Josh Woodward"^^xsd:string | http://img.jamendo.com/artists/j/joshwoodward.jpg | http://www.joshwoodward.com/ | http://sws.geonames.org/6252001/ |
| "Those Who Are Weary"^^xsd:string | http://thosewhoareweary.blogspot.com | http://sws.geonames.org/2750405/ | |
| "dj koyen"^^xsd:string | http://img.jamendo.com/artists/d/dj.koyen.jpg | http://www.dj-koyen.tk | http://sws.geonames.org/2802361/ |
| "Juco"^^xsd:string | http://img.jamendo.com/artists/j/juco.jpg | http://www.Juco.fr | http://sws.geonames.org/2968815/ |
| "Jobscène"^^xsd:string | http://img.jamendo.com/artists/j/jobscene.jpg | http://www.jobscenes.net | http://sws.geonames.org/3020989/ |
| "Matix"^^xsd:string | http://img.jamendo.com/artists/m/matix.jpg | http://www.matixextra.fotka.pl | http://sws.geonames.org/798544/ |
| "XMaxArt"^^xsd:string | http://img.jamendo.com/artists/x/xmaxart.jpg | http://sws.geonames.org/3169069/ | |
| "El niño del parking"^^xsd:string | http://img.jamendo.com/artists/e/el.nino.del.parking.jpg | http://www.myspace.com/el_nino_del_parking | http://sws.geonames.org/2520597/ |
| "MARC SEHN"^^xsd:string | http://img.jamendo.com/artists/m/marc.sehn.jpg | http://garageband.com | http://sws.geonames.org/3020781/ |
| "High Hopes"^^xsd:string | http://img.jamendo.com/artists/h/highhopes.jpg | http://www.myspace.com/highhopestheband | http://sws.geonames.org/2968815/ |
| "The Day After"^^xsd:string | http://img.jamendo.com/artists/t/the.day.after.gif | http://www.thedayafter.zik.mu | http://sws.geonames.org/2994111/ |
| "DJ Ridoo"^^xsd:string | http://img.jamendo.com/artists/d/dj.ridoo.jpg | http://sws.geonames.org/3012715/ | |
| "L'Autre Côté"^^xsd:string | http://www.lautrecote.com | http://sws.geonames.org/2995603/ | |
| "Cauztion"^^xsd:string | http://img.jamendo.com/artists/c/cauztion.gif | http://www17.brinkster.com/zacharychaffee | http://sws.geonames.org/6252001/ |
| "Irrlicht"^^xsd:string | http://img.jamendo.com/artists/i/irrlicht.jpg | http://sws.geonames.org/3018471/ | |
| "The Windupdeads"^^xsd:string | http://img.jamendo.com/artists/t/the.windupdeads.jpg | http://www.thewindupdeads.com | http://sws.geonames.org/2661886/ |
| "Phil de Guip"^^xsd:string | http://img.jamendo.com/artists/p/phil.de.guip.jpg | http://www.phil-de-guip.com | http://sws.geonames.org/3018471/ |
| "PeerGynt Lobogris"^^xsd:string | http://img.jamendo.com/artists/p/peergynt.lobogris.jpg | http://www.myspace.com/peergyntlobogris | http://sws.geonames.org/3996063/ |
| "The Evenings"^^xsd:string | http://img.jamendo.com/artists/t/theevenings.jpg | http://www.theevenings.de | http://sws.geonames.org/2930484/ |
| "puercoespines"^^xsd:string | http://img.jamendo.com/artists/p/puercoespines.jpg | http://puercoespines.iespana.es | http://sws.geonames.org/2510910/ |
| "Xiaopi"^^xsd:string | http://img.jamendo.com/artists/x/xiaopi.jpg | http://sws.geonames.org/3017382/ | |
| "Signal to Noise Ratio"^^xsd:string | http://img.jamendo.com/artists/s/snr.jpg | http://snr.rockmetal.pl | http://sws.geonames.org/798544/ |
| "MarcelVincent"^^xsd:string | http://img.jamendo.com/artists/m/marcelvincent.gif | http://www.myspace.com/marcelvincent47 | http://sws.geonames.org/2997523/ |
| "Vulsor"^^xsd:string | http://img.jamendo.com/artists/v/vulsor.jpg | http://satyres.over-blog.com/categorie-714024.html | http://sws.geonames.org/3023414/ |
| "The Octave Band"^^xsd:string | http://img.jamendo.com/artists/t/the.octave.band.jpg | http://octaveband.hitmuse.com/ | http://sws.geonames.org/3015948/ |
| "G8"^^xsd:string | http://img.jamendo.com/artists/g/g8.jpg | http://www.auptitg8.com | http://sws.geonames.org/2971090/ |
| "Zzjmc"^^xsd:string | http://img.jamendo.com/artists/z/zzjmc.jpg | http://sws.geonames.org/3018471/ | |
| "Zetron"^^xsd:string | http://img.jamendo.com/artists/z/zetron.jpg | http://sws.geonames.org/2995603/ | |
| "Supreme Ciung"^^xsd:string | http://img.jamendo.com/artists/s/supreme.ciung.jpg | http://supremeciung.googlepages.com | http://sws.geonames.org/2802361/ |
| "Pangenianos"^^xsd:string | http://img.jamendo.com/artists/p/pangenianos.gif | http://www.pangenianos.com | http://sws.geonames.org/3469034/ |
| "RAS Nabu & Players Union"^^xsd:string | http://img.jamendo.com/artists/r/ras.nabu.players.union.jpg | http://sws.geonames.org/3582678/ | |
| "UnforgiveN"^^xsd:string | http://img.jamendo.com/artists/u/unforgiven.png | http://unforgivengr.wordpress.com/ | http://sws.geonames.org/390903/ |
| "michelle"^^xsd:string | http://img.jamendo.com/artists/m/michelle.gif | http://www.myspace.com/michellerockband | http://sws.geonames.org/2510769/ |
| "LoCut"^^xsd:string | http://img.jamendo.com/artists/l/locut.png | http://www.myspace.com/locut07 | http://sws.geonames.org/2510910/ |
| "XKTdra"^^xsd:string | http://img.jamendo.com/artists/x/xktdra.gif | http://sws.geonames.org/3038050/ | |
| "ZAMALA"^^xsd:string | http://img.jamendo.com/artists/z/zamala.jpg | http://www.zamala.tk | http://sws.geonames.org/2991627/ |
| "MoShang & Various Artists"^^xsd:string | http://img.jamendo.com/artists/m/moshang.various.artists.gif | http://asianvariations.com | http://sws.geonames.org/1668284/ |
| "DIANEUTRO"^^xsd:string | file:///home/yves/jamendo/www.myespace.com/dianeutro | http://sws.geonames.org/3895114/ | |
| "Robynson Jonyx"^^xsd:string | http://img.jamendo.com/artists/r/robynson.jonyx.jpg | http://sws.geonames.org/2395170/ | |
| "#ZedMeta#"^^xsd:string | http://img.jamendo.com/artists/z/zedmeta.png | http://sws.geonames.org/2968815/ | |
| "RV"^^xsd:string | http://img.jamendo.com/artists/r/rv.jpg | http://mobylette.canalblog.com/ | http://sws.geonames.org/2971071/ |
| "The TenGooz"^^xsd:string | http://img.jamendo.com/artists/t/the.tengooz.jpg | http://www.tengooz.com/ | http://sws.geonames.org/2112922/ |
| "Rancho Relaxo"^^xsd:string | http://img.jamendo.com/artists/r/rancho.relaxo.jpg | http://www11.nrk.no/urort/user/?id=48567 | http://sws.geonames.org/3137966/ |
| "Stepping Back"^^xsd:string | http://img.jamendo.com/artists/s/stepping.back.jpg | http://www.myspace.com/steppingback | http://sws.geonames.org/3012715/ |
| "Freaky"^^xsd:string | http://img.jamendo.com/artists/f/freaky.jpg | http://sws.geonames.org/798544/ | |
| "The English"^^xsd:string | http://img.jamendo.com/artists/t/the.english.jpg | http://www.myspace.com/djlanglais | http://sws.geonames.org/2968815/ |
| "Assez PAULINE"^^xsd:string | http://img.jamendo.com/artists/a/assez.pauline.jpg | http://www.myspace.com/assezpauline | http://sws.geonames.org/3012715/ |
| "king before daylight"^^xsd:string | http://img.jamendo.com/artists/k/kingbeforedaylight.jpg | http://sws.geonames.org/2884161/ | |
| "orxata sound system"^^xsd:string | http://img.jamendo.com/artists/o/orxata.png | http://www.orxatasoundsystem.net | http://sws.geonames.org/2510769/ |
| "Staggered Crossing"^^xsd:string | http://img.jamendo.com/artists/s/staggered.crossing.jpg | http://www.staggeredcrossing.com | http://sws.geonames.org/6251999/ |
| "S.I.M"^^xsd:string | http://img.jamendo.com/artists/s/s.i.m.jpg | http://www.myspace.com/simusic1 | http://sws.geonames.org/2921044/ |
| "Kazan"^^xsd:string | http://img.jamendo.com/artists/k/kazan.jpg | http://www.kazan-band.com/ | http://sws.geonames.org/3023423/ |
| "disharmonic"^^xsd:string | http://img.jamendo.com/artists/d/disharmonic.jpg | http://lukas.zapletalovi.com | http://sws.geonames.org/2395170/ |
| "ne8ularis"^^xsd:string | http://img.jamendo.com/artists/n/ne8ularis.jpg | http://www.ne8ularis.altervista.org | http://sws.geonames.org/3175395/ |
| "Lunar Mining Project"^^xsd:string | http://img.jamendo.com/artists/l/lunar.mining.project.jpg | http://www.theelektrosite.com/LMP1.html | http://sws.geonames.org/6557769/ |
| "Cri d'Ames"^^xsd:string | http://img.jamendo.com/artists/c/cridames.jpg | http://www.cridames.fr.fm | http://sws.geonames.org/2989663/ |
| "Rainer Thelonius Balthasar Straschill"^^xsd:string | http://img.jamendo.com/artists/s/straschill.jpg | http://moinlabs.de | http://sws.geonames.org/6556330/ |
| "Tomislav Ocvirek"^^xsd:string | http://img.jamendo.com/artists/t/tomislav.ocvirek.jpg | http://www.ocvirek.com/music | http://sws.geonames.org/3202326/ |
| "Fucking PeaNuts"^^xsd:string | http://img.jamendo.com/artists/f/fucking.peanuts.jpg | http://www.myspace.com/fuckingpeanuts | http://sws.geonames.org/2802361/ |
| "Alzheimer Sozé"^^xsd:string | http://img.jamendo.com/artists/a/alzheimer.soze.jpg | __jamendo-3.rdf#__Description10 | http://sws.geonames.org/2974304/ |
| "the ad.kowas"^^xsd:string | http://img.jamendo.com/artists/t/the.ad.kowas.jpg | http://www.myspace.com/simusic1 | http://sws.geonames.org/2911297/ |
| "Anonyma sonor"^^xsd:string | http://img.jamendo.com/artists/a/anonymasonor.jpg | http://sws.geonames.org/3019316/ | |
| "Les Chapo-T"^^xsd:string | http://img.jamendo.com/artists/l/leschapot.jpg | http://www.chapot.com | http://sws.geonames.org/3029094/ |
| "_voice"^^xsd:string | http://img.jamendo.com/artists/v/voice.jpg | http://www.phatsonic.de | http://sws.geonames.org/3213264/ |
| "Fred OSCAR"^^xsd:string | http://img.jamendo.com/artists/f/fred.oscar.jpg | http://www.fredoscar.com | http://sws.geonames.org/2987410/ |
| "Psicotropicodelia Music [netlabel]"^^xsd:string | http://img.jamendo.com/artists/p/psicotropicodelia.music.gif | http://psicotropicodleia.blogspot.com | http://sws.geonames.org/3469034/ |
| "Evias"^^xsd:string | http://img.jamendo.com/artists/e/evias.jpg | http://evias.tk | http://sws.geonames.org/3017382/ |
| "ZG and 108 Desires"^^xsd:string | http://img.jamendo.com/artists/z/zg.and.108.desires.jpg | http://www.zgdream.com | http://sws.geonames.org/6252001/ |
| "Sam Harmon"^^xsd:string | http://img.jamendo.com/artists/s/sam.harmon.jpg | http://www.myspace.com/samharmonmusic | http://sws.geonames.org/6252001/ |
| "Feel-ipson"^^xsd:string | http://img.jamendo.com/artists/f/feel-ipson.jpg | http://www.feel-ipson.com | http://sws.geonames.org/2661886/ |
| "brynet"^^xsd:string | http://img.jamendo.com/artists/b/brynet.jpg | http://andybient.altervista.org | http://sws.geonames.org/1149361/ |
| "FMR"^^xsd:string | http://img.jamendo.com/artists/f/fmr.jpg | http://www.collectif-fmr.com | http://sws.geonames.org/2968815/ |
| "Nokto De Esperi"^^xsd:string | http://img.jamendo.com/artists/n/nokto.de.esperi.jpg | http:// | http://sws.geonames.org/2802361/ |
| "JEWEL"^^xsd:string | http://img.jamendo.com/artists/j/jewel.jpg | http://jewelpoprock.free.fr/ | http://sws.geonames.org/3013726/ |
| "bayboom --oO]Ü[Oo--"^^xsd:string | http://img.jamendo.com/artists/b/bayboom.jpg | http://sws.geonames.org/3038049/ | |
| "PIPEDREAMS"^^xsd:string | http://img.jamendo.com/artists/p/pipedreams.jpg | http://www.pipedreams-music.com | http://sws.geonames.org/2975517/ |
| "liplug"^^xsd:string | http://img.jamendo.com/artists/l/liplug.jpg | http://myspace.com/liplug | http://sws.geonames.org/2884161/ |
| "Dosis Diaria"^^xsd:string | http://img.jamendo.com/artists/d/dosis.diaria.jpg | http://dosisdiaria1.blogspot.com/ | http://sws.geonames.org/2521883/ |
| "KISSIN' KATE"^^xsd:string | http://img.jamendo.com/artists/k/kissin.kate.jpg | http://www.myspace.com/kissinkate | http://sws.geonames.org/3013767/ |
| "no se"^^xsd:string | http://www.nosepunk.blogspot.com | http://sws.geonames.org/798544/ | |
| "LODS"^^xsd:string | http://img.jamendo.com/artists/l/lods.jpg | http://www.indemarket.com | http://sws.geonames.org/2968815/ |
| "Les Garçons Joufflus"^^xsd:string | http://img.jamendo.com/artists/l/lesgarconsjoufflus.jpg | http://www.myspace.com/garconsjoufflus | http://sws.geonames.org/2081918/ |
| "Stalling Downhill"^^xsd:string | http://img.jamendo.com/artists/s/stallingdownhill.jpg | http://www.stallingdownhill.de.vu | http://sws.geonames.org/3213264/ |
| "Menkar"^^xsd:string | http://img.jamendo.com/artists/m/menkar.jpg | http://sws.geonames.org/2975248/ | |
| "Androïds-B"^^xsd:string | http://img.jamendo.com/artists/a/androids-b.jpg | file:///home/yves/jamendo/http//:www.myspace.com/androidsb | http://sws.geonames.org/3020781/ |
| "The Playing Orchestra"^^xsd:string | http://img.jamendo.com/artists/t/the.playing.orchestra.jpg | http://www.myspace.com/theplayingorchestra | http://sws.geonames.org/2510769/ |
| "keiro"^^xsd:string | http://img.jamendo.com/artists/k/keiro.jpg | http://www.myspace.com/keiro92 | http://sws.geonames.org/3013657/ |
| "landeros"^^xsd:string | http://img.jamendo.com/artists/l/landeros.jpg | http://myspace.com/locoins | http://sws.geonames.org/3996063/ |
| "Kolorize"^^xsd:string | http://img.jamendo.com/artists/k/kolorize.jpg | http://www.myspace.com/epicrisismusic | http://sws.geonames.org/798544/ |
| "Xenofobia"^^xsd:string | http://img.jamendo.com/artists/x/xenofobia.jpg | http://www.mp3.de/xenofobia | http://sws.geonames.org/2921044/ |
| "The Airy Snaps"^^xsd:string | http://img.jamendo.com/artists/t/theairysnaps.jpg | http://www.theairysnaps.com | http://sws.geonames.org/3029094/ |
| "ZAM'S"^^xsd:string | http://img.jamendo.com/artists/z/zams.jpg | http://www.zams.fr | http://sws.geonames.org/3012051/ |
| "STECK"^^xsd:string | http://img.jamendo.com/artists/s/steck.jpg | http://www.earlham.edu/~peters/hometoc.htm | |
| "Mankind concept"^^xsd:string | http://img.jamendo.com/artists/m/mankind.concept.jpg | http://mankind.concept.free.fr/ | http://sws.geonames.org/3013767/ |
| "Fugue State"^^xsd:string | http://img.jamendo.com/artists/f/fuguestate.jpg | http://fstate.skincontact.com | http://sws.geonames.org/6252001/ |
| "Julien Boulier"^^xsd:string | http://img.jamendo.com/artists/j/julien.boulier.jpg | http://www.julien-boulier.net | http://sws.geonames.org/3018471/ |
| "Exe.Cute"^^xsd:string | http://img.jamendo.com/artists/e/exe.cute.jpg | http://\dementialcore.blogspot.com | http://sws.geonames.org/3182350/ |
| "skin contact"^^xsd:string | http://img.jamendo.com/artists/s/skincontact.jpg | http://www.skincontact.com | http://sws.geonames.org/6252001/ |
| "SEKMETH"^^xsd:string | http://img.jamendo.com/artists/s/sekmeth.jpg | http://myspace.com/sekmethband | http://sws.geonames.org/2991627/ |
| "Xcyril"^^xsd:string | http://img.jamendo.com/artists/z/zagan.jpg | http://xcyril.tuxfamily.org/dotclear/index.php/ | http://sws.geonames.org/798544/ |
| "Dom Brandt"^^xsd:string | http://img.jamendo.com/artists/d/dom.brandt.jpg | http://sws.geonames.org/2991627/ | |
| "Seal Seven"^^xsd:string | http://img.jamendo.com/artists/s/seal.seven.jpg | http://sealseven.com | http://sws.geonames.org/6252001/ |
| "My Every Sin"^^xsd:string | http://img.jamendo.com/artists/m/myeverysin.jpg | http://www.myspace.com/myeverysin | http://sws.geonames.org/2802361/ |
| "Electric Zoom"^^xsd:string | http://img.jamendo.com/artists/e/electric-zoom.jpg | http://www.electriczoom.de | http://sws.geonames.org/3213264/ |
| "Fireproof Babies"^^xsd:string | http://img.jamendo.com/artists/f/fireproof.babies.jpg | http://fireproofbabies.blogspot.com | http://sws.geonames.org/6252001/ |
| "Ryan Helinski"^^xsd:string | http://img.jamendo.com/artists/r/ryan.helinski.jpg | http://www.cs.umbc.edu/~rhelins1/ | http://sws.geonames.org/6252001/ |
| "xHenon"^^xsd:string | http://img.jamendo.com/artists/x/xhenon.jpg | http://www.chrysfairlight.com | http://sws.geonames.org/3023414/ |
| "rkt"^^xsd:string | http://img.jamendo.com/artists/r/rkt.jpg | http://www.myspace.com/rkt95 | http://sws.geonames.org/2971071/ |
| "Lokolé"^^xsd:string | http://img.jamendo.com/artists/l/lokoleafrofusion.jpg | http://www.lokole.es | http://sws.geonames.org/6355234/ |
| "The Trembling Turncoats"^^xsd:string | http://img.jamendo.com/artists/t/trembling.turncoats.jpg | http://www.myspace.com/thetremblingturncoats | http://sws.geonames.org/6252001/ |
| "lunev"^^xsd:string | http://img.jamendo.com/artists/l/lunev.jpg | ||
| "viroos"^^xsd:string | http://img.jamendo.com/artists/v/viroos.jpg | http://viroos.oqq.pl | http://sws.geonames.org/798544/ |
| "Convergence"^^xsd:string | http://img.jamendo.com/artists/c/convergence.jpg | http://www.convergence.it | http://sws.geonames.org/3173330/ |
| "spiceware"^^xsd:string | http://img.jamendo.com/artists/s/spiceware.gif | http://spiceware.free.fr/album/ | http://sws.geonames.org/3023423/ |
| "Kissel"^^xsd:string | http://img.jamendo.com/artists/k/kissel.jpg | http://kisselcaminos.blogsome.com/ | http://sws.geonames.org/3104469/ |
| "Ithak"^^xsd:string | http://img.jamendo.com/artists/i/ithaque.jpg | http://sws.geonames.org/3017382/ | |
| "DJ Lux"^^xsd:string | http://img.jamendo.com/artists/d/dj.lux.jpg | http://None | http://sws.geonames.org/6252001/ |
| "STURTZFREQUENZ"^^xsd:string | http://img.jamendo.com/artists/s/sturtzfrequenz.jpg | http://www.myspace.com/sturtzfrequenz | http://sws.geonames.org/2921044/ |
| "narcoz mc"^^xsd:string | http://img.jamendo.com/artists/n/narcoz.mc.jpg | http://narcoz.skyblog.com | http://sws.geonames.org/3013500/ |
| "Vida en Marte"^^xsd:string | http://img.jamendo.com/artists/v/vida.en.marte.jpg | http://myspace.com/vidaenmarte | http://sws.geonames.org/2510769/ |
| "Jits del Veranu"^^xsd:string | file:///home/yves/jamendo/www.calaiaia.net | http://sws.geonames.org/2510769/ | |
| "MyOwnFreedom"^^xsd:string | http://myownfreedom.pl | http://sws.geonames.org/798544/ | |
| "Anawin"^^xsd:string | http://img.jamendo.com/artists/a/anawin.jpg | http://monray.free.fr | http://sws.geonames.org/6251999/ |
| "Submission/Lies"^^xsd:string | http://img.jamendo.com/artists/s/submissionlies.jpg | http://nksinternational.free.fr/submissionlies.html | http://sws.geonames.org/3017382/ |
| "BeatJuice"^^xsd:string | http://img.jamendo.com/artists/b/beatjuice.jpg | http://sws.geonames.org/3213264/ | |
| "Kryptic Mood"^^xsd:string | http://img.jamendo.com/artists/k/kryptic.mood.jpg | http://jeff1966.deviantart.com/ | http://sws.geonames.org/6252001/ |
| "Rémi.DB "^^xsd:string | http://img.jamendo.com/artists/r/rdbs.jpg | http://drumms.skyrock.com/ | http://sws.geonames.org/3016670/ |
| "Kingsound"^^xsd:string | |||
| "Soresmile"^^xsd:string | http://img.jamendo.com/artists/s/soresmile.jpg | http://www.soresmile.com | http://sws.geonames.org/2802361/ |
| "Vol De Nuit"^^xsd:string | http://img.jamendo.com/artists/v/vol.de.nuit.jpg | http://vol2nuit.chez-alice.fr | http://sws.geonames.org/3013767/ |
| "John Russell Band"^^xsd:string | http://img.jamendo.com/artists/j/johnrussellband.jpg | http://www.myspace.com/johnrussellsounds | |
| "Dominic Lemoine"^^xsd:string | http://img.jamendo.com/artists/d/dominiclemoine.jpg | http://sws.geonames.org/6251999/ | |
| "Wurstwasser"^^xsd:string | http://img.jamendo.com/artists/w/wurstwasser.gif | http://www.rollmotz.de | http://sws.geonames.org/3213264/ |
| "alainprovist"^^xsd:string | http://sws.geonames.org/3013663/ | ||
| "mr. jeey x"^^xsd:string | http://img.jamendo.com/artists/m/master.jeey.x.jpg | http://sws.geonames.org/2525471/ | |
| "Bruno attitood"^^xsd:string | http://img.jamendo.com/artists/b/bruno.attitood.jpg | http://brunoattitood.blogspot.com/ | http://sws.geonames.org/3017382/ |
| "FreddySk8"^^xsd:string | http://img.jamendo.com/artists/f/freddysk8.jpg | http://www.myspace.com/freddyskate | http://sws.geonames.org/3165924/ |
| "MeLTiNg*pOtEs pRojekT"^^xsd:string | http://img.jamendo.com/artists/m/melting-potes-projekt.jpg | http://www.myspace.com/meltingpotesprojekt | http://sws.geonames.org/2991627/ |
| "dextrine"^^xsd:string | http://img.jamendo.com/artists/d/dextrine.jpg | http://perso.orange.fr/astegem/entree.html | http://sws.geonames.org/2975926/ |
| "green"^^xsd:string | http://img.jamendo.com/artists/g/green.jpg | http://rainbow.blogdns.net | http://sws.geonames.org/3017382/ |
| "nanar mouskouri"^^xsd:string | http://img.jamendo.com/artists/n/nanar.mouskouri.jpg | http://membres.lycos.fr/hapock/ | http://sws.geonames.org/3013500/ |
| "Empathik"^^xsd:string | http://img.jamendo.com/artists/e/empathik.jpg | http://www.myspace.com/empathik | http://sws.geonames.org/2975246/ |
| "Auricular"^^xsd:string | http://img.jamendo.com/artists/a/auricular.jpg | http://www.thebasingers.com/auricular/ | http://sws.geonames.org/6252001/ |
| "SMILEY"^^xsd:string | http://img.jamendo.com/artists/s/smiley.gif | http://www.smileymusic.fr | http://sws.geonames.org/3012715/ |
| "Ptit lutin"^^xsd:string | http://img.jamendo.com/artists/p/ptit.lutin.jpg | file:///home/yves/jamendo/www.myspace.com/max00u_0 | http://sws.geonames.org/2989663/ |
| "kiseki"^^xsd:string | http://img.jamendo.com/artists/k/kisekii.png | http://www.myspace.com/kiseki77 | http://sws.geonames.org/2975249/ |
| "Litis"^^xsd:string | http://img.jamendo.com/artists/l/litis.jpg | http://sws.geonames.org/294640/ | |
| "Stoke"^^xsd:string | http://img.jamendo.com/artists/s/stoke.jpg | http://www.stokepunkrock.com | http://sws.geonames.org/2510769/ |
| "Projet Hajra"^^xsd:string | http://img.jamendo.com/artists/p/projethajra.jpg | http://myspace.com/projethajra | http://sws.geonames.org/3013736/ |
| "Matieu"^^xsd:string | http://img.jamendo.com/artists/m/matieu.jpg | http://www.matieu.net | http://sws.geonames.org/2991627/ |
| "fractal wizards"^^xsd:string | http://img.jamendo.com/artists/f/fractal.wizards.jpg | http://sws.geonames.org/6252001/ | |
| "j.s.marti"^^xsd:string | http://img.jamendo.com/artists/j/j.s.marti.jpg | http://www.myspace.com/jsmartimusic | http://sws.geonames.org/6424360/ |
| "Titee & Pixieguts"^^xsd:string | http://img.jamendo.com/artists/t/titee.pixieguts.jpg | http://myspace.com/titeepixieguts | http://sws.geonames.org/2077456/ |
| "Franco Uda"^^xsd:string | http://img.jamendo.com/artists/f/francouda.jpg | http://francouda.blogspot.com | http://sws.geonames.org/3165241/ |
| "bazzmann"^^xsd:string | http://img.jamendo.com/artists/b/bazzmann.png | http://www.marcotrevisan.it/ | http://sws.geonames.org/3164600/ |
| "Cellardoor"^^xsd:string | http://img.jamendo.com/artists/c/cellardoor.jpg | http://cellardoor.netsons.org | http://sws.geonames.org/3175120/ |
| "Daniel Bautista"^^xsd:string | http://img.jamendo.com/artists/d/daniel.bautista.jpg | http://www.danielbautista.com | http://sws.geonames.org/2515271/ |
| "non-conforme"^^xsd:string | http://img.jamendo.com/artists/n/non-conforme.jpg | http://www.myspace.com/nonconforme10 | http://sws.geonames.org/3036420/ |
| "Digital Bros."^^xsd:string | http://img.jamendo.com/artists/d/digital.bros.jpg | http://digital.noise.free.fr | http://sws.geonames.org/3034720/ |
| "R6.3zist"^^xsd:string | http://img.jamendo.com/artists/r/r6.3zist.jpg | http://www.myspace.com/r63zist | http://sws.geonames.org/3013657/ |
| "Existence"^^xsd:string | http://img.jamendo.com/artists/e/existence.jpg | http://existenceleblog.blogspot.com/ | http://sws.geonames.org/2968815/ |
| "yoko.lennon"^^xsd:string | http://losliriosdelbosque.org/yoko.lennon/ | http://sws.geonames.org/2510769/ | |
| "Jomeini Taim"^^xsd:string | http://img.jamendo.com/artists/j/jomeini.taim.jpg | http://www.areahiphop.com/maquetas.php?i=12 | http://sws.geonames.org/2510769/ |
| "Acherusia"^^xsd:string | http://img.jamendo.com/artists/a/acherusia.png | http://www.acherusia.tk | http://sws.geonames.org/2994111/ |
| "Conchadors"^^xsd:string | http://img.jamendo.com/artists/c/conchadors.jpg | http://www.conchadors.com | http://sws.geonames.org/325302/ |
| "JPMOUNIER"^^xsd:string | http://img.jamendo.com/artists/j/jpmounier.jpg | http://jazzodiaque.blogspot.com | http://sws.geonames.org/2984885/ |
| "Ecliptika"^^xsd:string | http://img.jamendo.com/artists/e/ecliptika.jpg | http://www.myspace.com/ecliptika | http://sws.geonames.org/6355233/ |
| "BeatRaider"^^xsd:string | http://img.jamendo.com/artists/b/beatraider.jpg | http://www.myspace.com/beat_raider | http://sws.geonames.org/2841464/ |
| "Idryss"^^xsd:string | http://img.jamendo.com/artists/i/idryss.jpg | http://kankasia.free.fr | http://sws.geonames.org/2968815/ |
| "Kokkaljós"^^xsd:string | http://img.jamendo.com/artists/k/kokkaljos.jpg | http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid=176963174 | http://sws.geonames.org/2629691/ |
| "molicie"^^xsd:string | http://molicie.no-ip.org/ | http://sws.geonames.org/2510769/ | |
| "[ i ]"^^xsd:string | http://img.jamendo.com/artists/i/i-rock.jpg | http://i-rock.pl | http://sws.geonames.org/798544/ |
| "Oooh !!!"^^xsd:string | http://img.jamendo.com/artists/o/oooh.jpg | http://oooh.free.fr/ | http://sws.geonames.org/3021501/ |
| "meterRruidos"^^xsd:string | http://img.jamendo.com/artists/m/meterrruidos.jpg | http://meterrruidos.blogspot.com | http://sws.geonames.org/2510769/ |
| "Uberlulu"^^xsd:string | http://img.jamendo.com/artists/u/uberlulu.jpg | http://www.e-monsite.com/uberlulu/ | http://sws.geonames.org/3337521/ |
| "Aren Blake"^^xsd:string | http://img.jamendo.com/artists/a/aren.blake.jpg | http://sws.geonames.org/6252001/ | |
| "AUSTERLITZ"^^xsd:string | http://img.jamendo.com/artists/a/austerlitz.jpg | http://www.myspace.com/austerlitzrock | http://sws.geonames.org/2968815/ |
| "Bears In Black"^^xsd:string | http://img.jamendo.com/artists/b/bears.in.black1.jpg | http://myspace.com/bearsinblack | http://sws.geonames.org/3013767/ |
| "pornophonique"^^xsd:string | http://img.jamendo.com/artists/p/pornophonique.jpg | http://www.pornophonique.de | http://sws.geonames.org/6557769/ |
| "SICKBAG"^^xsd:string | http://img.jamendo.com/artists/s/sickbag.jpg | http://www.sickbag.pl | http://sws.geonames.org/798544/ |
| "Susan Rom"^^xsd:string | http://img.jamendo.com/artists/s/susan.rom.jpg | http://www.myspace.com/susanrom | http://sws.geonames.org/3209442/ |
| "Tom Crusader"^^xsd:string | http://img.jamendo.com/artists/t/tom.crusader.jpg | http://tcmusic.mine.nu/ | http://sws.geonames.org/2661886/ |
| "Bertrand Homassel"^^xsd:string | http://www.le40erugissant.com | http://sws.geonames.org/3017382/ | |
| "white spirit"^^xsd:string | http://img.jamendo.com/artists/w/white.spirit.jpg | http://sws.geonames.org/3017382/ | |
| "Porpoise"^^xsd:string | http://img.jamendo.com/artists/p/porpoise.jpg | http://www.myspace.com/porpoiserock | |
| "C. Glen Williams"^^xsd:string | http://img.jamendo.com/artists/c/c.glen.williams.jpg | http://www.kallixti.net | http://sws.geonames.org/6252001/ |
| "Nakazawa Fusako"^^xsd:string | http://img.jamendo.com/artists/e/ensemblekoto.jpg | http://www.ensemblekoto.it | http://sws.geonames.org/3164600/ |
| "Electrosaurio"^^xsd:string | http://img.jamendo.com/artists/e/electrosaurio.jpg | http://www.electrosaurio.com.ar | http://sws.geonames.org/3865483/ |
| "herr gau"^^xsd:string | http://img.jamendo.com/artists/h/herr.gau.jpg | http://www.soundclick.com/herrgau | http://sws.geonames.org/2911297/ |
| "Taya Wooden"^^xsd:string | http://tayawooden.blogspot.com | http://sws.geonames.org/2287781/ | |
| "CHRISTINE"^^xsd:string | http://img.jamendo.com/artists/c/christine.jpg | http://www.myspace.com/christinevousaime | http://sws.geonames.org/3031359/ |
| "Antonio Raffone"^^xsd:string | http://img.jamendo.com/artists/a/antonio.raffone.jpg | ||
| "Les Transes Lucides"^^xsd:string | http://img.jamendo.com/artists/l/les.transes.lucides.jpg | http://sws.geonames.org/3017382/ | |
| "Punkteticos"^^xsd:string | http://img.jamendo.com/artists/p/punkteticos.jpg | http://punkteticos.iespana.es | http://sws.geonames.org/3865483/ |
| "Jakub Tuta"^^xsd:string | http://img.jamendo.com/artists/j/jakub.tuta.jpg | http://sws.geonames.org/798544/ | |
| "four-O-four"^^xsd:string | http://img.jamendo.com/artists/f/four-o-four.jpg | http://www.four-O-four.com | http://sws.geonames.org/2921044/ |
| "MFTM (music for the minority)"^^xsd:string | http://img.jamendo.com/artists/m/mftm.jpg | http://www.MFTM.co.nr | http://sws.geonames.org/2963597/ |
| "Naadir"^^xsd:string | http://img.jamendo.com/artists/n/naadir.jpg | http://myspace.com/naadirsalerno | http://sws.geonames.org/3168670/ |
| "DeeJay PowerG"^^xsd:string | http://img.jamendo.com/artists/d/deejay.powerg.png | http://www.dj-powerg.fr.nf/ | http://sws.geonames.org/2658182/ |
| "Broken Steel"^^xsd:string | http://img.jamendo.com/artists/b/broken.steel.jpg | http://brokensteel.blogspot.com/ | http://sws.geonames.org/798544/ |
| "Mobiuself"^^xsd:string | http://img.jamendo.com/artists/m/mobius.jpg | http://perso.wanadoo.fr/mobius.musique | http://sws.geonames.org/3013767/ |
| "Silt"^^xsd:string | http://img.jamendo.com/artists/s/silt.jpg | http://www.myspace.com/groupesilt | http://sws.geonames.org/2975248/ |
| "miss daisy black"^^xsd:string | http://img.jamendo.com/artists/m/miss.daisy.black.jpg | http://www.myspace.com/missdaisyblack | http://sws.geonames.org/3017382/ |
| "Die feuchte Elfriede"^^xsd:string | http://img.jamendo.com/artists/d/die.feuchte.elfriede.jpg | http://pearlmande.blogspot.com/ | http://sws.geonames.org/6556330/ |
| "Rezonant Haze"^^xsd:string | http://img.jamendo.com/artists/r/rezonant.haze.jpg | http://sws.geonames.org/2987410/ | |
| "Chili 70"^^xsd:string | http://img.jamendo.com/artists/c/chili.70.jpg | http://chili70.over-blog.net/ | http://sws.geonames.org/2984887/ |
| "dteix"^^xsd:string | http://img.jamendo.com/artists/d/dteix.jpg | http://www.dteix.net | http://sws.geonames.org/2990129/ |
| "Mr Darkmind"^^xsd:string | http://img.jamendo.com/artists/m/mr.darkmind.jpg | http://mrdarkmind.free.fr | http://sws.geonames.org/2991627/ |
| "CONFUSION IS NEXT"^^xsd:string | http://img.jamendo.com/artists/c/confusion.is.next.jpg | http://www.myspace.com/confusionisnext | http://sws.geonames.org/3173434/ |
| "Angelo Romano"^^xsd:string | http://img.jamendo.com/artists/a/aromano.jpg | http://leader.altervista.org/music/ | http://sws.geonames.org/3170646/ |
| "Strange Republik"^^xsd:string | http://img.jamendo.com/artists/s/strangerepublik.png | http://www.strangerepublik.com | http://sws.geonames.org/6252001/ |
| "The Same Street"^^xsd:string | http://img.jamendo.com/artists/t/the.same.street.jpg | http://www.thesamestreet.com | http://sws.geonames.org/2802361/ |
| "Reciclados"^^xsd:string | http://img.jamendo.com/artists/r/reciclados.gif | http://puercoespines.iespana.es | http://sws.geonames.org/2510910/ |
| "Sans-Ouate !!!"^^xsd:string | http://img.jamendo.com/artists/s/sans-ouate.jpg | http://sansouate.free.fr | http://sws.geonames.org/2990129/ |
| "Lunatic Moonriders of Uranus"^^xsd:string | http://img.jamendo.com/artists/l/lmou.jpg | http://juho.psyyke.net | |
| "staszczyk"^^xsd:string | |||
| "komein"^^xsd:string | http://img.jamendo.com/artists/k/komein.jpg | http://iplusplus-records.net | http://sws.geonames.org/2968815/ |
| "plusp"^^xsd:string | http://img.jamendo.com/artists/p/plusp.jpg | http://iplusplus-records.net | http://sws.geonames.org/2968815/ |
| "enslyon"^^xsd:string | http://img.jamendo.com/artists/e/enslyon.jpg | http://iplusplus-records.net | http://sws.geonames.org/2968815/ |
| "software"^^xsd:string | http://img.jamendo.com/artists/s/software.jpg | http://iplusplus-records.net | http://sws.geonames.org/2968815/ |
| "notolerance"^^xsd:string | http://img.jamendo.com/artists/n/notolerance.jpg | file:///home/yves/jamendo/http//www.jamendo.com/artist/notolerance/ | http://sws.geonames.org/2782113/ |
| "Logout"^^xsd:string | http://img.jamendo.com/artists/l/logout.jpg | http://www.diebanddiesichlogoutnennt.de | http://sws.geonames.org/2884161/ |
| "Illusion of Art"^^xsd:string | http://img.jamendo.com/artists/i/illusion.of.art.jpg | http://illusionofart.com/ | http://sws.geonames.org/6252001/ |
| "L.L. de Mars"^^xsd:string | http://img.jamendo.com/artists/l/l.l.de.mars.gif | http://www.le-terrier.net | http://sws.geonames.org/3012849/ |
| "Manguina"^^xsd:string | http://img.jamendo.com/artists/m/manguina.jpg | http://www.manguina.net | http://sws.geonames.org/2968815/ |
| "wish"^^xsd:string | http://wish.sottosuono.info | http://sws.geonames.org/3181927/ | |
| "Conny Olivetti"^^xsd:string | http://img.jamendo.com/artists/o/olivetti.jpg | http://www.whatif.nu/ | http://sws.geonames.org/2661886/ |
| "Teäl"^^xsd:string | http://www.17sons.com/articles.php?lng=en&pg=62 | http://sws.geonames.org/3017382/ | |
| "Mister Electric Demon & Redribbon"^^xsd:string | http://img.jamendo.com/artists/M/Mister_Electric_Demon_Redribbon.jpg | http://medcg.free.fr | http://sws.geonames.org/3017382/ |
| "BOOSTIE"^^xsd:string | http://img.jamendo.com/artists/b/boostie.jpg | http://www.boostie.com | http://sws.geonames.org/3015948/ |
| "Xtremist"^^xsd:string | http://www.17sons.com/articles.php?lng=en&pg=65 | http://sws.geonames.org/3017382/ | |
| "Proiler"^^xsd:string | http://img.jamendo.com/artists/p/proiler.jpg | http://www.proiler.com | http://sws.geonames.org/2973362/ |
| "KTan"^^xsd:string | http://img.jamendo.com/artists/k/ktan.jpg | http://www.ktan.net | http://sws.geonames.org/3012715/ |
| "Antarhes"^^xsd:string | http://img.jamendo.com/artists/a/antarhes.jpg | http://www.antarhes.com | http://sws.geonames.org/2984887/ |
| "Thierry Secqueville"^^xsd:string | http://img.jamendo.com/artists/t/thierry.secqueville.jpg | http://www.myspace.com/thierry_secqueville | http://sws.geonames.org/3031359/ |
| "GUILLO"^^xsd:string | http://img.jamendo.com/artists/g/guillo.jpg | http://www.guilloland.com | http://sws.geonames.org/3007866/ |
| "Arcadiaz"^^xsd:string | http://img.jamendo.com/artists/a/arcadiaz.jpg | http://pibilinn.free.fr | http://sws.geonames.org/3023414/ |
| "Mobyl"^^xsd:string | http://www.17sons.com/articles.php?lng=en&pg=69 | http://sws.geonames.org/3017382/ | |
| "Alexis"^^xsd:string | http://img.jamendo.com/artists/a/alexis.jpg | http://www.chatougri.com | http://sws.geonames.org/3012849/ |
| "creator"^^xsd:string | http://img.jamendo.com/artists/c/creator.jpg | http://sws.geonames.org/3013663/ | |
| "Alexander Blu"^^xsd:string | http://www.moderato.ns.co.yu/05english | http://sws.geonames.org/6290252/ | |
| "ZooL"^^xsd:string | http://img.jamendo.com/artists/z/zool.jpg | http://zoolzone.free.fr | http://sws.geonames.org/2975249/ |
| "Philippe Maurice and Co"^^xsd:string | http://sws.geonames.org/2967196/ | ||
| "Philippe Mangold"^^xsd:string | http://sws.geonames.org/3013657/ | ||
| "NeXuS"^^xsd:string | http://img.jamendo.com/artists/n/nexus.jpg | http://www.nexus-trance.fr | http://sws.geonames.org/3013767/ |
| "eXe's"^^xsd:string | http://img.jamendo.com/artists/e/exe.s.jpg | http://www.groupe-exes.com | http://sws.geonames.org/3031359/ |
| "DIG"^^xsd:string | http://img.jamendo.com/artists/d/dig.jpg | http://dig.fb.bz | http://sws.geonames.org/2988430/ |
| "Daniela"^^xsd:string | http://img.jamendo.com/artists/d/daniela.gif | http://sws.geonames.org/2968815/ | |
| "Redmind"^^xsd:string | http://img.jamendo.com/artists/r/redmind.jpg | http://jlanthea.free.fr/jamendo/ | http://sws.geonames.org/2970749/ |
| "Donna"^^xsd:string | http://img.jamendo.com/artists/d/donna.jpg | http://donna.grand-teton.net | http://sws.geonames.org/2968815/ |
| "FOOL DADAZ FIRE"^^xsd:string | http://img.jamendo.com/artists/m/mais.69.jpg | http://fooldadazfire.free.fr | http://sws.geonames.org/2968815/ |
| "Lorenzo and the Lamas"^^xsd:string | http://img.jamendo.com/artists/l/lorenzo.and.the.lamas.jpg | http://mais69.hautetfort.com | http://sws.geonames.org/2997861/ |
| "Castel"^^xsd:string | http://img.jamendo.com/artists/c/castel.jpg | http://sws.geonames.org/2990129/ | |
| "LEGO"^^xsd:string | http://img.jamendo.com/artists/l/lego.jpg | http://www.myspace.com/legolag | http://sws.geonames.org/3013767/ |
| "Skaut"^^xsd:string | http://www.skaut.fr.st | http://sws.geonames.org/2991627/ | |
| "NO"^^xsd:string | http://img.jamendo.com/artists/n/no.gif | http://www.website-no.com | http://sws.geonames.org/6252001/ |
| "Back On"^^xsd:string | http://img.jamendo.com/artists/b/back.on.jpg | http://backon.es | http://sws.geonames.org/2510769/ |
| "dilo"^^xsd:string | http://img.jamendo.com/artists/d/dilo.jpg | http://www.dilo.org | http://sws.geonames.org/2510769/ |
| "NALYSTIN"^^xsd:string | http://img.jamendo.com/artists/n/nalystin.jpg | http://www.nalystin.com | http://sws.geonames.org/3013767/ |
| "Lonah"^^xsd:string | http://img.jamendo.com/artists/l/lonah.jpg | http://www.lonah.net | http://sws.geonames.org/2968815/ |
| "K-DJ"^^xsd:string | http://img.jamendo.com/artists/k/k-dj.jpg | http://www.freewebs.com/slyge/kdj.htm | http://sws.geonames.org/2997861/ |
| "Detenzya"^^xsd:string | http://img.jamendo.com/artists/d/detenzya.jpg | http://www.detenzya.clan.st | http://sws.geonames.org/2991627/ |
| "Haeresis"^^xsd:string | http://www.haeresis.org/ | http://sws.geonames.org/3175395/ | |
| "MASTAROTH"^^xsd:string | http://img.jamendo.com/artists/m/mastaroth.jpg | http://mastaroth.free.fr | http://sws.geonames.org/3013767/ |
| "dj-cat"^^xsd:string | http://img.jamendo.com/artists/d/dj-cat.jpg | http://www.neomusicstore.com/downloads/digital-1f9e24517dea-dj-cat-rechauffement-enigmatique-independent-artist.html | http://sws.geonames.org/3013767/ |
| "Les Sens Crient"^^xsd:string | http://img.jamendo.com/artists/l/les.sens.crient.jpg | http://www.les-sens-crient.com | http://sws.geonames.org/3023423/ |
| "joKeR"^^xsd:string | http://img.jamendo.com/artists/j/joker.jpg | http://jeldora.cowblog.fr | http://sws.geonames.org/3015948/ |
| "Steven Dunston"^^xsd:string | http://img.jamendo.com/artists/s/steven.dunston.jpg | http://www.stevendunston.com | http://sws.geonames.org/6252001/ |
| "Carlos Saura"^^xsd:string | http://img.jamendo.com/artists/c/carlosaura.jpg | http://www.carlosaura.com | http://sws.geonames.org/2510769/ |
| "Andy Pierron"^^xsd:string | http://img.jamendo.com/artists/a/andy.pierron.jpg | http://www.liverdun.com/perso/andy/index.htm | http://sws.geonames.org/2994111/ |
| "Rafa Caballero"^^xsd:string | http://img.jamendo.com/artists/r/rafacaballero.png | http://www.rafacaballero.es | http://sws.geonames.org/2510769/ |
| "En Busca Del Pasto"^^xsd:string | http://img.jamendo.com/artists/e/en.busca.del.pasto.jpg | http://www.enbuscadelpasto.com | http://sws.geonames.org/2510769/ |
| "Lolo Tof"^^xsd:string | http://img.jamendo.com/artists/l/lolo.tof.jpg | http://www.lolotof.es.vg | http://sws.geonames.org/2510769/ |
| "adel"^^xsd:string | http://img.jamendo.com/artists/a/adel.jpg | http://adel.net.free.fr | http://sws.geonames.org/3013657/ |
| "Innerchaos"^^xsd:string | http://img.jamendo.com/artists/i/innerchaos.jpg | http://www.innerchaos.net | http://sws.geonames.org/2968815/ |
| "Arietys"^^xsd:string | http://img.jamendo.com/artists/a/arietys.jpg | http://arietys.free.fr | http://sws.geonames.org/2990129/ |
| "Urban Castle Magic"^^xsd:string | http://img.jamendo.com/artists/u/urbancastlemagic.gif | http://www.urbancastlemagic.com | http://sws.geonames.org/2510769/ |
| "Ogg Vorbis"^^xsd:string | http://img.jamendo.com/artists/o/ogg.vorbis.jpg | http://www.myspace.com/bigbazar | http://sws.geonames.org/3013500/ |
| "denis lecarme"^^xsd:string | http://img.jamendo.com/artists/d/denis.lecarme.jpg | http://www.denislecarme.com | http://sws.geonames.org/2987410/ |
| "Gina Artworth"^^xsd:string | http://img.jamendo.com/artists/g/gina.artworth.jpg | http://www.another-record.com | http://sws.geonames.org/3017382/ |
| "Sinn"^^xsd:string | http://img.jamendo.com/artists/s/sinn.gif | http://www.sinnproject.com | http://sws.geonames.org/2968815/ |
| "TONTO"^^xsd:string | http://img.jamendo.com/artists/e/erestonto.gif | http://www.erestonto.info | http://sws.geonames.org/2510769/ |
| "jiboul"^^xsd:string | http://img.jamendo.com/artists/j/jiboul.jpg | http://mouvementlibre.fr.nf | http://sws.geonames.org/2997856/ |
| "Allomorphe"^^xsd:string | http://www.allomorphe.fr | http://sws.geonames.org/2995603/ | |
| "Derelikt Station"^^xsd:string | http://img.jamendo.com/artists/d/derelikt.station.jpg | http://sws.geonames.org/2802361/ | |
| "The Other White Noise"^^xsd:string | http://img.jamendo.com/artists/t/theotherwhitenoise.png | http://www.theotherwhitenoise.com/ | http://sws.geonames.org/6252001/ |
| "Ed L'Epicier"^^xsd:string | http://img.jamendo.com/artists/e/edlepiciereh.jpg | http://edlepiciereh.free.fr | http://sws.geonames.org/3019599/ |
| "James Hurst"^^xsd:string | http://img.jamendo.com/artists/j/jameshurst.jpg | http://www.pintsized.co.uk/ | |
| "Drunksouls"^^xsd:string | http://img.jamendo.com/artists/d/drunksouls.jpg | http://www.drunksouls.com | http://sws.geonames.org/3031359/ |
| "Kiff'On"^^xsd:string | http://img.jamendo.com/artists/k/kiff.on.gif | http://www.kiffon.com | http://sws.geonames.org/2997861/ |
| "Juan de Buxó"^^xsd:string | http://img.jamendo.com/artists/j/juan.de.buxo.jpg | http://www.juandebuxo.com | http://sws.geonames.org/3113208/ |
| "Monsieur Untel"^^xsd:string | http://www.polystyrenetv.com | http://sws.geonames.org/2968815/ | |
| "bad loop"^^xsd:string | http://img.jamendo.com/artists/b/badloop.jpg | http://www.badloop.com | http://sws.geonames.org/660013/ |
| label | process |
|---|---|
| phosphoenolpyruvate-dependent sugar phosphotransferase system | http://purl.org/obo/owl/GO#GO_0009401 |
| Rac protein signal transduction | http://purl.org/obo/owl/GO#GO_0016601 |
| positive regulation of sterol regulatory element binding protein target gene transcription | http://purl.org/obo/owl/GO#GO_0035104 |
| decapentaplegic receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0008101 |
| activation of protein kinase C activity | http://purl.org/obo/owl/GO#GO_0007205 |
| muscarinic acetylcholine receptor, phospholipase C activating pathway | http://purl.org/obo/owl/GO#GO_0007207 |
| tyrosine phosphorylation of Stat1 protein | http://purl.org/obo/owl/GO#GO_0042508 |
| DNA fragmentation during apoptosis | http://purl.org/obo/owl/GO#GO_0006309 |
| receptor clustering | http://purl.org/obo/owl/GO#GO_0043113 |
| G-protein signaling, coupled to IP3 second messenger (phospholipase C activating) | http://purl.org/obo/owl/GO#GO_0007200 |
| sterol regulatory element binding protein cleavage | http://purl.org/obo/owl/GO#GO_0035103 |
| tyrosine phosphorylation of Stat3 protein | http://purl.org/obo/owl/GO#GO_0042503 |
| stress-activated MAPK cascade | http://purl.org/obo/owl/GO#GO_0051403 |
| sevenless signaling pathway | http://purl.org/obo/owl/GO#GO_0045500 |
| activation of phospholipase C activity | http://purl.org/obo/owl/GO#GO_0007202 |
| glucocorticoid mediated signaling | http://purl.org/obo/owl/GO#GO_0043402 |
| calcium-dependent phospholipase A2 activation | http://purl.org/obo/owl/GO#GO_0043006 |
| metabotropic glutamate receptor, phospholipase C activating pathway | http://purl.org/obo/owl/GO#GO_0007206 |
| tyrosine phosphorylation of Stat5 protein | http://purl.org/obo/owl/GO#GO_0042506 |
| BMP signaling pathway | http://purl.org/obo/owl/GO#GO_0030509 |
| insulin-like growth factor receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0048009 |
| leptin-mediated signaling pathway | http://purl.org/obo/owl/GO#GO_0033210 |
| octopamine/tyramine signaling pathway | http://purl.org/obo/owl/GO#GO_0007211 |
| serotonin receptor, phospholipase C activating pathway | http://purl.org/obo/owl/GO#GO_0007208 |
| tumor necrosis factor-mediated signaling pathway | http://purl.org/obo/owl/GO#GO_0033209 |
| serotonin receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0007210 |
| nerve growth factor receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0048011 |
| platelet-derived growth factor receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0048008 |
| inositol phosphate-mediated signaling | http://purl.org/obo/owl/GO#GO_0048016 |
| estrogen receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0030520 |
| vascular endothelial growth factor receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0048010 |
| adiponectin-mediated signaling pathway | http://purl.org/obo/owl/GO#GO_0033211 |
| gamma-aminobutyric acid signaling pathway | http://purl.org/obo/owl/GO#GO_0007214 |
| gurken receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0008314 |
| Tie receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0048014 |
| ARF protein signal transduction | http://purl.org/obo/owl/GO#GO_0032011 |
| hepatocyte growth factor receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0048012 |
| ephrin receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0048013 |
| dopamine receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0007212 |
| acetylcholine receptor signaling, muscarinic pathway | http://purl.org/obo/owl/GO#GO_0007213 |
| tachykinin signaling pathway | http://purl.org/obo/owl/GO#GO_0007217 |
| cell structure disassembly during apoptosis | http://purl.org/obo/owl/GO#GO_0006921 |
| intracellular receptor-mediated signaling pathway | http://purl.org/obo/owl/GO#GO_0030522 |
| activin receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0032924 |
| neuropeptide signaling pathway | http://purl.org/obo/owl/GO#GO_0007218 |
| steroid hormone receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0030518 |
| caspase activation | http://purl.org/obo/owl/GO#GO_0006919 |
| Notch signaling pathway | http://purl.org/obo/owl/GO#GO_0007219 |
| glutamate signaling pathway | http://purl.org/obo/owl/GO#GO_0007215 |
| phosphoinositide-mediated signaling | http://purl.org/obo/owl/GO#GO_0048015 |
| metabotropic glutamate receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0007216 |
| Notch receptor processing | http://purl.org/obo/owl/GO#GO_0007220 |
| positive regulation of transcription of Notch receptor target | http://purl.org/obo/owl/GO#GO_0007221 |
| glucocorticoid receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0042921 |
| cytokine and chemokine mediated signaling pathway | http://purl.org/obo/owl/GO#GO_0019221 |
| toll-like receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0002224 |
| smoothened signaling pathway | http://purl.org/obo/owl/GO#GO_0007224 |
| intracellular signaling cascade | http://purl.org/obo/owl/GO#GO_0007242 |
| androgen receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0030521 |
| Wnt receptor signaling pathway, calcium modulating pathway | http://purl.org/obo/owl/GO#GO_0007223 |
| patched ligand processing | http://purl.org/obo/owl/GO#GO_0007225 |
| Fc receptor mediated stimulatory signaling pathway | http://purl.org/obo/owl/GO#GO_0002431 |
| apoptotic program | http://purl.org/obo/owl/GO#GO_0008632 |
| cyclic-nucleotide-mediated signaling | http://purl.org/obo/owl/GO#GO_0019935 |
| opioid receptor, adenylate cyclase inhibiting pathway | http://purl.org/obo/owl/GO#GO_0031635 |
| smoothened signaling pathway in regulation of granule cell precursor cell proliferation | http://purl.org/obo/owl/GO#GO_0021938 |
| cleavage of lamin | http://purl.org/obo/owl/GO#GO_0006922 |
| calcium-mediated signaling | http://purl.org/obo/owl/GO#GO_0019722 |
| stimulatory C-type lectin receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0002223 |
| positive regulation of hh target transcription factor activity | http://purl.org/obo/owl/GO#GO_0007228 |
| integrin-mediated signaling pathway | http://purl.org/obo/owl/GO#GO_0007229 |
| DNA damage response, signal transduction by p53 class mediator | http://purl.org/obo/owl/GO#GO_0030330 |
| osmosensory signaling pathway | http://purl.org/obo/owl/GO#GO_0007231 |
| activation of pro-apoptotic gene products | http://purl.org/obo/owl/GO#GO_0008633 |
| caspase activation via cytochrome c | http://purl.org/obo/owl/GO#GO_0008635 |
| ionotropic glutamate receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0035235 |
| immune response-activating cell surface receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0002429 |
| cAMP-mediated signaling | http://purl.org/obo/owl/GO#GO_0019933 |
| apoptotic mitochondrial changes | http://purl.org/obo/owl/GO#GO_0008637 |
| fibroblast growth factor receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0008543 |
| I-kappaB kinase/NF-kappaB cascade | http://purl.org/obo/owl/GO#GO_0007249 |
| antigen receptor-mediated signaling pathway | http://purl.org/obo/owl/GO#GO_0050851 |
| DNA damage response, signal transduction resulting in induction of apoptosis | http://purl.org/obo/owl/GO#GO_0008630 |
| second-messenger-mediated signaling | http://purl.org/obo/owl/GO#GO_0019932 |
| release of cytochrome c from mitochondria | http://purl.org/obo/owl/GO#GO_0001836 |
| serine phosphorylation of STAT3 protein | http://purl.org/obo/owl/GO#GO_0033136 |
| cGMP-mediated signaling | http://purl.org/obo/owl/GO#GO_0019934 |
| progesterone receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0050847 |
| brain-derived neurotrophic factor receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0031547 |
| protein kinase cascade | http://purl.org/obo/owl/GO#GO_0007243 |
| protein insertion into mitochondrial membrane during induction of apoptosis | http://purl.org/obo/owl/GO#GO_0001844 |
| inhibition of phospholipase C activity | http://purl.org/obo/owl/GO#GO_0030845 |
| T cell receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0050852 |
| cytoplasmic sequestering of NF-kappaB | http://purl.org/obo/owl/GO#GO_0007253 |
| B cell receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0050853 |
| activation of JNKK activity | http://purl.org/obo/owl/GO#GO_0007256 |
| mitochondrial fragmentation during apoptosis | http://purl.org/obo/owl/GO#GO_0043653 |
| rhodopsin mediated signaling pathway | http://purl.org/obo/owl/GO#GO_0016056 |
| two-component signal transduction system (phosphorelay) | http://purl.org/obo/owl/GO#GO_0000160 |
| apoptotic nuclear changes | http://purl.org/obo/owl/GO#GO_0030262 |
| autophagy in response to ER overload | http://purl.org/obo/owl/GO#GO_0034263 |
| endoplasmic reticulum unfolded protein response | http://purl.org/obo/owl/GO#GO_0030968 |
| natural killer cell inhibitory signaling pathway | http://purl.org/obo/owl/GO#GO_0002769 |
| S-M checkpoint | http://purl.org/obo/owl/GO#GO_0031574 |
| ecdysone receptor-mediated signaling pathway | http://purl.org/obo/owl/GO#GO_0035076 |
| activation of NF-kappaB-inducing kinase activity | http://purl.org/obo/owl/GO#GO_0007250 |
| MyD88-dependent toll-like receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0002755 |
| hormone-mediated signaling | http://purl.org/obo/owl/GO#GO_0009755 |
| JAK-STAT cascade | http://purl.org/obo/owl/GO#GO_0007259 |
| metarhodopsin inactivation | http://purl.org/obo/owl/GO#GO_0016060 |
| STAT protein nuclear translocation | http://purl.org/obo/owl/GO#GO_0007262 |
| small GTPase mediated signal transduction | http://purl.org/obo/owl/GO#GO_0007264 |
| MAPKKK cascade | http://purl.org/obo/owl/GO#GO_0000165 |
| Rho protein signal transduction | http://purl.org/obo/owl/GO#GO_0007266 |
| activation of JNK activity | http://purl.org/obo/owl/GO#GO_0007257 |
| nitric oxide mediated signal transduction | http://purl.org/obo/owl/GO#GO_0007263 |
| Toll signaling pathway | http://purl.org/obo/owl/GO#GO_0008063 |
| Ras protein signal transduction | http://purl.org/obo/owl/GO#GO_0007265 |
| phosphoinositide 3-kinase cascade | http://purl.org/obo/owl/GO#GO_0014065 |
| immune response-regulating cell surface receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0002768 |
| receptor guanylyl cyclase signaling pathway | http://purl.org/obo/owl/GO#GO_0007168 |
| epidermal growth factor receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0007173 |
| SMAD protein complex assembly | http://purl.org/obo/owl/GO#GO_0007183 |
| cell surface pattern recognition receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0002752 |
| I-kappaB phosphorylation | http://purl.org/obo/owl/GO#GO_0007252 |
| engulfment of apoptotic cell | http://purl.org/obo/owl/GO#GO_0043652 |
| JNK cascade | http://purl.org/obo/owl/GO#GO_0007254 |
| recognition of apoptotic cell | http://purl.org/obo/owl/GO#GO_0043654 |
| Wnt receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0016055 |
| MyD88-independent toll-like receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0002756 |
| immune response-activating signal transduction | http://purl.org/obo/owl/GO#GO_0002757 |
| regulation of membrane potential in photoreceptor cell | http://purl.org/obo/owl/GO#GO_0016057 |
| maintenance of membrane potential in photoreceptor cell by rhodopsin mediated signaling | http://purl.org/obo/owl/GO#GO_0016058 |
| dopamine receptor, phospholipase C activating pathway | http://purl.org/obo/owl/GO#GO_0060158 |
| deactivation of rhodopsin mediated signaling | http://purl.org/obo/owl/GO#GO_0016059 |
| mineralocorticoid receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0031959 |
| tyrosine phosphorylation of STAT protein | http://purl.org/obo/owl/GO#GO_0007260 |
| apoptotic chromosome condensation | http://purl.org/obo/owl/GO#GO_0030263 |
| carbohydrate mediated signaling | http://purl.org/obo/owl/GO#GO_0009756 |
| leukemia inhibitory factor signaling pathway | http://purl.org/obo/owl/GO#GO_0048861 |
| adenosine receptor signaling pathway | http://purl.org/obo/owl/GO#GO_0001973 |
| intra-S DNA damage checkpoint | http://purl.org/obo/owl/GO#GO_0031573 |
| activation of Janus kinase activity | http://purl.org/obo/owl/GO#GO_0042976 |
| ubiquitin-dependent SMAD protein catabolic process | http://purl.org/obo/owl/GO#GO_0030579 |
| activation of MAPKKK activity | http://purl.org/obo/owl/GO#GO_0000185 |
| JUN phosphorylation | http://purl.org/obo/owl/GO#GO_0007258 |
| regulation of cell growth by extracellular stimulus | http://purl.org/obo/owl/GO#GO_0001560 |
| lipopolysaccharide-mediated signaling pathway | http://purl.org/obo/owl/GO#GO_0031663 |
| DNA damage response, signal transduction | http://purl.org/obo/owl/GO#GO_0042770 |
| G1 DNA damage checkpoint | http://purl.org/obo/owl/GO#GO_0031571 |
<?xml version="1.0"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:vCard="http://www.w3.org/2001/vcard-rdf/3.0#">
<rdf:Description rdf:about="http://id.ecs.soton.ac.uk/person/1650">
<vCard:FN>Wendy Hall</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://www.dajobe.org/foaf.rdf#i">
<vCard:FN>Dave Beckett</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://www.cambridgesemantics.com/people/about/lee">
<vCard:FN>Lee Feigenbaum</vCard:FN>
</rdf:Description>
<rdf:Description>
<vCard:FN>Danny Ayers</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/People/Berners-Lee/card#i">
<vCard:TITLE>Sir</vCard:TITLE>
<vCard:URL rdf:resource="http://www.w3.org/People/Berners-Lee/"/>
<vCard:FN>Timothy Berners-Lee</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://dbpedia.org/resource/John_Klensin">
<vCard:FN>John Klensin</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://my.opera.com/chaals/xml/foaf#me">
<vCard:FN>Charles McCathieNevile</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://users.ecs.soton.ac.uk/mc/mcfoaf.rdf#me">
<vCard:FN>mc schraefel</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://dbpedia.org/resource/Tim_Bray">
<vCard:FN>Tim Bray</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://research.microsoft.com/~henrikn/foaf.xml#me">
<vCard:FN>Henrik Nielsen</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://teole.jfouffa.org/People/Teole/card.rdf#me">
<vCard:FN>Philippe Le Hégaret</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://dbpedia.org/resource/John_Markoff">
<vCard:FN>John Markoff</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://people.apache.org/~oshani/foaf.rdf#me">
<vCard:FN>Oshani Seneviratne</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://id.ecs.soton.ac.uk/person/2686">
<vCard:FN>Nigel Shadbolt</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://dbpedia.org/resource/John_Gage">
<vCard:FN>John Gage</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://www.mindswap.org/2004/owl/mindswappers#Jennifer.Golbeck">
<vCard:FN>Jennifer Golbeck</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://web.mit.edu/shinnyih/foaf.rdf#">
<vCard:FN>Shinnyih Huang</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://my.opera.com/howcome/xml/foaf#howcome">
<vCard:FN>Håkon Wium Lie</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/People/karl/karl-foaf.xrdf#me">
<vCard:FN>Karl Dubost</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/People/Berners-Lee/card#amy">
<vCard:FN>Amy van der Hiel</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="file:///home/afs/Joseki-3.2/#edd">
<vCard:URL rdf:resource="http://heddley.com/edd/"/>
<vCard:FN>Edd Dumbill</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/People/Connolly/#me">
<vCard:FN>Dan Connolly</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://www.mindswap.org/2004/owl/mindswappers#Bijan.Parsia">
<vCard:FN>Bijan Parsia</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://www.aaronsw.com/about.xrdf#aaronsw">
<vCard:FN>Aaron Swartz</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://www.kjetil.kjernsmo.net/foaf#me">
<vCard:FN>Kjetil Kjernsmo</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/People/djweitzner/foaf#DJW">
<vCard:FN>Daniel J Weitzner</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://www.cs.umd.edu/~hendler/2003/foaf.rdf#jhendler">
<vCard:FN>Jim Hendler</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://www.isi.edu/~gil/foaf.rdf#me">
<vCard:FN>Yolanda Gill</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="file:///home/afs/Joseki-3.2/#libby">
<vCard:FN>Libby Miller</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://id.ecs.soton.ac.uk/person/60">
<vCard:FN>Les Carr</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://www.lassila.org/ora.rdf#me">
<vCard:FN>Ora Lassila</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://inamidst.com/sbp/foaf#Sean">
<vCard:FN>Sean Palmer</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/People/Jacobs/contact.rdf#IanJacobs">
<vCard:FN>Ian Jacobs</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://eikeon.com/foaf.rdf#eikeon">
<vCard:FN>Daniel Krech</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://dig.csail.mit.edu/2007/wiki/people/JoeLambda#JL">
<vCard:FN>Joe Lambda</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://id.ecs.soton.ac.uk/person/1269">
<vCard:FN>Nicholas Gibbins</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://norman.walsh.name/knows/who#norman-walsh">
<vCard:FN>Norman Walsh</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/data#W3C">
<vCard:FN>World Wide Web Consortium</vCard:FN>
<vCard:URL rdf:resource="file:///home/"/>
</rdf:Description>
<rdf:Description rdf:about="http://people.w3.org/simon/foaf#i">
<vCard:FN>Simon J. Hernandez</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="file:///home/afs/Joseki-3.2/#cm">
<vCard:FN>Coralie Mercier</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://dig.csail.mit.edu/2007/wiki/people/RobertHoffmann#RMH">
<vCard:FN>Robert Hoffmann</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="file:///home/afs/Joseki-3.2/#ss">
<vCard:FN>Susie Stephens</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://myopenlink.net/dataspace/person/kidehen#this">
<vCard:FN>Kingsley Idehen</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="file:///home/afs/Joseki-3.2/#dj">
<vCard:FN>Dean Jackson</vCard:FN>
<vCard:URL rdf:resource="http://www.grorg.org/dean/"/>
</rdf:Description>
<rdf:Description rdf:about="http://bblfish.net/people/henry/card#me">
<vCard:FN>Henry Story</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://dbpedia.org/resource/John_Seely_Brown">
<vCard:FN>John Seely Brown</vCard:FN>
<vCard:URL rdf:resource="http://www.johnseelybrown.com/"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/People/EM/contact#me">
<vCard:FN>Eric Miller</vCard:FN>
<vCard:URL rdf:resource="http://purl.org/net/eric/"/>
</rdf:Description>
<rdf:Description rdf:about="http://people.csail.mit.edu/psz/foaf.rdf#me">
<vCard:FN>Peter Szolovits</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://rit.mellon.org/Members/ihf/foaf.rdf#me">
<vCard:FN>Ira Fuchs</vCard:FN>
<vCard:URL rdf:resource="http://www.mellon.org/about_foundation/staff/program-area-staff/irafuchs"/>
</rdf:Description>
<rdf:Description rdf:about="http://people.csail.mit.edu/lkagal/foaf#me">
<vCard:FN>Lalana Kagal</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://hometown.aol.com/chbussler/foaf/chbussler.foaf#me">
<vCard:FN>Christoph Bussler</vCard:FN>
</rdf:Description>
<rdf:Description rdf:about="http://www.ivan-herman.net/foaf.rdf#me">
<vCard:FN>Ivan Herman</vCard:FN>
</rdf:Description>
</rdf:RDF>
<?xml version="1.0" ?> <sparql xmlns="http://www.w3.org/2005/sparql-results#" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/2001/sw/DataAccess/rf1/result2.xsd"> <head></head> <boolean>true</boolean> </sparql>
<?xml version="1.0"?> <rdf:RDF xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:ussec="http://www.rdfabout.com/rdf/schema/ussec/" xmlns:corp="http://xmlns.com/foaf/corp#"> <corp:Company rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996"> <ussec:tradingSymbol>F</ussec:tradingSymbol> <foaf:name>FORD MOTOR CO</foaf:name> <ussec:tenPercentOwnerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001075056" foaf:name="VASTERA INC" /> <ussec:cik>0000037996</ussec:cik> </corp:Company> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001190853"> <ussec:isCOOOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>NICHOLAS V. SCHEELE</foaf:name> <ussec:isPresidentOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001191100"> <ussec:isCOOOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>JAMES J. PADILLA</foaf:name> <ussec:isPresidentOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <ussec:isExecVPOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001258325"> <ussec:isVPOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>JAMES C. GOUIN</foaf:name> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001230846"> <ussec:isChairmanOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>WILLIAM CLAY FORD</foaf:name> <ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <ussec:isCEOOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001087791"> <ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>KRAVIS MARIE JOSEE</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001090353"> <ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>JOHN L. THORNTON</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001113487"> <ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>IRVINE O. HOCKADAY</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001187350"> <ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>CARL E. REICHARDT</foaf:name> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001198939"> <ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>JOHN R H BOND</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001198941"> <ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>HOMER A. NEAL</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001198944"> <ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>JORMA J. OLLILA</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001225178"> <ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>ROBERT E. RUBIN</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001230844"> <ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>EDSEL B. FORD</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001230845"> <ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>WILLIAM CLAY FORD</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001234124"> <ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>ELLEN R. MARRAM</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000891869"> <ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>RICHARD A. MANOOGIAN</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001273561"> <ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>KIMBERLY A. CASIANO</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001206253"> <ussec:directorOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>STEPHEN G. BUTLER</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001191542"> <ussec:isExecVPOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>DAVID W. THURSFIELD</foaf:name> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001190854"> <ussec:isExecVPOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>MARK A. SCHULZ</foaf:name> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001191534"> <ussec:isExecVPOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>MARK FIELDS</foaf:name> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001190855"> <ussec:isExecVPOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>GREG C. SMITH</foaf:name> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001191527"> <ussec:isExecVPOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>LEWIS W K BOOTH</foaf:name> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001191101"> <ussec:isExecVPOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>ANNE STEVENS</foaf:name> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001190848"> <ussec:isCFOOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>DON LECLAIR</foaf:name> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001190350"> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>J C. MAYS</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001190353"> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>RICHARD PARRY-JONES</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001190357"> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>DENNIS E. ROSS</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001191099"> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>JAMES G. OCONNOR</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001264154"> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>BRUCE L. BLYTHE</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001190844"> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>JOE W. LAYMON</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001190851"> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>PHILIP R. MARTENS</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001190857"> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>MARTIN B. ZIMMERMAN</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001191095"> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>ROMAN J. KRYGIER</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001167308"> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>ALLAN D. GILMOUR</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001276307"> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>ZIAD S. OJAKLI</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001288349"> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>MICHAEL E. BANNISTER</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001191535"> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>EARL J. HESTERBERG</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001191096"> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>STEPHEN G. LYONS</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001323205"> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>David G. Leitch</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001191102"> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>DAVID T. SZCZUPAK</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001191538"> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>DERRICK M. KUZAK</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001199050"> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>JOHN FLEMING</foaf:name> </rdf:Description> <rdf:Description rdf:about="http://www.rdfabout.com/rdf/usgov/sec/id/cik0001354862"> <ussec:officerOf rdf:resource="http://www.rdfabout.com/rdf/usgov/sec/id/cik0000037996" /> <foaf:name>Francisco N. Codina</foaf:name> </rdf:Description> </rdf:RDF>
| name |
|---|
| John Thune |
| Robert Byrd |
| John Reed |
| Bill Nelson |
| Mark Pryor |
| James Inhofe |
| Jefferson Sessions |
| interest | count |
|---|---|
| http://www.livejournal.com/interests.bml?int=harry+potter | 33349 |
| http://www.livejournal.com/interests.bml?int=music | 14976 |
| http://www.livejournal.com/interests.bml?int=reading | 13780 |
| http://www.livejournal.com/interests.bml?int=writing | 12839 |
| http://www.livejournal.com/interests.bml?int=movies | 12314 |
| http://www.livejournal.com/interests.bml?int=books | 10354 |
| http://www.livejournal.com/interests.bml?int=lord+of+the+rings | 8754 |
| http://www.livejournal.com/interests.bml?int=art | 7858 |
| http://www.livejournal.com/interests.bml?int=anime | 7770 |
| http://www.livejournal.com/interests.bml?int=friends | 6744 |
| name | |
|---|---|
| "Dave Beckett" | <mailto:dave@dajobe.org> |
| "Dean Jackson" | <mailto:dean@w3.org> |
| "Dean Jackson" | <mailto:dino@grorg.org> |
| "Edd Dumbill" | <mailto:edd@usefulinc.com> |
| "Edd Dumbill" | <mailto:edd@xml.com> |
| "Edd Dumbill" | <mailto:edd@xmlhack.com> |
| "Eric Miller" | <mailto:em@w3.org> |
| "Henrik Nielsen" | |
| "Henry Story" | |
| "Håkon Wium Lie" |
| name | |
|---|---|
| "Dave Beckett" | <mailto:dave@dajobe.org> |
| "Dean Jackson" | <mailto:dino@grorg.org> |
| "Dean Jackson" | <mailto:dean@w3.org> |
| "Edd Dumbill" | <mailto:edd@xmlhack.com> |
| "Edd Dumbill" | <mailto:edd@xml.com> |
| "Edd Dumbill" | <mailto:edd@usefulinc.com> |
| "Eric Miller" | <mailto:em@w3.org> |
| "Henrik Nielsen" | |
| "Henry Story" | |
| "Håkon Wium Lie" | |
| "Ian Jacobs" | |
| "Ira Fuchs" | |
| "Ivan Herman" |
| lbl | est |
|---|---|
| Czech Republic | 1918-10-28 |
| Dominican Republic | 1844-02-27 |
| Republic of China | 1911-10-10 |
| Republic of China | 1912-01-01 |
| Republic of Ireland | 1916-04-24 |
| Republic of Ireland | 1919-01-21 |
